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 RequestBodyPostMultipleContentTypesSplitParamJsonAsync(RequestBodyPostMultipleContentTypesSplitParamApplicationJSON requestBody, string paramStr) + public async Task RequestBodyPostMultipleContentTypesSplitParamJsonAsync(RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody requestBody, string paramStr) { var request = new RequestBodyPostMultipleContentTypesSplitParamJsonRequest() { @@ -3146,7 +3146,7 @@ public async Task Req } - public async Task RequestBodyPostMultipleContentTypesSplitParamMultipartAsync(RequestBodyPostMultipleContentTypesSplitParamMultipartFormData requestBody, string paramStr) + public async Task RequestBodyPostMultipleContentTypesSplitParamMultipartAsync(RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody requestBody, string paramStr) { var request = new RequestBodyPostMultipleContentTypesSplitParamMultipartRequest() { @@ -3200,7 +3200,7 @@ public async Task RequestBodyPostMultipleContentTypesSplitFormAsync(RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded request) + public async Task RequestBodyPostMultipleContentTypesSplitFormAsync(RequestBodyPostMultipleContentTypesSplitFormRequestBody request) { string baseUrl = _serverUrl; if (baseUrl.EndsWith("/")) @@ -3249,7 +3249,7 @@ public async Task RequestB } - public async Task RequestBodyPostMultipleContentTypesSplitJsonAsync(RequestBodyPostMultipleContentTypesSplitApplicationJSON request) + public async Task RequestBodyPostMultipleContentTypesSplitJsonAsync(RequestBodyPostMultipleContentTypesSplitJsonRequestBody request) { string baseUrl = _serverUrl; if (baseUrl.EndsWith("/")) @@ -3298,7 +3298,7 @@ public async Task RequestB } - public async Task RequestBodyPostMultipleContentTypesSplitMultipartAsync(RequestBodyPostMultipleContentTypesSplitMultipartFormData request) + public async Task RequestBodyPostMultipleContentTypesSplitMultipartAsync(RequestBodyPostMultipleContentTypesSplitMultipartRequestBody request) { string baseUrl = _serverUrl; if (baseUrl.EndsWith("/")) @@ -3383,7 +3383,7 @@ public async Task Reque { if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) { - response.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject = 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; @@ -3432,7 +3432,7 @@ public async Task RequestBodyPostNullArrayAsyn { if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) { - response.RequestBodyPostNullArray200ApplicationJSONObject = 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; @@ -3481,7 +3481,7 @@ public async Task RequestBodyPostNullDict { if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) { - response.RequestBodyPostNullDictionary200ApplicationJSONObject = 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; @@ -3526,7 +3526,7 @@ public async Task RequestB { if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) { - response.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject = 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; @@ -3575,7 +3575,7 @@ public async Task RequestBody { if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) { - response.RequestBodyPostNullableRequiredStringBody200ApplicationJSONObject = 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; @@ -3986,7 +3986,7 @@ public async Task RequestBodyPutStringWi } - public async Task RequestBodyReadAndWriteAsync(ReadWriteObjectInput request, string? serverUrl = null) + public async Task RequestBodyReadAndWriteAsync(ReadWriteObject request, string? serverUrl = null) { string baseUrl = RequestBodyReadAndWriteSERVERS[0]; if (!string.IsNullOrEmpty(serverUrl)) { diff --git a/csharp-client-sdk/SDK/Resource.cs b/csharp-client-sdk/Openapi/Resource.cs similarity index 95% rename from csharp-client-sdk/SDK/Resource.cs rename to csharp-client-sdk/Openapi/Resource.cs index 24c7dd94b..1ad2150ed 100755 --- a/csharp-client-sdk/SDK/Resource.cs +++ b/csharp-client-sdk/Openapi/Resource.cs @@ -8,18 +8,18 @@ // //------------------------------------------------------------------------------ #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; using System; - public interface IResourceSDK + public interface IResource { Task CreateFileAsync(CreateFileRequestBody request); Task CreateResourceAsync(ExampleResource request); @@ -28,19 +28,19 @@ public interface IResourceSDK Task UpdateResourceAsync(string resourceId); } - public class ResourceSDK: IResourceSDK + public class Resource: IResource { 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 ResourceSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) + public Resource(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) { _defaultClient = defaultClient; _securityClient = securityClient; diff --git a/csharp-client-sdk/SDK/ResponseBodies.cs b/csharp-client-sdk/Openapi/ResponseBodies.cs similarity index 90% rename from csharp-client-sdk/SDK/ResponseBodies.cs rename to csharp-client-sdk/Openapi/ResponseBodies.cs index c26713058..4a716108f 100755 --- a/csharp-client-sdk/SDK/ResponseBodies.cs +++ b/csharp-client-sdk/Openapi/ResponseBodies.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 response bodies. /// - public interface IResponseBodiesSDK + public interface IResponseBodies { Task ResponseBodyAdditionalPropertiesComplexNumbersPostAsync(Dictionary request); Task ResponseBodyAdditionalPropertiesDatePostAsync(Dictionary request); @@ -43,7 +43,7 @@ public interface IResponseBodiesSDK /// /// Endpoints for testing response bodies. /// - public class ResponseBodiesSDK: IResponseBodiesSDK + public class ResponseBodies: IResponseBodies { /** * ResponseBodyOptionalGetSERVERS contains the list of server urls available to the SDK. @@ -61,15 +61,15 @@ public class ResponseBodiesSDK: IResponseBodiesSDK 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 ResponseBodiesSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) + public ResponseBodies(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) { _defaultClient = defaultClient; _securityClient = securityClient; @@ -118,7 +118,7 @@ public async Task Re { if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) { - response.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject = 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; @@ -167,7 +167,7 @@ public async Task ResponseBody { if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) { - response.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSONObject = 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; @@ -216,7 +216,7 @@ public async Task ResponseBo { if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) { - response.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject = 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; @@ -265,7 +265,7 @@ public async Task ResponseBodyAddi { if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) { - response.ResponseBodyAdditionalPropertiesPost200ApplicationJSONObject = 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; @@ -393,7 +393,7 @@ public async Task ResponseBodyOptionalGetAsync( } if(Utilities.IsContentTypeMatch("text/plain",response.ContentType)) { - response.ResponseBodyOptionalGet200TextPlainString = await httpResponse.Content.ReadAsStringAsync(); + response.Res = await httpResponse.Content.ReadAsStringAsync(); } return response; @@ -565,7 +565,7 @@ public async Task ResponseBody { if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) { - response.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject = 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/Retries.cs b/csharp-client-sdk/Openapi/Retries.cs similarity index 89% rename from csharp-client-sdk/SDK/Retries.cs rename to csharp-client-sdk/Openapi/Retries.cs index 8e5c5d8ae..865cf4d42 100755 --- a/csharp-client-sdk/SDK/Retries.cs +++ b/csharp-client-sdk/Openapi/Retries.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.Collections.Generic; using System.Net.Http.Headers; using System.Net.Http; @@ -22,7 +22,7 @@ namespace SDK /// /// Endpoints for testing retries. /// - public interface IRetriesSDK + public interface IRetries { Task RetriesGetAsync(string requestId, long? numRetries = null, string? serverUrl = null); } @@ -30,7 +30,7 @@ public interface IRetriesSDK /// /// Endpoints for testing retries. /// - public class RetriesSDK: IRetriesSDK + public class Retries: IRetries { /** * RetriesGetSERVERS contains the list of server urls available to the SDK. @@ -41,15 +41,15 @@ public class RetriesSDK: IRetriesSDK 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 RetriesSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) + public Retries(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) { _defaultClient = defaultClient; _securityClient = securityClient; diff --git a/csharp-client-sdk/Openapi/SDK.cs b/csharp-client-sdk/Openapi/SDK.cs new file mode 100755 index 000000000..10b2320e3 --- /dev/null +++ b/csharp-client-sdk/Openapi/SDK.cs @@ -0,0 +1,303 @@ + +//------------------------------------------------------------------------------ +// +// 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 Newtonsoft.Json; + using Openapi.Models.Operations; + using Openapi.Models.Shared; + using Openapi.Utils; + using System.Collections.Generic; + using System.Net.Http.Headers; + using System.Net.Http; + using System.Threading.Tasks; + using System; + + /// + /// Test: Test Summary + /// + /// + /// Some test description.
+ /// About our test document. + ///
+ /// + /// https://speakeasyapi.dev/docs/home} - Speakeasy Docs + ///
+ public interface ISDK + { + + /// + /// Endpoints for purely testing valid generation behavior. + /// + public IGeneration Generation { get; } + + /// + /// Endpoints for testing error responses. + /// + public IErrors Errors { get; } + + /// + /// Endpoints for testing union types. + /// + public IUnions Unions { get; } + + /// + /// Endpoints for testing flattening through request body and parameter combinations. + /// + public IFlattening Flattening { get; } + + /// + /// Endpoints for testing global parameters. + /// + public IGlobals Globals { get; } + + /// + /// Endpoints for testing parameters. + /// + public IParameters Parameters { get; } + public INest Nest { get; } + public INested Nested { get; } + + /// + /// Endpoints for testing request bodies. + /// + public IRequestBodies RequestBodies { get; } + + /// + /// Endpoints for testing response bodies. + /// + public IResponseBodies ResponseBodies { get; } + + /// + /// Endpoints for testing servers. + /// + public IServers Servers { get; } + + /// + /// Endpoints for testing telemetry. + /// + public ITelemetry Telemetry { get; } + + /// + /// Endpoints for testing authentication. + /// + public IAuthNew AuthNew { get; } + + /// + /// Endpoints for testing authentication. + /// + public IAuth Auth { get; } + + /// + /// Testing for documentation extensions and tooling. + /// + public IDocumentation Documentation { get; } + public IResource Resource { get; } + public IFirst First { get; } + public ISecond Second { get; } + + /// + /// Endpoints for testing the pagination extension + /// + public IPagination Pagination { get; } + + /// + /// Endpoints for testing retries. + /// + public IRetries Retries { get; } + Task PutAnythingIgnoredGenerationAsync(string request); + Task ResponseBodyJsonGetAsync(); + } + + public class SDKConfig + { + public long? GlobalPathParam; + public string? GlobalQueryParam; + } + + /// + /// Test: Test Summary + /// + /// + /// Some test description.
+ /// About our test document. + ///
+ /// + /// https://speakeasyapi.dev/docs/home} - Speakeasy Docs + ///
+ public class SDK: ISDK + { + public SDKConfig Config { get; private set; } + public static List ServerList = new List() + { + "http://localhost:35123", + "http://broken", + "http://{hostname}:{port}", + "http://localhost:35123/anything/{something}", + "{protocol}://{hostname}:{port}", + }; + + 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 IGeneration Generation { get; private set; } + public IErrors Errors { get; private set; } + public IUnions Unions { get; private set; } + public IFlattening Flattening { get; private set; } + public IGlobals Globals { get; private set; } + public IParameters Parameters { get; private set; } + public INest Nest { get; private set; } + public INested Nested { get; private set; } + public IRequestBodies RequestBodies { get; private set; } + public IResponseBodies ResponseBodies { get; private set; } + public IServers Servers { get; private set; } + public ITelemetry Telemetry { get; private set; } + public IAuthNew AuthNew { get; private set; } + public IAuth Auth { get; private set; } + public IDocumentation Documentation { get; private set; } + public IResource Resource { get; private set; } + public IFirst First { get; private set; } + public ISecond Second { get; private set; } + public IPagination Pagination { get; private set; } + public IRetries Retries { get; private set; } + + public SDK(Security? security = null, long? globalPathParam = null, string? globalQueryParam = null, string? serverUrl = null, ISpeakeasyHttpClient? client = null) + { + _serverUrl = serverUrl ?? SDK.ServerList[0]; + + _defaultClient = new SpeakeasyHttpClient(client); + _securityClient = _defaultClient; + + if(security != null) + { + _securityClient = SecuritySerializer.Apply(_defaultClient, security); + } + + Config = new SDKConfig() + { + GlobalPathParam = globalPathParam, + GlobalQueryParam = globalQueryParam, + }; + + Generation = new Generation(_defaultClient, _securityClient, _serverUrl, Config); + Errors = new Errors(_defaultClient, _securityClient, _serverUrl, Config); + Unions = new Unions(_defaultClient, _securityClient, _serverUrl, Config); + Flattening = new Flattening(_defaultClient, _securityClient, _serverUrl, Config); + Globals = new Globals(_defaultClient, _securityClient, _serverUrl, Config); + Parameters = new Parameters(_defaultClient, _securityClient, _serverUrl, Config); + Nest = new Nest(_defaultClient, _securityClient, _serverUrl, Config); + Nested = new Nested(_defaultClient, _securityClient, _serverUrl, Config); + RequestBodies = new RequestBodies(_defaultClient, _securityClient, _serverUrl, Config); + ResponseBodies = new ResponseBodies(_defaultClient, _securityClient, _serverUrl, Config); + Servers = new Servers(_defaultClient, _securityClient, _serverUrl, Config); + Telemetry = new Telemetry(_defaultClient, _securityClient, _serverUrl, Config); + AuthNew = new AuthNew(_defaultClient, _securityClient, _serverUrl, Config); + Auth = new Auth(_defaultClient, _securityClient, _serverUrl, Config); + Documentation = new Documentation(_defaultClient, _securityClient, _serverUrl, Config); + Resource = new Resource(_defaultClient, _securityClient, _serverUrl, Config); + First = new First(_defaultClient, _securityClient, _serverUrl, Config); + Second = new Second(_defaultClient, _securityClient, _serverUrl, Config); + Pagination = new Pagination(_defaultClient, _securityClient, _serverUrl, Config); + Retries = new Retries(_defaultClient, _securityClient, _serverUrl, Config); + } + + public async Task PutAnythingIgnoredGenerationAsync(string request) + { + string baseUrl = _serverUrl; + if (baseUrl.EndsWith("/")) + { + baseUrl = baseUrl.Substring(0, baseUrl.Length - 1); + } + var urlString = baseUrl + "/anything/ignoredGeneration"; + + + var httpRequest = new HttpRequestMessage(HttpMethod.Put, urlString); + httpRequest.Headers.Add("x-speakeasy-user-agent", _userAgent); + + var serializedBody = RequestBodySerializer.Serialize(request, "Request", "json"); + if (serializedBody == null) + { + throw new ArgumentNullException("request body is required"); + } + else + { + httpRequest.Content = serializedBody; + } + + var client = _securityClient; + + var httpResponse = await client.SendAsync(httpRequest); + + var contentType = httpResponse.Content.Headers.ContentType?.MediaType; + + var response = new PutAnythingIgnoredGenerationResponse + { + StatusCode = (int)httpResponse.StatusCode, + ContentType = contentType, + RawResponse = httpResponse + }; + + if((response.StatusCode == 200)) + { + if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) + { + response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }}); + } + + return response; + } + return response; + } + + public async Task ResponseBodyJsonGetAsync() + { + string baseUrl = _serverUrl; + if (baseUrl.EndsWith("/")) + { + baseUrl = baseUrl.Substring(0, baseUrl.Length - 1); + } + var urlString = baseUrl + "/json"; + + + 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 ResponseBodyJsonGetResponse + { + StatusCode = (int)httpResponse.StatusCode, + ContentType = contentType, + RawResponse = httpResponse + }; + + if((response.StatusCode == 200)) + { + if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) + { + response.HttpBinSimpleJsonObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }}); + } + + return response; + } + return response; + } + } +} \ No newline at end of file diff --git a/csharp-client-sdk/Openapi/SDKFirst.cs b/csharp-client-sdk/Openapi/SDKFirst.cs new file mode 100755 index 000000000..402ddb972 --- /dev/null +++ b/csharp-client-sdk/Openapi/SDKFirst.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 +{ + using Openapi.Models.Operations; + using Openapi.Utils; + using System.Net.Http; + using System.Threading.Tasks; + using System; + + public interface ISDKFirst + { + Task GetAsync(); + } + + public class SDKFirst: ISDKFirst + { + 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 SDKFirst(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) + { + _defaultClient = defaultClient; + _securityClient = securityClient; + _serverUrl = serverUrl; + Config = config; + } + + + public async Task GetAsync() + { + string baseUrl = _serverUrl; + if (baseUrl.EndsWith("/")) + { + baseUrl = baseUrl.Substring(0, baseUrl.Length - 1); + } + var urlString = baseUrl + "/anything/nest/first"; + + + 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 NestFirstGetResponse + { + 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/SDKNestedFirst.cs b/csharp-client-sdk/Openapi/SDKNestedFirst.cs new file mode 100755 index 000000000..27027341c --- /dev/null +++ b/csharp-client-sdk/Openapi/SDKNestedFirst.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 +{ + using Openapi.Models.Operations; + using Openapi.Utils; + using System.Net.Http; + using System.Threading.Tasks; + using System; + + public interface ISDKNestedFirst + { + Task GetAsync(); + } + + public class SDKNestedFirst: ISDKNestedFirst + { + 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 SDKNestedFirst(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) + { + _defaultClient = defaultClient; + _securityClient = securityClient; + _serverUrl = serverUrl; + Config = config; + } + + + public async Task GetAsync() + { + string baseUrl = _serverUrl; + if (baseUrl.EndsWith("/")) + { + baseUrl = baseUrl.Substring(0, baseUrl.Length - 1); + } + var urlString = baseUrl + "/anything/nested/first"; + + + 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 NestedFirstGetResponse + { + 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/SDKSecond.cs b/csharp-client-sdk/Openapi/SDKSecond.cs new file mode 100755 index 000000000..461505dc8 --- /dev/null +++ b/csharp-client-sdk/Openapi/SDKSecond.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 +{ + using Openapi.Models.Operations; + using Openapi.Utils; + using System.Net.Http; + using System.Threading.Tasks; + using System; + + public interface ISDKSecond + { + Task GetAsync(); + } + + public class SDKSecond: ISDKSecond + { + 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 SDKSecond(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) + { + _defaultClient = defaultClient; + _securityClient = securityClient; + _serverUrl = serverUrl; + Config = config; + } + + + public async Task GetAsync() + { + string baseUrl = _serverUrl; + if (baseUrl.EndsWith("/")) + { + baseUrl = baseUrl.Substring(0, baseUrl.Length - 1); + } + var urlString = baseUrl + "/anything/nested/second"; + + + 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 NestedSecondGetResponse + { + 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/SDK/Second.cs b/csharp-client-sdk/Openapi/Second.cs similarity index 84% rename from csharp-client-sdk/SDK/Second.cs rename to csharp-client-sdk/Openapi/Second.cs index 58286af01..5258296c8 100755 --- a/csharp-client-sdk/SDK/Second.cs +++ b/csharp-client-sdk/Openapi/Second.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 ISecondSDK + public interface ISecond { Task GetAsync(); } - public class SecondSDK: ISecondSDK + public class Second: ISecond { 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 SecondSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) + public Second(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) { _defaultClient = defaultClient; _securityClient = securityClient; diff --git a/csharp-client-sdk/SDK/Servers.cs b/csharp-client-sdk/Openapi/Servers.cs similarity index 96% rename from csharp-client-sdk/SDK/Servers.cs rename to csharp-client-sdk/Openapi/Servers.cs index 150905169..006af708d 100755 --- a/csharp-client-sdk/SDK/Servers.cs +++ b/csharp-client-sdk/Openapi/Servers.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.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; @@ -20,7 +20,7 @@ namespace SDK /// /// Endpoints for testing servers. /// - public interface IServersSDK + public interface IServers { Task SelectGlobalServerAsync(); @@ -37,7 +37,7 @@ public interface IServersSDK /// /// Endpoints for testing servers. /// - public class ServersSDK: IServersSDK + public class Servers: IServers { /** * SelectServerWithIDServers contains identifiers for the servers available to the SDK. @@ -92,15 +92,15 @@ public enum ServersByIDWithTemplatesServers { }; 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 ServersSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) + public Servers(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) { _defaultClient = defaultClient; _securityClient = securityClient; diff --git a/csharp-client-sdk/SDK/Telemetry.cs b/csharp-client-sdk/Openapi/Telemetry.cs similarity index 92% rename from csharp-client-sdk/SDK/Telemetry.cs rename to csharp-client-sdk/Openapi/Telemetry.cs index 5bed4b658..ab9ca18c2 100755 --- a/csharp-client-sdk/SDK/Telemetry.cs +++ b/csharp-client-sdk/Openapi/Telemetry.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 telemetry. /// - public interface ITelemetrySDK + public interface ITelemetry { Task TelemetrySpeakeasyUserAgentGetAsync(string userAgent); Task TelemetryUserAgentGetAsync(); @@ -30,19 +30,19 @@ public interface ITelemetrySDK /// /// Endpoints for testing telemetry. /// - public class TelemetrySDK: ITelemetrySDK + public class Telemetry: ITelemetry { 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 TelemetrySDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) + public Telemetry(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) { _defaultClient = defaultClient; _securityClient = securityClient; diff --git a/csharp-client-sdk/SDK/Unions.cs b/csharp-client-sdk/Openapi/Unions.cs similarity index 98% rename from csharp-client-sdk/SDK/Unions.cs rename to csharp-client-sdk/Openapi/Unions.cs index 215ccb3b3..7abcfbd46 100755 --- a/csharp-client-sdk/SDK/Unions.cs +++ b/csharp-client-sdk/Openapi/Unions.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.Net.Http.Headers; using System.Net.Http; using System.Threading.Tasks; @@ -23,7 +23,7 @@ namespace SDK /// /// Endpoints for testing union types. /// - public interface IUnionsSDK + public interface IUnions { Task FlattenedTypedObjectPostAsync(object request); Task MixedTypeOneOfPostAsync(object request); @@ -45,19 +45,19 @@ public interface IUnionsSDK /// /// Endpoints for testing union types. /// - public class UnionsSDK: IUnionsSDK + public class Unions: IUnions { 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 UnionsSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) + public Unions(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) { _defaultClient = defaultClient; _securityClient = securityClient; diff --git a/csharp-client-sdk/SDK/Utils/BigIntSerializer.cs b/csharp-client-sdk/Openapi/Utils/BigIntSerializer.cs similarity index 98% rename from csharp-client-sdk/SDK/Utils/BigIntSerializer.cs rename to csharp-client-sdk/Openapi/Utils/BigIntSerializer.cs index c5c1867fe..c134bf82d 100755 --- a/csharp-client-sdk/SDK/Utils/BigIntSerializer.cs +++ b/csharp-client-sdk/Openapi/Utils/BigIntSerializer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ #nullable enable -namespace SDK.Utils +namespace Openapi.Utils { using System; using System.Globalization; diff --git a/csharp-client-sdk/SDK/Utils/DecimalSerializer.cs b/csharp-client-sdk/Openapi/Utils/DecimalSerializer.cs similarity index 98% rename from csharp-client-sdk/SDK/Utils/DecimalSerializer.cs rename to csharp-client-sdk/Openapi/Utils/DecimalSerializer.cs index 0f4e77989..09620098f 100755 --- a/csharp-client-sdk/SDK/Utils/DecimalSerializer.cs +++ b/csharp-client-sdk/Openapi/Utils/DecimalSerializer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ #nullable enable -namespace SDK.Utils +namespace Openapi.Utils { using System; using System.Globalization; diff --git a/csharp-client-sdk/SDK/Utils/EnumSerializer.cs b/csharp-client-sdk/Openapi/Utils/EnumSerializer.cs similarity index 84% rename from csharp-client-sdk/SDK/Utils/EnumSerializer.cs rename to csharp-client-sdk/Openapi/Utils/EnumSerializer.cs index de81f5b4e..76e3a7e81 100755 --- a/csharp-client-sdk/SDK/Utils/EnumSerializer.cs +++ b/csharp-client-sdk/Openapi/Utils/EnumSerializer.cs @@ -12,17 +12,17 @@ using Newtonsoft.Json; using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("Tests")] -namespace SDK.Utils +namespace Openapi.Utils { internal class EnumSerializer : JsonConverter { - public override bool CanConvert(Type objectType) => objectType.IsEnum; + public override bool CanConvert(System.Type objectType) => objectType.IsEnum; public override bool CanRead => true; public override object? ReadJson( JsonReader reader, - Type objectType, + System.Type objectType, object? existingValue, JsonSerializer serializer ) @@ -32,7 +32,7 @@ JsonSerializer serializer throw new ArgumentNullException(nameof(reader.Value)); } - var extensionType = Type.GetType(objectType.FullName + "Extension"); + var extensionType = System.Type.GetType(objectType.FullName + "Extension"); if (extensionType == null) { return Enum.ToObject(objectType, reader.Value); @@ -55,7 +55,7 @@ public override void WriteJson(JsonWriter writer, object? value, JsonSerializer return; } - var extensionType = Type.GetType(value.GetType().FullName + "Extension"); + var extensionType = System.Type.GetType(value.GetType().FullName + "Extension"); if (extensionType == null) { writer.WriteValue(value); diff --git a/csharp-client-sdk/SDK/Utils/FlexibleObjectDeserializer.cs b/csharp-client-sdk/Openapi/Utils/FlexibleObjectDeserializer.cs similarity index 98% rename from csharp-client-sdk/SDK/Utils/FlexibleObjectDeserializer.cs rename to csharp-client-sdk/Openapi/Utils/FlexibleObjectDeserializer.cs index ac565c90b..4786184e7 100755 --- a/csharp-client-sdk/SDK/Utils/FlexibleObjectDeserializer.cs +++ b/csharp-client-sdk/Openapi/Utils/FlexibleObjectDeserializer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ #nullable enable -namespace SDK.Utils +namespace Openapi.Utils { using System; using System.Linq; diff --git a/csharp-client-sdk/SDK/Utils/HeaderSerializer.cs b/csharp-client-sdk/Openapi/Utils/HeaderSerializer.cs similarity index 99% rename from csharp-client-sdk/SDK/Utils/HeaderSerializer.cs rename to csharp-client-sdk/Openapi/Utils/HeaderSerializer.cs index dc576841d..13c5b2554 100755 --- a/csharp-client-sdk/SDK/Utils/HeaderSerializer.cs +++ b/csharp-client-sdk/Openapi/Utils/HeaderSerializer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ #nullable enable -namespace SDK.Utils +namespace Openapi.Utils { using System.Collections; using System.Collections.Generic; diff --git a/csharp-client-sdk/SDK/Utils/IsoDateTimeSerializer.cs b/csharp-client-sdk/Openapi/Utils/IsoDateTimeSerializer.cs similarity index 98% rename from csharp-client-sdk/SDK/Utils/IsoDateTimeSerializer.cs rename to csharp-client-sdk/Openapi/Utils/IsoDateTimeSerializer.cs index d671a0003..d1a7210d9 100755 --- a/csharp-client-sdk/SDK/Utils/IsoDateTimeSerializer.cs +++ b/csharp-client-sdk/Openapi/Utils/IsoDateTimeSerializer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ #nullable enable -namespace SDK.Utils +namespace Openapi.Utils { using System; using System.Globalization; diff --git a/csharp-client-sdk/SDK/Utils/RequestBodySerializer.cs b/csharp-client-sdk/Openapi/Utils/RequestBodySerializer.cs similarity index 99% rename from csharp-client-sdk/SDK/Utils/RequestBodySerializer.cs rename to csharp-client-sdk/Openapi/Utils/RequestBodySerializer.cs index d833e0925..2c15a5346 100755 --- a/csharp-client-sdk/SDK/Utils/RequestBodySerializer.cs +++ b/csharp-client-sdk/Openapi/Utils/RequestBodySerializer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ #nullable enable -namespace SDK.Utils +namespace Openapi.Utils { using System; using System.Collections; diff --git a/csharp-client-sdk/SDK/Utils/SecuritySerializer.cs b/csharp-client-sdk/Openapi/Utils/SecuritySerializer.cs similarity index 99% rename from csharp-client-sdk/SDK/Utils/SecuritySerializer.cs rename to csharp-client-sdk/Openapi/Utils/SecuritySerializer.cs index 5cc31473e..9209ccf6f 100755 --- a/csharp-client-sdk/SDK/Utils/SecuritySerializer.cs +++ b/csharp-client-sdk/Openapi/Utils/SecuritySerializer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ #nullable enable -namespace SDK.Utils +namespace Openapi.Utils { using System; using System.Reflection; diff --git a/csharp-client-sdk/SDK/Utils/SpeakeasyHttpClient.cs b/csharp-client-sdk/Openapi/Utils/SpeakeasyHttpClient.cs similarity index 99% rename from csharp-client-sdk/SDK/Utils/SpeakeasyHttpClient.cs rename to csharp-client-sdk/Openapi/Utils/SpeakeasyHttpClient.cs index 4cfdc0b3b..fcdf123ff 100755 --- a/csharp-client-sdk/SDK/Utils/SpeakeasyHttpClient.cs +++ b/csharp-client-sdk/Openapi/Utils/SpeakeasyHttpClient.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ #nullable enable -namespace SDK.Utils +namespace Openapi.Utils { using System; using System.Collections.Generic; diff --git a/csharp-client-sdk/SDK/Utils/SpeakeasyMetadata.cs b/csharp-client-sdk/Openapi/Utils/SpeakeasyMetadata.cs similarity index 99% rename from csharp-client-sdk/SDK/Utils/SpeakeasyMetadata.cs rename to csharp-client-sdk/Openapi/Utils/SpeakeasyMetadata.cs index da200e121..cf5bb9dc8 100755 --- a/csharp-client-sdk/SDK/Utils/SpeakeasyMetadata.cs +++ b/csharp-client-sdk/Openapi/Utils/SpeakeasyMetadata.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ #nullable enable -namespace SDK.Utils +namespace Openapi.Utils { using System; using System.Collections.Generic; diff --git a/csharp-client-sdk/SDK/Utils/URLBuilder.cs b/csharp-client-sdk/Openapi/Utils/URLBuilder.cs similarity index 99% rename from csharp-client-sdk/SDK/Utils/URLBuilder.cs rename to csharp-client-sdk/Openapi/Utils/URLBuilder.cs index eb56107bb..9ba7f5663 100755 --- a/csharp-client-sdk/SDK/Utils/URLBuilder.cs +++ b/csharp-client-sdk/Openapi/Utils/URLBuilder.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ #nullable enable -namespace SDK.Utils +namespace Openapi.Utils { using System; using System.Collections; diff --git a/csharp-client-sdk/SDK/Utils/Utilities.cs b/csharp-client-sdk/Openapi/Utils/Utilities.cs similarity index 99% rename from csharp-client-sdk/SDK/Utils/Utilities.cs rename to csharp-client-sdk/Openapi/Utils/Utilities.cs index 75344e72a..0da27066e 100755 --- a/csharp-client-sdk/SDK/Utils/Utilities.cs +++ b/csharp-client-sdk/Openapi/Utils/Utilities.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ #nullable enable -namespace SDK.Utils +namespace Openapi.Utils { using System; using System.Linq; @@ -59,7 +59,7 @@ public static bool IsClass(object? o) { if (o == null) return false; - return o.GetType().IsClass && (o.GetType().FullName ?? "").StartsWith("SDK.Models"); + return o.GetType().IsClass && (o.GetType().FullName ?? "").StartsWith("Openapi.Models"); } // TODO: code review polyfilled for IsAssignableTo diff --git a/csharp-client-sdk/README.md b/csharp-client-sdk/README.md index 6135876f7..8fd77f232 100755 --- a/csharp-client-sdk/README.md +++ b/csharp-client-sdk/README.md @@ -27,10 +27,10 @@ dotnet add package openapi ## SDK Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -47,13 +47,12 @@ var res = await sdk.Generation.GlobalNameOverriddenAsync(); ## Second Do this second ```csharp -using SDK; -using SDK.Models.Operations; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Operations; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -65,13 +64,13 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit BigintParameter = 168827, BigintStrParameter = 446729, BoolParameter = false, - DateParameter = LocalDate.FromDateTime(DateTime.Parse("2023-06-11")), - DateTimeDefaultParameter = DateTime.Parse("2022-07-22T13:16:48.221Z"), - DateTimeParameter = DateTime.Parse("2021-10-21T09:16:58.799Z"), + DateParameter = LocalDate.FromDateTime(System.DateTime.Parse("2023-06-11")), + DateTimeDefaultParameter = System.DateTime.Parse("2022-07-22T13:16:48.221Z"), + DateTimeParameter = System.DateTime.Parse("2021-10-21T09:16:58.799Z"), DecimalParameter = 5223.72M, DecimalStrParameter = 2911.37M, DoubleParameter = 6946.59D, - EnumParameter = SDK.Models.Operations.UsageExamplePostEnumParameter.Value1, + EnumParameter = EnumParameter.Value1, FalseyNumberParameter = 0D, Float32Parameter = 1029.75F, FloatParameter = 5669.99D, @@ -84,14 +83,14 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit SimpleObject = new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -102,7 +101,7 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit StrOpt = "testOptional", }, }, - OptEnumParameter = SDK.Models.Operations.UsageExamplePostOptEnumParameter.Value3, + OptEnumParameter = OptEnumParameter.Value3, }); // handle response @@ -117,54 +116,7 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit * [PutAnythingIgnoredGeneration](docs/sdks/sdk/README.md#putanythingignoredgeneration) * [ResponseBodyJsonGet](docs/sdks/sdk/README.md#responsebodyjsonget) -### [Auth](docs/sdks/auth/README.md) - -* [ApiKeyAuth](docs/sdks/auth/README.md#apikeyauth) -* [ApiKeyAuthGlobal](docs/sdks/auth/README.md#apikeyauthglobal) -* [BasicAuth](docs/sdks/auth/README.md#basicauth) -* [BearerAuth](docs/sdks/auth/README.md#bearerauth) -* [GlobalBearerAuth](docs/sdks/auth/README.md#globalbearerauth) -* [Oauth2Auth](docs/sdks/auth/README.md#oauth2auth) -* [Oauth2Override](docs/sdks/auth/README.md#oauth2override) -* [OpenIdConnectAuth](docs/sdks/auth/README.md#openidconnectauth) - -### [AuthNew](docs/sdks/authnew/README.md) - -* [ApiKeyAuthGlobalNew](docs/sdks/authnew/README.md#apikeyauthglobalnew) -* [AuthGlobal](docs/sdks/authnew/README.md#authglobal) -* [BasicAuthNew](docs/sdks/authnew/README.md#basicauthnew) -* [MultipleMixedOptionsAuth](docs/sdks/authnew/README.md#multiplemixedoptionsauth) -* [MultipleMixedSchemeAuth](docs/sdks/authnew/README.md#multiplemixedschemeauth) -* [MultipleOptionsWithMixedSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithmixedschemesauth) -* [MultipleOptionsWithSimpleSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithsimpleschemesauth) -* [MultipleSimpleOptionsAuth](docs/sdks/authnew/README.md#multiplesimpleoptionsauth) -* [MultipleSimpleSchemeAuth](docs/sdks/authnew/README.md#multiplesimpleschemeauth) -* [Oauth2AuthNew](docs/sdks/authnew/README.md#oauth2authnew) -* [OpenIdConnectAuthNew](docs/sdks/authnew/README.md#openidconnectauthnew) - -### [Documentation](docs/sdks/documentation/README.md) - -* [GetDocumentationPerLanguage](docs/sdks/documentation/README.md#getdocumentationperlanguage) - Gets documentation for some language, I guess. - -### [Errors](docs/sdks/errors/README.md) - -* [ConnectionErrorGet](docs/sdks/errors/README.md#connectionerrorget) -* [StatusGetError](docs/sdks/errors/README.md#statusgeterror) -* [StatusGetXSpeakeasyErrors](docs/sdks/errors/README.md#statusgetxspeakeasyerrors) - -### [First](docs/sdks/first/README.md) - -* [Get](docs/sdks/first/README.md#get) - -### [Flattening](docs/sdks/flattening/README.md) - -* [ComponentBodyAndParamConflict](docs/sdks/flattening/README.md#componentbodyandparamconflict) -* [ComponentBodyAndParamNoConflict](docs/sdks/flattening/README.md#componentbodyandparamnoconflict) -* [ConflictingParams](docs/sdks/flattening/README.md#conflictingparams) -* [InlineBodyAndParamConflict](docs/sdks/flattening/README.md#inlinebodyandparamconflict) -* [InlineBodyAndParamNoConflict](docs/sdks/flattening/README.md#inlinebodyandparamnoconflict) - -### [Generation](docs/sdks/generation/README.md) +### [.Generation](docs/sdks/generation/README.md) * [AnchorTypesGet](docs/sdks/generation/README.md#anchortypesget) * [ArrayCircularReferenceGet](docs/sdks/generation/README.md#arraycircularreferenceget) @@ -187,38 +139,44 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit * [TypedParameterGenerationGet](docs/sdks/generation/README.md#typedparametergenerationget) * [UsageExamplePost](docs/sdks/generation/README.md#usageexamplepost) - An operation used for testing usage examples -### [Globals](docs/sdks/globals/README.md) +### [.Errors](docs/sdks/errors/README.md) -* [GlobalPathParameterGet](docs/sdks/globals/README.md#globalpathparameterget) -* [GlobalsQueryParameterGet](docs/sdks/globals/README.md#globalsqueryparameterget) - - -### [Nest.First](docs/sdks/nestfirst/README.md) - -* [Get](docs/sdks/nestfirst/README.md#get) - -### [Nested](docs/sdks/nested/README.md) - -* [Get](docs/sdks/nested/README.md#get) +* [ConnectionErrorGet](docs/sdks/errors/README.md#connectionerrorget) +* [StatusGetError](docs/sdks/errors/README.md#statusgeterror) +* [StatusGetXSpeakeasyErrors](docs/sdks/errors/README.md#statusgetxspeakeasyerrors) -### [Nested.First](docs/sdks/nestedfirst/README.md) +### [.Unions](docs/sdks/unions/README.md) -* [Get](docs/sdks/nestedfirst/README.md#get) +* [FlattenedTypedObjectPost](docs/sdks/unions/README.md#flattenedtypedobjectpost) +* [MixedTypeOneOfPost](docs/sdks/unions/README.md#mixedtypeoneofpost) +* [NullableOneOfRefInObjectPost](docs/sdks/unions/README.md#nullableoneofrefinobjectpost) +* [NullableOneOfSchemaPost](docs/sdks/unions/README.md#nullableoneofschemapost) +* [NullableOneOfTypeInObjectPost](docs/sdks/unions/README.md#nullableoneoftypeinobjectpost) +* [NullableTypedObjectPost](docs/sdks/unions/README.md#nullabletypedobjectpost) +* [PrimitiveTypeOneOfPost](docs/sdks/unions/README.md#primitivetypeoneofpost) +* [StronglyTypedOneOfPost](docs/sdks/unions/README.md#stronglytypedoneofpost) +* [TypedObjectNullableOneOfPost](docs/sdks/unions/README.md#typedobjectnullableoneofpost) +* [TypedObjectOneOfPost](docs/sdks/unions/README.md#typedobjectoneofpost) +* [UnionBigIntDecimal](docs/sdks/unions/README.md#unionbigintdecimal) +* [UnionDateNull](docs/sdks/unions/README.md#uniondatenull) +* [UnionDateTimeBigInt](docs/sdks/unions/README.md#uniondatetimebigint) +* [UnionDateTimeNull](docs/sdks/unions/README.md#uniondatetimenull) +* [WeaklyTypedOneOfPost](docs/sdks/unions/README.md#weaklytypedoneofpost) -### [Nested.Second](docs/sdks/nestedsecond/README.md) +### [.Flattening](docs/sdks/flattening/README.md) -* [Get](docs/sdks/nestedsecond/README.md#get) +* [ComponentBodyAndParamConflict](docs/sdks/flattening/README.md#componentbodyandparamconflict) +* [ComponentBodyAndParamNoConflict](docs/sdks/flattening/README.md#componentbodyandparamnoconflict) +* [ConflictingParams](docs/sdks/flattening/README.md#conflictingparams) +* [InlineBodyAndParamConflict](docs/sdks/flattening/README.md#inlinebodyandparamconflict) +* [InlineBodyAndParamNoConflict](docs/sdks/flattening/README.md#inlinebodyandparamnoconflict) -### [Pagination](docs/sdks/pagination/README.md) +### [.Globals](docs/sdks/globals/README.md) -* [PaginationCursorBody](docs/sdks/pagination/README.md#paginationcursorbody) -* [PaginationCursorParams](docs/sdks/pagination/README.md#paginationcursorparams) -* [PaginationLimitOffsetOffsetBody](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetbody) -* [PaginationLimitOffsetOffsetParams](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetparams) -* [PaginationLimitOffsetPageBody](docs/sdks/pagination/README.md#paginationlimitoffsetpagebody) -* [PaginationLimitOffsetPageParams](docs/sdks/pagination/README.md#paginationlimitoffsetpageparams) +* [GlobalPathParameterGet](docs/sdks/globals/README.md#globalpathparameterget) +* [GlobalsQueryParameterGet](docs/sdks/globals/README.md#globalsqueryparameterget) -### [Parameters](docs/sdks/parameters/README.md) +### [.Parameters](docs/sdks/parameters/README.md) * [DeepObjectQueryParamsMap](docs/sdks/parameters/README.md#deepobjectqueryparamsmap) * [DeepObjectQueryParamsObject](docs/sdks/parameters/README.md#deepobjectqueryparamsobject) @@ -244,7 +202,24 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit * [SimplePathParameterObjects](docs/sdks/parameters/README.md#simplepathparameterobjects) * [SimplePathParameterPrimitives](docs/sdks/parameters/README.md#simplepathparameterprimitives) -### [RequestBodies](docs/sdks/requestbodies/README.md) + +### [.Nest.First](docs/sdks/sdkfirst/README.md) + +* [Get](docs/sdks/sdkfirst/README.md#get) + +### [.Nested](docs/sdks/nested/README.md) + +* [Get](docs/sdks/nested/README.md#get) + +### [.Nested.First](docs/sdks/sdknestedfirst/README.md) + +* [Get](docs/sdks/sdknestedfirst/README.md#get) + +### [.Nested.Second](docs/sdks/sdksecond/README.md) + +* [Get](docs/sdks/sdksecond/README.md#get) + +### [.RequestBodies](docs/sdks/requestbodies/README.md) * [NullableObjectPost](docs/sdks/requestbodies/README.md#nullableobjectpost) * [NullableRequiredEmptyObjectPost](docs/sdks/requestbodies/README.md#nullablerequiredemptyobjectpost) @@ -328,15 +303,7 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit * [RequestBodyWriteOnlyOutput](docs/sdks/requestbodies/README.md#requestbodywriteonlyoutput) * [RequestBodyWriteOnlyUnion](docs/sdks/requestbodies/README.md#requestbodywriteonlyunion) -### [Resource](docs/sdks/resource/README.md) - -* [CreateFile](docs/sdks/resource/README.md#createfile) -* [CreateResource](docs/sdks/resource/README.md#createresource) -* [DeleteResource](docs/sdks/resource/README.md#deleteresource) -* [GetResource](docs/sdks/resource/README.md#getresource) -* [UpdateResource](docs/sdks/resource/README.md#updateresource) - -### [ResponseBodies](docs/sdks/responsebodies/README.md) +### [.ResponseBodies](docs/sdks/responsebodies/README.md) * [ResponseBodyAdditionalPropertiesComplexNumbersPost](docs/sdks/responsebodies/README.md#responsebodyadditionalpropertiescomplexnumberspost) * [ResponseBodyAdditionalPropertiesDatePost](docs/sdks/responsebodies/README.md#responsebodyadditionalpropertiesdatepost) @@ -350,15 +317,7 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit * [ResponseBodyXmlGet](docs/sdks/responsebodies/README.md#responsebodyxmlget) * [ResponseBodyZeroValueComplexTypePtrsPost](docs/sdks/responsebodies/README.md#responsebodyzerovaluecomplextypeptrspost) -### [Retries](docs/sdks/retries/README.md) - -* [RetriesGet](docs/sdks/retries/README.md#retriesget) - -### [Second](docs/sdks/second/README.md) - -* [Get](docs/sdks/second/README.md#get) - -### [Servers](docs/sdks/servers/README.md) +### [.Servers](docs/sdks/servers/README.md) * [SelectGlobalServer](docs/sdks/servers/README.md#selectglobalserver) * [SelectServerWithID](docs/sdks/servers/README.md#selectserverwithid) - Select a server by ID. @@ -367,28 +326,68 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit * [ServerWithTemplatesGlobal](docs/sdks/servers/README.md#serverwithtemplatesglobal) * [ServersByIDWithTemplates](docs/sdks/servers/README.md#serversbyidwithtemplates) -### [Telemetry](docs/sdks/telemetry/README.md) +### [.Telemetry](docs/sdks/telemetry/README.md) * [TelemetrySpeakeasyUserAgentGet](docs/sdks/telemetry/README.md#telemetryspeakeasyuseragentget) * [TelemetryUserAgentGet](docs/sdks/telemetry/README.md#telemetryuseragentget) -### [Unions](docs/sdks/unions/README.md) +### [.AuthNew](docs/sdks/authnew/README.md) -* [FlattenedTypedObjectPost](docs/sdks/unions/README.md#flattenedtypedobjectpost) -* [MixedTypeOneOfPost](docs/sdks/unions/README.md#mixedtypeoneofpost) -* [NullableOneOfRefInObjectPost](docs/sdks/unions/README.md#nullableoneofrefinobjectpost) -* [NullableOneOfSchemaPost](docs/sdks/unions/README.md#nullableoneofschemapost) -* [NullableOneOfTypeInObjectPost](docs/sdks/unions/README.md#nullableoneoftypeinobjectpost) -* [NullableTypedObjectPost](docs/sdks/unions/README.md#nullabletypedobjectpost) -* [PrimitiveTypeOneOfPost](docs/sdks/unions/README.md#primitivetypeoneofpost) -* [StronglyTypedOneOfPost](docs/sdks/unions/README.md#stronglytypedoneofpost) -* [TypedObjectNullableOneOfPost](docs/sdks/unions/README.md#typedobjectnullableoneofpost) -* [TypedObjectOneOfPost](docs/sdks/unions/README.md#typedobjectoneofpost) -* [UnionBigIntDecimal](docs/sdks/unions/README.md#unionbigintdecimal) -* [UnionDateNull](docs/sdks/unions/README.md#uniondatenull) -* [UnionDateTimeBigInt](docs/sdks/unions/README.md#uniondatetimebigint) -* [UnionDateTimeNull](docs/sdks/unions/README.md#uniondatetimenull) -* [WeaklyTypedOneOfPost](docs/sdks/unions/README.md#weaklytypedoneofpost) +* [ApiKeyAuthGlobalNew](docs/sdks/authnew/README.md#apikeyauthglobalnew) +* [AuthGlobal](docs/sdks/authnew/README.md#authglobal) +* [BasicAuthNew](docs/sdks/authnew/README.md#basicauthnew) +* [MultipleMixedOptionsAuth](docs/sdks/authnew/README.md#multiplemixedoptionsauth) +* [MultipleMixedSchemeAuth](docs/sdks/authnew/README.md#multiplemixedschemeauth) +* [MultipleOptionsWithMixedSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithmixedschemesauth) +* [MultipleOptionsWithSimpleSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithsimpleschemesauth) +* [MultipleSimpleOptionsAuth](docs/sdks/authnew/README.md#multiplesimpleoptionsauth) +* [MultipleSimpleSchemeAuth](docs/sdks/authnew/README.md#multiplesimpleschemeauth) +* [Oauth2AuthNew](docs/sdks/authnew/README.md#oauth2authnew) +* [OpenIdConnectAuthNew](docs/sdks/authnew/README.md#openidconnectauthnew) + +### [.Auth](docs/sdks/auth/README.md) + +* [ApiKeyAuth](docs/sdks/auth/README.md#apikeyauth) +* [ApiKeyAuthGlobal](docs/sdks/auth/README.md#apikeyauthglobal) +* [BasicAuth](docs/sdks/auth/README.md#basicauth) +* [BearerAuth](docs/sdks/auth/README.md#bearerauth) +* [GlobalBearerAuth](docs/sdks/auth/README.md#globalbearerauth) +* [Oauth2Auth](docs/sdks/auth/README.md#oauth2auth) +* [Oauth2Override](docs/sdks/auth/README.md#oauth2override) +* [OpenIdConnectAuth](docs/sdks/auth/README.md#openidconnectauth) + +### [.Documentation](docs/sdks/documentation/README.md) + +* [GetDocumentationPerLanguage](docs/sdks/documentation/README.md#getdocumentationperlanguage) - Gets documentation for some language, I guess. + +### [.Resource](docs/sdks/resource/README.md) + +* [CreateFile](docs/sdks/resource/README.md#createfile) +* [CreateResource](docs/sdks/resource/README.md#createresource) +* [DeleteResource](docs/sdks/resource/README.md#deleteresource) +* [GetResource](docs/sdks/resource/README.md#getresource) +* [UpdateResource](docs/sdks/resource/README.md#updateresource) + +### [.First](docs/sdks/first/README.md) + +* [Get](docs/sdks/first/README.md#get) + +### [.Second](docs/sdks/second/README.md) + +* [Get](docs/sdks/second/README.md#get) + +### [.Pagination](docs/sdks/pagination/README.md) + +* [PaginationCursorBody](docs/sdks/pagination/README.md#paginationcursorbody) +* [PaginationCursorParams](docs/sdks/pagination/README.md#paginationcursorparams) +* [PaginationLimitOffsetOffsetBody](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetbody) +* [PaginationLimitOffsetOffsetParams](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetparams) +* [PaginationLimitOffsetPageBody](docs/sdks/pagination/README.md#paginationlimitoffsetpagebody) +* [PaginationLimitOffsetPageParams](docs/sdks/pagination/README.md#paginationlimitoffsetpageparams) + +### [.Retries](docs/sdks/retries/README.md) + +* [RetriesGet](docs/sdks/retries/README.md#retriesget) @@ -417,11 +416,11 @@ The following global parameters are available. The required parameters must be s ## Example #1 ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -438,11 +437,11 @@ var res = await sdk.Globals.GlobalPathParameterGetAsync(719830); ## Example #2 ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/SDK.sln b/csharp-client-sdk/SDK.sln deleted file mode 100755 index 823ccf9ef..000000000 --- a/csharp-client-sdk/SDK.sln +++ /dev/null @@ -1,18 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDK", "SDK\SDK.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/Models/Operations/CreateFileRequestBodyFile.cs b/csharp-client-sdk/SDK/Models/Operations/CreateFileRequestBodyFile.cs deleted file mode 100755 index 612e0599c..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/CreateFileRequestBodyFile.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - - public class CreateFileRequestBodyFile - { - - [SpeakeasyMetadata("multipartForm:content")] - public byte[] Content { get; set; } = default!; - - [SpeakeasyMetadata("multipartForm:name=file")] - public string File { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectObjArrParam.cs b/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectObjArrParam.cs deleted file mode 100755 index a229eb2f9..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectObjArrParam.cs +++ /dev/null @@ -1,22 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - using System.Collections.Generic; - - public class DeepObjectQueryParamsObjectObjArrParam - { - - [SpeakeasyMetadata("queryParam:name=arr")] - public List? Arr { get; set; } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectResArgs.cs deleted file mode 100755 index bdb367888..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectResArgs.cs +++ /dev/null @@ -1,76 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System.Collections.Generic; - - public class DeepObjectQueryParamsObjectResArgs - { - - [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/DeprecatedObjectInSchemaGet200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/DeprecatedObjectInSchemaGet200ApplicationJSON.cs deleted file mode 100755 index a3688969d..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/DeprecatedObjectInSchemaGet200ApplicationJSON.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Models.Shared; - using System; - - /// - /// A successful response that contains a deprecatedObject sent in the request body - /// - public class DeprecatedObjectInSchemaGet200ApplicationJSON - { - - [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/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.cs b/csharp-client-sdk/SDK/Models/Operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.cs deleted file mode 100755 index a189d29d0..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.cs +++ /dev/null @@ -1,20 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - - /// - /// OK - /// - public class EmptyResponseObjectWithCommentGet200ApplicationOctetStream - { - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayResArgs.cs deleted file mode 100755 index f611f009d..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayResArgs.cs +++ /dev/null @@ -1,25 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System.Collections.Generic; - - public class FormQueryParamsArrayResArgs - { - - [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/FormQueryParamsCamelObjectObjParam.cs b/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectObjParam.cs deleted file mode 100755 index 1458345a4..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectObjParam.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - - public class FormQueryParamsCamelObjectObjParam - { - - [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/SDK/Models/Operations/FormQueryParamsCamelObjectObjParamExploded.cs b/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectObjParamExploded.cs deleted file mode 100755 index b236d719a..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectObjParamExploded.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - - public class FormQueryParamsCamelObjectObjParamExploded - { - - [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/FormQueryParamsCamelObjectRequest.cs b/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectRequest.cs deleted file mode 100755 index 9d91e6ef5..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectRequest.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - - public class FormQueryParamsCamelObjectRequest - { - - [SpeakeasyMetadata("queryParam:style=form,explode=true,name=obj_param_exploded")] - public FormQueryParamsCamelObjectObjParamExploded ObjParamExploded { get; set; } = default!; - - [SpeakeasyMetadata("queryParam:style=form,explode=false,name=obj_param")] - public FormQueryParamsCamelObjectObjParam? ObjParam { get; set; } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectResArgs.cs deleted file mode 100755 index 7afdd2a89..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectResArgs.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class FormQueryParamsCamelObjectResArgs - { - - [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/SDK/Models/Operations/FormQueryParamsObjectResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsObjectResArgs.cs deleted file mode 100755 index 7cfb04af0..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsObjectResArgs.cs +++ /dev/null @@ -1,81 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class FormQueryParamsObjectResArgs - { - - [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/FormQueryParamsPrimitiveResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsPrimitiveResArgs.cs deleted file mode 100755 index fa64159fa..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsPrimitiveResArgs.cs +++ /dev/null @@ -1,30 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class FormQueryParamsPrimitiveResArgs - { - - [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/FormQueryParamsRefParamObjectResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsRefParamObjectResArgs.cs deleted file mode 100755 index 1035c7d46..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsRefParamObjectResArgs.cs +++ /dev/null @@ -1,33 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class FormQueryParamsRefParamObjectResArgs - { - - [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/GetGlobalNameOverride200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/GetGlobalNameOverride200ApplicationJSON.cs deleted file mode 100755 index 6d5ffdab7..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/GetGlobalNameOverride200ApplicationJSON.cs +++ /dev/null @@ -1,30 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Models.Shared; - - /// - /// A successful response that contains the simpleObject sent in the request body - /// - public class GetGlobalNameOverride200ApplicationJSON - { - - /// - /// 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/GlobalsQueryParameterGetResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/GlobalsQueryParameterGetResArgs.cs deleted file mode 100755 index d163841d8..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/GlobalsQueryParameterGetResArgs.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class GlobalsQueryParameterGetResArgs - { - - [JsonProperty("globalQueryParam")] - public string GlobalQueryParam { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayResHeaders.cs b/csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayResHeaders.cs deleted file mode 100755 index c670371b6..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayResHeaders.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class HeaderParamsArrayResHeaders - { - - [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/HeaderParamsMapResHeaders.cs b/csharp-client-sdk/SDK/Models/Operations/HeaderParamsMapResHeaders.cs deleted file mode 100755 index 7f71cd0de..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsMapResHeaders.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class HeaderParamsMapResHeaders - { - - [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/HeaderParamsObjectResHeaders.cs b/csharp-client-sdk/SDK/Models/Operations/HeaderParamsObjectResHeaders.cs deleted file mode 100755 index ba9a28be2..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsObjectResHeaders.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class HeaderParamsObjectResHeaders - { - - [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/HeaderParamsPrimitiveResHeaders.cs b/csharp-client-sdk/SDK/Models/Operations/HeaderParamsPrimitiveResHeaders.cs deleted file mode 100755 index cfe2efa17..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsPrimitiveResHeaders.cs +++ /dev/null @@ -1,30 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class HeaderParamsPrimitiveResHeaders - { - - [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/IgnoredGenerationGet200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/IgnoredGenerationGet200ApplicationJSON.cs deleted file mode 100755 index 68bdf7152..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/IgnoredGenerationGet200ApplicationJSON.cs +++ /dev/null @@ -1,30 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Models.Shared; - - /// - /// A successful response that contains the simpleObject sent in the request body - /// - public class IgnoredGenerationGet200ApplicationJSON - { - - /// - /// 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/IgnoresPostApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/IgnoresPostApplicationJSON.cs deleted file mode 100755 index 99ce3a847..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/IgnoresPostApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class IgnoresPostApplicationJSON - { - - [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/InlineBodyAndParamConflictResJson.cs b/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictResJson.cs deleted file mode 100755 index b8c6368dc..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictResJson.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class InlineBodyAndParamConflictResJson - { - - [JsonProperty("str")] - public string Str { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictResJson.cs b/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictResJson.cs deleted file mode 100755 index e7f2dc8ca..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictResJson.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class InlineBodyAndParamNoConflictResJson - { - - [JsonProperty("bodyStr")] - public string BodyStr { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectResArgs.cs deleted file mode 100755 index 6cdfd90a4..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectResArgs.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class JsonQueryParamsObjectResArgs - { - - [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/MixedParametersCamelCaseResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseResArgs.cs deleted file mode 100755 index 1b72864e3..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseResArgs.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class MixedParametersCamelCaseResArgs - { - - [JsonProperty("query_string_param")] - public string QueryStringParam { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseResHeaders.cs b/csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseResHeaders.cs deleted file mode 100755 index 06baf49ca..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseResHeaders.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class MixedParametersCamelCaseResHeaders - { - - [JsonProperty("Header-Param")] - public string HeaderParam { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesResArgs.cs deleted file mode 100755 index 1379840b8..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesResArgs.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class MixedParametersPrimitivesResArgs - { - - [JsonProperty("queryStringParam")] - public string QueryStringParam { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesResHeaders.cs b/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesResHeaders.cs deleted file mode 100755 index c998488ee..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesResHeaders.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class MixedParametersPrimitivesResHeaders - { - - [JsonProperty("Headerparam")] - public string Headerparam { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/NameOverrideGetEnumNameOverride.cs b/csharp-client-sdk/SDK/Models/Operations/NameOverrideGetEnumNameOverride.cs deleted file mode 100755 index 6bcbcdca6..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/NameOverrideGetEnumNameOverride.cs +++ /dev/null @@ -1,61 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System; - - /// - /// An enum type - /// - public enum NameOverrideGetEnumNameOverride - { - [JsonProperty("value1")] - Value1, - [JsonProperty("value2")] - Value2, - [JsonProperty("value3")] - Value3, - } - - public static class NameOverrideGetEnumNameOverrideExtension - { - public static string Value(this NameOverrideGetEnumNameOverride value) - { - return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString(); - } - - public static NameOverrideGetEnumNameOverride ToEnum(this string value) - { - foreach(var field in typeof(NameOverrideGetEnumNameOverride).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 NameOverrideGetEnumNameOverride) - { - return (NameOverrideGetEnumNameOverride)enumVal; - } - } - } - - throw new Exception($"Unknown value {value} for enum NameOverrideGetEnumNameOverride"); - } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBody.cs b/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBody.cs deleted file mode 100755 index f0d4606b5..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBody.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class NullableRequiredEmptyObjectPostRequestBody - { - - [JsonProperty("NullableRequiredObj")] - public NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj NullableRequiredObj { get; set; } = default!; - - [JsonProperty("RequiredObj")] - public NullableRequiredEmptyObjectPostRequestBodyRequiredObj RequiredObj { get; set; } = default!; - - [JsonProperty("NullableOptionalObj")] - public NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj? NullableOptionalObj { get; set; } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.cs b/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.cs deleted file mode 100755 index 121e6cb93..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.cs +++ /dev/null @@ -1,17 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - - public class NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj - { - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.cs b/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.cs deleted file mode 100755 index e69a4b442..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.cs +++ /dev/null @@ -1,17 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - - public class NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj - { - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.cs b/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.cs deleted file mode 100755 index f7ce2c8a1..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.cs +++ /dev/null @@ -1,17 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - - public class NullableRequiredEmptyObjectPostRequestBodyRequiredObj - { - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.cs b/csharp-client-sdk/SDK/Models/Operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.cs deleted file mode 100755 index 053d0f589..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.cs +++ /dev/null @@ -1,56 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System; - - public enum NullableRequiredPropertyPostRequestBodyNullableRequiredEnum - { - [JsonProperty("first")] - First, - [JsonProperty("second")] - Second, - } - - public static class NullableRequiredPropertyPostRequestBodyNullableRequiredEnumExtension - { - public static string Value(this NullableRequiredPropertyPostRequestBodyNullableRequiredEnum value) - { - return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString(); - } - - public static NullableRequiredPropertyPostRequestBodyNullableRequiredEnum ToEnum(this string value) - { - foreach(var field in typeof(NullableRequiredPropertyPostRequestBodyNullableRequiredEnum).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 NullableRequiredPropertyPostRequestBodyNullableRequiredEnum) - { - return (NullableRequiredPropertyPostRequestBodyNullableRequiredEnum)enumVal; - } - } - } - - throw new Exception($"Unknown value {value} for enum NullableRequiredPropertyPostRequestBodyNullableRequiredEnum"); - } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/OverriddenResponse.cs b/csharp-client-sdk/SDK/Models/Operations/OverriddenResponse.cs deleted file mode 100755 index 68d40fbf7..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/OverriddenResponse.cs +++ /dev/null @@ -1,30 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Models.Shared; - - /// - /// A successful response that contains the simpleObject sent in the request body - /// - public class OverriddenResponse - { - - /// - /// 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/PipeDelimitedQueryParamsArrayResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/PipeDelimitedQueryParamsArrayResArgs.cs deleted file mode 100755 index 7bf70c5ad..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/PipeDelimitedQueryParamsArrayResArgs.cs +++ /dev/null @@ -1,25 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System.Collections.Generic; - - public class PipeDelimitedQueryParamsArrayResArgs - { - - [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/PutAnythingIgnoredGeneration200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/PutAnythingIgnoredGeneration200ApplicationJSON.cs deleted file mode 100755 index fdfcc484a..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/PutAnythingIgnoredGeneration200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class PutAnythingIgnoredGeneration200ApplicationJSON - { - - [JsonProperty("json")] - public string? Json { get; set; } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.cs deleted file mode 100755 index f1946efe2..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.cs +++ /dev/null @@ -1,28 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Models.Shared; - - /// - /// OK - /// - public class RequestBodyPostComplexNumberTypes200ApplicationJSON - { - - [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/RequestBodyPostDefaultsAndConsts200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.cs deleted file mode 100755 index 712424cd6..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.cs +++ /dev/null @@ -1,25 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Models.Shared; - - /// - /// OK - /// - public class RequestBodyPostDefaultsAndConsts200ApplicationJSON - { - - [JsonProperty("json")] - public DefaultsAndConstsOutput Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSON.cs deleted file mode 100755 index 21a6efcab..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSON.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostEmptyObject200ApplicationJSON - { - - [JsonProperty("empty")] - public RequestBodyPostEmptyObject200ApplicationJSONEmpty? Empty { get; set; } - - [JsonProperty("emptyRespWithEmptyProperies")] - public RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies? EmptyRespWithEmptyProperies { get; set; } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.cs deleted file mode 100755 index 8ab33114b..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.cs +++ /dev/null @@ -1,17 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - - public class RequestBodyPostEmptyObject200ApplicationJSONEmpty - { - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.cs deleted file mode 100755 index fba7e4b17..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.cs +++ /dev/null @@ -1,17 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - - public class RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies - { - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBody.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBody.cs deleted file mode 100755 index fcf798ba0..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBody.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPostEmptyObjectRequestBody - { - - [JsonProperty("empty")] - public RequestBodyPostEmptyObjectRequestBodyEmpty? Empty { get; set; } - - [JsonProperty("emptyWithEmptyProperties")] - public RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties? EmptyWithEmptyProperties { get; set; } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBodyEmpty.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBodyEmpty.cs deleted file mode 100755 index d69315a2c..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBodyEmpty.cs +++ /dev/null @@ -1,17 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - - public class RequestBodyPostEmptyObjectRequestBodyEmpty - { - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.cs deleted file mode 100755 index 50871dfeb..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.cs +++ /dev/null @@ -1,17 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - - public class RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties - { - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormDeepResForm.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormDeepResForm.cs deleted file mode 100755 index f64029465..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormDeepResForm.cs +++ /dev/null @@ -1,39 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPostFormDeepResForm - { - - [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/RequestBodyPostFormSimpleResForm.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormSimpleResForm.cs deleted file mode 100755 index 357c5cb92..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormSimpleResForm.cs +++ /dev/null @@ -1,60 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPostFormSimpleResForm - { - - [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/SDK/Models/Operations/RequestBodyPostFormSimpleResHeaders.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormSimpleResHeaders.cs deleted file mode 100755 index e106f9f8c..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormSimpleResHeaders.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPostFormSimpleResHeaders - { - - [JsonProperty("Content-Type")] - public string ContentType { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.cs deleted file mode 100755 index d5627a80a..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.cs +++ /dev/null @@ -1,29 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System.Collections.Generic; - using System.Numerics; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.cs deleted file mode 100755 index a81c63c12..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.cs +++ /dev/null @@ -1,29 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using NodaTime; - using System.Collections.Generic; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.cs deleted file mode 100755 index eb9d97c23..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.cs +++ /dev/null @@ -1,28 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System.Collections.Generic; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.cs deleted file mode 100755 index 39398393c..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.cs +++ /dev/null @@ -1,28 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System.Numerics; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesBigInt200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.cs deleted file mode 100755 index fc7efe9ab..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.cs +++ /dev/null @@ -1,30 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Utils; - using System.Numerics; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.cs deleted file mode 100755 index 4c23c9e26..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesBoolean200ApplicationJSON - { - - [JsonProperty("json")] - public bool Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.cs deleted file mode 100755 index 54a7d0ee3..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.cs +++ /dev/null @@ -1,28 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using NodaTime; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesDate200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.cs deleted file mode 100755 index a0141eff3..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.cs +++ /dev/null @@ -1,28 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesDateTime200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.cs deleted file mode 100755 index cf5fdb579..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesDecimal200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.cs deleted file mode 100755 index cc5483895..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.cs +++ /dev/null @@ -1,29 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Utils; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.cs deleted file mode 100755 index 0486b550b..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesFloat32200ApplicationJSON - { - - [JsonProperty("json")] - public double Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.cs deleted file mode 100755 index 4af0dd2a1..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesInt32200ApplicationJSON - { - - [JsonProperty("json")] - public int Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.cs deleted file mode 100755 index 59a2605f9..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesInteger200ApplicationJSON - { - - [JsonProperty("json")] - public long Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.cs deleted file mode 100755 index d4a9374ac..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.cs +++ /dev/null @@ -1,29 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System.Collections.Generic; - using System.Numerics; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.cs deleted file mode 100755 index 95baed600..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.cs +++ /dev/null @@ -1,29 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System.Collections.Generic; - using System; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.cs deleted file mode 100755 index 66f86847d..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.cs +++ /dev/null @@ -1,28 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System.Collections.Generic; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON - { - - [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/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.cs deleted file mode 100755 index 99f6222e1..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesNumber200ApplicationJSON - { - - [JsonProperty("json")] - public double Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.cs deleted file mode 100755 index b9b6fe43b..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostJSONDataTypesString200ApplicationJSON - { - - [JsonProperty("json")] - public string Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.cs deleted file mode 100755 index 34399941d..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON - { - - [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/RequestBodyPostMultipleContentTypesSplitApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.cs deleted file mode 100755 index 96f315dab..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPostMultipleContentTypesSplitApplicationJSON - { - - [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/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.cs deleted file mode 100755 index a7c6f60a0..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - - public class RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded - { - - [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/RequestBodyPostMultipleContentTypesSplitMultipartFormData.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.cs deleted file mode 100755 index 492828301..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - - public class RequestBodyPostMultipleContentTypesSplitMultipartFormData - { - - [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/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.cs deleted file mode 100755 index 66ce80bf3..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPostMultipleContentTypesSplitParamApplicationJSON - { - - [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/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.cs deleted file mode 100755 index 3cf8a78ba..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - - public class RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded - { - - [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/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.cs deleted file mode 100755 index 28d5ad37b..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - - public class RequestBodyPostMultipleContentTypesSplitParamMultipartFormData - { - - [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/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.cs deleted file mode 100755 index a40ee2309..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON - { - - [JsonProperty("data")] - public string Data { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullArray200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullArray200ApplicationJSON.cs deleted file mode 100755 index 3d72492bc..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullArray200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostNullArray200ApplicationJSON - { - - [JsonProperty("data")] - public string Data { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullDictionary200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullDictionary200ApplicationJSON.cs deleted file mode 100755 index 265c91349..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullDictionary200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostNullDictionary200ApplicationJSON - { - - [JsonProperty("data")] - public string Data { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.cs deleted file mode 100755 index ead2fc060..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON - { - - [JsonProperty("data")] - public string Data { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.cs deleted file mode 100755 index 26c7544a5..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// OK - /// - public class RequestBodyPostNullableRequiredStringBody200ApplicationJSON - { - - [JsonProperty("data")] - public string Data { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsResArgs.cs deleted file mode 100755 index c8c1e7ccc..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsResArgs.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPutBytesWithParamsResArgs - { - - [JsonProperty("queryStringParam")] - public string QueryStringParam { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDeepResForm.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDeepResForm.cs deleted file mode 100755 index 4ea0816e1..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDeepResForm.cs +++ /dev/null @@ -1,39 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPutMultipartDeepResForm - { - - [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/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.cs deleted file mode 100755 index 4d06530cc..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - - public class RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName - { - - [SpeakeasyMetadata("multipartForm:content")] - public byte[] Content { get; set; } = default!; - - [SpeakeasyMetadata("multipartForm:name=differentFileName")] - public string DifferentFileName { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileRequestBodyFile.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileRequestBodyFile.cs deleted file mode 100755 index 7baffa4ac..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileRequestBodyFile.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - - public class RequestBodyPutMultipartFileRequestBodyFile - { - - [SpeakeasyMetadata("multipartForm:content")] - public byte[] Content { get; set; } = default!; - - [SpeakeasyMetadata("multipartForm:name=file")] - public string File { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleResForm.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleResForm.cs deleted file mode 100755 index ba29591db..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleResForm.cs +++ /dev/null @@ -1,60 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPutMultipartSimpleResForm - { - - [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/SDK/Models/Operations/RequestBodyPutMultipartSimpleResHeaders.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleResHeaders.cs deleted file mode 100755 index 2627d0df8..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleResHeaders.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPutMultipartSimpleResHeaders - { - - [JsonProperty("Content-Type")] - public string ContentType { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsResArgs.cs b/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsResArgs.cs deleted file mode 100755 index 3eb7dc02b..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsResArgs.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - public class RequestBodyPutStringWithParamsResArgs - { - - [JsonProperty("queryStringParam")] - public string QueryStringParam { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.cs deleted file mode 100755 index c04678f9b..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.cs +++ /dev/null @@ -1,26 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System.Collections.Generic; - using System.Numerics; - - /// - /// OK - /// - public class ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON - { - - [JsonProperty("json")] - public Dictionary Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.cs deleted file mode 100755 index 913068720..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.cs +++ /dev/null @@ -1,26 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using NodaTime; - using System.Collections.Generic; - - /// - /// OK - /// - public class ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON - { - - [JsonProperty("json")] - public Dictionary Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.cs deleted file mode 100755 index 4f6575ffd..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.cs +++ /dev/null @@ -1,26 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Models.Shared; - using System.Collections.Generic; - - /// - /// OK - /// - public class ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON - { - - [JsonProperty("json")] - public Dictionary Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.cs deleted file mode 100755 index e9bbeaaf8..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.cs +++ /dev/null @@ -1,25 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System.Collections.Generic; - - /// - /// OK - /// - public class ResponseBodyAdditionalPropertiesPost200ApplicationJSON - { - - [JsonProperty("json")] - public Dictionary Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.cs deleted file mode 100755 index d097e2b86..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.cs +++ /dev/null @@ -1,25 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Models.Shared; - - /// - /// OK - /// - public class ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON - { - - [JsonProperty("json")] - public ObjWithZeroValueComplexTypePtrs Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/StatusGetXSpeakeasyErrors501ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/StatusGetXSpeakeasyErrors501ApplicationJSON.cs deleted file mode 100755 index a978bb3a1..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/StatusGetXSpeakeasyErrors501ApplicationJSON.cs +++ /dev/null @@ -1,31 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Models.Shared; - - /// - /// Not Implemented - /// - public class StatusGetXSpeakeasyErrors501ApplicationJSON - { - - [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/TypeFromAnchor.cs b/csharp-client-sdk/SDK/Models/Operations/TypeFromAnchor.cs deleted file mode 100755 index 519cf1920..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/TypeFromAnchor.cs +++ /dev/null @@ -1,30 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Models.Shared; - - /// - /// A successful response that contains the simpleObject sent in the request body - /// - public class TypeFromAnchor - { - - /// - /// 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/TypedParameterGenerationGetObj.cs b/csharp-client-sdk/SDK/Models/Operations/TypedParameterGenerationGetObj.cs deleted file mode 100755 index 9cf25d6ed..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/TypedParameterGenerationGetObj.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using SDK.Utils; - - public class TypedParameterGenerationGetObj - { - - [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/SDK/Models/Operations/UsageExamplePost200ApplicationJSON.cs b/csharp-client-sdk/SDK/Models/Operations/UsageExamplePost200ApplicationJSON.cs deleted file mode 100755 index 942031263..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePost200ApplicationJSON.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - - /// - /// A response body that contains the simpleObject sent in the request body - /// - public class UsageExamplePost200ApplicationJSON - { - - [JsonProperty("json")] - public UsageExamplePost200ApplicationJSONJSON Json { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePost200ApplicationJSONJSON.cs b/csharp-client-sdk/SDK/Models/Operations/UsageExamplePost200ApplicationJSONJSON.cs deleted file mode 100755 index f4cbe4683..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePost200ApplicationJSONJSON.cs +++ /dev/null @@ -1,39 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using SDK.Models.Shared; - - public class UsageExamplePost200ApplicationJSONJSON - { - - /// - /// 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/UsageExamplePostEnumParameter.cs b/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostEnumParameter.cs deleted file mode 100755 index 42e3cee2a..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostEnumParameter.cs +++ /dev/null @@ -1,61 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System; - - /// - /// An enum type - /// - public enum UsageExamplePostEnumParameter - { - [JsonProperty("value1")] - Value1, - [JsonProperty("value2")] - Value2, - [JsonProperty("value3")] - Value3, - } - - public static class UsageExamplePostEnumParameterExtension - { - public static string Value(this UsageExamplePostEnumParameter value) - { - return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString(); - } - - public static UsageExamplePostEnumParameter ToEnum(this string value) - { - foreach(var field in typeof(UsageExamplePostEnumParameter).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 UsageExamplePostEnumParameter) - { - return (UsageExamplePostEnumParameter)enumVal; - } - } - } - - throw new Exception($"Unknown value {value} for enum UsageExamplePostEnumParameter"); - } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostOptEnumParameter.cs b/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostOptEnumParameter.cs deleted file mode 100755 index dd67a6437..000000000 --- a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostOptEnumParameter.cs +++ /dev/null @@ -1,61 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Operations -{ - using Newtonsoft.Json; - using System; - - /// - /// An enum type - /// - public enum UsageExamplePostOptEnumParameter - { - [JsonProperty("value1")] - Value1, - [JsonProperty("value2")] - Value2, - [JsonProperty("value3")] - Value3, - } - - public static class UsageExamplePostOptEnumParameterExtension - { - public static string Value(this UsageExamplePostOptEnumParameter value) - { - return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString(); - } - - public static UsageExamplePostOptEnumParameter ToEnum(this string value) - { - foreach(var field in typeof(UsageExamplePostOptEnumParameter).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 UsageExamplePostOptEnumParameter) - { - return (UsageExamplePostOptEnumParameter)enumVal; - } - } - } - - throw new Exception($"Unknown value {value} for enum UsageExamplePostOptEnumParameter"); - } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/AuthServiceRequestBodyBasicAuth.cs b/csharp-client-sdk/SDK/Models/Shared/AuthServiceRequestBodyBasicAuth.cs deleted file mode 100755 index 45b8be337..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/AuthServiceRequestBodyBasicAuth.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - using Newtonsoft.Json; - - public class AuthServiceRequestBodyBasicAuth - { - - [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/SDK/Models/Shared/AuthServiceRequestBodyHeaderAuth.cs b/csharp-client-sdk/SDK/Models/Shared/AuthServiceRequestBodyHeaderAuth.cs deleted file mode 100755 index c2aa48690..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/AuthServiceRequestBodyHeaderAuth.cs +++ /dev/null @@ -1,24 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - using Newtonsoft.Json; - - public class AuthServiceRequestBodyHeaderAuth - { - - [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/DefaultsAndConstsConstEnumInt.cs b/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsConstEnumInt.cs deleted file mode 100755 index 3e9dd2202..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsConstEnumInt.cs +++ /dev/null @@ -1,20 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - - public enum DefaultsAndConstsConstEnumInt - { - One = 1, - Two = 2, - Three = 3, - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsConstEnumStr.cs b/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsConstEnumStr.cs deleted file mode 100755 index cdea13938..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsConstEnumStr.cs +++ /dev/null @@ -1,58 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - using Newtonsoft.Json; - using System; - - public enum DefaultsAndConstsConstEnumStr - { - [JsonProperty("one")] - One, - [JsonProperty("two")] - Two, - [JsonProperty("three")] - Three, - } - - public static class DefaultsAndConstsConstEnumStrExtension - { - public static string Value(this DefaultsAndConstsConstEnumStr value) - { - return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString(); - } - - public static DefaultsAndConstsConstEnumStr ToEnum(this string value) - { - foreach(var field in typeof(DefaultsAndConstsConstEnumStr).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 DefaultsAndConstsConstEnumStr) - { - return (DefaultsAndConstsConstEnumStr)enumVal; - } - } - } - - throw new Exception($"Unknown value {value} for enum DefaultsAndConstsConstEnumStr"); - } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsDefaultEnumInt.cs b/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsDefaultEnumInt.cs deleted file mode 100755 index 7260a5514..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsDefaultEnumInt.cs +++ /dev/null @@ -1,20 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - - public enum DefaultsAndConstsDefaultEnumInt - { - One = 1, - Two = 2, - Three = 3, - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsDefaultEnumStr.cs b/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsDefaultEnumStr.cs deleted file mode 100755 index 616a9785a..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsDefaultEnumStr.cs +++ /dev/null @@ -1,58 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - using Newtonsoft.Json; - using System; - - public enum DefaultsAndConstsDefaultEnumStr - { - [JsonProperty("one")] - One, - [JsonProperty("two")] - Two, - [JsonProperty("three")] - Three, - } - - public static class DefaultsAndConstsDefaultEnumStrExtension - { - public static string Value(this DefaultsAndConstsDefaultEnumStr value) - { - return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString(); - } - - public static DefaultsAndConstsDefaultEnumStr ToEnum(this string value) - { - foreach(var field in typeof(DefaultsAndConstsDefaultEnumStr).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 DefaultsAndConstsDefaultEnumStr) - { - return (DefaultsAndConstsDefaultEnumStr)enumVal; - } - } - } - - throw new Exception($"Unknown value {value} for enum DefaultsAndConstsDefaultEnumStr"); - } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/DeprecatedFieldInObjectDeprecatedEnum.cs b/csharp-client-sdk/SDK/Models/Shared/DeprecatedFieldInObjectDeprecatedEnum.cs deleted file mode 100755 index 2dd65bb43..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/DeprecatedFieldInObjectDeprecatedEnum.cs +++ /dev/null @@ -1,58 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - using Newtonsoft.Json; - using System; - [Obsolete("This enum is deprecated.")] - public enum DeprecatedFieldInObjectDeprecatedEnum - { - [JsonProperty("a")] - A, - [JsonProperty("b")] - B, - [JsonProperty("c")] - C, - } - - public static class DeprecatedFieldInObjectDeprecatedEnumExtension - { - public static string Value(this DeprecatedFieldInObjectDeprecatedEnum value) - { - return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString(); - } - - public static DeprecatedFieldInObjectDeprecatedEnum ToEnum(this string value) - { - foreach(var field in typeof(DeprecatedFieldInObjectDeprecatedEnum).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 DeprecatedFieldInObjectDeprecatedEnum) - { - return (DeprecatedFieldInObjectDeprecatedEnum)enumVal; - } - } - } - - throw new Exception($"Unknown value {value} for enum DeprecatedFieldInObjectDeprecatedEnum"); - } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/ExampleResourceChocolates.cs b/csharp-client-sdk/SDK/Models/Shared/ExampleResourceChocolates.cs deleted file mode 100755 index 21e1151d0..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/ExampleResourceChocolates.cs +++ /dev/null @@ -1,21 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - using Newtonsoft.Json; - - public class ExampleResourceChocolates - { - - [JsonProperty("description")] - public string Description { get; set; } = default!; - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/ExampleResourceEnumNumber.cs b/csharp-client-sdk/SDK/Models/Shared/ExampleResourceEnumNumber.cs deleted file mode 100755 index 8612cbddb..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/ExampleResourceEnumNumber.cs +++ /dev/null @@ -1,20 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - - public enum ExampleResourceEnumNumber - { - One = 1, - Two = 2, - Three = 3, - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/ExampleResourceEnumStr.cs b/csharp-client-sdk/SDK/Models/Shared/ExampleResourceEnumStr.cs deleted file mode 100755 index 04cbcc235..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/ExampleResourceEnumStr.cs +++ /dev/null @@ -1,58 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - using Newtonsoft.Json; - using System; - - public enum ExampleResourceEnumStr - { - [JsonProperty("one")] - One, - [JsonProperty("two")] - Two, - [JsonProperty("three")] - Three, - } - - public static class ExampleResourceEnumStrExtension - { - public static string Value(this ExampleResourceEnumStr value) - { - return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString(); - } - - public static ExampleResourceEnumStr ToEnum(this string value) - { - foreach(var field in typeof(ExampleResourceEnumStr).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 ExampleResourceEnumStr) - { - return (ExampleResourceEnumStr)enumVal; - } - } - } - - throw new Exception($"Unknown value {value} for enum ExampleResourceEnumStr"); - } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/HttpBinSimpleJsonObjectSlideshow.cs b/csharp-client-sdk/SDK/Models/Shared/HttpBinSimpleJsonObjectSlideshow.cs deleted file mode 100755 index 2527e3145..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/HttpBinSimpleJsonObjectSlideshow.cs +++ /dev/null @@ -1,31 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - using Newtonsoft.Json; - using System.Collections.Generic; - - public class HttpBinSimpleJsonObjectSlideshow - { - - [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/SDK/Models/Shared/HttpBinSimpleJsonObjectSlideshowSlides.cs b/csharp-client-sdk/SDK/Models/Shared/HttpBinSimpleJsonObjectSlideshowSlides.cs deleted file mode 100755 index 867f9ca23..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/HttpBinSimpleJsonObjectSlideshowSlides.cs +++ /dev/null @@ -1,28 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - using Newtonsoft.Json; - using System.Collections.Generic; - - public class HttpBinSimpleJsonObjectSlideshowSlides - { - - [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/SDK/Models/Shared/ReadWriteObjectInput.cs b/csharp-client-sdk/SDK/Models/Shared/ReadWriteObjectInput.cs deleted file mode 100755 index 11b25a582..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/ReadWriteObjectInput.cs +++ /dev/null @@ -1,27 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - using Newtonsoft.Json; - - public class ReadWriteObjectInput - { - - [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/SimpleObjectCamelCaseInt32EnumVal.cs b/csharp-client-sdk/SDK/Models/Shared/SimpleObjectCamelCaseInt32EnumVal.cs deleted file mode 100755 index 2f1d4681d..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/SimpleObjectCamelCaseInt32EnumVal.cs +++ /dev/null @@ -1,23 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - - /// - /// An int32 enum property. - /// - public enum SimpleObjectCamelCaseInt32EnumVal - { - FiftyFive = 55, - SixtyNine = 69, - OneHundredAndEightyOne = 181, - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/SimpleObjectCamelCaseIntEnumVal.cs b/csharp-client-sdk/SDK/Models/Shared/SimpleObjectCamelCaseIntEnumVal.cs deleted file mode 100755 index 8f0186d82..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/SimpleObjectCamelCaseIntEnumVal.cs +++ /dev/null @@ -1,23 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - - /// - /// An integer enum property. - /// - public enum SimpleObjectCamelCaseIntEnumVal - { - One = 1, - Two = 2, - Three = 3, - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/SimpleObjectInt32Enum.cs b/csharp-client-sdk/SDK/Models/Shared/SimpleObjectInt32Enum.cs deleted file mode 100755 index eab52264d..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/SimpleObjectInt32Enum.cs +++ /dev/null @@ -1,23 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - - /// - /// An int32 enum property. - /// - public enum SimpleObjectInt32Enum - { - FiftyFive = 55, - SixtyNine = 69, - OneHundredAndEightyOne = 181, - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/SimpleObjectIntEnum.cs b/csharp-client-sdk/SDK/Models/Shared/SimpleObjectIntEnum.cs deleted file mode 100755 index 50c99e0c4..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/SimpleObjectIntEnum.cs +++ /dev/null @@ -1,23 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - - /// - /// An integer enum property. - /// - public enum SimpleObjectIntEnum - { - One = 1, - Two = 2, - Three = 3, - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Models/Shared/TypedObject1Type.cs b/csharp-client-sdk/SDK/Models/Shared/TypedObject1Type.cs deleted file mode 100755 index 8a4f5b4d2..000000000 --- a/csharp-client-sdk/SDK/Models/Shared/TypedObject1Type.cs +++ /dev/null @@ -1,54 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK.Models.Shared -{ - using Newtonsoft.Json; - using System; - - public enum TypedObject1Type - { - [JsonProperty("obj1")] - Obj1, - } - - public static class TypedObject1TypeExtension - { - public static string Value(this TypedObject1Type value) - { - return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString(); - } - - public static TypedObject1Type ToEnum(this string value) - { - foreach(var field in typeof(TypedObject1Type).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 TypedObject1Type) - { - return (TypedObject1Type)enumVal; - } - } - } - - throw new Exception($"Unknown value {value} for enum TypedObject1Type"); - } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/Nest.cs b/csharp-client-sdk/SDK/Nest.cs deleted file mode 100755 index 539b7fa92..000000000 --- a/csharp-client-sdk/SDK/Nest.cs +++ /dev/null @@ -1,44 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK -{ - using SDK.Utils; - using System; - - public interface INestSDK - { - public INestFirstSDK First { get; } - } - - public class NestSDK: INestSDK - { - 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 _openapiDocVersion = "0.1.0"; - private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi"; - private string _serverUrl = ""; - private ISpeakeasyHttpClient _defaultClient; - private ISpeakeasyHttpClient _securityClient; - public INestFirstSDK First { get; private set; } - - public NestSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) - { - _defaultClient = defaultClient; - _securityClient = securityClient; - _serverUrl = serverUrl; - Config = config; - First = new NestFirstSDK(_defaultClient, _securityClient, _serverUrl, Config); - } - - } -} \ No newline at end of file diff --git a/csharp-client-sdk/SDK/NestFirst.cs b/csharp-client-sdk/SDK/NestFirst.cs deleted file mode 100755 index 9256f77b0..000000000 --- a/csharp-client-sdk/SDK/NestFirst.cs +++ /dev/null @@ -1,81 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK -{ - using SDK.Models.Operations; - using SDK.Utils; - using System.Net.Http; - using System.Threading.Tasks; - using System; - - public interface INestFirstSDK - { - Task GetAsync(); - } - - public class NestFirstSDK: INestFirstSDK - { - 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 _openapiDocVersion = "0.1.0"; - private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi"; - private string _serverUrl = ""; - private ISpeakeasyHttpClient _defaultClient; - private ISpeakeasyHttpClient _securityClient; - - public NestFirstSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) - { - _defaultClient = defaultClient; - _securityClient = securityClient; - _serverUrl = serverUrl; - Config = config; - } - - - public async Task GetAsync() - { - string baseUrl = _serverUrl; - if (baseUrl.EndsWith("/")) - { - baseUrl = baseUrl.Substring(0, baseUrl.Length - 1); - } - var urlString = baseUrl + "/anything/nest/first"; - - - 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 NestFirstGetResponse - { - 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/SDK/Nested.cs b/csharp-client-sdk/SDK/Nested.cs deleted file mode 100755 index 51001307e..000000000 --- a/csharp-client-sdk/SDK/Nested.cs +++ /dev/null @@ -1,87 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK -{ - using SDK.Models.Operations; - using SDK.Utils; - using System.Net.Http; - using System.Threading.Tasks; - using System; - - public interface INestedSDK - { - public INestedFirstSDK First { get; } - public INestedSecondSDK Second { get; } - Task GetAsync(); - } - - public class NestedSDK: INestedSDK - { - 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 _openapiDocVersion = "0.1.0"; - private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi"; - private string _serverUrl = ""; - private ISpeakeasyHttpClient _defaultClient; - private ISpeakeasyHttpClient _securityClient; - public INestedFirstSDK First { get; private set; } - public INestedSecondSDK Second { get; private set; } - - public NestedSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) - { - _defaultClient = defaultClient; - _securityClient = securityClient; - _serverUrl = serverUrl; - Config = config; - First = new NestedFirstSDK(_defaultClient, _securityClient, _serverUrl, Config); - Second = new NestedSecondSDK(_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/SDK/NestedFirst.cs b/csharp-client-sdk/SDK/NestedFirst.cs deleted file mode 100755 index 3a3985513..000000000 --- a/csharp-client-sdk/SDK/NestedFirst.cs +++ /dev/null @@ -1,81 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK -{ - using SDK.Models.Operations; - using SDK.Utils; - using System.Net.Http; - using System.Threading.Tasks; - using System; - - public interface INestedFirstSDK - { - Task GetAsync(); - } - - public class NestedFirstSDK: INestedFirstSDK - { - 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 _openapiDocVersion = "0.1.0"; - private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi"; - private string _serverUrl = ""; - private ISpeakeasyHttpClient _defaultClient; - private ISpeakeasyHttpClient _securityClient; - - public NestedFirstSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) - { - _defaultClient = defaultClient; - _securityClient = securityClient; - _serverUrl = serverUrl; - Config = config; - } - - - public async Task GetAsync() - { - string baseUrl = _serverUrl; - if (baseUrl.EndsWith("/")) - { - baseUrl = baseUrl.Substring(0, baseUrl.Length - 1); - } - var urlString = baseUrl + "/anything/nested/first"; - - - 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 NestedFirstGetResponse - { - 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/SDK/NestedSecond.cs b/csharp-client-sdk/SDK/NestedSecond.cs deleted file mode 100755 index 12335a00a..000000000 --- a/csharp-client-sdk/SDK/NestedSecond.cs +++ /dev/null @@ -1,81 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK -{ - using SDK.Models.Operations; - using SDK.Utils; - using System.Net.Http; - using System.Threading.Tasks; - using System; - - public interface INestedSecondSDK - { - Task GetAsync(); - } - - public class NestedSecondSDK: INestedSecondSDK - { - 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 _openapiDocVersion = "0.1.0"; - private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi"; - private string _serverUrl = ""; - private ISpeakeasyHttpClient _defaultClient; - private ISpeakeasyHttpClient _securityClient; - - public NestedSecondSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config) - { - _defaultClient = defaultClient; - _securityClient = securityClient; - _serverUrl = serverUrl; - Config = config; - } - - - public async Task GetAsync() - { - string baseUrl = _serverUrl; - if (baseUrl.EndsWith("/")) - { - baseUrl = baseUrl.Substring(0, baseUrl.Length - 1); - } - var urlString = baseUrl + "/anything/nested/second"; - - - 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 NestedSecondGetResponse - { - 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/SDK/SDK.csproj b/csharp-client-sdk/SDK/SDK.csproj deleted file mode 100755 index 3b7e337c2..000000000 --- a/csharp-client-sdk/SDK/SDK.csproj +++ /dev/null @@ -1,34 +0,0 @@ - - - true - openapi - 0.1.2 - 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/SDKSDK.cs b/csharp-client-sdk/SDK/SDKSDK.cs deleted file mode 100755 index 1828dce82..000000000 --- a/csharp-client-sdk/SDK/SDKSDK.cs +++ /dev/null @@ -1,303 +0,0 @@ - -//------------------------------------------------------------------------------ -// -// 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 SDK -{ - using Newtonsoft.Json; - using SDK.Models.Operations; - using SDK.Models.Shared; - using SDK.Utils; - using System.Collections.Generic; - using System.Net.Http.Headers; - using System.Net.Http; - using System.Threading.Tasks; - using System; - - /// - /// Test: Test Summary - /// - /// - /// Some test description.
- /// About our test document. - ///
- /// - /// https://speakeasyapi.dev/docs/home} - Speakeasy Docs - ///
- public interface ISDKSDK - { - - /// - /// Endpoints for testing authentication. - /// - public IAuthSDK Auth { get; } - - /// - /// Endpoints for testing authentication. - /// - public IAuthNewSDK AuthNew { get; } - - /// - /// Testing for documentation extensions and tooling. - /// - public IDocumentationSDK Documentation { get; } - - /// - /// Endpoints for testing error responses. - /// - public IErrorsSDK Errors { get; } - public IFirstSDK First { get; } - - /// - /// Endpoints for testing flattening through request body and parameter combinations. - /// - public IFlatteningSDK Flattening { get; } - - /// - /// Endpoints for purely testing valid generation behavior. - /// - public IGenerationSDK Generation { get; } - - /// - /// Endpoints for testing global parameters. - /// - public IGlobalsSDK Globals { get; } - public INestSDK Nest { get; } - public INestedSDK Nested { get; } - - /// - /// Endpoints for testing the pagination extension - /// - public IPaginationSDK Pagination { get; } - - /// - /// Endpoints for testing parameters. - /// - public IParametersSDK Parameters { get; } - - /// - /// Endpoints for testing request bodies. - /// - public IRequestBodiesSDK RequestBodies { get; } - public IResourceSDK Resource { get; } - - /// - /// Endpoints for testing response bodies. - /// - public IResponseBodiesSDK ResponseBodies { get; } - - /// - /// Endpoints for testing retries. - /// - public IRetriesSDK Retries { get; } - public ISecondSDK Second { get; } - - /// - /// Endpoints for testing servers. - /// - public IServersSDK Servers { get; } - - /// - /// Endpoints for testing telemetry. - /// - public ITelemetrySDK Telemetry { get; } - - /// - /// Endpoints for testing union types. - /// - public IUnionsSDK Unions { get; } - Task PutAnythingIgnoredGenerationAsync(string request); - Task ResponseBodyJsonGetAsync(); - } - - public class SDKConfig - { - public long? GlobalPathParam; - public string? GlobalQueryParam; - } - - /// - /// Test: Test Summary - /// - /// - /// Some test description.
- /// About our test document. - ///
- /// - /// https://speakeasyapi.dev/docs/home} - Speakeasy Docs - ///
- public class SDKSDK: ISDKSDK - { - public SDKConfig Config { get; private set; } - public static List ServerList = new List() - { - "http://localhost:35123", - "http://broken", - "http://{hostname}:{port}", - "http://localhost:35123/anything/{something}", - "{protocol}://{hostname}:{port}", - }; - - private const string _language = "csharp"; - private const string _sdkVersion = "0.1.2"; - private const string _sdkGenVersion = "2.173.0"; - 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 string _serverUrl = ""; - private ISpeakeasyHttpClient _defaultClient; - private ISpeakeasyHttpClient _securityClient; - public IAuthSDK Auth { get; private set; } - public IAuthNewSDK AuthNew { get; private set; } - public IDocumentationSDK Documentation { get; private set; } - public IErrorsSDK Errors { get; private set; } - public IFirstSDK First { get; private set; } - public IFlatteningSDK Flattening { get; private set; } - public IGenerationSDK Generation { get; private set; } - public IGlobalsSDK Globals { get; private set; } - public INestSDK Nest { get; private set; } - public INestedSDK Nested { get; private set; } - public IPaginationSDK Pagination { get; private set; } - public IParametersSDK Parameters { get; private set; } - public IRequestBodiesSDK RequestBodies { get; private set; } - public IResourceSDK Resource { get; private set; } - public IResponseBodiesSDK ResponseBodies { get; private set; } - public IRetriesSDK Retries { get; private set; } - public ISecondSDK Second { get; private set; } - public IServersSDK Servers { get; private set; } - public ITelemetrySDK Telemetry { get; private set; } - public IUnionsSDK Unions { get; private set; } - - public SDKSDK(Security? security = null, long? globalPathParam = null, string? globalQueryParam = null, string? serverUrl = null, ISpeakeasyHttpClient? client = null) - { - _serverUrl = serverUrl ?? SDKSDK.ServerList[0]; - - _defaultClient = new SpeakeasyHttpClient(client); - _securityClient = _defaultClient; - - if(security != null) - { - _securityClient = SecuritySerializer.Apply(_defaultClient, security); - } - - Config = new SDKConfig() - { - GlobalPathParam = globalPathParam, - GlobalQueryParam = globalQueryParam, - }; - - Auth = new AuthSDK(_defaultClient, _securityClient, _serverUrl, Config); - AuthNew = new AuthNewSDK(_defaultClient, _securityClient, _serverUrl, Config); - Documentation = new DocumentationSDK(_defaultClient, _securityClient, _serverUrl, Config); - Errors = new ErrorsSDK(_defaultClient, _securityClient, _serverUrl, Config); - First = new FirstSDK(_defaultClient, _securityClient, _serverUrl, Config); - Flattening = new FlatteningSDK(_defaultClient, _securityClient, _serverUrl, Config); - Generation = new GenerationSDK(_defaultClient, _securityClient, _serverUrl, Config); - Globals = new GlobalsSDK(_defaultClient, _securityClient, _serverUrl, Config); - Nest = new NestSDK(_defaultClient, _securityClient, _serverUrl, Config); - Nested = new NestedSDK(_defaultClient, _securityClient, _serverUrl, Config); - Pagination = new PaginationSDK(_defaultClient, _securityClient, _serverUrl, Config); - Parameters = new ParametersSDK(_defaultClient, _securityClient, _serverUrl, Config); - RequestBodies = new RequestBodiesSDK(_defaultClient, _securityClient, _serverUrl, Config); - Resource = new ResourceSDK(_defaultClient, _securityClient, _serverUrl, Config); - ResponseBodies = new ResponseBodiesSDK(_defaultClient, _securityClient, _serverUrl, Config); - Retries = new RetriesSDK(_defaultClient, _securityClient, _serverUrl, Config); - Second = new SecondSDK(_defaultClient, _securityClient, _serverUrl, Config); - Servers = new ServersSDK(_defaultClient, _securityClient, _serverUrl, Config); - Telemetry = new TelemetrySDK(_defaultClient, _securityClient, _serverUrl, Config); - Unions = new UnionsSDK(_defaultClient, _securityClient, _serverUrl, Config); - } - - public async Task PutAnythingIgnoredGenerationAsync(string request) - { - string baseUrl = _serverUrl; - if (baseUrl.EndsWith("/")) - { - baseUrl = baseUrl.Substring(0, baseUrl.Length - 1); - } - var urlString = baseUrl + "/anything/ignoredGeneration"; - - - var httpRequest = new HttpRequestMessage(HttpMethod.Put, urlString); - httpRequest.Headers.Add("x-speakeasy-user-agent", _userAgent); - - var serializedBody = RequestBodySerializer.Serialize(request, "Request", "json"); - if (serializedBody == null) - { - throw new ArgumentNullException("request body is required"); - } - else - { - httpRequest.Content = serializedBody; - } - - var client = _securityClient; - - var httpResponse = await client.SendAsync(httpRequest); - - var contentType = httpResponse.Content.Headers.ContentType?.MediaType; - - var response = new PutAnythingIgnoredGenerationResponse - { - StatusCode = (int)httpResponse.StatusCode, - ContentType = contentType, - RawResponse = httpResponse - }; - - if((response.StatusCode == 200)) - { - if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) - { - response.PutAnythingIgnoredGeneration200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }}); - } - - return response; - } - return response; - } - - public async Task ResponseBodyJsonGetAsync() - { - string baseUrl = _serverUrl; - if (baseUrl.EndsWith("/")) - { - baseUrl = baseUrl.Substring(0, baseUrl.Length - 1); - } - var urlString = baseUrl + "/json"; - - - 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 ResponseBodyJsonGetResponse - { - StatusCode = (int)httpResponse.StatusCode, - ContentType = contentType, - RawResponse = httpResponse - }; - - if((response.StatusCode == 200)) - { - if(Utilities.IsContentTypeMatch("application/json",response.ContentType)) - { - response.HttpBinSimpleJsonObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }}); - } - - return response; - } - return response; - } - } -} \ No newline at end of file diff --git a/csharp-client-sdk/Tests/Tests.csproj b/csharp-client-sdk/Tests/Tests.csproj index 4cabb93cc..b692dddbf 100755 --- a/csharp-client-sdk/Tests/Tests.csproj +++ b/csharp-client-sdk/Tests/Tests.csproj @@ -19,6 +19,6 @@ - + \ No newline at end of file diff --git a/csharp-client-sdk/TestsCommon/Tests.csproj b/csharp-client-sdk/TestsCommon/Tests.csproj index 4cabb93cc..b692dddbf 100755 --- a/csharp-client-sdk/TestsCommon/Tests.csproj +++ b/csharp-client-sdk/TestsCommon/Tests.csproj @@ -19,6 +19,6 @@ - + \ No newline at end of file diff --git a/csharp-client-sdk/TestsPrimary/AuthShould.cs b/csharp-client-sdk/TestsPrimary/AuthShould.cs index 9057a4a29..db45fe5f0 100755 --- a/csharp-client-sdk/TestsPrimary/AuthShould.cs +++ b/csharp-client-sdk/TestsPrimary/AuthShould.cs @@ -8,9 +8,9 @@ // //------------------------------------------------------------------------------ using Xunit; -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; using System.Collections.Generic; using System.Threading.Tasks; @@ -21,17 +21,13 @@ public async Task BasicAuth() { CommonHelpers.RecordTest("auth-basic-auth"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.BasicAuthNewAsync( new BasicAuthNewSecurity() { Username = "testUser", Password = "testPass" }, new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() - { - Username = "testUser", - Password = "testPass" - } + BasicAuth = new BasicAuth() { Username = "testUser", Password = "testPass" } } ); @@ -44,14 +40,14 @@ public async Task ApiKeyAuthGlobal() { CommonHelpers.RecordTest("auth-api-key-auth-global"); - var sdk = new SDKSDK(security: new Security() { ApiKeyAuthNew = "test_api_key" }); + var sdk = new SDK(security: new Security() { ApiKeyAuthNew = "test_api_key" }); var res = await sdk.AuthNew.ApiKeyAuthGlobalNewAsync( new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { ExpectedValue = "test_api_key", HeaderName = "x-api-key" @@ -69,7 +65,7 @@ public async Task ApiKeyAuthOperation() { CommonHelpers.RecordTest("auth-api-key-auth-operation"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Auth.ApiKeyAuthAsync( new ApiKeyAuthSecurity() { ApiKeyAuth = "Bearer testToken" } @@ -86,7 +82,7 @@ public async Task BearerAuthOperationWithPrefix() { CommonHelpers.RecordTest("auth-bearer-auth-operation-with-prefix"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Auth.BearerAuthAsync( new BearerAuthSecurity() { BearerAuth = "Bearer testToken" } @@ -103,7 +99,7 @@ public async Task BearerAuthOperationWithoutPrefix() { CommonHelpers.RecordTest("auth-bearer-auth-operation-without-prefix"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Auth.BearerAuthAsync( new BearerAuthSecurity() { BearerAuth = "testToken" } @@ -120,15 +116,15 @@ public async Task Oauth2Auth() { CommonHelpers.RecordTest("auth-oauth2-auth"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.Oauth2AuthNewAsync( new Oauth2AuthNewSecurity() { Oauth2 = "Bearer testToken" }, new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "Authorization", ExpectedValue = "Bearer testToken" @@ -145,15 +141,15 @@ public async Task OpenIdConnectAuth() { CommonHelpers.RecordTest("auth-open-id-connect-auth"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.OpenIdConnectAuthNewAsync( new OpenIdConnectAuthNewSecurity() { OpenIdConnect = "Bearer testToken" }, new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "Authorization", ExpectedValue = "Bearer testToken" @@ -170,7 +166,7 @@ public async Task MultipleSimpleSchemeAuth() { CommonHelpers.RecordTest("auth-multiple-simple-scheme-auth"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.MultipleSimpleSchemeAuthAsync( new MultipleSimpleSchemeAuthSecurity() @@ -180,14 +176,14 @@ public async Task MultipleSimpleSchemeAuth() }, new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "x-api-key", ExpectedValue = "test_api_key" }, - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "Authorization", ExpectedValue = "Bearer testToken" @@ -204,7 +200,7 @@ public async Task MultipleMixedSchemeAuth() { CommonHelpers.RecordTest("auth-multiple-mixed-scheme-auth"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.MultipleMixedSchemeAuthAsync( new MultipleMixedSchemeAuthSecurity() @@ -214,15 +210,15 @@ public async Task MultipleMixedSchemeAuth() }, new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "x-api-key", ExpectedValue = "test_api_key" } }, - BasicAuth = new AuthServiceRequestBodyBasicAuth() + BasicAuth = new BasicAuth() { Username = "testUser", Password = "testPass" @@ -238,15 +234,15 @@ public async Task MultipleSimpleOptionsAuthFirstOption() { CommonHelpers.RecordTest("auth-multiple-simple-options-auth-first-option"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.MultipleSimpleOptionsAuthAsync( new MultipleSimpleOptionsAuthSecurity { ApiKeyAuthNew = "test_api_key" }, new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "x-api-key", ExpectedValue = "test_api_key" @@ -263,15 +259,15 @@ public async Task MultipleSimpleOptionsAuthSecondOption() { CommonHelpers.RecordTest("auth-multiple-simple-options-auth-second-option"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.MultipleSimpleOptionsAuthAsync( new MultipleSimpleOptionsAuthSecurity { Oauth2 = "Bearer testToken" }, new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "Authorization", ExpectedValue = "Bearer testToken" @@ -288,15 +284,15 @@ public async Task MultipleMixedOptionsAuthFirstOption() { CommonHelpers.RecordTest("auth-multiple-mixed-options-auth-first-option"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.MultipleMixedOptionsAuthAsync( new MultipleMixedOptionsAuthSecurity() { ApiKeyAuthNew = "test_api_key" }, new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "x-api-key", ExpectedValue = "test_api_key" @@ -313,7 +309,7 @@ public async Task MultipleMixedOptionsAuthSecondOption() { CommonHelpers.RecordTest("auth-multiple-mixed-options-auth-second-option"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.MultipleMixedOptionsAuthAsync( new MultipleMixedOptionsAuthSecurity() @@ -322,7 +318,7 @@ public async Task MultipleMixedOptionsAuthSecondOption() }, new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() + BasicAuth = new BasicAuth() { Username = "testUser", Password = "testPass" @@ -338,7 +334,7 @@ public async Task MultipleOptionsWithSimpleSchemesAuthFirstOption() { CommonHelpers.RecordTest("auth-multiple-options-with-simple-schemes-auth-first-option"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.MultipleOptionsWithSimpleSchemesAuthAsync( new MultipleOptionsWithSimpleSchemesAuthSecurity() @@ -351,14 +347,14 @@ public async Task MultipleOptionsWithSimpleSchemesAuthFirstOption() }, new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "x-api-key", ExpectedValue = "test_api_key" }, - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "Authorization", ExpectedValue = "Bearer testToken" @@ -375,7 +371,7 @@ public async Task MultipleOptionsWithSimpleSchemesAuthSecondOption() { CommonHelpers.RecordTest("auth-multiple-options-with-simple-schemes-auth-second-option"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.MultipleOptionsWithSimpleSchemesAuthAsync( new MultipleOptionsWithSimpleSchemesAuthSecurity() @@ -388,14 +384,14 @@ public async Task MultipleOptionsWithSimpleSchemesAuthSecondOption() }, new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "x-api-key", ExpectedValue = "test_api_key" }, - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "Authorization", ExpectedValue = "Bearer testToken" @@ -412,7 +408,7 @@ public async Task MultipleOptionsWithMixedSchemesAuthFirstOption() { CommonHelpers.RecordTest("auth-multiple-options-with-mixed-schemes-auth-first-option"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.MultipleOptionsWithMixedSchemesAuthAsync( new MultipleOptionsWithMixedSchemesAuthSecurity() @@ -425,14 +421,14 @@ public async Task MultipleOptionsWithMixedSchemesAuthFirstOption() }, new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "x-api-key", ExpectedValue = "test_api_key" }, - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "Authorization", ExpectedValue = "Bearer testToken" @@ -449,7 +445,7 @@ public async Task MultipleOptionsWithMixedSchemesAuthSecondOption() { CommonHelpers.RecordTest("auth-multiple-options-with-mixed-schemes-auth-second-option"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.AuthNew.MultipleOptionsWithMixedSchemesAuthAsync( new MultipleOptionsWithMixedSchemesAuthSecurity() @@ -466,15 +462,15 @@ public async Task MultipleOptionsWithMixedSchemesAuthSecondOption() }, new AuthServiceRequestBody() { - HeaderAuth = new List() + HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() + new HeaderAuth() { HeaderName = "x-api-key", ExpectedValue = "test_api_key" } }, - BasicAuth = new AuthServiceRequestBodyBasicAuth() + BasicAuth = new BasicAuth() { Username = "testUser", Password = "testPass" @@ -484,4 +480,4 @@ public async Task MultipleOptionsWithMixedSchemesAuthSecondOption() Assert.Equal(200, res.StatusCode); } -} \ No newline at end of file +} diff --git a/csharp-client-sdk/TestsPrimary/FlatteningShould.cs b/csharp-client-sdk/TestsPrimary/FlatteningShould.cs index e221e17fc..e14f81c1b 100755 --- a/csharp-client-sdk/TestsPrimary/FlatteningShould.cs +++ b/csharp-client-sdk/TestsPrimary/FlatteningShould.cs @@ -8,8 +8,8 @@ // //------------------------------------------------------------------------------ using Xunit; -using SDK; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Operations; using System.Threading.Tasks; public class FlatteningShould @@ -19,7 +19,7 @@ public async Task ComponentBodyAndParamNoConflict() { CommonHelpers.RecordTest("flattening-component-body-and-param-no-conflict"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Flattening.ComponentBodyAndParamNoConflictAsync( "param test", @@ -37,7 +37,7 @@ public async Task ComponentBodyAndParamConflict() { CommonHelpers.RecordTest("flattening-component-body-and-param-conflict"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Flattening.ComponentBodyAndParamConflictAsync( Helpers.CreateSimpleObject(), @@ -55,7 +55,7 @@ public async Task InlineBodyAndParamConflict() { CommonHelpers.RecordTest("flattening-inline-body-and-param-conflict"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Flattening.InlineBodyAndParamConflictAsync( new InlineBodyAndParamConflictRequestBody() { Str = "body test" }, @@ -72,7 +72,7 @@ public async Task InlineBodyAndParamNoConflict() { CommonHelpers.RecordTest("flattening-inline-body-and-param-no-conflict"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Flattening.InlineBodyAndParamNoConflictAsync( new InlineBodyAndParamNoConflictRequestBody() { BodyStr = "body test" }, @@ -89,7 +89,7 @@ public async Task ConflictingParams() { CommonHelpers.RecordTest("flattening-conflicting-params"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Flattening.ConflictingParamsAsync("pathParam", "queryParam"); @@ -97,4 +97,4 @@ public async Task ConflictingParams() Assert.Contains("/pathParam?", res.Res.Url); Assert.Equal("queryParam", res.Res.Args["str"]); } -} \ No newline at end of file +} diff --git a/csharp-client-sdk/TestsPrimary/GlobalsShould.cs b/csharp-client-sdk/TestsPrimary/GlobalsShould.cs index 935f93983..c84746c67 100755 --- a/csharp-client-sdk/TestsPrimary/GlobalsShould.cs +++ b/csharp-client-sdk/TestsPrimary/GlobalsShould.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ using Xunit; -using SDK; +using Openapi; using System.Threading.Tasks; public class GlobalsShould @@ -18,7 +18,7 @@ public async Task GlobalsQueryParameterGetUsesGlobal() { CommonHelpers.RecordTest("globals-query-parameter-get-uses-global"); - var sdk = new SDKSDK(globalQueryParam: "test"); + var sdk = new SDK(globalQueryParam: "test"); var res = await sdk.Globals.GlobalsQueryParameterGetAsync(); @@ -31,7 +31,7 @@ public async Task GlobalsQueryParameterGetUsesLocal() { CommonHelpers.RecordTest("globals-query-parameter-get-uses-local"); - var sdk = new SDKSDK(globalQueryParam: "test"); + var sdk = new SDK(globalQueryParam: "test"); var res = await sdk.Globals.GlobalsQueryParameterGetAsync("local"); @@ -44,7 +44,7 @@ public async Task GlobalPathParameterGetUsesGlobal() { CommonHelpers.RecordTest("globals-path-parameter-get-uses-global"); - var sdk = new SDKSDK(globalPathParam: 1); + var sdk = new SDK(globalPathParam: 1); var res = await sdk.Globals.GlobalPathParameterGetAsync(); @@ -57,7 +57,7 @@ public async Task GlobalPathParameterGetUsesLocal() { CommonHelpers.RecordTest("globals-path-parameter-get-uses-local"); - var sdk = new SDKSDK(globalPathParam: 1); + var sdk = new SDK(globalPathParam: 1); var res = await sdk.Globals.GlobalPathParameterGetAsync(2); diff --git a/csharp-client-sdk/TestsPrimary/Helpers.cs b/csharp-client-sdk/TestsPrimary/Helpers.cs index 2dbd7bc16..f2215faee 100755 --- a/csharp-client-sdk/TestsPrimary/Helpers.cs +++ b/csharp-client-sdk/TestsPrimary/Helpers.cs @@ -14,8 +14,8 @@ using System.Text; using Newtonsoft.Json; using Xunit; -using SDK.Models.Shared; -using SDK.Utils; +using Openapi.Models.Shared; +using Openapi.Utils; using NodaTime; public class Helpers @@ -28,11 +28,11 @@ public static SimpleObject CreateSimpleObject() => BoolOpt = true, Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), DateTime = DateTime.Parse("2020-01-01T00:00:00.0000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Enum = Openapi.Models.Shared.Enum.One, Float32 = 1.1F, Int32 = 1, - Int32Enum = SimpleObjectInt32Enum.FiftyFive, - IntEnum = SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, IntOptNull = null, Int = 1, Num = 1.1D, @@ -68,11 +68,11 @@ public static SimpleObjectCamelCase CreateSimpleObjectCamelCase() => BoolOptVal = true, DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), DateTimeVal = DateTime.Parse("2020-01-01T00:00:00.0000001Z"), - EnumVal = SDK.Models.Shared.Enum.One, + EnumVal = Openapi.Models.Shared.Enum.One, Float32Val = 1.1F, Int32Val = 1, - Int32EnumVal = SimpleObjectCamelCaseInt32EnumVal.FiftyFive, - IntEnumVal = SimpleObjectCamelCaseIntEnumVal.Two, + Int32EnumVal = Int32EnumVal.FiftyFive, + IntEnumVal = IntEnumVal.Two, IntOptNullVal = null, IntVal = 1, NumVal = 1.1D, diff --git a/csharp-client-sdk/TestsPrimary/MultiLevelShould.cs b/csharp-client-sdk/TestsPrimary/MultiLevelShould.cs index 231489f11..0cd0584d6 100755 --- a/csharp-client-sdk/TestsPrimary/MultiLevelShould.cs +++ b/csharp-client-sdk/TestsPrimary/MultiLevelShould.cs @@ -7,14 +7,9 @@ // the code is regenerated. // //------------------------------------------------------------------------------ -using System.Collections.Generic; -using System.Linq; -using System.Numerics; -using System.Text; using System.Threading.Tasks; -using System.Text.RegularExpressions; using Xunit; -using SDK; +using Openapi; public class MultiLevelShould { @@ -22,7 +17,7 @@ public class MultiLevelShould public async Task MultiLevelTest() { CommonHelpers.RecordTest("multi-level-grouping"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Nested.First.GetAsync(); diff --git a/csharp-client-sdk/TestsPrimary/PaginationShould.cs b/csharp-client-sdk/TestsPrimary/PaginationShould.cs index 94e48341b..5b887e879 100755 --- a/csharp-client-sdk/TestsPrimary/PaginationShould.cs +++ b/csharp-client-sdk/TestsPrimary/PaginationShould.cs @@ -8,12 +8,11 @@ // //------------------------------------------------------------------------------ using Xunit; -using SDK; -using SDK.Models.Shared; -using System.Collections.Generic; +using Openapi; +using Openapi.Models.Shared; using System.Linq; using System.Threading.Tasks; -using SDK.Models.Operations; +using Openapi.Models.Operations; public class PaginationShould { @@ -21,7 +20,7 @@ public class PaginationShould public async Task PaginationLimitOffsetPageParams() { CommonHelpers.RecordTest("pagination-limitOffset-page-params"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var serverLimit = 20; @@ -34,7 +33,7 @@ public async Task PaginationLimitOffsetPageParams() var nextRes = await res.Next(); Assert.Equal(200, nextRes.StatusCode); Assert.NotNull(nextRes.Res); - Assert.Equal(nextRes.Res.ResultArray.Count(), 0); + Assert.Empty(nextRes.Res.ResultArray); var nullRes = await nextRes.Next(); Assert.Null(nullRes); @@ -44,7 +43,7 @@ public async Task PaginationLimitOffsetPageParams() public async Task PaginationLimitOffsetPageBody() { CommonHelpers.RecordTest("pagination-limitOffset-page-body"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var limit = 15; var res = await sdk.Pagination.PaginationLimitOffsetPageBodyAsync(request: new LimitOffsetConfig{Page = 1, Limit = limit}); @@ -66,7 +65,7 @@ public async Task PaginationLimitOffsetPageBody() public async Task PaginationLimitOffsetOffsetParams() { CommonHelpers.RecordTest("pagination-limitOffset-offset-params"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var limit = 15; var res = await sdk.Pagination.PaginationLimitOffsetOffsetParamsAsync(limit: limit, offset: 0); @@ -88,7 +87,7 @@ public async Task PaginationLimitOffsetOffsetParams() public async Task PaginationLimitOffsetOffsetBody() { CommonHelpers.RecordTest("pagination-limitOffset-offset-body"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var limit = 15; var res = await sdk.Pagination.PaginationLimitOffsetOffsetBodyAsync(request: new LimitOffsetConfig{Limit = limit, Offset = 0}); @@ -110,7 +109,7 @@ public async Task PaginationLimitOffsetOffsetBody() public async Task PaginationCursorParams() { CommonHelpers.RecordTest("pagination-cursor-params"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var limit = 15; var res = await sdk.Pagination.PaginationCursorParamsAsync(cursor: -1); @@ -127,7 +126,7 @@ public async Task PaginationCursorParams() var penultimateRes = await nextRes.Next(); Assert.Equal(200, penultimateRes.StatusCode); Assert.NotNull(penultimateRes.Res); - Assert.Equal(penultimateRes.Res.ResultArray.Count(), 0); + Assert.Empty(penultimateRes.Res.ResultArray); var nullRes = await penultimateRes.Next(); @@ -138,7 +137,7 @@ public async Task PaginationCursorParams() public async Task PaginationCursorBody() { CommonHelpers.RecordTest("pagination-cursor-body"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var limit = 15; var res = await sdk.Pagination.PaginationCursorBodyAsync(request: new PaginationCursorBodyRequestBody{Cursor = -1}); @@ -155,7 +154,7 @@ public async Task PaginationCursorBody() var penultimateRes = await nextRes.Next(); Assert.Equal(200, penultimateRes.StatusCode); Assert.NotNull(penultimateRes.Res); - Assert.Equal(penultimateRes.Res.ResultArray.Count(), 0); + Assert.Empty(penultimateRes.Res.ResultArray); var nullRes = await penultimateRes.Next(); diff --git a/csharp-client-sdk/TestsPrimary/ParametersShould.cs b/csharp-client-sdk/TestsPrimary/ParametersShould.cs index c5896a860..c65c6378b 100755 --- a/csharp-client-sdk/TestsPrimary/ParametersShould.cs +++ b/csharp-client-sdk/TestsPrimary/ParametersShould.cs @@ -8,11 +8,11 @@ // //------------------------------------------------------------------------------ using Xunit; -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using System.Collections.Generic; using System.Threading.Tasks; -using SDK.Models.Operations; +using Openapi.Models.Operations; public class ParametersShould { @@ -21,7 +21,7 @@ public async Task MixedParameters() { CommonHelpers.RecordTest("parameters-mixed-primitives"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.MixedParametersPrimitivesAsync( "headerValue", @@ -43,7 +43,7 @@ public async Task CamelCase() { CommonHelpers.RecordTest("parameters-camel-case"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.MixedParametersCamelCaseAsync( "headerValue", @@ -64,7 +64,7 @@ public async Task CamelCase() public async Task SimplePathParameterPrimitives() { CommonHelpers.RecordTest("parameters-simple-path-parameter-primitives"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.SimplePathParameterPrimitivesAsync(true, 1, 1.1D, "test"); @@ -79,7 +79,7 @@ public async Task SimplePathParameterPrimitives() public async Task SimplePathParameterObjects() { CommonHelpers.RecordTest("parameters-simple-path-parameter-objects"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.SimplePathParameterObjectsAsync( Helpers.CreateSimpleObject(), @@ -97,7 +97,7 @@ public async Task SimplePathParameterObjects() public async Task SimplePathParameterArrays() { CommonHelpers.RecordTest("parameters-simple-path-parameter-arrays"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.SimplePathParameterArraysAsync( new List() { "test", "test2" } @@ -114,7 +114,7 @@ public async Task SimplePathParameterArrays() public async Task SimplePathParameterMaps() { CommonHelpers.RecordTest("parameters-simple-path-parameter-maps"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.SimplePathParameterMapsAsync( new Dictionary() { { "test", "value" }, { "test2", "value2" } }, @@ -133,7 +133,7 @@ public async Task PathParameterJson() { CommonHelpers.RecordTest("parameters-path-parameter-json"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.PathParameterJsonAsync(Helpers.CreateSimpleObject()); @@ -148,7 +148,7 @@ public async Task PathParameterJson() public async Task FormQueryParamsPrimitive() { CommonHelpers.RecordTest("parameters-form-query-params-primitive"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.FormQueryParamsPrimitiveAsync(true, 1, 1.1D, "test"); @@ -163,7 +163,7 @@ public async Task FormQueryParamsPrimitive() public async Task FormQueryParamsObject() { CommonHelpers.RecordTest("parameters-form-query-params-object"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.FormQueryParamsObjectAsync( Helpers.CreateSimpleObject(), @@ -181,7 +181,7 @@ public async Task FormQueryParamsObject() public async Task FormQueryParamsArray() { CommonHelpers.RecordTest("parameters-form-query-params-array"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.FormQueryParamsArrayAsync( new List() { "test", "test2" }, @@ -202,7 +202,7 @@ public async Task PipeDelimitedQueryParamsArray() { CommonHelpers.RecordTest("parameters-pipe-query-params-array"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.PipeDelimitedQueryParamsArrayAsync( new List() { "test", "test2" }, @@ -224,7 +224,7 @@ public async Task PipeDelimitedQueryParamsArray() public async Task FormQueryParamsMap() { CommonHelpers.RecordTest("parameters-form-query-params-map"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.FormQueryParamsMapAsync( new Dictionary() { { "test", "value" }, { "test2", "value2" } }, @@ -252,7 +252,7 @@ public async Task FormQueryParamsRefParamObject() { CommonHelpers.RecordTest("parameters-form-query-params-ref-param-object"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.FormQueryParamsRefParamObjectAsync( new RefQueryParamObj() @@ -287,11 +287,11 @@ public async Task FormQueryParamsRefParamObject() public async Task DeepObjectQueryParamsObject() { CommonHelpers.RecordTest("parameters-deep-object-query-params-object"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.DeepObjectQueryParamsObjectAsync( Helpers.CreateSimpleObject(), - new DeepObjectQueryParamsObjectObjArrParam() + new ObjArrParam() { Arr = new List { "test", "test2" } } @@ -321,7 +321,7 @@ public async Task DeepObjectQueryParamsObject() public async Task DeepObjectQueryParamsMap() { CommonHelpers.RecordTest("parameters-deep-object-query-params-map"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.DeepObjectQueryParamsMapAsync( new Dictionary() { { "test", "value" }, { "test2", "value2" } }, @@ -365,7 +365,7 @@ public async Task DeepObjectQueryParamsMap() public async Task JsonQueryParamsObject() { CommonHelpers.RecordTest("parameters-json-query-params-object"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.JsonQueryParamsObjectAsync( Helpers.CreateDeepObject(), @@ -383,7 +383,7 @@ public async Task JsonQueryParamsObject() public async Task MixedQueryParams() { CommonHelpers.RecordTest("parameters-mixed-query-params"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.MixedQueryParamsAsync( Helpers.CreateSimpleObject(), @@ -402,7 +402,7 @@ public async Task MixedQueryParams() public async Task HeaderParamsPrimitive() { CommonHelpers.RecordTest("parameters-header-params-primitive"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.HeaderParamsPrimitiveAsync(true, 1, 1.1D, "test"); @@ -417,7 +417,7 @@ public async Task HeaderParamsPrimitive() public async Task HeaderParamsObject() { CommonHelpers.RecordTest("parameters-header-params-object"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.HeaderParamsObjectAsync( Helpers.CreateSimpleObject(), @@ -439,7 +439,7 @@ public async Task HeaderParamsObject() public async Task HeaderParamsMap() { CommonHelpers.RecordTest("parameters-header-params-map"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.HeaderParamsMapAsync( new Dictionary() { { "key1", "value1" }, { "key2", "value2" } }, @@ -455,7 +455,7 @@ public async Task HeaderParamsMap() public async Task HeaderParamsArray() { CommonHelpers.RecordTest("parameters-header-params-array"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Parameters.HeaderParamsArrayAsync( new List { "test1", "test2" } diff --git a/csharp-client-sdk/TestsPrimary/RequestBodiesShould.cs b/csharp-client-sdk/TestsPrimary/RequestBodiesShould.cs index 549fae79f..1eaecf3d6 100755 --- a/csharp-client-sdk/TestsPrimary/RequestBodiesShould.cs +++ b/csharp-client-sdk/TestsPrimary/RequestBodiesShould.cs @@ -14,10 +14,10 @@ using System.Threading.Tasks; using System.Text.RegularExpressions; using Xunit; -using SDK; -using SDK.Models.Shared; -using SDK.Utils; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Utils; +using Openapi.Models.Operations; public class RequestBodiesShould { @@ -25,7 +25,7 @@ public class RequestBodiesShould public async Task PostApplicationJsonSimple() { CommonHelpers.RecordTest("request-bodies-post-application-json-simple"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonSimpleAsync( Helpers.CreateSimpleObject() @@ -39,15 +39,15 @@ public async Task PostApplicationJsonSimple() public async Task PostApplicationJsonArray() { CommonHelpers.RecordTest("request-bodies-post-application-json-array"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayAsync( new List() { Helpers.CreateSimpleObject(), Helpers.CreateSimpleObject() } ); Assert.Equal(200, res.StatusCode); - Assert.Equal(2, res.SimpleObjects.Count()); - foreach (var obj in res.SimpleObjects) + Assert.Equal(2, res.Res.Count()); + foreach (var obj in res.Res) { Helpers.AssertSimpleObject(obj); } @@ -57,7 +57,7 @@ public async Task PostApplicationJsonArray() public async Task PostApplicationJsonArrayOfArray() { CommonHelpers.RecordTest("request-bodies-post-application-json-array-of-array"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var obj = Helpers.CreateSimpleObject(); @@ -70,15 +70,15 @@ public async Task PostApplicationJsonArrayOfArray() ); Assert.Equal(200, res.StatusCode); - Assert.Equal(2, res.Arrs.Count()); - Assert.Equal(2, res.Arrs.ToList()[0].Count()); - Assert.Equal(2, res.Arrs.ToList()[1].Count()); + Assert.Equal(2, res.Res.Count()); + Assert.Equal(2, res.Res.ToList()[0].Count()); + Assert.Equal(2, res.Res.ToList()[1].Count()); for (var i = 0; i < 2; i++) { for (var j = 0; j < 2; j++) { - Helpers.AssertSimpleObject(res.Arrs.ToList()[i].ToList()[j]); + Helpers.AssertSimpleObject(res.Res.ToList()[i].ToList()[j]); } } } @@ -87,7 +87,7 @@ public async Task PostApplicationJsonArrayOfArray() public async Task PostApplicationJsonMap() { CommonHelpers.RecordTest("request-bodies-post-application-json-map"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var obj = Helpers.CreateSimpleObject(); @@ -105,7 +105,7 @@ public async Task PostApplicationJsonMap() public async Task PostApplicationJsonMapOfMap() { CommonHelpers.RecordTest("request-bodies-post-application-json-map-of-map"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var obj = Helpers.CreateSimpleObject(); @@ -145,7 +145,7 @@ public async Task PostApplicationJsonMapOfMap() public async Task PostApplicationJsonMapOfArray() { CommonHelpers.RecordTest("request-bodies-post-application-json-map-of-array"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var obj = Helpers.CreateSimpleObject(); @@ -177,7 +177,7 @@ public async Task PostApplicationJsonMapOfArray() public async Task PostApplicationJsonArrayOfMap() { CommonHelpers.RecordTest("request-bodies-post-application-json-array-of-map"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var maps = new List>(); for (int i = 0; i < 2; i++) @@ -194,20 +194,20 @@ public async Task PostApplicationJsonArrayOfMap() var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfMapAsync(maps); Assert.Equal(200, res.StatusCode); - Assert.Equal(2, res.Maps.Count()); - Assert.Equal(2, res.Maps.ToList()[0].Count()); - Assert.Equal(2, res.Maps.ToList()[1].Count()); - Helpers.AssertSimpleObject(res.Maps.ToList()[0]["mapElem1"]); - Helpers.AssertSimpleObject(res.Maps.ToList()[0]["mapElem2"]); - Helpers.AssertSimpleObject(res.Maps.ToList()[1]["mapElem1"]); - Helpers.AssertSimpleObject(res.Maps.ToList()[1]["mapElem2"]); + Assert.Equal(2, res.Res.Count()); + Assert.Equal(2, res.Res.ToList()[0].Count()); + Assert.Equal(2, res.Res.ToList()[1].Count()); + Helpers.AssertSimpleObject(res.Res.ToList()[0]["mapElem1"]); + Helpers.AssertSimpleObject(res.Res.ToList()[0]["mapElem2"]); + Helpers.AssertSimpleObject(res.Res.ToList()[1]["mapElem1"]); + Helpers.AssertSimpleObject(res.Res.ToList()[1]["mapElem2"]); } [Fact] public async Task PostApplicationJsonMapOfPrimitive() { CommonHelpers.RecordTest("request-bodies-post-application-json-map-of-primitive"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfPrimitiveAsync( new Dictionary() { { "mapElem1", "hello" }, { "mapElem2", "world" } } @@ -223,23 +223,23 @@ public async Task PostApplicationJsonMapOfPrimitive() public async Task PostApplicationJsonArrayOfPrimitive() { CommonHelpers.RecordTest("request-bodies-post-application-json-array-of-primitive"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfPrimitiveAsync( new List() { "hello", "world" } ); Assert.Equal(200, res.StatusCode); - Assert.Equal(2, res.Strings.Count()); - Assert.Equal("hello", res.Strings.ToList()[0]); - Assert.Equal("world", res.Strings.ToList()[1]); + Assert.Equal(2, res.Res.Count()); + Assert.Equal("hello", res.Res.ToList()[0]); + Assert.Equal("world", res.Res.ToList()[1]); } [Fact] public async Task PostApplicationJsonMapOfMapOfPrimitive() { CommonHelpers.RecordTest("request-bodies-post-application-json-map-of-map-of-primitive"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfMapOfPrimitiveAsync( new Dictionary>() @@ -277,7 +277,7 @@ public async Task PostApplicationJsonMapOfMapOfPrimitive() public async Task PostApplicationJsonArrayOfArrayOfPrimitive() { CommonHelpers.RecordTest("request-bodies-post-application-json-array-of-array-of-primitive"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveAsync( @@ -289,20 +289,20 @@ await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveAsy ); Assert.Equal(200, res.StatusCode); - Assert.Equal(2, res.Arrs.Count()); - Assert.Equal(2, res.Arrs.First().Count()); - Assert.Equal(2, res.Arrs.Last().Count()); - Assert.Equal("foo", res.Arrs.First().First()); - Assert.Equal("bar", res.Arrs.First().Last()); - Assert.Equal("buzz", res.Arrs.Last().First()); - Assert.Equal("bazz", res.Arrs.Last().Last()); + Assert.Equal(2, res.Res.Count()); + Assert.Equal(2, res.Res.First().Count()); + Assert.Equal(2, res.Res.Last().Count()); + Assert.Equal("foo", res.Res.First().First()); + Assert.Equal("bar", res.Res.First().Last()); + Assert.Equal("buzz", res.Res.Last().First()); + Assert.Equal("bazz", res.Res.Last().Last()); } [Fact] public async Task PostApplicationJsonArrayObject() { CommonHelpers.RecordTest("request-bodies-post-application-json-array-object"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var obj = Helpers.CreateSimpleObject(); @@ -320,7 +320,7 @@ public async Task PostApplicationJsonArrayObject() public async Task PostApplicationJsonMapObject() { CommonHelpers.RecordTest("request-bodies-post-application-json-map-object"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var obj = Helpers.CreateSimpleObject(); @@ -338,7 +338,7 @@ public async Task PostApplicationJsonMapObject() public async Task PostApplicationJsonDeep() { CommonHelpers.RecordTest("request-bodies-post-application-json-deep"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonDeepAsync( Helpers.CreateDeepObject() @@ -352,7 +352,7 @@ public async Task PostApplicationJsonDeep() public async Task PostApplicationJsonMultipleJsonFiltered() { CommonHelpers.RecordTest("request-bodies-post-application-json-multiple-json-filtered"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMultipleJsonFilteredAsync( Helpers.CreateSimpleObject() @@ -366,7 +366,7 @@ public async Task PostApplicationJsonMultipleJsonFiltered() public async Task PostMultipleContentTypesComponentFiltered() { CommonHelpers.RecordTest("request-bodies-post-multiple-content-types-component-filtered"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesComponentFilteredAsync( Helpers.CreateSimpleObject() @@ -380,10 +380,10 @@ public async Task PostMultipleContentTypesComponentFiltered() public async Task PostMultipleContentTypesInlineFiltered() { CommonHelpers.RecordTest("request-bodies-post-multiple-content-types-inline-filtered"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesInlineFilteredAsync( - new RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON() + new RequestBodyPostMultipleContentTypesInlineFilteredRequestBody() { Bool = true, Num = 1.1F, @@ -402,10 +402,10 @@ public async Task PostMultipleContentTypesInlineFiltered() public async Task PostMultipleContentTypeSplitJson() { CommonHelpers.RecordTest("request-bodies-post-multiple-content-types-split-json"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitJsonAsync( - new RequestBodyPostMultipleContentTypesSplitApplicationJSON() + new RequestBodyPostMultipleContentTypesSplitJsonRequestBody() { Bool = true, Num = 1.1F, @@ -423,10 +423,10 @@ public async Task PostMultipleContentTypeSplitJson() public async Task PostMutlipleContentTypesSplitMultipart() { CommonHelpers.RecordTest("request-bodies-post-multiple-content-types-split-multipart"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitMultipartAsync( - new RequestBodyPostMultipleContentTypesSplitMultipartFormData() + new RequestBodyPostMultipleContentTypesSplitMultipartRequestBody() { Bool2 = true, Num2 = 1.1D, @@ -445,10 +445,10 @@ public async Task PostMutlipleContentTypesSplitMultipart() public async Task PostMultipleContentTypesSplitForm() { CommonHelpers.RecordTest("request-bodies-post-multiple-content-types-split-form"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitFormAsync( - new RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded() + new RequestBodyPostMultipleContentTypesSplitFormRequestBody() { Bool3 = true, Num3 = 1.1D, @@ -467,9 +467,9 @@ public async Task PostMultipleContentTypesSplitJsonWithParam() { CommonHelpers.RecordTest("request-bodies-post-multiple-content-types-split-json-with-param"); - var sdk = new SDKSDK(); + var sdk = new SDK(); - var requestBody = new RequestBodyPostMultipleContentTypesSplitParamApplicationJSON() + var requestBody = new RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody() { Bool = true, Num = 1.1D, @@ -494,9 +494,9 @@ public async Task PostMultipleContentTypesSplitMultiplartWithParam() { CommonHelpers.RecordTest("request-bodies-post-multiple-content-types-split-multipart-with-param"); - var sdk = new SDKSDK(); + var sdk = new SDK(); - var formData = new RequestBodyPostMultipleContentTypesSplitParamMultipartFormData() + var formData = new RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody() { Bool2 = true, Num2 = 1.1D, @@ -522,10 +522,10 @@ public async Task PostMultipleContentTypesSplitFormWithParam() { CommonHelpers.RecordTest("request-bodies-post-multiple-content-types-split-form-with-param"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var requestBody = - new RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded() + new RequestBodyPostMultipleContentTypesSplitParamFormRequestBody() { Bool3 = true, Num3 = 1.1D, @@ -550,7 +550,7 @@ public async Task PutMultipartSimple() { CommonHelpers.RecordTest("request-bodies-put-multipart-simple"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPutMultipartSimpleAsync( Helpers.CreateSimpleObject() @@ -576,7 +576,7 @@ public async Task PutMultipartDeep() { CommonHelpers.RecordTest("request-bodies-put-multipart-deep"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var obj = Helpers.CreateDeepObject(); var res = await sdk.RequestBodies.RequestBodyPutMultipartDeepAsync(obj); @@ -596,17 +596,17 @@ public async Task PutMultipartFile() { CommonHelpers.RecordTest("request-bodies-put-multipart-file"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var data = Helpers.GetData(); var res = await sdk.RequestBodies.RequestBodyPutMultipartFileAsync( new RequestBodyPutMultipartFileRequestBody() { - File = new RequestBodyPutMultipartFileRequestBodyFile() + File = new File() { Content = data, - File = "testUpload.json" + FileName = "testUpload.json" } } ); @@ -621,7 +621,7 @@ public async Task PostFormSimple() { CommonHelpers.RecordTest("request-bodies-post-form-simple"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostFormSimpleAsync( Helpers.CreateSimpleObject() @@ -648,7 +648,7 @@ public async Task PostFormDeep() { CommonHelpers.RecordTest("request-bodies-post-form-deep"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var obj = Helpers.CreateDeepObject(); @@ -670,7 +670,7 @@ public async Task PostFormMapPrimitive() { CommonHelpers.RecordTest("request-bodies-post-form-map-primitive"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var map = new Dictionary() { @@ -690,7 +690,7 @@ public async Task PutString() { CommonHelpers.RecordTest("request-bodies-put-string"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var str = "Hello world"; @@ -705,7 +705,7 @@ public async Task PutBytes() { CommonHelpers.RecordTest("request-bodies-put-bytes"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var data = Helpers.GetData(); @@ -720,7 +720,7 @@ public async Task PutStringWithParams() { CommonHelpers.RecordTest("request-bodies-put-string-with-params"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPutStringWithParamsAsync( "Hello world", @@ -737,7 +737,7 @@ public async Task PutBytesWithParams() { CommonHelpers.RecordTest("request-bodies-put-bytes-with-params"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var data = Helpers.GetData(); @@ -753,7 +753,7 @@ public async Task EmptyObject() { CommonHelpers.RecordTest("request-bodies-post-empty-object"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostEmptyObjectAsync( new RequestBodyPostEmptyObjectRequestBody() @@ -767,7 +767,7 @@ public async Task CamelCase() { CommonHelpers.RecordTest("request-bodies-post-application-json-simple-camel-case"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonSimpleCamelCaseAsync( Helpers.CreateSimpleObjectCamelCase() @@ -785,7 +785,7 @@ public async Task RequestBodyReadOnlyInput() { CommonHelpers.RecordTest("request-bodies-read-only-input"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyReadOnlyInputAsync(new ReadOnlyObjectInput()); @@ -800,7 +800,7 @@ public async Task RequestBodyWriteOnlyOutput() { CommonHelpers.RecordTest("request-bodies-write-only-output"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyWriteOnlyOutputAsync( new WriteOnlyObject() @@ -819,7 +819,7 @@ public async Task RequestBodyWriteOnly() { CommonHelpers.RecordTest("request-bodies-write-only"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyWriteOnlyAsync( new WriteOnlyObject() @@ -841,10 +841,10 @@ public async Task RequestBodyReadAndWrite() { CommonHelpers.RecordTest("request-bodies-read-and-write"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.RequestBodies.RequestBodyReadAndWriteAsync( - new ReadWriteObjectInput() + new ReadWriteObject() { Num1 = 1, Num2 = 2, @@ -862,7 +862,7 @@ public async Task RequestBodyPostComplexNumberTypesAsync() { CommonHelpers.RecordTest("request-bodies-complex-number-types"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var req = new RequestBodyPostComplexNumberTypesRequest() { @@ -888,23 +888,23 @@ public async Task RequestBodyPostComplexNumberTypesAsync() Assert.Equal(200, res.StatusCode); Assert.Equal( req.ComplexNumberTypes.Bigint, - res.RequestBodyPostComplexNumberTypes200ApplicationJSONObject.Json.Bigint + res.Object.Json.Bigint ); Assert.Equal( req.ComplexNumberTypes.BigintStr, - res.RequestBodyPostComplexNumberTypes200ApplicationJSONObject.Json.BigintStr + res.Object.Json.BigintStr ); Assert.Equal( req.ComplexNumberTypes.Decimal, - res.RequestBodyPostComplexNumberTypes200ApplicationJSONObject.Json.Decimal + res.Object.Json.Decimal ); Assert.Equal( req.ComplexNumberTypes.DecimalStr, - res.RequestBodyPostComplexNumberTypes200ApplicationJSONObject.Json.DecimalStr + res.Object.Json.DecimalStr ); Assert.Equal( "http://localhost:35123/anything/requestBodies/post/9007199254740991/9223372036854775807/3.141592653589793/3.1415926535897932384626433833/complex-number-types?queryBigInt=9007199254740991&queryBigIntStr=9223372036854775807&queryDecimal=3.141592653589793&queryDecimalStr=3.1415926535897932384626433833", - res.RequestBodyPostComplexNumberTypes200ApplicationJSONObject.Url + res.Object.Url ); } } \ No newline at end of file diff --git a/csharp-client-sdk/TestsPrimary/ResponseBodiesShould.cs b/csharp-client-sdk/TestsPrimary/ResponseBodiesShould.cs index 628a3a190..a53035175 100755 --- a/csharp-client-sdk/TestsPrimary/ResponseBodiesShould.cs +++ b/csharp-client-sdk/TestsPrimary/ResponseBodiesShould.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ using Xunit; -using SDK; +using Openapi; using System.Threading.Tasks; public class ResponseBodiesShould @@ -17,7 +17,7 @@ public class ResponseBodiesShould public async Task JsonGet() { CommonHelpers.RecordTest("response-bodies-json-get"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.ResponseBodyJsonGetAsync(); @@ -45,7 +45,7 @@ public async Task StringGet() { CommonHelpers.RecordTest("response-bodies-string-get"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.ResponseBodies.ResponseBodyStringGetAsync(); @@ -62,7 +62,7 @@ public async Task XmlGet() { CommonHelpers.RecordTest("response-bodies-xml-get"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.ResponseBodies.ResponseBodyXmlGetAsync(); @@ -77,7 +77,7 @@ public async Task XmlGet() public async Task BytesGet() { CommonHelpers.RecordTest("response-bodies-bytes-get"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.ResponseBodies.ResponseBodyBytesGetAsync(); @@ -90,7 +90,7 @@ public async Task BytesGet() public async Task ResponseBodyReadOnly() { CommonHelpers.RecordTest("response-bodies-read-only"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.ResponseBodies.ResponseBodyReadOnlyAsync(); @@ -99,4 +99,4 @@ public async Task ResponseBodyReadOnly() Assert.Equal(1.0, res.ReadOnlyObject.Num); Assert.Equal("hello", res.ReadOnlyObject.String); } -} \ No newline at end of file +} diff --git a/csharp-client-sdk/TestsPrimary/ServersShould.cs b/csharp-client-sdk/TestsPrimary/ServersShould.cs index 64626ba51..7bc47e4df 100755 --- a/csharp-client-sdk/TestsPrimary/ServersShould.cs +++ b/csharp-client-sdk/TestsPrimary/ServersShould.cs @@ -10,7 +10,7 @@ using System.Net.Http; using System.Threading.Tasks; using Xunit; -using SDK; +using Openapi; public class ServersShould { @@ -18,7 +18,7 @@ public class ServersShould public async Task SelectGlobalServerValid() { CommonHelpers.RecordTest("servers-select-global-server-valid"); - var sdk = new SDKSDK(serverUrl: SDKSDK.ServerList[0]); + var sdk = new SDK(serverUrl: SDK.ServerList[0]); var res = await sdk.Servers.SelectGlobalServerAsync(); Assert.NotNull(res); @@ -29,7 +29,7 @@ public async Task SelectGlobalServerValid() public async Task SelectGlobalServerBroken() { CommonHelpers.RecordTest("servers-select-global-server-broken"); - var sdk = new SDKSDK(serverUrl: SDKSDK.ServerList[1]); + var sdk = new SDK(serverUrl: SDK.ServerList[1]); await Assert.ThrowsAsync( async () => await sdk.Servers.SelectGlobalServerAsync() @@ -40,7 +40,7 @@ await Assert.ThrowsAsync( public async Task SelectServerWithIDDefault() { CommonHelpers.RecordTest("servers-select-server-with-id-default"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Servers.SelectServerWithIDAsync(); Assert.Equal(200, res.StatusCode); @@ -51,12 +51,10 @@ public async Task SelectServerWithIDValid() { CommonHelpers.RecordTest("servers-select-server-with-id-valid"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Servers.SelectServerWithIDAsync( - serverUrl: ServersSDK.SelectServerWithIDSERVERS[ - ServersSDK.SelectServerWithIDServers.Valid - ] + serverUrl: Servers.SelectServerWithIDSERVERS[Servers.SelectServerWithIDServers.Valid] ); Assert.Equal(200, res.StatusCode); @@ -67,15 +65,15 @@ public async Task SelectServerWithIDBroken() { CommonHelpers.RecordTest("servers-select-server-with-id-broken"); - var sdk = new SDKSDK(); + var sdk = new SDK(); await Assert.ThrowsAsync( async () => await sdk.Servers.SelectServerWithIDAsync( - serverUrl: ServersSDK.SelectServerWithIDSERVERS[ - ServersSDK.SelectServerWithIDServers.Broken + serverUrl: Servers.SelectServerWithIDSERVERS[ + Servers.SelectServerWithIDServers.Broken ] ) ); } -} \ No newline at end of file +} diff --git a/csharp-client-sdk/TestsPrimary/TelemetryShould.cs b/csharp-client-sdk/TestsPrimary/TelemetryShould.cs index 8289db795..edfe9d483 100755 --- a/csharp-client-sdk/TestsPrimary/TelemetryShould.cs +++ b/csharp-client-sdk/TestsPrimary/TelemetryShould.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ using Xunit; -using SDK; +using Openapi; using System.Threading.Tasks; public class TelemetryShould @@ -18,12 +18,12 @@ public async Task UserAgentGet() { CommonHelpers.RecordTest("telemetry-user-agent-get"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var res = await sdk.Telemetry.TelemetryUserAgentGetAsync(); Assert.Equal(200, res.StatusCode); - Assert.Equal("speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi", res.Res.Headers["X-Speakeasy-User-Agent"]); + Assert.Equal("speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi", res.Res.Headers["X-Speakeasy-User-Agent"]); } [Fact] @@ -31,7 +31,7 @@ public async Task SpeakeasyUserAgentGet() { CommonHelpers.RecordTest("telemetry-speakeasy-user-agent-get"); - var sdk = new SDKSDK(); + var sdk = new SDK(); var userAgent = "test user agent"; @@ -39,6 +39,6 @@ public async Task SpeakeasyUserAgentGet() Assert.Equal(200, res.StatusCode); Assert.Equal(userAgent, res.Res.Headers["User-Agent"]); - Assert.Equal("speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi", res.Res.Headers["X-Speakeasy-User-Agent"]); + Assert.Equal("speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi", res.Res.Headers["X-Speakeasy-User-Agent"]); } -} \ No newline at end of file +} diff --git a/csharp-client-sdk/TestsSimpleSecurity/AuthShould.cs b/csharp-client-sdk/TestsSimpleSecurity/AuthShould.cs index 2be455461..854306085 100755 --- a/csharp-client-sdk/TestsSimpleSecurity/AuthShould.cs +++ b/csharp-client-sdk/TestsSimpleSecurity/AuthShould.cs @@ -8,9 +8,9 @@ // //------------------------------------------------------------------------------ using Xunit; -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/csharp-client-sdk/USAGE.md b/csharp-client-sdk/USAGE.md index a9e5dfee5..3e27297df 100755 --- a/csharp-client-sdk/USAGE.md +++ b/csharp-client-sdk/USAGE.md @@ -2,10 +2,10 @@ ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -22,13 +22,12 @@ var res = await sdk.Generation.GlobalNameOverriddenAsync(); ## Second Do this second ```csharp -using SDK; -using SDK.Models.Operations; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Operations; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -40,13 +39,13 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit BigintParameter = 168827, BigintStrParameter = 446729, BoolParameter = false, - DateParameter = LocalDate.FromDateTime(DateTime.Parse("2023-06-11")), - DateTimeDefaultParameter = DateTime.Parse("2022-07-22T13:16:48.221Z"), - DateTimeParameter = DateTime.Parse("2021-10-21T09:16:58.799Z"), + DateParameter = LocalDate.FromDateTime(System.DateTime.Parse("2023-06-11")), + DateTimeDefaultParameter = System.DateTime.Parse("2022-07-22T13:16:48.221Z"), + DateTimeParameter = System.DateTime.Parse("2021-10-21T09:16:58.799Z"), DecimalParameter = 5223.72M, DecimalStrParameter = 2911.37M, DoubleParameter = 6946.59D, - EnumParameter = SDK.Models.Operations.UsageExamplePostEnumParameter.Value1, + EnumParameter = EnumParameter.Value1, FalseyNumberParameter = 0D, Float32Parameter = 1029.75F, FloatParameter = 5669.99D, @@ -59,14 +58,14 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit SimpleObject = new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -77,7 +76,7 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit StrOpt = "testOptional", }, }, - OptEnumParameter = SDK.Models.Operations.UsageExamplePostOptEnumParameter.Value3, + OptEnumParameter = OptEnumParameter.Value3, }); // handle response diff --git a/csharp-client-sdk/docs/models/operations/AnchorTypesGetResponse.md b/csharp-client-sdk/docs/models/operations/AnchorTypesGetResponse.md index 0379313cc..4e038a13c 100755 --- a/csharp-client-sdk/docs/models/operations/AnchorTypesGetResponse.md +++ b/csharp-client-sdk/docs/models/operations/AnchorTypesGetResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `TypeFromAnchor` | [TypeFromAnchor](../../models/operations/TypeFromAnchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| `TypeFromAnchor` | [AnchorTypesGetTypeFromAnchor](../../models/operations/AnchorTypesGetTypeFromAnchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/AnchorTypesGetTypeFromAnchor.md b/csharp-client-sdk/docs/models/operations/AnchorTypesGetTypeFromAnchor.md new file mode 100755 index 000000000..b674efcf4 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/AnchorTypesGetTypeFromAnchor.md @@ -0,0 +1,10 @@ +# AnchorTypesGetTypeFromAnchor + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `Json` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/Args.md b/csharp-client-sdk/docs/models/operations/Args.md new file mode 100755 index 000000000..77fa5686c --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/Args.md @@ -0,0 +1,8 @@ +# Args + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `GlobalQueryParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/CreateFileFile.md b/csharp-client-sdk/docs/models/operations/CreateFileFile.md new file mode 100755 index 000000000..06fea4aaf --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/CreateFileFile.md @@ -0,0 +1,9 @@ +# CreateFileFile + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Content` | *byte[]* | :heavy_check_mark: | N/A | +| `FileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/CreateFileRequestBody.md b/csharp-client-sdk/docs/models/operations/CreateFileRequestBody.md index 9754a8f49..35e1483ef 100755 --- a/csharp-client-sdk/docs/models/operations/CreateFileRequestBody.md +++ b/csharp-client-sdk/docs/models/operations/CreateFileRequestBody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `File` | [CreateFileRequestBodyFile](../../models/operations/CreateFileRequestBodyFile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | +| `File` | [CreateFileFile](../../models/operations/CreateFileFile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/CreateFileRequestBodyFile.md b/csharp-client-sdk/docs/models/operations/CreateFileRequestBodyFile.md deleted file mode 100755 index fa9db081a..000000000 --- a/csharp-client-sdk/docs/models/operations/CreateFileRequestBodyFile.md +++ /dev/null @@ -1,9 +0,0 @@ -# CreateFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Content` | *byte[]* | :heavy_check_mark: | N/A | -| `File` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectArgs.md b/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectArgs.md new file mode 100755 index 000000000..7d3183f0e --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectArgs.md @@ -0,0 +1,26 @@ +# DeepObjectQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | +| `ObjArrParamArr` | List<*string*> | :heavy_check_mark: | N/A | | +| `ObjParamAny` | *string* | :heavy_check_mark: | N/A | any | +| `ObjParamBigintStr` | *string* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `ObjParamBigint` | *string* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `ObjParamBoolOpt` | *string* | :heavy_check_mark: | N/A | true | +| `ObjParamBool` | *string* | :heavy_check_mark: | N/A | true | +| `ObjParamDateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `ObjParamDate` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | +| `ObjParamDecimalStr` | *string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `ObjParamDecimal` | *string* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `ObjParamEnum` | *string* | :heavy_check_mark: | N/A | one | +| `ObjParamFloat32` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `ObjParamInt32Enum` | *string* | :heavy_check_mark: | N/A | 55 | +| `ObjParamInt32` | *string* | :heavy_check_mark: | N/A | 1 | +| `ObjParamIntEnum` | *string* | :heavy_check_mark: | N/A | 2 | +| `ObjParamInt` | *string* | :heavy_check_mark: | N/A | 1 | +| `ObjParamNum` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `ObjParamStrOpt` | *string* | :heavy_check_mark: | N/A | testOptional | +| `ObjParamStr` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md b/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md deleted file mode 100755 index e1cc8c0bf..000000000 --- a/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md +++ /dev/null @@ -1,8 +0,0 @@ -# DeepObjectQueryParamsObjectObjArrParam - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Arr` | List<*string*> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md b/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md index d5c51068c..d93ae10a4 100755 --- a/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md +++ b/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `ObjParam` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `ObjArrParam` | [DeepObjectQueryParamsObjectObjArrParam](../../models/operations/DeepObjectQueryParamsObjectObjArrParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `ObjParam` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `ObjArrParam` | [ObjArrParam](../../models/operations/ObjArrParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md b/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md index 03b96360a..d87ed4188 100755 --- a/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md +++ b/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Args` | [DeepObjectQueryParamsObjectResArgs](../../models/operations/DeepObjectQueryParamsObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `Args` | [DeepObjectQueryParamsObjectArgs](../../models/operations/DeepObjectQueryParamsObjectArgs.md) | :heavy_check_mark: | N/A | | | `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/deepObject/obj?objArrParam[arr]=test&objArrParam[arr]=test2&objParam[any]=any&objParam[bigintStr]=9223372036854775808&objParam[bigint]=8821239038968084&objParam[boolOpt]=true&objParam[bool]=true&objParam[dateTime]=2020-01-01T00%3A00%3A00.000000001Z&objParam[date]=2020-01-01&objParam[decimalStr]=3.14159265358979344719667586&objParam[decimal]=3.141592653589793&objParam[enum]=one&objParam[float32]=1.1&objParam[int32Enum]=55&objParam[int32]=1&objParam[intEnum]=2&objParam[int]=1&objParam[num]=1.1&objParam[strOpt]=testOptional&objParam[str]=test | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResArgs.md b/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResArgs.md deleted file mode 100755 index 680dea7b2..000000000 --- a/csharp-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResArgs.md +++ /dev/null @@ -1,26 +0,0 @@ -# DeepObjectQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | -| `ObjArrParamArr` | List<*string*> | :heavy_check_mark: | N/A | | -| `ObjParamAny` | *string* | :heavy_check_mark: | N/A | any | -| `ObjParamBigintStr` | *string* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `ObjParamBigint` | *string* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `ObjParamBoolOpt` | *string* | :heavy_check_mark: | N/A | true | -| `ObjParamBool` | *string* | :heavy_check_mark: | N/A | true | -| `ObjParamDateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `ObjParamDate` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | -| `ObjParamDecimalStr` | *string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `ObjParamDecimal` | *string* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `ObjParamEnum` | *string* | :heavy_check_mark: | N/A | one | -| `ObjParamFloat32` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `ObjParamInt32Enum` | *string* | :heavy_check_mark: | N/A | 55 | -| `ObjParamInt32` | *string* | :heavy_check_mark: | N/A | 1 | -| `ObjParamIntEnum` | *string* | :heavy_check_mark: | N/A | 2 | -| `ObjParamInt` | *string* | :heavy_check_mark: | N/A | 1 | -| `ObjParamNum` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `ObjParamStrOpt` | *string* | :heavy_check_mark: | N/A | testOptional | -| `ObjParamStr` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md deleted file mode 100755 index e972916b4..000000000 --- a/csharp-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# DeprecatedObjectInSchemaGet200ApplicationJSON - -A successful response that contains a deprecatedObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| ~~`Json`~~ | [DeprecatedObject](../../models/shared/DeprecatedObject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md b/csharp-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md index 7a03dc45a..68ffab462 100755 --- a/csharp-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md +++ b/csharp-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `DeprecatedObjectInSchemaGet200ApplicationJSONObject` | [DeprecatedObjectInSchemaGet200ApplicationJSON](../../models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [DeprecatedObjectInSchemaGetResponseBody](../../models/operations/DeprecatedObjectInSchemaGetResponseBody.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md b/csharp-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md new file mode 100755 index 000000000..e6dc25b40 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md @@ -0,0 +1,10 @@ +# DeprecatedObjectInSchemaGetResponseBody + +A successful response that contains a deprecatedObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | +| ~~`Json`~~ | [DeprecatedObject](../../models/shared/DeprecatedObject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/DifferentFileName.md b/csharp-client-sdk/docs/models/operations/DifferentFileName.md new file mode 100755 index 000000000..7f34a0e12 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/DifferentFileName.md @@ -0,0 +1,9 @@ +# DifferentFileName + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Content` | *byte[]* | :heavy_check_mark: | N/A | +| `FileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/Empty.md b/csharp-client-sdk/docs/models/operations/Empty.md new file mode 100755 index 000000000..f9f6b3eab --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/Empty.md @@ -0,0 +1,7 @@ +# Empty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/EmptyRespWithEmptyProperies.md b/csharp-client-sdk/docs/models/operations/EmptyRespWithEmptyProperies.md new file mode 100755 index 000000000..1da3e5d24 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/EmptyRespWithEmptyProperies.md @@ -0,0 +1,7 @@ +# EmptyRespWithEmptyProperies + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md b/csharp-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md deleted file mode 100755 index bbddca47a..000000000 --- a/csharp-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md +++ /dev/null @@ -1,9 +0,0 @@ -# EmptyResponseObjectWithCommentGet200ApplicationOctetStream - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md b/csharp-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md new file mode 100755 index 000000000..5098e6819 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md @@ -0,0 +1,9 @@ +# EmptyResponseObjectWithCommentGetResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/EmptyWithEmptyProperties.md b/csharp-client-sdk/docs/models/operations/EmptyWithEmptyProperties.md new file mode 100755 index 000000000..535ae89ed --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/EmptyWithEmptyProperties.md @@ -0,0 +1,7 @@ +# EmptyWithEmptyProperties + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/EnumNameOverride.md b/csharp-client-sdk/docs/models/operations/EnumNameOverride.md new file mode 100755 index 000000000..214bf6347 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/EnumNameOverride.md @@ -0,0 +1,12 @@ +# EnumNameOverride + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `Value1` | value1 | +| `Value2` | value2 | +| `Value3` | value3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/EnumParameter.md b/csharp-client-sdk/docs/models/operations/EnumParameter.md new file mode 100755 index 000000000..ddb69e96e --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/EnumParameter.md @@ -0,0 +1,12 @@ +# EnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `Value1` | value1 | +| `Value2` | value2 | +| `Value3` | value3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/File.md b/csharp-client-sdk/docs/models/operations/File.md new file mode 100755 index 000000000..81991821b --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/File.md @@ -0,0 +1,9 @@ +# File + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Content` | *byte[]* | :heavy_check_mark: | N/A | +| `FileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/Form.md b/csharp-client-sdk/docs/models/operations/Form.md new file mode 100755 index 000000000..5d53fdf22 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/Form.md @@ -0,0 +1,14 @@ +# Form + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Arr` | *string* | :heavy_check_mark: | N/A | +| `Bool` | *string* | :heavy_check_mark: | N/A | +| `Int` | *string* | :heavy_check_mark: | N/A | +| `Map` | *string* | :heavy_check_mark: | N/A | +| `Num` | *string* | :heavy_check_mark: | N/A | +| `Obj` | *string* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsArrayArgs.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsArrayArgs.md new file mode 100755 index 000000000..d95d77f92 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/FormQueryParamsArrayArgs.md @@ -0,0 +1,9 @@ +# FormQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `ArrParam` | *string* | :heavy_check_mark: | N/A | test,test2 | +| `ArrParamExploded` | List<*string*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md index e405e5274..df6356dd9 100755 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md +++ b/csharp-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | -| `Args` | [FormQueryParamsArrayResArgs](../../models/operations/FormQueryParamsArrayResArgs.md) | :heavy_check_mark: | N/A | | +| `Args` | [FormQueryParamsArrayArgs](../../models/operations/FormQueryParamsArrayArgs.md) | :heavy_check_mark: | N/A | | | `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/array?arrParam=test%2Ctest2&arrParamExploded=1&arrParamExploded=2 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsArrayResArgs.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsArrayResArgs.md deleted file mode 100755 index 812802107..000000000 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsArrayResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `ArrParam` | *string* | :heavy_check_mark: | N/A | test,test2 | -| `ArrParamExploded` | List<*string*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectArgs.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectArgs.md new file mode 100755 index 000000000..736127be1 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectArgs.md @@ -0,0 +1,9 @@ +# FormQueryParamsCamelObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `ItemCount` | *string* | :heavy_check_mark: | N/A | 10 | +| `SearchTerm` | *string* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParam.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParam.md deleted file mode 100755 index f0bc89376..000000000 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParam.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParam - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `EncodedCount` | *string* | :heavy_minus_sign: | N/A | 11 | -| `EncodedTerm` | *string* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md deleted file mode 100755 index 2280a31a8..000000000 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParamExploded - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `ItemCount` | *string* | :heavy_minus_sign: | N/A | 10 | -| `SearchTerm` | *string* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md index 1f0cf04e2..6a43cbdd9 100755 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md +++ b/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `ObjParamExploded` | [FormQueryParamsCamelObjectObjParamExploded](../../models/operations/FormQueryParamsCamelObjectObjParamExploded.md) | :heavy_check_mark: | N/A | -| `ObjParam` | [FormQueryParamsCamelObjectObjParam](../../models/operations/FormQueryParamsCamelObjectObjParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | +| `ObjParamExploded` | [ObjParamExploded](../../models/operations/ObjParamExploded.md) | :heavy_check_mark: | N/A | +| `ObjParam` | [ObjParam](../../models/operations/ObjParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md index 6871edeb5..04c9ad3cf 100755 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md +++ b/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `Args` | [FormQueryParamsCamelObjectResArgs](../../models/operations/FormQueryParamsCamelObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `Args` | [FormQueryParamsCamelObjectArgs](../../models/operations/FormQueryParamsCamelObjectArgs.md) | :heavy_check_mark: | N/A | | | `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/camelObj?item_count=10&obj_param=encoded_count%2C11%2Cencoded_term%2Cbar&search_term=foo | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResArgs.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResArgs.md deleted file mode 100755 index 533d43834..000000000 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `ItemCount` | *string* | :heavy_check_mark: | N/A | 10 | -| `SearchTerm` | *string* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsObjectArgs.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsObjectArgs.md new file mode 100755 index 000000000..89427bc24 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/FormQueryParamsObjectArgs.md @@ -0,0 +1,28 @@ +# FormQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `Any` | *string* | :heavy_check_mark: | N/A | any | +| `Bigint` | *string* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `BigintStr` | *string* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `Bool` | *string* | :heavy_check_mark: | N/A | true | +| `BoolOpt` | *string* | :heavy_minus_sign: | N/A | true | +| `Date` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | +| `DateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `Decimal` | *string* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `DecimalStr` | *string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `Enum` | *string* | :heavy_check_mark: | N/A | one | +| `Float32` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `Int` | *string* | :heavy_check_mark: | N/A | 1 | +| `Int32` | *string* | :heavy_check_mark: | N/A | 1 | +| `Int32Enum` | *string* | :heavy_check_mark: | N/A | 55 | +| `IntEnum` | *string* | :heavy_check_mark: | N/A | 2 | +| `IntOptNull` | *string* | :heavy_minus_sign: | N/A | | +| `Num` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `NumOptNull` | *string* | :heavy_minus_sign: | N/A | | +| `ObjParam` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `Str` | *string* | :heavy_check_mark: | N/A | test | +| `StrOpt` | *string* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md index 53052f7ec..3d9261634 100755 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md +++ b/csharp-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Args` | [FormQueryParamsObjectResArgs](../../models/operations/FormQueryParamsObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `Args` | [FormQueryParamsObjectArgs](../../models/operations/FormQueryParamsObjectArgs.md) | :heavy_check_mark: | N/A | | | `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/obj?any=any&bigint=8821239038968084&bigintStr=9223372036854775808&bool=true&boolOpt=true&date=2020-01-01&dateTime=2020-01-01T00%3A00%3A00.000000001Z&decimal=3.141592653589793&decimalStr=3.14159265358979344719667586&enum=one&float32=1.1&int=1&int32=1&int32Enum=55&intEnum=2&num=1.1&objParam=any%2Cany%2Cbigint%2C8821239038968084%2CbigintStr%2C9223372036854775808%2Cbool%2Ctrue%2CboolOpt%2Ctrue%2Cdate%2C2020-01-01%2CdateTime%2C2020-01-01T00%3A00%3A00.000000001Z%2Cdecimal%2C3.141592653589793%2CdecimalStr%2C3.14159265358979344719667586%2Cenum%2Cone%2Cfloat32%2C1.1%2Cint%2C1%2Cint32%2C1%2Cint32Enum%2C55%2CintEnum%2C2%2Cnum%2C1.1%2Cstr%2Ctest%2CstrOpt%2CtestOptional&str=test&strOpt=testOptional | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsObjectResArgs.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsObjectResArgs.md deleted file mode 100755 index 9c3c5adad..000000000 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsObjectResArgs.md +++ /dev/null @@ -1,28 +0,0 @@ -# FormQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Any` | *string* | :heavy_check_mark: | N/A | any | -| `Bigint` | *string* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `BigintStr` | *string* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `Bool` | *string* | :heavy_check_mark: | N/A | true | -| `BoolOpt` | *string* | :heavy_minus_sign: | N/A | true | -| `Date` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | -| `DateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `Decimal` | *string* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `DecimalStr` | *string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `Enum` | *string* | :heavy_check_mark: | N/A | one | -| `Float32` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `Int` | *string* | :heavy_check_mark: | N/A | 1 | -| `Int32` | *string* | :heavy_check_mark: | N/A | 1 | -| `Int32Enum` | *string* | :heavy_check_mark: | N/A | 55 | -| `IntEnum` | *string* | :heavy_check_mark: | N/A | 2 | -| `IntOptNull` | *string* | :heavy_minus_sign: | N/A | | -| `Num` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `NumOptNull` | *string* | :heavy_minus_sign: | N/A | | -| `ObjParam` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `Str` | *string* | :heavy_check_mark: | N/A | test | -| `StrOpt` | *string* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsPrimitiveArgs.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsPrimitiveArgs.md new file mode 100755 index 000000000..b22d192cc --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/FormQueryParamsPrimitiveArgs.md @@ -0,0 +1,11 @@ +# FormQueryParamsPrimitiveArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `BoolParam` | *string* | :heavy_check_mark: | N/A | true | +| `IntParam` | *string* | :heavy_check_mark: | N/A | 1 | +| `NumParam` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `StrParam` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md index 3ddb5cb7b..3e6c02481 100755 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md +++ b/csharp-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -| `Args` | [FormQueryParamsPrimitiveResArgs](../../models/operations/FormQueryParamsPrimitiveResArgs.md) | :heavy_check_mark: | N/A | | +| `Args` | [FormQueryParamsPrimitiveArgs](../../models/operations/FormQueryParamsPrimitiveArgs.md) | :heavy_check_mark: | N/A | | | `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/primitive?boolParam=true&intParam=1&numParam=1.1&strParam=test | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResArgs.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResArgs.md deleted file mode 100755 index d12382fd6..000000000 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResArgs.md +++ /dev/null @@ -1,11 +0,0 @@ -# FormQueryParamsPrimitiveResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `BoolParam` | *string* | :heavy_check_mark: | N/A | true | -| `IntParam` | *string* | :heavy_check_mark: | N/A | 1 | -| `NumParam` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `StrParam` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectArgs.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectArgs.md new file mode 100755 index 000000000..9dd1af44a --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectArgs.md @@ -0,0 +1,12 @@ +# FormQueryParamsRefParamObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | +| `Bool` | *string* | :heavy_check_mark: | N/A | true | +| `Int` | *string* | :heavy_check_mark: | N/A | 1 | +| `Num` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `RefObjParam` | *string* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | +| `Str` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md index 76ca7dc0e..130e8c9a6 100755 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md +++ b/csharp-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Args` | [FormQueryParamsRefParamObjectResArgs](../../models/operations/FormQueryParamsRefParamObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `Args` | [FormQueryParamsRefParamObjectArgs](../../models/operations/FormQueryParamsRefParamObjectArgs.md) | :heavy_check_mark: | N/A | | | `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/refParamObject?bool=true&int=1&num=1.1&refObjParam=bool%2Ctrue%2Cint%2C1%2Cnum%2C1.1%2Cstr%2Ctest&str=test | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResArgs.md b/csharp-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResArgs.md deleted file mode 100755 index d88bb5ad8..000000000 --- a/csharp-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResArgs.md +++ /dev/null @@ -1,12 +0,0 @@ -# FormQueryParamsRefParamObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -| `Bool` | *string* | :heavy_check_mark: | N/A | true | -| `Int` | *string* | :heavy_check_mark: | N/A | 1 | -| `Num` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `RefObjParam` | *string* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | -| `Str` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md deleted file mode 100755 index 05379b48e..000000000 --- a/csharp-client-sdk/docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# GetGlobalNameOverride200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Json` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md b/csharp-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md index 4d3cdf1a7..44ab907aa 100755 --- a/csharp-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md +++ b/csharp-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `GetGlobalNameOverride200ApplicationJSONObject` | [GetGlobalNameOverride200ApplicationJSON](../../models/operations/GetGlobalNameOverride200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| `Object` | [GetGlobalNameOverrideResponseBody](../../models/operations/GetGlobalNameOverrideResponseBody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/GetGlobalNameOverrideResponseBody.md b/csharp-client-sdk/docs/models/operations/GetGlobalNameOverrideResponseBody.md new file mode 100755 index 000000000..b00b06f5b --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/GetGlobalNameOverrideResponseBody.md @@ -0,0 +1,10 @@ +# GetGlobalNameOverrideResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `Json` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md b/csharp-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md index 6797b5ff3..d647ac262 100755 --- a/csharp-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md +++ b/csharp-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `Args` | [GlobalsQueryParameterGetResArgs](../../models/operations/GlobalsQueryParameterGetResArgs.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | +| `Args` | [Args](../../models/operations/Args.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/GlobalsQueryParameterGetResArgs.md b/csharp-client-sdk/docs/models/operations/GlobalsQueryParameterGetResArgs.md deleted file mode 100755 index b91513df0..000000000 --- a/csharp-client-sdk/docs/models/operations/GlobalsQueryParameterGetResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# GlobalsQueryParameterGetResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `GlobalQueryParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/HeaderParamsArrayRes.md b/csharp-client-sdk/docs/models/operations/HeaderParamsArrayRes.md index dd3546343..7cc4a600a 100755 --- a/csharp-client-sdk/docs/models/operations/HeaderParamsArrayRes.md +++ b/csharp-client-sdk/docs/models/operations/HeaderParamsArrayRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `Headers` | [HeaderParamsArrayResHeaders](../../models/operations/HeaderParamsArrayResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | +| `Headers` | [Headers](../../models/operations/Headers.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/HeaderParamsArrayResHeaders.md b/csharp-client-sdk/docs/models/operations/HeaderParamsArrayResHeaders.md deleted file mode 100755 index fee659498..000000000 --- a/csharp-client-sdk/docs/models/operations/HeaderParamsArrayResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# HeaderParamsArrayResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `XHeaderArray` | *string* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/HeaderParamsMapHeaders.md b/csharp-client-sdk/docs/models/operations/HeaderParamsMapHeaders.md new file mode 100755 index 000000000..bd9b020bd --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/HeaderParamsMapHeaders.md @@ -0,0 +1,9 @@ +# HeaderParamsMapHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | +| `XHeaderMap` | *string* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | +| `XHeaderMapExplode` | *string* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/HeaderParamsMapRes.md b/csharp-client-sdk/docs/models/operations/HeaderParamsMapRes.md index 90f846ab5..efb5ae1c3 100755 --- a/csharp-client-sdk/docs/models/operations/HeaderParamsMapRes.md +++ b/csharp-client-sdk/docs/models/operations/HeaderParamsMapRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `Headers` | [HeaderParamsMapResHeaders](../../models/operations/HeaderParamsMapResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | +| `Headers` | [HeaderParamsMapHeaders](../../models/operations/HeaderParamsMapHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/HeaderParamsMapResHeaders.md b/csharp-client-sdk/docs/models/operations/HeaderParamsMapResHeaders.md deleted file mode 100755 index dcc67f174..000000000 --- a/csharp-client-sdk/docs/models/operations/HeaderParamsMapResHeaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsMapResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | -| `XHeaderMap` | *string* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | -| `XHeaderMapExplode` | *string* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/HeaderParamsObjectHeaders.md b/csharp-client-sdk/docs/models/operations/HeaderParamsObjectHeaders.md new file mode 100755 index 000000000..3c2e2486d --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/HeaderParamsObjectHeaders.md @@ -0,0 +1,9 @@ +# HeaderParamsObjectHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `XHeaderObj` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `XHeaderObjExplode` | *string* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/HeaderParamsObjectRes.md b/csharp-client-sdk/docs/models/operations/HeaderParamsObjectRes.md index 5a8b4617d..d74213d05 100755 --- a/csharp-client-sdk/docs/models/operations/HeaderParamsObjectRes.md +++ b/csharp-client-sdk/docs/models/operations/HeaderParamsObjectRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `Headers` | [HeaderParamsObjectResHeaders](../../models/operations/HeaderParamsObjectResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | +| `Headers` | [HeaderParamsObjectHeaders](../../models/operations/HeaderParamsObjectHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/HeaderParamsObjectResHeaders.md b/csharp-client-sdk/docs/models/operations/HeaderParamsObjectResHeaders.md deleted file mode 100755 index 628a4a0c6..000000000 --- a/csharp-client-sdk/docs/models/operations/HeaderParamsObjectResHeaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsObjectResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `XHeaderObj` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `XHeaderObjExplode` | *string* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/HeaderParamsPrimitiveHeaders.md b/csharp-client-sdk/docs/models/operations/HeaderParamsPrimitiveHeaders.md new file mode 100755 index 000000000..5288bc896 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/HeaderParamsPrimitiveHeaders.md @@ -0,0 +1,11 @@ +# HeaderParamsPrimitiveHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `XHeaderBoolean` | *string* | :heavy_check_mark: | N/A | true | +| `XHeaderInteger` | *string* | :heavy_check_mark: | N/A | 1 | +| `XHeaderNumber` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `XHeaderString` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md b/csharp-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md index df873e275..d275fc1b3 100755 --- a/csharp-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md +++ b/csharp-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `Headers` | [HeaderParamsPrimitiveResHeaders](../../models/operations/HeaderParamsPrimitiveResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `Headers` | [HeaderParamsPrimitiveHeaders](../../models/operations/HeaderParamsPrimitiveHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/HeaderParamsPrimitiveResHeaders.md b/csharp-client-sdk/docs/models/operations/HeaderParamsPrimitiveResHeaders.md deleted file mode 100755 index 30fbf6bf9..000000000 --- a/csharp-client-sdk/docs/models/operations/HeaderParamsPrimitiveResHeaders.md +++ /dev/null @@ -1,11 +0,0 @@ -# HeaderParamsPrimitiveResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `XHeaderBoolean` | *string* | :heavy_check_mark: | N/A | true | -| `XHeaderInteger` | *string* | :heavy_check_mark: | N/A | 1 | -| `XHeaderNumber` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `XHeaderString` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/Headers.md b/csharp-client-sdk/docs/models/operations/Headers.md new file mode 100755 index 000000000..8cc07a81d --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/Headers.md @@ -0,0 +1,8 @@ +# Headers + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `XHeaderArray` | *string* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md deleted file mode 100755 index 121ed7680..000000000 --- a/csharp-client-sdk/docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# IgnoredGenerationGet200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Json` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md b/csharp-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md index 9ad821fcf..db4ef39fc 100755 --- a/csharp-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md +++ b/csharp-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `IgnoredGenerationGet200ApplicationJSONObject` | [IgnoredGenerationGet200ApplicationJSON](../../models/operations/IgnoredGenerationGet200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| `Object` | [IgnoredGenerationGetResponseBody](../../models/operations/IgnoredGenerationGetResponseBody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/IgnoredGenerationGetResponseBody.md b/csharp-client-sdk/docs/models/operations/IgnoredGenerationGetResponseBody.md new file mode 100755 index 000000000..5ef5f00b8 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/IgnoredGenerationGetResponseBody.md @@ -0,0 +1,10 @@ +# IgnoredGenerationGetResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `Json` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/IgnoresPostApplicationJSON.md b/csharp-client-sdk/docs/models/operations/IgnoresPostApplicationJSON.md deleted file mode 100755 index 755667534..000000000 --- a/csharp-client-sdk/docs/models/operations/IgnoresPostApplicationJSON.md +++ /dev/null @@ -1,9 +0,0 @@ -# IgnoresPostApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `CallbackUrl` | *string* | :heavy_minus_sign: | N/A | -| `TestProp` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/IgnoresPostRequest.md b/csharp-client-sdk/docs/models/operations/IgnoresPostRequest.md index f2084dc5b..0f79bece1 100755 --- a/csharp-client-sdk/docs/models/operations/IgnoresPostRequest.md +++ b/csharp-client-sdk/docs/models/operations/IgnoresPostRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `RequestBody` | [IgnoresPostApplicationJSON](../../models/operations/IgnoresPostApplicationJSON.md) | :heavy_check_mark: | N/A | -| `TestParam` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | +| `RequestBody` | [IgnoresPostRequestBody](../../models/operations/IgnoresPostRequestBody.md) | :heavy_check_mark: | N/A | +| `TestParam` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/IgnoresPostRequestBody.md b/csharp-client-sdk/docs/models/operations/IgnoresPostRequestBody.md new file mode 100755 index 000000000..f9b51585a --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/IgnoresPostRequestBody.md @@ -0,0 +1,9 @@ +# IgnoresPostRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `CallbackUrl` | *string* | :heavy_minus_sign: | N/A | +| `TestProp` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md b/csharp-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md index 168aab405..81a811e94 100755 --- a/csharp-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md +++ b/csharp-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `Args` | Dictionary | :heavy_check_mark: | N/A | -| `Json` | [InlineBodyAndParamConflictResJson](../../models/operations/InlineBodyAndParamConflictResJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | +| `Args` | Dictionary | :heavy_check_mark: | N/A | +| `Json` | [Json](../../models/operations/Json.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/InlineBodyAndParamConflictResJson.md b/csharp-client-sdk/docs/models/operations/InlineBodyAndParamConflictResJson.md deleted file mode 100755 index fa68dd2fc..000000000 --- a/csharp-client-sdk/docs/models/operations/InlineBodyAndParamConflictResJson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamConflictResJson - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictJson.md b/csharp-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictJson.md new file mode 100755 index 000000000..035b02511 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictJson.md @@ -0,0 +1,8 @@ +# InlineBodyAndParamNoConflictJson + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `BodyStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md b/csharp-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md index ab3e0b941..4880e351a 100755 --- a/csharp-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md +++ b/csharp-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `Args` | Dictionary | :heavy_check_mark: | N/A | -| `Json` | [InlineBodyAndParamNoConflictResJson](../../models/operations/InlineBodyAndParamNoConflictResJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `Args` | Dictionary | :heavy_check_mark: | N/A | +| `Json` | [InlineBodyAndParamNoConflictJson](../../models/operations/InlineBodyAndParamNoConflictJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResJson.md b/csharp-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResJson.md deleted file mode 100755 index e414e1828..000000000 --- a/csharp-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResJson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamNoConflictResJson - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `BodyStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/Json.md b/csharp-client-sdk/docs/models/operations/Json.md new file mode 100755 index 000000000..eb7bc757b --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/Json.md @@ -0,0 +1,8 @@ +# Json + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/JsonQueryParamsObjectArgs.md b/csharp-client-sdk/docs/models/operations/JsonQueryParamsObjectArgs.md new file mode 100755 index 000000000..b8879276c --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/JsonQueryParamsObjectArgs.md @@ -0,0 +1,9 @@ +# JsonQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `DeepObjParam` | *string* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | +| `SimpleObjParam` | *string* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md b/csharp-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md index 50e5ef0a7..b733b60c8 100755 --- a/csharp-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md +++ b/csharp-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Args` | [JsonQueryParamsObjectResArgs](../../models/operations/JsonQueryParamsObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `Args` | [JsonQueryParamsObjectArgs](../../models/operations/JsonQueryParamsObjectArgs.md) | :heavy_check_mark: | N/A | | | `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/json/obj?deepObjParam={"any"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"arr"%3A[{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}]%2C"bool"%3Atrue%2C"int"%3A1%2C"map"%3A{"key"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"key2"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}}%2C"num"%3A1.1%2C"obj"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"str"%3A"test"}&simpleObjParam={"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"} | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/JsonQueryParamsObjectResArgs.md b/csharp-client-sdk/docs/models/operations/JsonQueryParamsObjectResArgs.md deleted file mode 100755 index d8cc5aebf..000000000 --- a/csharp-client-sdk/docs/models/operations/JsonQueryParamsObjectResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# JsonQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `DeepObjParam` | *string* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | -| `SimpleObjParam` | *string* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseArgs.md b/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseArgs.md new file mode 100755 index 000000000..f6ca7ea48 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseArgs.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseHeaders.md b/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseHeaders.md new file mode 100755 index 000000000..0cfb81a76 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseHeaders.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `HeaderParam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md b/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md index 61364860c..2efda9b57 100755 --- a/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md +++ b/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `Args` | [MixedParametersCamelCaseResArgs](../../models/operations/MixedParametersCamelCaseResArgs.md) | :heavy_check_mark: | N/A | | -| `Headers` | [MixedParametersCamelCaseResHeaders](../../models/operations/MixedParametersCamelCaseResHeaders.md) | :heavy_check_mark: | N/A | | -| `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `Args` | [MixedParametersCamelCaseArgs](../../models/operations/MixedParametersCamelCaseArgs.md) | :heavy_check_mark: | N/A | | +| `Headers` | [MixedParametersCamelCaseHeaders](../../models/operations/MixedParametersCamelCaseHeaders.md) | :heavy_check_mark: | N/A | | +| `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseResArgs.md b/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseResArgs.md deleted file mode 100755 index da70c1038..000000000 --- a/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseResHeaders.md b/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseResHeaders.md deleted file mode 100755 index 1250cc6c3..000000000 --- a/csharp-client-sdk/docs/models/operations/MixedParametersCamelCaseResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `HeaderParam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesArgs.md b/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesArgs.md new file mode 100755 index 000000000..fc9ec1810 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesArgs.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesHeaders.md b/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesHeaders.md new file mode 100755 index 000000000..40e4caa87 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesHeaders.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `Headerparam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md b/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md index f13f7380e..aa26bf65c 100755 --- a/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md +++ b/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `Args` | [MixedParametersPrimitivesResArgs](../../models/operations/MixedParametersPrimitivesResArgs.md) | :heavy_check_mark: | N/A | | -| `Headers` | [MixedParametersPrimitivesResHeaders](../../models/operations/MixedParametersPrimitivesResHeaders.md) | :heavy_check_mark: | N/A | | -| `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `Args` | [MixedParametersPrimitivesArgs](../../models/operations/MixedParametersPrimitivesArgs.md) | :heavy_check_mark: | N/A | | +| `Headers` | [MixedParametersPrimitivesHeaders](../../models/operations/MixedParametersPrimitivesHeaders.md) | :heavy_check_mark: | N/A | | +| `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesResArgs.md b/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesResArgs.md deleted file mode 100755 index cca52b129..000000000 --- a/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesResHeaders.md b/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesResHeaders.md deleted file mode 100755 index ebf450068..000000000 --- a/csharp-client-sdk/docs/models/operations/MixedParametersPrimitivesResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `Headerparam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NameOverrideGetEnumNameOverride.md b/csharp-client-sdk/docs/models/operations/NameOverrideGetEnumNameOverride.md deleted file mode 100755 index 9056f5918..000000000 --- a/csharp-client-sdk/docs/models/operations/NameOverrideGetEnumNameOverride.md +++ /dev/null @@ -1,12 +0,0 @@ -# NameOverrideGetEnumNameOverride - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `Value1` | value1 | -| `Value2` | value2 | -| `Value3` | value3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NameOverrideGetOverriddenResponse.md b/csharp-client-sdk/docs/models/operations/NameOverrideGetOverriddenResponse.md new file mode 100755 index 000000000..ea2c51cf7 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/NameOverrideGetOverriddenResponse.md @@ -0,0 +1,10 @@ +# NameOverrideGetOverriddenResponse + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `Json` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NameOverrideGetRequest.md b/csharp-client-sdk/docs/models/operations/NameOverrideGetRequest.md index dc515d9d9..2bfe73506 100755 --- a/csharp-client-sdk/docs/models/operations/NameOverrideGetRequest.md +++ b/csharp-client-sdk/docs/models/operations/NameOverrideGetRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `TestEnumQueryParam` | [NameOverrideGetEnumNameOverride](../../models/operations/NameOverrideGetEnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | -| `TestQueryParam` | *string* | :heavy_check_mark: | N/A | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | +| `TestEnumQueryParam` | [EnumNameOverride](../../models/operations/EnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | +| `TestQueryParam` | *string* | :heavy_check_mark: | N/A | example | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NameOverrideGetResponse.md b/csharp-client-sdk/docs/models/operations/NameOverrideGetResponse.md index 2b98cd7ca..4e48b099d 100755 --- a/csharp-client-sdk/docs/models/operations/NameOverrideGetResponse.md +++ b/csharp-client-sdk/docs/models/operations/NameOverrideGetResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `OverriddenResponse` | [OverriddenResponse](../../models/operations/OverriddenResponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| `OverriddenResponse` | [NameOverrideGetOverriddenResponse](../../models/operations/NameOverrideGetOverriddenResponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableOptionalObj.md b/csharp-client-sdk/docs/models/operations/NullableOptionalObj.md new file mode 100755 index 000000000..a4e5f26bb --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/NullableOptionalObj.md @@ -0,0 +1,7 @@ +# NullableOptionalObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md b/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md index dce2fc511..c034e0576 100755 --- a/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md +++ b/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `NullableRequiredObj` | [NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj](../../models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md) | :heavy_check_mark: | N/A | -| `RequiredObj` | [NullableRequiredEmptyObjectPostRequestBodyRequiredObj](../../models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md) | :heavy_check_mark: | N/A | -| `NullableOptionalObj` | [NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj](../../models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | +| `NullableRequiredObj` | [NullableRequiredObj](../../models/operations/NullableRequiredObj.md) | :heavy_check_mark: | N/A | +| `RequiredObj` | [RequiredObj](../../models/operations/RequiredObj.md) | :heavy_check_mark: | N/A | +| `NullableOptionalObj` | [NullableOptionalObj](../../models/operations/NullableOptionalObj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md b/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md deleted file mode 100755 index 4bd625eb3..000000000 --- a/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md b/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md deleted file mode 100755 index f5a542eea..000000000 --- a/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md b/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md deleted file mode 100755 index 20a807232..000000000 --- a/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md b/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md index 3423dedc1..6b34ad4e1 100755 --- a/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md +++ b/csharp-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `NullableRequiredEmptyObjectPost200ApplicationJSONString` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableRequiredEnum.md b/csharp-client-sdk/docs/models/operations/NullableRequiredEnum.md new file mode 100755 index 000000000..28484cb2b --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/NullableRequiredEnum.md @@ -0,0 +1,9 @@ +# NullableRequiredEnum + + +## Values + +| Name | Value | +| -------- | -------- | +| `First` | first | +| `Second` | second | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableRequiredObj.md b/csharp-client-sdk/docs/models/operations/NullableRequiredObj.md new file mode 100755 index 000000000..b1e3ab8c2 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/NullableRequiredObj.md @@ -0,0 +1,7 @@ +# NullableRequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md b/csharp-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md index 0cecf4c32..1b9e33e72 100755 --- a/csharp-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md +++ b/csharp-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -| `NullableRequiredArray` | List<*double*> | :heavy_check_mark: | N/A | -| `NullableRequiredEnum` | [NullableRequiredPropertyPostRequestBodyNullableRequiredEnum](../../models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md) | :heavy_check_mark: | N/A | -| `NullableRequiredInt` | *long* | :heavy_check_mark: | N/A | -| `NullableOptionalInt` | *long* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `NullableRequiredArray` | List<*double*> | :heavy_check_mark: | N/A | +| `NullableRequiredEnum` | [NullableRequiredEnum](../../models/operations/NullableRequiredEnum.md) | :heavy_check_mark: | N/A | +| `NullableRequiredInt` | *long* | :heavy_check_mark: | N/A | +| `NullableOptionalInt` | *long* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md b/csharp-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md deleted file mode 100755 index 318a96e26..000000000 --- a/csharp-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md +++ /dev/null @@ -1,9 +0,0 @@ -# NullableRequiredPropertyPostRequestBodyNullableRequiredEnum - - -## Values - -| Name | Value | -| -------- | -------- | -| `First` | first | -| `Second` | second | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md b/csharp-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md index f2c08b99d..60cce3508 100755 --- a/csharp-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md +++ b/csharp-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `NullableRequiredPropertyPost200ApplicationJSONString` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md b/csharp-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md index e6c7489d6..e425be679 100755 --- a/csharp-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md +++ b/csharp-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `NullableRequiredSharedObjectPost200ApplicationJSONString` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/Obj.md b/csharp-client-sdk/docs/models/operations/Obj.md new file mode 100755 index 000000000..f64ff2f08 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/Obj.md @@ -0,0 +1,10 @@ +# Obj + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool` | *bool* | :heavy_check_mark: | N/A | +| `Num` | *double* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ObjArrParam.md b/csharp-client-sdk/docs/models/operations/ObjArrParam.md new file mode 100755 index 000000000..ab7ad47d7 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/ObjArrParam.md @@ -0,0 +1,8 @@ +# ObjArrParam + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Arr` | List<*string*> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ObjParam.md b/csharp-client-sdk/docs/models/operations/ObjParam.md new file mode 100755 index 000000000..20d4b9e36 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/ObjParam.md @@ -0,0 +1,9 @@ +# ObjParam + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `EncodedCount` | *string* | :heavy_minus_sign: | N/A | 11 | +| `EncodedTerm` | *string* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ObjParamExploded.md b/csharp-client-sdk/docs/models/operations/ObjParamExploded.md new file mode 100755 index 000000000..46f1bad23 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/ObjParamExploded.md @@ -0,0 +1,9 @@ +# ObjParamExploded + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `ItemCount` | *string* | :heavy_minus_sign: | N/A | 10 | +| `SearchTerm` | *string* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/OptEnumParameter.md b/csharp-client-sdk/docs/models/operations/OptEnumParameter.md new file mode 100755 index 000000000..48e54e2a4 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/OptEnumParameter.md @@ -0,0 +1,12 @@ +# OptEnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `Value1` | value1 | +| `Value2` | value2 | +| `Value3` | value3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/OverriddenResponse.md b/csharp-client-sdk/docs/models/operations/OverriddenResponse.md deleted file mode 100755 index c811d93a1..000000000 --- a/csharp-client-sdk/docs/models/operations/OverriddenResponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# OverriddenResponse - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Json` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md b/csharp-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md new file mode 100755 index 000000000..47342bf00 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md @@ -0,0 +1,9 @@ +# PipeDelimitedQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `ArrParam` | *string* | :heavy_check_mark: | N/A | test\|test2 | +| `ArrParamExploded` | List<*string*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md b/csharp-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md index a52a088e1..a9cbf6561 100755 --- a/csharp-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md +++ b/csharp-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `Args` | [PipeDelimitedQueryParamsArrayResArgs](../../models/operations/PipeDelimitedQueryParamsArrayResArgs.md) | :heavy_check_mark: | N/A | | +| `Args` | [PipeDelimitedQueryParamsArrayArgs](../../models/operations/PipeDelimitedQueryParamsArrayArgs.md) | :heavy_check_mark: | N/A | | | `Url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/pipe/array?arrParam=test\|test2&arrParamExploded=1&arrParamExploded=2&mapParam=key1\|val1\|key2\|val2&objParam=any\|any\|bigint\|8821239038968084\|bigintStr\|9223372036854775808\|bool\|true\|boolOpt\|true\|date\|2020-01-01\|dateTime\|2020-01-01T00%3A00%3A00.000000001Z\|decimal\|3.141592653589793\|decimalStr\|3.14159265358979344719667586\|enum\|one\|float32\|1.1\|int\|1\|int32\|1\|int32Enum\|55\|intEnum\|2\|num\|1.1\|str\|test\|strOpt\|testOptional | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md b/csharp-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md deleted file mode 100755 index 0459d04ec..000000000 --- a/csharp-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# PipeDelimitedQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `ArrParam` | *string* | :heavy_check_mark: | N/A | test\|test2 | -| `ArrParamExploded` | List<*string*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md deleted file mode 100755 index 54f12e33b..000000000 --- a/csharp-client-sdk/docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# PutAnythingIgnoredGeneration200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Json` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md b/csharp-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md index ea73eb55d..a4951c64c 100755 --- a/csharp-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md +++ b/csharp-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `PutAnythingIgnoredGeneration200ApplicationJSONObject` | [PutAnythingIgnoredGeneration200ApplicationJSON](../../models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [PutAnythingIgnoredGenerationResponseBody](../../models/operations/PutAnythingIgnoredGenerationResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md b/csharp-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md new file mode 100755 index 000000000..5cded1abe --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md @@ -0,0 +1,10 @@ +# PutAnythingIgnoredGenerationResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Json` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md index 6cbd0140c..df68d5fbf 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `SimpleObjectCamelCases` | List<[SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md)> | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | List<[SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md)> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md index 79d11fd9e..bd61ae774 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Arrs` | List> | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | List> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md index 9246c6879..6a6904f51 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Arrs` | List> | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | List> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md index 157dccd35..416f4d4bc 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Arrs` | List> | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | List> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md index f6c4acf41..17ca18e1e 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Maps` | List> | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | List> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md index 7a10df4ed..81c973923 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Maps` | List> | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | List> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md index c514237ed..941554fd1 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Strings` | List<*string*> | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | List<*string*> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md index 11c8ba466..84ac380b8 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `SimpleObjects` | List<[SimpleObject](../../models/shared/SimpleObject.md)> | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | List<[SimpleObject](../../models/shared/SimpleObject.md)> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md deleted file mode 100755 index b38b58681..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostComplexNumberTypes200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | -| `Json` | [ComplexNumberTypes](../../models/shared/ComplexNumberTypes.md) | :heavy_check_mark: | N/A | -| `Url` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md index 088797e1c..b59075e98 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostComplexNumberTypes200ApplicationJSONObject` | [RequestBodyPostComplexNumberTypes200ApplicationJSON](../../models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostComplexNumberTypesResponseBody](../../models/operations/RequestBodyPostComplexNumberTypesResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md new file mode 100755 index 000000000..ea42ca677 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostComplexNumberTypesResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | +| `Json` | [ComplexNumberTypes](../../models/shared/ComplexNumberTypes.md) | :heavy_check_mark: | N/A | +| `Url` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md deleted file mode 100755 index 805c4a38b..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostDefaultsAndConsts200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| `Json` | [DefaultsAndConstsOutput](../../models/shared/DefaultsAndConstsOutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md index c7569bb52..8497d9066 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostDefaultsAndConsts200ApplicationJSONObject` | [RequestBodyPostDefaultsAndConsts200ApplicationJSON](../../models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostDefaultsAndConstsResponseBody](../../models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md new file mode 100755 index 000000000..2299c3ce4 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostDefaultsAndConstsResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | +| `Json` | [DefaultsAndConstsOutput](../../models/shared/DefaultsAndConstsOutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md deleted file mode 100755 index 202f43393..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Empty` | [RequestBodyPostEmptyObject200ApplicationJSONEmpty](../../models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md) | :heavy_minus_sign: | N/A | -| `EmptyRespWithEmptyProperies` | [RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies](../../models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md deleted file mode 100755 index 6248bf538..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md deleted file mode 100755 index 27326d373..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectEmpty.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectEmpty.md new file mode 100755 index 000000000..7624b0484 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectEmpty.md @@ -0,0 +1,7 @@ +# RequestBodyPostEmptyObjectEmpty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md index bc0eb6342..ec32d9ae5 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Empty` | [RequestBodyPostEmptyObjectRequestBodyEmpty](../../models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md) | :heavy_minus_sign: | N/A | -| `EmptyWithEmptyProperties` | [RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties](../../models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | +| `Empty` | [Empty](../../models/operations/Empty.md) | :heavy_minus_sign: | N/A | +| `EmptyWithEmptyProperties` | [EmptyWithEmptyProperties](../../models/operations/EmptyWithEmptyProperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md deleted file mode 100755 index 60e906506..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md deleted file mode 100755 index 66bb29b41..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md index 47330796b..ef70d23e4 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostEmptyObject200ApplicationJSONObject` | [RequestBodyPostEmptyObject200ApplicationJSON](../../models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostEmptyObjectResponseBody](../../models/operations/RequestBodyPostEmptyObjectResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md new file mode 100755 index 000000000..c5fc2b509 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostEmptyObjectResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `Empty` | [RequestBodyPostEmptyObjectEmpty](../../models/operations/RequestBodyPostEmptyObjectEmpty.md) | :heavy_minus_sign: | N/A | +| `EmptyRespWithEmptyProperies` | [EmptyRespWithEmptyProperies](../../models/operations/EmptyRespWithEmptyProperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md index 03b43783a..4a96c8ac1 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `Form` | [RequestBodyPostFormDeepResForm](../../models/operations/RequestBodyPostFormDeepResForm.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | +| `Form` | [Form](../../models/operations/Form.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormDeepResForm.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostFormDeepResForm.md deleted file mode 100755 index 21eb1ad96..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormDeepResForm.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPostFormDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Arr` | *string* | :heavy_check_mark: | N/A | -| `Bool` | *string* | :heavy_check_mark: | N/A | -| `Int` | *string* | :heavy_check_mark: | N/A | -| `Map` | *string* | :heavy_check_mark: | N/A | -| `Num` | *string* | :heavy_check_mark: | N/A | -| `Obj` | *string* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleForm.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleForm.md new file mode 100755 index 000000000..23df1e9b7 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleForm.md @@ -0,0 +1,21 @@ +# RequestBodyPostFormSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Any` | *string* | :heavy_check_mark: | N/A | +| `Bool` | *string* | :heavy_check_mark: | N/A | +| `BoolOpt` | *string* | :heavy_minus_sign: | N/A | +| `Date` | *string* | :heavy_check_mark: | N/A | +| `DateTime` | *string* | :heavy_check_mark: | N/A | +| `Enum` | *string* | :heavy_check_mark: | N/A | +| `Float32` | *string* | :heavy_check_mark: | N/A | +| `Int` | *string* | :heavy_check_mark: | N/A | +| `Int32` | *string* | :heavy_check_mark: | N/A | +| `IntOptNull` | *string* | :heavy_minus_sign: | N/A | +| `Num` | *string* | :heavy_check_mark: | N/A | +| `NumOptNull` | *string* | :heavy_minus_sign: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | +| `StrOpt` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleHeaders.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleHeaders.md new file mode 100755 index 000000000..40f1a4363 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleHeaders.md @@ -0,0 +1,8 @@ +# RequestBodyPostFormSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `ContentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md index 3342d951a..33925f8b6 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `Form` | [RequestBodyPostFormSimpleResForm](../../models/operations/RequestBodyPostFormSimpleResForm.md) | :heavy_check_mark: | N/A | -| `Headers` | [RequestBodyPostFormSimpleResHeaders](../../models/operations/RequestBodyPostFormSimpleResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `Form` | [RequestBodyPostFormSimpleForm](../../models/operations/RequestBodyPostFormSimpleForm.md) | :heavy_check_mark: | N/A | +| `Headers` | [RequestBodyPostFormSimpleHeaders](../../models/operations/RequestBodyPostFormSimpleHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResForm.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResForm.md deleted file mode 100755 index 666bb54f6..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResForm.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPostFormSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Any` | *string* | :heavy_check_mark: | N/A | -| `Bool` | *string* | :heavy_check_mark: | N/A | -| `BoolOpt` | *string* | :heavy_minus_sign: | N/A | -| `Date` | *string* | :heavy_check_mark: | N/A | -| `DateTime` | *string* | :heavy_check_mark: | N/A | -| `Enum` | *string* | :heavy_check_mark: | N/A | -| `Float32` | *string* | :heavy_check_mark: | N/A | -| `Int` | *string* | :heavy_check_mark: | N/A | -| `Int32` | *string* | :heavy_check_mark: | N/A | -| `IntOptNull` | *string* | :heavy_minus_sign: | N/A | -| `Num` | *string* | :heavy_check_mark: | N/A | -| `NumOptNull` | *string* | :heavy_minus_sign: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | -| `StrOpt` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResHeaders.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResHeaders.md deleted file mode 100755 index 08522b2f8..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPostFormSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `ContentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md deleted file mode 100755 index 79f1131d1..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | List<*BigInteger*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md deleted file mode 100755 index 0295b3d0a..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | List<[LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html)> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md deleted file mode 100755 index e30f5e96f..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | List<*decimal*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md deleted file mode 100755 index de698a8b9..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | *BigInteger* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md deleted file mode 100755 index cbebc92fa..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | *BigInteger* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md deleted file mode 100755 index 9b2c0f1c4..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesBoolean200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Json` | *bool* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md deleted file mode 100755 index b73ccd3ce..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md deleted file mode 100755 index 41b3c0ae8..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md deleted file mode 100755 index de52e659d..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | *decimal* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md deleted file mode 100755 index fcd029bbc..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | *decimal* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md deleted file mode 100755 index b74a323aa..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesFloat32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Json` | *double* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md deleted file mode 100755 index 92de69200..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInt32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md deleted file mode 100755 index fecfc0769..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInteger200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Json` | *long* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md deleted file mode 100755 index b99450fd1..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md deleted file mode 100755 index f3882d0fd..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md deleted file mode 100755 index 60aa79aa2..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------- | ----------------------------- | ----------------------------- | ----------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md deleted file mode 100755 index 9e34456c7..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesNumber200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Json` | *double* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md deleted file mode 100755 index 9becf1a04..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesString200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md index be2eed9b2..06ef855b4 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesArrayBigIntResponseBody](../../models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md new file mode 100755 index 000000000..0c895f3d6 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | List<*BigInteger*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md index 7064e581a..be9b42d3c 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesArrayDateResponseBody](../../models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md new file mode 100755 index 000000000..3b377b1b0 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | List<[LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html)> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md index f5b4aaf24..cac3fa7f6 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md new file mode 100755 index 000000000..5ae356b01 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | List<*decimal*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md index 09231ce0c..908b01623 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesBigInt200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesBigInt200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesBigIntResponseBody](../../models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md new file mode 100755 index 000000000..f4ec445e0 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | *BigInteger* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md index 69c6e1498..7044781b9 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesBigIntStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md new file mode 100755 index 000000000..7be56f5ae --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | *BigInteger* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md index d9d2d06e1..897d9f6bc 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesBoolean200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesBoolean200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesBooleanResponseBody](../../models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md new file mode 100755 index 000000000..a80d5de9f --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesBooleanResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Json` | *bool* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md index 9c39994c3..192c11e7e 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesDate200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDate200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesDateResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md new file mode 100755 index 000000000..36d8e6ba9 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md index a4615520b..87f2d5cb3 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesDateTime200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDateTime200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesDateTimeResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md new file mode 100755 index 000000000..a2b1441cc --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md index 374696c68..c9913d027 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesDecimal200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDecimal200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesDecimalResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md new file mode 100755 index 000000000..12d5a299c --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | *decimal* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md index 1b30b5fc1..bb63dea69 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesDecimalStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md new file mode 100755 index 000000000..0bc69a44e --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | *decimal* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md index 3d92cccb7..a7da68f2f 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesFloat32200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesFloat32200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesFloat32ResponseBody](../../models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md new file mode 100755 index 000000000..16a5095bc --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesFloat32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Json` | *double* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md index b35fb0e3e..bcfe2d01a 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesInt32200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesInt32200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesInt32ResponseBody](../../models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md new file mode 100755 index 000000000..6b7bec713 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesInt32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md index 3eb750831..639bde1a0 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesInteger200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesInteger200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesIntegerResponseBody](../../models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md new file mode 100755 index 000000000..3d1ee1bff --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesIntegerResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Json` | *long* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md index e8d2f3bcf..808ba6367 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesMapBigIntStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md new file mode 100755 index 000000000..edd59a4ab --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md index da0e57149..daa5e300e 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesMapDateTimeResponseBody](../../models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md new file mode 100755 index 000000000..63f8d9c20 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md index b84de1659..24ca345f9 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesMapDecimalResponseBody](../../models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md new file mode 100755 index 000000000..732fe6924 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------- | ----------------------------- | ----------------------------- | ----------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md index 69c4561b9..edbbe057f 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesNumber200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesNumber200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesNumberResponseBody](../../models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md new file mode 100755 index 000000000..fac51ca42 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesNumberResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Json` | *double* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md index 949f4263f..1acd54385 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesString200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesString200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostJsonDataTypesStringResponseBody](../../models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md new file mode 100755 index 000000000..052b5fe9c --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesStringResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md deleted file mode 100755 index 1c56334cc..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool` | *bool* | :heavy_check_mark: | N/A | -| `Num` | *double* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md new file mode 100755 index 000000000..a88c0d854 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesInlineFilteredRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool` | *bool* | :heavy_check_mark: | N/A | +| `Num` | *double* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md deleted file mode 100755 index 25229465c..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool` | *bool* | :heavy_check_mark: | N/A | -| `Num` | *double* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md deleted file mode 100755 index f4a57e7ef..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool3` | *bool* | :heavy_check_mark: | N/A | -| `Num3` | *double* | :heavy_check_mark: | N/A | -| `Str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md new file mode 100755 index 000000000..3ce8beb1b --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool3` | *bool* | :heavy_check_mark: | N/A | +| `Num3` | *double* | :heavy_check_mark: | N/A | +| `Str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md new file mode 100755 index 000000000..8c3061b7a --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitJsonRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool` | *bool* | :heavy_check_mark: | N/A | +| `Num` | *double* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md deleted file mode 100755 index 99ab0403a..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool2` | *bool* | :heavy_check_mark: | N/A | -| `Num2` | *double* | :heavy_check_mark: | N/A | -| `Str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md new file mode 100755 index 000000000..c72ec4eab --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool2` | *bool* | :heavy_check_mark: | N/A | +| `Num2` | *double* | :heavy_check_mark: | N/A | +| `Str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md deleted file mode 100755 index a95ebd899..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool` | *bool* | :heavy_check_mark: | N/A | -| `Num` | *double* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md deleted file mode 100755 index 625dabdc4..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool3` | *bool* | :heavy_check_mark: | N/A | -| `Num3` | *double* | :heavy_check_mark: | N/A | -| `Str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md index 949114549..acdc05ac3 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md) | :heavy_check_mark: | N/A | -| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md) | :heavy_check_mark: | N/A | +| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md new file mode 100755 index 000000000..291c4520b --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool3` | *bool* | :heavy_check_mark: | N/A | +| `Num3` | *double* | :heavy_check_mark: | N/A | +| `Str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md index 30cde6694..4d57a440f 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md @@ -5,5 +5,5 @@ | Field | Type | Required | Description | | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md) | :heavy_check_mark: | N/A | +| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md) | :heavy_check_mark: | N/A | | `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md new file mode 100755 index 000000000..8024d27b7 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool` | *bool* | :heavy_check_mark: | N/A | +| `Num` | *double* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md deleted file mode 100755 index f4ac373d3..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool2` | *bool* | :heavy_check_mark: | N/A | -| `Num2` | *double* | :heavy_check_mark: | N/A | -| `Str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md index cc55351ed..c75b283e7 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md) | :heavy_check_mark: | N/A | -| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md) | :heavy_check_mark: | N/A | +| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md new file mode 100755 index 000000000..9240a964d --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool2` | *bool* | :heavy_check_mark: | N/A | +| `Num2` | *double* | :heavy_check_mark: | N/A | +| `Str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md deleted file mode 100755 index 53076b762..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md index 66406fe1e..ecd3f34a1 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject` | [RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON](../../models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostNotNullableNotRequiredStringBodyResponseBody](../../models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md new file mode 100755 index 000000000..cf8f4db4d --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNotNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md deleted file mode 100755 index 395ccfb58..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullArray200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md index d3ebe3b74..0b5cf8df8 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostNullArray200ApplicationJSONObject` | [RequestBodyPostNullArray200ApplicationJSON](../../models/operations/RequestBodyPostNullArray200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `Object` | [RequestBodyPostNullArrayResponseBody](../../models/operations/RequestBodyPostNullArrayResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponseBody.md new file mode 100755 index 000000000..143cac607 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullArrayResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md deleted file mode 100755 index 1f37b1060..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullDictionary200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md index 92a0edcfb..137b5cfe2 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostNullDictionary200ApplicationJSONObject` | [RequestBodyPostNullDictionary200ApplicationJSON](../../models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostNullDictionaryResponseBody](../../models/operations/RequestBodyPostNullDictionaryResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md new file mode 100755 index 000000000..8fc7972a5 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullDictionaryResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md deleted file mode 100755 index f66defeb6..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md index 0e850f8d3..6154a4d33 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject` | [RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON](../../models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostNullableNotRequiredStringBodyResponseBody](../../models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md new file mode 100755 index 000000000..e304d0747 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md deleted file mode 100755 index 49c1f34fb..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md index a9a007232..1815e7af0 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostNullableRequiredStringBody200ApplicationJSONObject` | [RequestBodyPostNullableRequiredStringBody200ApplicationJSON](../../models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [RequestBodyPostNullableRequiredStringBodyResponseBody](../../models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md new file mode 100755 index 000000000..c2036504e --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsArgs.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsArgs.md new file mode 100755 index 000000000..964ea8703 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsArgs.md @@ -0,0 +1,8 @@ +# RequestBodyPutBytesWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md index 06f8c63d0..29b3c0185 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `Args` | [RequestBodyPutBytesWithParamsResArgs](../../models/operations/RequestBodyPutBytesWithParamsResArgs.md) | :heavy_check_mark: | N/A | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| `Args` | [RequestBodyPutBytesWithParamsArgs](../../models/operations/RequestBodyPutBytesWithParamsArgs.md) | :heavy_check_mark: | N/A | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md deleted file mode 100755 index 20bbe00b9..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutBytesWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepForm.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepForm.md new file mode 100755 index 000000000..d40c6eb60 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepForm.md @@ -0,0 +1,14 @@ +# RequestBodyPutMultipartDeepForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Arr` | *string* | :heavy_check_mark: | N/A | +| `Bool` | *string* | :heavy_check_mark: | N/A | +| `Int` | *string* | :heavy_check_mark: | N/A | +| `Map` | *string* | :heavy_check_mark: | N/A | +| `Num` | *string* | :heavy_check_mark: | N/A | +| `Obj` | *string* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md index 992358d4e..313404e7b 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `Form` | [RequestBodyPutMultipartDeepResForm](../../models/operations/RequestBodyPutMultipartDeepResForm.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `Form` | [RequestBodyPutMultipartDeepForm](../../models/operations/RequestBodyPutMultipartDeepForm.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResForm.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResForm.md deleted file mode 100755 index 39ac66be2..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResForm.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPutMultipartDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Arr` | *string* | :heavy_check_mark: | N/A | -| `Bool` | *string* | :heavy_check_mark: | N/A | -| `Int` | *string* | :heavy_check_mark: | N/A | -| `Map` | *string* | :heavy_check_mark: | N/A | -| `Num` | *string* | :heavy_check_mark: | N/A | -| `Obj` | *string* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md index 0d556e77a..627ce770e 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `DifferentFileName` | [RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName](../../models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | +| `DifferentFileName` | [DifferentFileName](../../models/operations/DifferentFileName.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md deleted file mode 100755 index 58ac59073..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName - - -## Fields - -| Field | Type | Required | Description | -| ------------------- | ------------------- | ------------------- | ------------------- | -| `Content` | *byte[]* | :heavy_check_mark: | N/A | -| `DifferentFileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md index 7d95c6f6b..ad5b4b730 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `File` | [RequestBodyPutMultipartFileRequestBodyFile](../../models/operations/RequestBodyPutMultipartFileRequestBodyFile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | +| `File` | [File](../../models/operations/File.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md deleted file mode 100755 index a2d06c716..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Content` | *byte[]* | :heavy_check_mark: | N/A | -| `File` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleForm.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleForm.md new file mode 100755 index 000000000..ac6572b8c --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleForm.md @@ -0,0 +1,21 @@ +# RequestBodyPutMultipartSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Any` | *string* | :heavy_check_mark: | N/A | +| `Bool` | *string* | :heavy_check_mark: | N/A | +| `BoolOpt` | *string* | :heavy_minus_sign: | N/A | +| `Date` | *string* | :heavy_check_mark: | N/A | +| `DateTime` | *string* | :heavy_check_mark: | N/A | +| `Enum` | *string* | :heavy_check_mark: | N/A | +| `Float32` | *string* | :heavy_check_mark: | N/A | +| `Int` | *string* | :heavy_check_mark: | N/A | +| `Int32` | *string* | :heavy_check_mark: | N/A | +| `IntOptNull` | *string* | :heavy_minus_sign: | N/A | +| `Num` | *string* | :heavy_check_mark: | N/A | +| `NumOptNull` | *string* | :heavy_minus_sign: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | +| `StrOpt` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md new file mode 100755 index 000000000..bb43d93aa --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md @@ -0,0 +1,8 @@ +# RequestBodyPutMultipartSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `ContentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md index d8b8f7b53..b80b7c228 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `Form` | [RequestBodyPutMultipartSimpleResForm](../../models/operations/RequestBodyPutMultipartSimpleResForm.md) | :heavy_check_mark: | N/A | -| `Headers` | [RequestBodyPutMultipartSimpleResHeaders](../../models/operations/RequestBodyPutMultipartSimpleResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | +| `Form` | [RequestBodyPutMultipartSimpleForm](../../models/operations/RequestBodyPutMultipartSimpleForm.md) | :heavy_check_mark: | N/A | +| `Headers` | [RequestBodyPutMultipartSimpleHeaders](../../models/operations/RequestBodyPutMultipartSimpleHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResForm.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResForm.md deleted file mode 100755 index 9c80861ec..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResForm.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPutMultipartSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Any` | *string* | :heavy_check_mark: | N/A | -| `Bool` | *string* | :heavy_check_mark: | N/A | -| `BoolOpt` | *string* | :heavy_minus_sign: | N/A | -| `Date` | *string* | :heavy_check_mark: | N/A | -| `DateTime` | *string* | :heavy_check_mark: | N/A | -| `Enum` | *string* | :heavy_check_mark: | N/A | -| `Float32` | *string* | :heavy_check_mark: | N/A | -| `Int` | *string* | :heavy_check_mark: | N/A | -| `Int32` | *string* | :heavy_check_mark: | N/A | -| `IntOptNull` | *string* | :heavy_minus_sign: | N/A | -| `Num` | *string* | :heavy_check_mark: | N/A | -| `NumOptNull` | *string* | :heavy_minus_sign: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | -| `StrOpt` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md deleted file mode 100755 index 93a7d1a57..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutMultipartSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `ContentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsArgs.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsArgs.md new file mode 100755 index 000000000..13dc170b6 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsArgs.md @@ -0,0 +1,8 @@ +# RequestBodyPutStringWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md index 213ace1e2..2f74ba73d 100755 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md +++ b/csharp-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `Args` | [RequestBodyPutStringWithParamsResArgs](../../models/operations/RequestBodyPutStringWithParamsResArgs.md) | :heavy_check_mark: | N/A | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| `Args` | [RequestBodyPutStringWithParamsArgs](../../models/operations/RequestBodyPutStringWithParamsArgs.md) | :heavy_check_mark: | N/A | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResArgs.md b/csharp-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResArgs.md deleted file mode 100755 index c43dc8aa8..000000000 --- a/csharp-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutStringWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/RequiredObj.md b/csharp-client-sdk/docs/models/operations/RequiredObj.md new file mode 100755 index 000000000..75e7b11a1 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/RequiredObj.md @@ -0,0 +1,7 @@ +# RequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md deleted file mode 100755 index a92b9476c..000000000 --- a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md index 44822cad4..1edfd849a 100755 --- a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md +++ b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md new file mode 100755 index 000000000..8d6fdfa39 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | +| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md deleted file mode 100755 index 2cb7c84e1..000000000 --- a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md index 7aeea9821..0a297c04c 100755 --- a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md +++ b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyAdditionalPropertiesDatePost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [ResponseBodyAdditionalPropertiesDatePostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md new file mode 100755 index 000000000..668d0a53e --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesDatePostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md deleted file mode 100755 index 3eb7fd557..000000000 --- a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | -| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md index 094c553b2..4eceb3d97 100755 --- a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md +++ b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [ResponseBodyAdditionalPropertiesObjectPostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md new file mode 100755 index 000000000..59d0ff951 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesObjectPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md deleted file mode 100755 index d8f2d2536..000000000 --- a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------- | ---------------------------- | ---------------------------- | ---------------------------- | -| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md index ee0919bbd..569398519 100755 --- a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md +++ b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyAdditionalPropertiesPost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesPost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [ResponseBodyAdditionalPropertiesPostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md new file mode 100755 index 000000000..c201a5225 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------- | ---------------------------- | ---------------------------- | ---------------------------- | +| `Json` | Dictionary | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md b/csharp-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md index 25bb5f4e5..8b2a4c39f 100755 --- a/csharp-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md +++ b/csharp-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md @@ -8,5 +8,5 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyOptionalGet200TextPlainString` | *string* | :heavy_minus_sign: | OK | +| `Res` | *string* | :heavy_minus_sign: | OK | | `TypedObject1` | [TypedObject1](../../models/shared/TypedObject1.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md deleted file mode 100755 index f7787f6e5..000000000 --- a/csharp-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `Json` | [ObjWithZeroValueComplexTypePtrs](../../models/shared/ObjWithZeroValueComplexTypePtrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md b/csharp-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md index b6a98d754..93309a36e 100755 --- a/csharp-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md +++ b/csharp-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject` | [ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON](../../models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [ResponseBodyZeroValueComplexTypePtrsPostResponseBody](../../models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md b/csharp-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md new file mode 100755 index 000000000..b8eecade5 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyZeroValueComplexTypePtrsPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `Json` | [ObjWithZeroValueComplexTypePtrs](../../models/shared/ObjWithZeroValueComplexTypePtrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md deleted file mode 100755 index eddd41068..000000000 --- a/csharp-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md +++ /dev/null @@ -1,12 +0,0 @@ -# StatusGetXSpeakeasyErrors501ApplicationJSON - -Not Implemented - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | -| `Code` | *string* | :heavy_minus_sign: | N/A | -| `Message` | *string* | :heavy_minus_sign: | N/A | -| `Type` | [ErrorType](../../models/shared/ErrorType.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md b/csharp-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md index b3f4f105a..0229b3982 100755 --- a/csharp-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md +++ b/csharp-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md @@ -3,10 +3,10 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Error` | [Error](../../models/shared/Error.md) | :heavy_minus_sign: | Internal Server Error | -| `StatusGetXSpeakeasyErrors501ApplicationJSONObject` | [StatusGetXSpeakeasyErrors501ApplicationJSON](../../models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md) | :heavy_minus_sign: | Not Implemented | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Error` | [Error](../../models/shared/Error.md) | :heavy_minus_sign: | Internal Server Error | +| `Object` | [StatusGetXSpeakeasyErrorsResponseBody](../../models/operations/StatusGetXSpeakeasyErrorsResponseBody.md) | :heavy_minus_sign: | Not Implemented | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md b/csharp-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md new file mode 100755 index 000000000..c7b11ac83 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md @@ -0,0 +1,12 @@ +# StatusGetXSpeakeasyErrorsResponseBody + +Not Implemented + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | +| `Code` | *string* | :heavy_minus_sign: | N/A | +| `Message` | *string* | :heavy_minus_sign: | N/A | +| `Type` | [ErrorType](../../models/shared/ErrorType.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/TypeFromAnchor.md b/csharp-client-sdk/docs/models/operations/TypeFromAnchor.md deleted file mode 100755 index 5690a3d42..000000000 --- a/csharp-client-sdk/docs/models/operations/TypeFromAnchor.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypeFromAnchor - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Json` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/TypedParameterGenerationGetObj.md b/csharp-client-sdk/docs/models/operations/TypedParameterGenerationGetObj.md deleted file mode 100755 index 63b9504e4..000000000 --- a/csharp-client-sdk/docs/models/operations/TypedParameterGenerationGetObj.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypedParameterGenerationGetObj - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool` | *bool* | :heavy_check_mark: | N/A | -| `Num` | *double* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md b/csharp-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md index dcc8d5fb7..2ca1d5c20 100755 --- a/csharp-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md +++ b/csharp-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `Bigint` | *BigInteger* | :heavy_minus_sign: | N/A | -| `Date` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_minus_sign: | N/A | -| `Decimal` | *decimal* | :heavy_minus_sign: | N/A | -| `Obj` | [TypedParameterGenerationGetObj](../../models/operations/TypedParameterGenerationGetObj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | +| `Bigint` | *BigInteger* | :heavy_minus_sign: | N/A | +| `Date` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_minus_sign: | N/A | +| `Decimal` | *decimal* | :heavy_minus_sign: | N/A | +| `Obj` | [Obj](../../models/operations/Obj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSON.md b/csharp-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSON.md deleted file mode 100755 index 9afb96076..000000000 --- a/csharp-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSON - -A response body that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `Json` | [UsageExamplePost200ApplicationJSONJSON](../../models/operations/UsageExamplePost200ApplicationJSONJSON.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md b/csharp-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md deleted file mode 100755 index bd622f493..000000000 --- a/csharp-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSONJSON - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `FakerFormattedStrings` | [FakerFormattedStrings](../../models/shared/FakerFormattedStrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | -| `FakerStrings` | [FakerStrings](../../models/shared/FakerStrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | -| `SimpleObject` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/UsageExamplePostEnumParameter.md b/csharp-client-sdk/docs/models/operations/UsageExamplePostEnumParameter.md deleted file mode 100755 index edee3e287..000000000 --- a/csharp-client-sdk/docs/models/operations/UsageExamplePostEnumParameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `Value1` | value1 | -| `Value2` | value2 | -| `Value3` | value3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/UsageExamplePostJson.md b/csharp-client-sdk/docs/models/operations/UsageExamplePostJson.md new file mode 100755 index 000000000..5f5239bc5 --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/UsageExamplePostJson.md @@ -0,0 +1,10 @@ +# UsageExamplePostJson + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `FakerFormattedStrings` | [FakerFormattedStrings](../../models/shared/FakerFormattedStrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | +| `FakerStrings` | [FakerStrings](../../models/shared/FakerStrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | +| `SimpleObject` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/UsageExamplePostOptEnumParameter.md b/csharp-client-sdk/docs/models/operations/UsageExamplePostOptEnumParameter.md deleted file mode 100755 index f0d5899a0..000000000 --- a/csharp-client-sdk/docs/models/operations/UsageExamplePostOptEnumParameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostOptEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `Value1` | value1 | -| `Value2` | value2 | -| `Value3` | value3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/UsageExamplePostRequest.md b/csharp-client-sdk/docs/models/operations/UsageExamplePostRequest.md index a018c9eca..526815c6d 100755 --- a/csharp-client-sdk/docs/models/operations/UsageExamplePostRequest.md +++ b/csharp-client-sdk/docs/models/operations/UsageExamplePostRequest.md @@ -3,27 +3,27 @@ ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `BigintParameter` | *BigInteger* | :heavy_check_mark: | An bigint parameter | | -| `BigintStrParameter` | *BigInteger* | :heavy_check_mark: | An bigint parameter | | -| `BoolParameter` | *bool* | :heavy_check_mark: | A boolean parameter | | -| `DateParameter` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_check_mark: | A date parameter | | -| `DateTimeDefaultParameter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | A date time parameter with a default value | | -| `DateTimeParameter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | A date time parameter | | -| `DecimalParameter` | *decimal* | :heavy_check_mark: | A decimal parameter | | -| `DecimalStrParameter` | *decimal* | :heavy_check_mark: | A decimal parameter | | -| `DoubleParameter` | *double* | :heavy_check_mark: | A double parameter | | -| `EnumParameter` | [UsageExamplePostEnumParameter](../../models/operations/UsageExamplePostEnumParameter.md) | :heavy_check_mark: | An enum parameter | | -| `FalseyNumberParameter` | *double* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | -| `Float32Parameter` | *float* | :heavy_check_mark: | A float32 parameter | | -| `FloatParameter` | *double* | :heavy_check_mark: | A float parameter | | -| `Int64Parameter` | *long* | :heavy_check_mark: | An int64 parameter | | -| `IntParameter` | *int* | :heavy_check_mark: | An integer parameter | | -| `StrParameter` | *string* | :heavy_check_mark: | A string parameter | example 1 | -| `RequestBody` | [UsageExamplePostRequestBody](../../models/operations/UsageExamplePostRequestBody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | -| `BigintParameterOptional` | *BigInteger* | :heavy_minus_sign: | An bigint parameter | | -| `BigintStrParameterOptional` | *BigInteger* | :heavy_minus_sign: | An bigint parameter | | -| `DecimalParameterOptional` | *decimal* | :heavy_minus_sign: | A decimal parameter | | -| `DecimalStrParameterOptional` | *decimal* | :heavy_minus_sign: | A decimal parameter | | -| `OptEnumParameter` | [UsageExamplePostOptEnumParameter](../../models/operations/UsageExamplePostOptEnumParameter.md) | :heavy_minus_sign: | An enum parameter | value3 | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `BigintParameter` | *BigInteger* | :heavy_check_mark: | An bigint parameter | | +| `BigintStrParameter` | *BigInteger* | :heavy_check_mark: | An bigint parameter | | +| `BoolParameter` | *bool* | :heavy_check_mark: | A boolean parameter | | +| `DateParameter` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_check_mark: | A date parameter | | +| `DateTimeDefaultParameter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | A date time parameter with a default value | | +| `DateTimeParameter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | A date time parameter | | +| `DecimalParameter` | *decimal* | :heavy_check_mark: | A decimal parameter | | +| `DecimalStrParameter` | *decimal* | :heavy_check_mark: | A decimal parameter | | +| `DoubleParameter` | *double* | :heavy_check_mark: | A double parameter | | +| `EnumParameter` | [EnumParameter](../../models/operations/EnumParameter.md) | :heavy_check_mark: | An enum parameter | | +| `FalseyNumberParameter` | *double* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | +| `Float32Parameter` | *float* | :heavy_check_mark: | A float32 parameter | | +| `FloatParameter` | *double* | :heavy_check_mark: | A float parameter | | +| `Int64Parameter` | *long* | :heavy_check_mark: | An int64 parameter | | +| `IntParameter` | *int* | :heavy_check_mark: | An integer parameter | | +| `StrParameter` | *string* | :heavy_check_mark: | A string parameter | example 1 | +| `RequestBody` | [UsageExamplePostRequestBody](../../models/operations/UsageExamplePostRequestBody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | +| `BigintParameterOptional` | *BigInteger* | :heavy_minus_sign: | An bigint parameter | | +| `BigintStrParameterOptional` | *BigInteger* | :heavy_minus_sign: | An bigint parameter | | +| `DecimalParameterOptional` | *decimal* | :heavy_minus_sign: | A decimal parameter | | +| `DecimalStrParameterOptional` | *decimal* | :heavy_minus_sign: | A decimal parameter | | +| `OptEnumParameter` | [OptEnumParameter](../../models/operations/OptEnumParameter.md) | :heavy_minus_sign: | An enum parameter | value3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/UsageExamplePostResponse.md b/csharp-client-sdk/docs/models/operations/UsageExamplePostResponse.md index f16660751..91c824b2c 100755 --- a/csharp-client-sdk/docs/models/operations/UsageExamplePostResponse.md +++ b/csharp-client-sdk/docs/models/operations/UsageExamplePostResponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `UsageExamplePost200ApplicationJSONObject` | [UsageExamplePost200ApplicationJSON](../../models/operations/UsageExamplePost200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| `Object` | [UsageExamplePostResponseBody](../../models/operations/UsageExamplePostResponseBody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/operations/UsageExamplePostResponseBody.md b/csharp-client-sdk/docs/models/operations/UsageExamplePostResponseBody.md new file mode 100755 index 000000000..03984049c --- /dev/null +++ b/csharp-client-sdk/docs/models/operations/UsageExamplePostResponseBody.md @@ -0,0 +1,10 @@ +# UsageExamplePostResponseBody + +A response body that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `Json` | [UsageExamplePostJson](../../models/operations/UsageExamplePostJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/AuthServiceRequestBody.md b/csharp-client-sdk/docs/models/shared/AuthServiceRequestBody.md index 140cfa5e9..c1576b749 100755 --- a/csharp-client-sdk/docs/models/shared/AuthServiceRequestBody.md +++ b/csharp-client-sdk/docs/models/shared/AuthServiceRequestBody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `BasicAuth` | [AuthServiceRequestBodyBasicAuth](../../models/shared/AuthServiceRequestBodyBasicAuth.md) | :heavy_minus_sign: | N/A | -| `HeaderAuth` | List<[AuthServiceRequestBodyHeaderAuth](../../models/shared/AuthServiceRequestBodyHeaderAuth.md)> | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | +| `BasicAuth` | [BasicAuth](../../models/shared/BasicAuth.md) | :heavy_minus_sign: | N/A | +| `HeaderAuth` | List<[HeaderAuth](../../models/shared/HeaderAuth.md)> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/AuthServiceRequestBodyBasicAuth.md b/csharp-client-sdk/docs/models/shared/AuthServiceRequestBodyBasicAuth.md deleted file mode 100755 index b0986e606..000000000 --- a/csharp-client-sdk/docs/models/shared/AuthServiceRequestBodyBasicAuth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyBasicAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Password` | *string* | :heavy_check_mark: | N/A | -| `Username` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/AuthServiceRequestBodyHeaderAuth.md b/csharp-client-sdk/docs/models/shared/AuthServiceRequestBodyHeaderAuth.md deleted file mode 100755 index 1c89c798d..000000000 --- a/csharp-client-sdk/docs/models/shared/AuthServiceRequestBodyHeaderAuth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyHeaderAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `ExpectedValue` | *string* | :heavy_check_mark: | N/A | -| `HeaderName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/BasicAuth.md b/csharp-client-sdk/docs/models/shared/BasicAuth.md new file mode 100755 index 000000000..853b2656d --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/BasicAuth.md @@ -0,0 +1,9 @@ +# BasicAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Password` | *string* | :heavy_check_mark: | N/A | +| `Username` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/Chocolates.md b/csharp-client-sdk/docs/models/shared/Chocolates.md new file mode 100755 index 000000000..93153f236 --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/Chocolates.md @@ -0,0 +1,8 @@ +# Chocolates + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Description` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/ConstEnumInt.md b/csharp-client-sdk/docs/models/shared/ConstEnumInt.md new file mode 100755 index 000000000..f997d5a9b --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/ConstEnumInt.md @@ -0,0 +1,10 @@ +# ConstEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | 1 | +| `Two` | 2 | +| `Three` | 3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/ConstEnumStr.md b/csharp-client-sdk/docs/models/shared/ConstEnumStr.md new file mode 100755 index 000000000..2ae40ddfb --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/ConstEnumStr.md @@ -0,0 +1,10 @@ +# ConstEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | one | +| `Two` | two | +| `Three` | three | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/DefaultEnumInt.md b/csharp-client-sdk/docs/models/shared/DefaultEnumInt.md new file mode 100755 index 000000000..d7e9b6543 --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/DefaultEnumInt.md @@ -0,0 +1,10 @@ +# DefaultEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | 1 | +| `Two` | 2 | +| `Three` | 3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/DefaultEnumStr.md b/csharp-client-sdk/docs/models/shared/DefaultEnumStr.md new file mode 100755 index 000000000..43ebd7ae7 --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/DefaultEnumStr.md @@ -0,0 +1,10 @@ +# DefaultEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | one | +| `Two` | two | +| `Three` | three | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/DefaultsAndConsts.md b/csharp-client-sdk/docs/models/shared/DefaultsAndConsts.md index 7e9d7d322..e00071430 100755 --- a/csharp-client-sdk/docs/models/shared/DefaultsAndConsts.md +++ b/csharp-client-sdk/docs/models/shared/DefaultsAndConsts.md @@ -3,33 +3,33 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `ConstBigInt` | *BigInteger* | :heavy_check_mark: | N/A | -| `ConstBigIntStr` | *BigInteger* | :heavy_check_mark: | N/A | -| `ConstBool` | *bool* | :heavy_check_mark: | N/A | -| `ConstDate` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_check_mark: | N/A | -| `ConstDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | N/A | -| `ConstDecimal` | *decimal* | :heavy_check_mark: | N/A | -| `ConstDecimalStr` | *decimal* | :heavy_check_mark: | N/A | -| `ConstEnumInt` | [DefaultsAndConstsConstEnumInt](../../models/shared/DefaultsAndConstsConstEnumInt.md) | :heavy_check_mark: | N/A | -| `ConstEnumStr` | [DefaultsAndConstsConstEnumStr](../../models/shared/DefaultsAndConstsConstEnumStr.md) | :heavy_check_mark: | N/A | -| `ConstInt` | *long* | :heavy_check_mark: | N/A | -| `ConstNum` | *double* | :heavy_check_mark: | N/A | -| `ConstStr` | *string* | :heavy_check_mark: | N/A | -| `ConstStrNull` | *string* | :heavy_check_mark: | N/A | -| `NormalField` | *string* | :heavy_check_mark: | N/A | -| `DefaultBigInt` | *BigInteger* | :heavy_minus_sign: | N/A | -| `DefaultBigIntStr` | *BigInteger* | :heavy_minus_sign: | N/A | -| `DefaultBool` | *bool* | :heavy_minus_sign: | N/A | -| `DefaultDate` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_minus_sign: | N/A | -| `DefaultDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | N/A | -| `DefaultDecimal` | *decimal* | :heavy_minus_sign: | N/A | -| `DefaultDecimalStr` | *decimal* | :heavy_minus_sign: | N/A | -| `DefaultEnumInt` | [DefaultsAndConstsDefaultEnumInt](../../models/shared/DefaultsAndConstsDefaultEnumInt.md) | :heavy_minus_sign: | N/A | -| `DefaultEnumStr` | [DefaultsAndConstsDefaultEnumStr](../../models/shared/DefaultsAndConstsDefaultEnumStr.md) | :heavy_minus_sign: | N/A | -| `DefaultInt` | *long* | :heavy_minus_sign: | N/A | -| `DefaultNum` | *double* | :heavy_minus_sign: | N/A | -| `DefaultStr` | *string* | :heavy_minus_sign: | N/A | -| `DefaultStrNullable` | *string* | :heavy_minus_sign: | N/A | -| `DefaultStrOptional` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `ConstBigInt` | *BigInteger* | :heavy_check_mark: | N/A | +| `ConstBigIntStr` | *BigInteger* | :heavy_check_mark: | N/A | +| `ConstBool` | *bool* | :heavy_check_mark: | N/A | +| `ConstDate` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_check_mark: | N/A | +| `ConstDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | N/A | +| `ConstDecimal` | *decimal* | :heavy_check_mark: | N/A | +| `ConstDecimalStr` | *decimal* | :heavy_check_mark: | N/A | +| `ConstEnumInt` | [ConstEnumInt](../../models/shared/ConstEnumInt.md) | :heavy_check_mark: | N/A | +| `ConstEnumStr` | [ConstEnumStr](../../models/shared/ConstEnumStr.md) | :heavy_check_mark: | N/A | +| `ConstInt` | *long* | :heavy_check_mark: | N/A | +| `ConstNum` | *double* | :heavy_check_mark: | N/A | +| `ConstStr` | *string* | :heavy_check_mark: | N/A | +| `ConstStrNull` | *string* | :heavy_check_mark: | N/A | +| `NormalField` | *string* | :heavy_check_mark: | N/A | +| `DefaultBigInt` | *BigInteger* | :heavy_minus_sign: | N/A | +| `DefaultBigIntStr` | *BigInteger* | :heavy_minus_sign: | N/A | +| `DefaultBool` | *bool* | :heavy_minus_sign: | N/A | +| `DefaultDate` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_minus_sign: | N/A | +| `DefaultDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | N/A | +| `DefaultDecimal` | *decimal* | :heavy_minus_sign: | N/A | +| `DefaultDecimalStr` | *decimal* | :heavy_minus_sign: | N/A | +| `DefaultEnumInt` | [DefaultEnumInt](../../models/shared/DefaultEnumInt.md) | :heavy_minus_sign: | N/A | +| `DefaultEnumStr` | [DefaultEnumStr](../../models/shared/DefaultEnumStr.md) | :heavy_minus_sign: | N/A | +| `DefaultInt` | *long* | :heavy_minus_sign: | N/A | +| `DefaultNum` | *double* | :heavy_minus_sign: | N/A | +| `DefaultStr` | *string* | :heavy_minus_sign: | N/A | +| `DefaultStrNullable` | *string* | :heavy_minus_sign: | N/A | +| `DefaultStrOptional` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumInt.md b/csharp-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumInt.md deleted file mode 100755 index c417317c2..000000000 --- a/csharp-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumInt.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | 1 | -| `Two` | 2 | -| `Three` | 3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumStr.md b/csharp-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumStr.md deleted file mode 100755 index fe2be67fb..000000000 --- a/csharp-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumStr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | one | -| `Two` | two | -| `Three` | three | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumInt.md b/csharp-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumInt.md deleted file mode 100755 index 381ae51a2..000000000 --- a/csharp-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumInt.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | 1 | -| `Two` | 2 | -| `Three` | 3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumStr.md b/csharp-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumStr.md deleted file mode 100755 index cc25b20a5..000000000 --- a/csharp-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumStr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | one | -| `Two` | two | -| `Three` | three | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/DeprecatedEnum.md b/csharp-client-sdk/docs/models/shared/DeprecatedEnum.md new file mode 100755 index 000000000..2af19435d --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/DeprecatedEnum.md @@ -0,0 +1,12 @@ +# ~~DeprecatedEnum~~ + +> :warning: **DEPRECATED**: This enum is deprecated. + + +## Values + +| Name | Value | +| ----- | ----- | +| `A` | a | +| `B` | b | +| `C` | c | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/DeprecatedFieldInObject.md b/csharp-client-sdk/docs/models/shared/DeprecatedFieldInObject.md index 418afb92d..6a7c75202 100755 --- a/csharp-client-sdk/docs/models/shared/DeprecatedFieldInObject.md +++ b/csharp-client-sdk/docs/models/shared/DeprecatedFieldInObject.md @@ -5,6 +5,6 @@ | Field | Type | Required | Description | | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| ~~`DeprecatedEnum`~~ | [DeprecatedFieldInObjectDeprecatedEnum](../../models/shared/DeprecatedFieldInObjectDeprecatedEnum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | +| ~~`DeprecatedEnum`~~ | [DeprecatedEnum](../../models/shared/DeprecatedEnum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | | ~~`DeprecatedField`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. Use NewField instead. | | `NewField` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md b/csharp-client-sdk/docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md deleted file mode 100755 index 14c3d71b4..000000000 --- a/csharp-client-sdk/docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md +++ /dev/null @@ -1,12 +0,0 @@ -# ~~DeprecatedFieldInObjectDeprecatedEnum~~ - -> :warning: **DEPRECATED**: This enum is deprecated. - - -## Values - -| Name | Value | -| ----- | ----- | -| `A` | a | -| `B` | b | -| `C` | c | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/EnumNumber.md b/csharp-client-sdk/docs/models/shared/EnumNumber.md new file mode 100755 index 000000000..3da13cca6 --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/EnumNumber.md @@ -0,0 +1,10 @@ +# EnumNumber + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | 1 | +| `Two` | 2 | +| `Three` | 3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/EnumStr.md b/csharp-client-sdk/docs/models/shared/EnumStr.md new file mode 100755 index 000000000..244a7fd0b --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/EnumStr.md @@ -0,0 +1,10 @@ +# EnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | one | +| `Two` | two | +| `Three` | three | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/ExampleResource.md b/csharp-client-sdk/docs/models/shared/ExampleResource.md index 48fba9a2c..95f528007 100755 --- a/csharp-client-sdk/docs/models/shared/ExampleResource.md +++ b/csharp-client-sdk/docs/models/shared/ExampleResource.md @@ -5,15 +5,15 @@ | Field | Type | Required | Description | | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `Chocolates` | List<[ExampleResourceChocolates](../../models/shared/ExampleResourceChocolates.md)> | :heavy_check_mark: | N/A | +| `Chocolates` | List<[Chocolates](../../models/shared/Chocolates.md)> | :heavy_check_mark: | N/A | | `Id` | *string* | :heavy_check_mark: | N/A | | `Name` | *string* | :heavy_check_mark: | N/A | | `Vehicle` | *object* | :heavy_check_mark: | N/A | | `ArrayOfNumber` | List<*double*> | :heavy_minus_sign: | N/A | | `ArrayOfString` | List<*string*> | :heavy_minus_sign: | N/A | | `CreatedAt` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | N/A | -| `EnumNumber` | [ExampleResourceEnumNumber](../../models/shared/ExampleResourceEnumNumber.md) | :heavy_minus_sign: | N/A | -| `EnumStr` | [ExampleResourceEnumStr](../../models/shared/ExampleResourceEnumStr.md) | :heavy_minus_sign: | N/A | +| `EnumNumber` | [EnumNumber](../../models/shared/EnumNumber.md) | :heavy_minus_sign: | N/A | +| `EnumStr` | [EnumStr](../../models/shared/EnumStr.md) | :heavy_minus_sign: | N/A | | `MapOfInteger` | Dictionary | :heavy_minus_sign: | N/A | | `MapOfString` | Dictionary | :heavy_minus_sign: | N/A | | `UpdatedAt` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/ExampleResourceChocolates.md b/csharp-client-sdk/docs/models/shared/ExampleResourceChocolates.md deleted file mode 100755 index 434b7a90f..000000000 --- a/csharp-client-sdk/docs/models/shared/ExampleResourceChocolates.md +++ /dev/null @@ -1,8 +0,0 @@ -# ExampleResourceChocolates - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Description` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/ExampleResourceEnumNumber.md b/csharp-client-sdk/docs/models/shared/ExampleResourceEnumNumber.md deleted file mode 100755 index 0a6d9bd00..000000000 --- a/csharp-client-sdk/docs/models/shared/ExampleResourceEnumNumber.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumNumber - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | 1 | -| `Two` | 2 | -| `Three` | 3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/ExampleResourceEnumStr.md b/csharp-client-sdk/docs/models/shared/ExampleResourceEnumStr.md deleted file mode 100755 index fbd86b672..000000000 --- a/csharp-client-sdk/docs/models/shared/ExampleResourceEnumStr.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | one | -| `Two` | two | -| `Three` | three | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/HeaderAuth.md b/csharp-client-sdk/docs/models/shared/HeaderAuth.md new file mode 100755 index 000000000..f717b1256 --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/HeaderAuth.md @@ -0,0 +1,9 @@ +# HeaderAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `ExpectedValue` | *string* | :heavy_check_mark: | N/A | +| `HeaderName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md b/csharp-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md index 9c386ee64..6935128e8 100755 --- a/csharp-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md +++ b/csharp-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `Slideshow` | [HttpBinSimpleJsonObjectSlideshow](../../models/shared/HttpBinSimpleJsonObjectSlideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | +| `Slideshow` | [Slideshow](../../models/shared/Slideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md b/csharp-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md deleted file mode 100755 index 7019c3464..000000000 --- a/csharp-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md +++ /dev/null @@ -1,11 +0,0 @@ -# HttpBinSimpleJsonObjectSlideshow - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `Author` | *string* | :heavy_check_mark: | N/A | -| `Date` | *string* | :heavy_check_mark: | N/A | -| `Slides` | List<[HttpBinSimpleJsonObjectSlideshowSlides](../../models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md)> | :heavy_check_mark: | N/A | -| `Title` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md b/csharp-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md deleted file mode 100755 index cf64efeed..000000000 --- a/csharp-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md +++ /dev/null @@ -1,10 +0,0 @@ -# HttpBinSimpleJsonObjectSlideshowSlides - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Items` | List<*string*> | :heavy_minus_sign: | N/A | -| `Title` | *string* | :heavy_check_mark: | N/A | -| `Type` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/Int32Enum.md b/csharp-client-sdk/docs/models/shared/Int32Enum.md new file mode 100755 index 000000000..3827028a2 --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/Int32Enum.md @@ -0,0 +1,12 @@ +# Int32Enum + +An int32 enum property. + + +## Values + +| Name | Value | +| ------------------------ | ------------------------ | +| `FiftyFive` | 55 | +| `SixtyNine` | 69 | +| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/Int32EnumVal.md b/csharp-client-sdk/docs/models/shared/Int32EnumVal.md new file mode 100755 index 000000000..e0dcea464 --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/Int32EnumVal.md @@ -0,0 +1,12 @@ +# Int32EnumVal + +An int32 enum property. + + +## Values + +| Name | Value | +| ------------------------ | ------------------------ | +| `FiftyFive` | 55 | +| `SixtyNine` | 69 | +| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/IntEnum.md b/csharp-client-sdk/docs/models/shared/IntEnum.md new file mode 100755 index 000000000..5a6582451 --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/IntEnum.md @@ -0,0 +1,12 @@ +# IntEnum + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `First` | 1 | +| `Second` | 2 | +| `Third` | 3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/IntEnumVal.md b/csharp-client-sdk/docs/models/shared/IntEnumVal.md new file mode 100755 index 000000000..1261fe20b --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/IntEnumVal.md @@ -0,0 +1,12 @@ +# IntEnumVal + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `First` | 1 | +| `Second` | 2 | +| `Third` | 3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/ReadWriteObject.md b/csharp-client-sdk/docs/models/shared/ReadWriteObject.md new file mode 100755 index 000000000..dd1290904 --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/ReadWriteObject.md @@ -0,0 +1,10 @@ +# ReadWriteObject + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Num1` | *long* | :heavy_check_mark: | N/A | +| `Num2` | *long* | :heavy_check_mark: | N/A | +| `Num3` | *long* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/ReadWriteObjectInput.md b/csharp-client-sdk/docs/models/shared/ReadWriteObjectInput.md deleted file mode 100755 index 5627830a0..000000000 --- a/csharp-client-sdk/docs/models/shared/ReadWriteObjectInput.md +++ /dev/null @@ -1,10 +0,0 @@ -# ReadWriteObjectInput - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Num1` | *long* | :heavy_check_mark: | N/A | -| `Num2` | *long* | :heavy_check_mark: | N/A | -| `Num3` | *long* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/SimpleObject.md b/csharp-client-sdk/docs/models/shared/SimpleObject.md index 3c773e8c4..717a5cc81 100755 --- a/csharp-client-sdk/docs/models/shared/SimpleObject.md +++ b/csharp-client-sdk/docs/models/shared/SimpleObject.md @@ -18,8 +18,8 @@ A link to the external docs. | `Float32` | *float* | :heavy_check_mark: | A float32 property. | 1.1 | | `Int` | *long* | :heavy_check_mark: | An integer property. | 1 | | `Int32` | *int* | :heavy_check_mark: | An int32 property. | 1 | -| `Int32Enum` | [SimpleObjectInt32Enum](../../models/shared/SimpleObjectInt32Enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | -| `IntEnum` | [SimpleObjectIntEnum](../../models/shared/SimpleObjectIntEnum.md) | :heavy_check_mark: | An integer enum property. | 2 | +| `Int32Enum` | [Int32Enum](../../models/shared/Int32Enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | +| `IntEnum` | [IntEnum](../../models/shared/IntEnum.md) | :heavy_check_mark: | An integer enum property. | 2 | | `Num` | *double* | :heavy_check_mark: | A number property. | 1.1 | | `Str` | *string* | :heavy_check_mark: | A string property. | test | | `Bigint` | *BigInteger* | :heavy_minus_sign: | N/A | 8821239038968084 | diff --git a/csharp-client-sdk/docs/models/shared/SimpleObjectCamelCase.md b/csharp-client-sdk/docs/models/shared/SimpleObjectCamelCase.md index 6675d59a7..01d85de45 100755 --- a/csharp-client-sdk/docs/models/shared/SimpleObjectCamelCase.md +++ b/csharp-client-sdk/docs/models/shared/SimpleObjectCamelCase.md @@ -8,24 +8,24 @@ A link to the external docs. ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `AnyVal` | *object* | :heavy_check_mark: | An any property. | any example | -| `BoolVal` | *bool* | :heavy_check_mark: | A boolean property. | true | -| `DateTimeVal` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | -| `DateVal` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_check_mark: | A date property. | 2020-01-01 | -| `EnumVal` | [Enum](../../models/shared/Enum.md) | :heavy_check_mark: | A string based enum | one | -| `Float32Val` | *float* | :heavy_check_mark: | A float32 property. | 2.2222222 | -| `Int32EnumVal` | [SimpleObjectCamelCaseInt32EnumVal](../../models/shared/SimpleObjectCamelCaseInt32EnumVal.md) | :heavy_check_mark: | An int32 enum property. | 69 | -| `Int32Val` | *int* | :heavy_check_mark: | An int32 property. | 1 | -| `IntEnumVal` | [SimpleObjectCamelCaseIntEnumVal](../../models/shared/SimpleObjectCamelCaseIntEnumVal.md) | :heavy_check_mark: | An integer enum property. | 3 | -| `IntVal` | *long* | :heavy_check_mark: | An integer property. | 999999 | -| `NumVal` | *double* | :heavy_check_mark: | A number property. | 1.1 | -| `StrVal` | *string* | :heavy_check_mark: | A string property. | example | -| `BigintStrVal` | *BigInteger* | :heavy_minus_sign: | N/A | | -| `BigintVal` | *BigInteger* | :heavy_minus_sign: | N/A | | -| `BoolOptVal` | *bool* | :heavy_minus_sign: | An optional boolean property. | true | -| `DecimalVal` | *decimal* | :heavy_minus_sign: | N/A | | -| `IntOptNullVal` | *long* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | -| `NumOptNullVal` | *double* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | -| `StrOptVal` | *string* | :heavy_minus_sign: | An optional string property. | optional example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `AnyVal` | *object* | :heavy_check_mark: | An any property. | any example | +| `BoolVal` | *bool* | :heavy_check_mark: | A boolean property. | true | +| `DateTimeVal` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | +| `DateVal` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_check_mark: | A date property. | 2020-01-01 | +| `EnumVal` | [Enum](../../models/shared/Enum.md) | :heavy_check_mark: | A string based enum | one | +| `Float32Val` | *float* | :heavy_check_mark: | A float32 property. | 2.2222222 | +| `Int32EnumVal` | [Int32EnumVal](../../models/shared/Int32EnumVal.md) | :heavy_check_mark: | An int32 enum property. | 69 | +| `Int32Val` | *int* | :heavy_check_mark: | An int32 property. | 1 | +| `IntEnumVal` | [IntEnumVal](../../models/shared/IntEnumVal.md) | :heavy_check_mark: | An integer enum property. | 3 | +| `IntVal` | *long* | :heavy_check_mark: | An integer property. | 999999 | +| `NumVal` | *double* | :heavy_check_mark: | A number property. | 1.1 | +| `StrVal` | *string* | :heavy_check_mark: | A string property. | example | +| `BigintStrVal` | *BigInteger* | :heavy_minus_sign: | N/A | | +| `BigintVal` | *BigInteger* | :heavy_minus_sign: | N/A | | +| `BoolOptVal` | *bool* | :heavy_minus_sign: | An optional boolean property. | true | +| `DecimalVal` | *decimal* | :heavy_minus_sign: | N/A | | +| `IntOptNullVal` | *long* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | +| `NumOptNullVal` | *double* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | +| `StrOptVal` | *string* | :heavy_minus_sign: | An optional string property. | optional example | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md b/csharp-client-sdk/docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md deleted file mode 100755 index 066a09cee..000000000 --- a/csharp-client-sdk/docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseInt32EnumVal - -An int32 enum property. - - -## Values - -| Name | Value | -| ------------------------ | ------------------------ | -| `FiftyFive` | 55 | -| `SixtyNine` | 69 | -| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md b/csharp-client-sdk/docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md deleted file mode 100755 index 13e4ff61c..000000000 --- a/csharp-client-sdk/docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseIntEnumVal - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `First` | 1 | -| `Second` | 2 | -| `Third` | 3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/SimpleObjectInt32Enum.md b/csharp-client-sdk/docs/models/shared/SimpleObjectInt32Enum.md deleted file mode 100755 index 1671069bb..000000000 --- a/csharp-client-sdk/docs/models/shared/SimpleObjectInt32Enum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectInt32Enum - -An int32 enum property. - - -## Values - -| Name | Value | -| ------------------------ | ------------------------ | -| `FiftyFive` | 55 | -| `SixtyNine` | 69 | -| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/SimpleObjectIntEnum.md b/csharp-client-sdk/docs/models/shared/SimpleObjectIntEnum.md deleted file mode 100755 index 90d7f4ecb..000000000 --- a/csharp-client-sdk/docs/models/shared/SimpleObjectIntEnum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectIntEnum - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `First` | 1 | -| `Second` | 2 | -| `Third` | 3 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/Slides.md b/csharp-client-sdk/docs/models/shared/Slides.md new file mode 100755 index 000000000..6f308e17d --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/Slides.md @@ -0,0 +1,10 @@ +# Slides + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Items` | List<*string*> | :heavy_minus_sign: | N/A | +| `Title` | *string* | :heavy_check_mark: | N/A | +| `Type` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/Slideshow.md b/csharp-client-sdk/docs/models/shared/Slideshow.md new file mode 100755 index 000000000..1b2d63744 --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/Slideshow.md @@ -0,0 +1,11 @@ +# Slideshow + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | +| `Author` | *string* | :heavy_check_mark: | N/A | +| `Date` | *string* | :heavy_check_mark: | N/A | +| `Slides` | List<[Slides](../../models/shared/Slides.md)> | :heavy_check_mark: | N/A | +| `Title` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/Type.md b/csharp-client-sdk/docs/models/shared/Type.md new file mode 100755 index 000000000..f70187d6b --- /dev/null +++ b/csharp-client-sdk/docs/models/shared/Type.md @@ -0,0 +1,8 @@ +# Type + + +## Values + +| Name | Value | +| ------ | ------ | +| `Obj1` | obj1 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/TypedObject1.md b/csharp-client-sdk/docs/models/shared/TypedObject1.md index 41266632b..873f64f98 100755 --- a/csharp-client-sdk/docs/models/shared/TypedObject1.md +++ b/csharp-client-sdk/docs/models/shared/TypedObject1.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| `Type` | [TypedObject1Type](../../models/shared/TypedObject1Type.md) | :heavy_check_mark: | N/A | -| `Value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | +| `Type` | [Type](../../models/shared/Type.md) | :heavy_check_mark: | N/A | +| `Value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/csharp-client-sdk/docs/models/shared/TypedObject1Type.md b/csharp-client-sdk/docs/models/shared/TypedObject1Type.md deleted file mode 100755 index 8df1ada70..000000000 --- a/csharp-client-sdk/docs/models/shared/TypedObject1Type.md +++ /dev/null @@ -1,8 +0,0 @@ -# TypedObject1Type - - -## Values - -| Name | Value | -| ------ | ------ | -| `Obj1` | obj1 | \ No newline at end of file diff --git a/csharp-client-sdk/docs/sdks/auth/README.md b/csharp-client-sdk/docs/sdks/auth/README.md index 08a9ffb0e..23a72fcdc 100755 --- a/csharp-client-sdk/docs/sdks/auth/README.md +++ b/csharp-client-sdk/docs/sdks/auth/README.md @@ -1,5 +1,5 @@ -# AuthSDK -(*Auth*) +# Auth +(*.Auth*) ## Overview @@ -21,10 +21,10 @@ Endpoints for testing authentication. ### Example Usage ```csharp -using SDK; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -53,10 +53,10 @@ var res = await sdk.Auth.ApiKeyAuthAsync(new ApiKeyAuthSecurity() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -80,10 +80,10 @@ var res = await sdk.Auth.ApiKeyAuthGlobalAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -115,10 +115,10 @@ var res = await sdk.Auth.BasicAuthAsync(new BasicAuthSecurity() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -147,10 +147,10 @@ var res = await sdk.Auth.BearerAuthAsync(new BearerAuthSecurity() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -174,10 +174,10 @@ var res = await sdk.Auth.GlobalBearerAuthAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -206,10 +206,10 @@ var res = await sdk.Auth.Oauth2AuthAsync(new Oauth2AuthSecurity() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -238,10 +238,10 @@ var res = await sdk.Auth.Oauth2OverrideAsync(new Oauth2OverrideSecurity() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); diff --git a/csharp-client-sdk/docs/sdks/authnew/README.md b/csharp-client-sdk/docs/sdks/authnew/README.md index d927fa2bf..0aa6e63a6 100755 --- a/csharp-client-sdk/docs/sdks/authnew/README.md +++ b/csharp-client-sdk/docs/sdks/authnew/README.md @@ -1,5 +1,5 @@ -# AuthNewSDK -(*AuthNew*) +# AuthNew +(*.AuthNew*) ## Overview @@ -24,10 +24,11 @@ Endpoints for testing authentication. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -36,12 +37,12 @@ var sdk = new SDKSDK( ); var res = await sdk.AuthNew.ApiKeyAuthGlobalNewAsync(new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() { + BasicAuth = new BasicAuth() { Password = "owsGgP4_AhRPMSJ", Username = "Devonte_Bins", }, - HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() { + HeaderAuth = new List() { + new HeaderAuth() { ExpectedValue = "string", HeaderName = "string", }, @@ -69,10 +70,11 @@ var res = await sdk.AuthNew.ApiKeyAuthGlobalNewAsync(new AuthServiceRequestBody( ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -81,12 +83,12 @@ var sdk = new SDKSDK( ); var res = await sdk.AuthNew.AuthGlobalAsync(new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() { + BasicAuth = new BasicAuth() { Password = "xvJcf9GiJNr7T2x", Username = "Cory33", }, - HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() { + HeaderAuth = new List() { + new HeaderAuth() { ExpectedValue = "string", HeaderName = "string", }, @@ -114,11 +116,12 @@ var res = await sdk.AuthNew.AuthGlobalAsync(new AuthServiceRequestBody() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -127,12 +130,12 @@ var res = await sdk.AuthNew.BasicAuthNewAsync(new BasicAuthNewSecurity() { Password = "YOUR_PASSWORD", Username = "YOUR_USERNAME", }, new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() { + BasicAuth = new BasicAuth() { Password = "Z2OStPksFyrcGeu", Username = "Ashton.Steuber27", }, - HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() { + HeaderAuth = new List() { + new HeaderAuth() { ExpectedValue = "string", HeaderName = "string", }, @@ -161,11 +164,12 @@ var res = await sdk.AuthNew.BasicAuthNewAsync(new BasicAuthNewSecurity() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -173,12 +177,12 @@ var sdk = new SDKSDK( var res = await sdk.AuthNew.MultipleMixedOptionsAuthAsync(new MultipleMixedOptionsAuthSecurity() { ApiKeyAuthNew = "Token ", }, new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() { + BasicAuth = new BasicAuth() { Password = "Iq1JSzG1wqLDz4v", Username = "Ismael.Emmerich", }, - HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() { + HeaderAuth = new List() { + new HeaderAuth() { ExpectedValue = "string", HeaderName = "string", }, @@ -207,11 +211,12 @@ var res = await sdk.AuthNew.MultipleMixedOptionsAuthAsync(new MultipleMixedOptio ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -223,12 +228,12 @@ var res = await sdk.AuthNew.MultipleMixedSchemeAuthAsync(new MultipleMixedScheme Username = "YOUR_USERNAME", }, }, new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() { + BasicAuth = new BasicAuth() { Password = "OcWVV5608IiaWJQ", Username = "Kameron42", }, - HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() { + HeaderAuth = new List() { + new HeaderAuth() { ExpectedValue = "string", HeaderName = "string", }, @@ -257,11 +262,12 @@ var res = await sdk.AuthNew.MultipleMixedSchemeAuthAsync(new MultipleMixedScheme ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -272,12 +278,12 @@ var res = await sdk.AuthNew.MultipleOptionsWithMixedSchemesAuthAsync(new Multipl Oauth2 = "Bearer YOUR_OAUTH2_TOKEN", }, }, new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() { + BasicAuth = new BasicAuth() { Password = "fpwNE90MyqKIrXk", Username = "Caroline_Walsh", }, - HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() { + HeaderAuth = new List() { + new HeaderAuth() { ExpectedValue = "string", HeaderName = "string", }, @@ -306,11 +312,12 @@ var res = await sdk.AuthNew.MultipleOptionsWithMixedSchemesAuthAsync(new Multipl ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -321,12 +328,12 @@ var res = await sdk.AuthNew.MultipleOptionsWithSimpleSchemesAuthAsync(new Multip Oauth2 = "Bearer YOUR_OAUTH2_TOKEN", }, }, new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() { + BasicAuth = new BasicAuth() { Password = "pibxDTiJSijK04Y", Username = "Selena76", }, - HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() { + HeaderAuth = new List() { + new HeaderAuth() { ExpectedValue = "string", HeaderName = "string", }, @@ -355,11 +362,12 @@ var res = await sdk.AuthNew.MultipleOptionsWithSimpleSchemesAuthAsync(new Multip ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -367,12 +375,12 @@ var sdk = new SDKSDK( var res = await sdk.AuthNew.MultipleSimpleOptionsAuthAsync(new MultipleSimpleOptionsAuthSecurity() { ApiKeyAuthNew = "Token ", }, new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() { + BasicAuth = new BasicAuth() { Password = "pzdKQgSGZSrUGNs", Username = "Eryn51", }, - HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() { + HeaderAuth = new List() { + new HeaderAuth() { ExpectedValue = "string", HeaderName = "string", }, @@ -401,11 +409,12 @@ var res = await sdk.AuthNew.MultipleSimpleOptionsAuthAsync(new MultipleSimpleOpt ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -414,12 +423,12 @@ var res = await sdk.AuthNew.MultipleSimpleSchemeAuthAsync(new MultipleSimpleSche ApiKeyAuthNew = "Token ", Oauth2 = "Bearer YOUR_OAUTH2_TOKEN", }, new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() { + BasicAuth = new BasicAuth() { Password = "UrAsw466AAaYtr1", Username = "Kenya.Baumbach", }, - HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() { + HeaderAuth = new List() { + new HeaderAuth() { ExpectedValue = "string", HeaderName = "string", }, @@ -448,11 +457,12 @@ var res = await sdk.AuthNew.MultipleSimpleSchemeAuthAsync(new MultipleSimpleSche ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -460,12 +470,12 @@ var sdk = new SDKSDK( var res = await sdk.AuthNew.Oauth2AuthNewAsync(new Oauth2AuthNewSecurity() { Oauth2 = "Bearer YOUR_OAUTH2_TOKEN", }, new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() { + BasicAuth = new BasicAuth() { Password = "V02sHy2onRTMRgS", Username = "Polly.Aufderhar78", }, - HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() { + HeaderAuth = new List() { + new HeaderAuth() { ExpectedValue = "string", HeaderName = "string", }, @@ -494,11 +504,12 @@ var res = await sdk.AuthNew.Oauth2AuthNewAsync(new Oauth2AuthNewSecurity() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -506,12 +517,12 @@ var sdk = new SDKSDK( var res = await sdk.AuthNew.OpenIdConnectAuthNewAsync(new OpenIdConnectAuthNewSecurity() { OpenIdConnect = "Bearer YOUR_OPENID_TOKEN", }, new AuthServiceRequestBody() { - BasicAuth = new AuthServiceRequestBodyBasicAuth() { + BasicAuth = new BasicAuth() { Password = "1_B3hNdr8HC3AeS", Username = "Floy_Heller", }, - HeaderAuth = new List() { - new AuthServiceRequestBodyHeaderAuth() { + HeaderAuth = new List() { + new HeaderAuth() { ExpectedValue = "string", HeaderName = "string", }, diff --git a/csharp-client-sdk/docs/sdks/documentation/README.md b/csharp-client-sdk/docs/sdks/documentation/README.md index 8c23637a0..33e5aa2f2 100755 --- a/csharp-client-sdk/docs/sdks/documentation/README.md +++ b/csharp-client-sdk/docs/sdks/documentation/README.md @@ -1,5 +1,5 @@ -# DocumentationSDK -(*Documentation*) +# Documentation +(*.Documentation*) ## Overview @@ -16,11 +16,11 @@ Gets documentation for some language, I guess. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/errors/README.md b/csharp-client-sdk/docs/sdks/errors/README.md index be99db5e4..163e69247 100755 --- a/csharp-client-sdk/docs/sdks/errors/README.md +++ b/csharp-client-sdk/docs/sdks/errors/README.md @@ -1,5 +1,5 @@ -# ErrorsSDK -(*Errors*) +# Errors +(*.Errors*) ## Overview @@ -16,10 +16,10 @@ Endpoints for testing error responses. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -49,11 +49,11 @@ var res = await sdk.Errors.ConnectionErrorGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -83,11 +83,11 @@ var res = await sdk.Errors.StatusGetErrorAsync(458364); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/first/README.md b/csharp-client-sdk/docs/sdks/first/README.md index 576325592..7a686724c 100755 --- a/csharp-client-sdk/docs/sdks/first/README.md +++ b/csharp-client-sdk/docs/sdks/first/README.md @@ -1,5 +1,5 @@ -# FirstSDK -(*First*) +# First +(*.First*) ### Available Operations @@ -10,10 +10,10 @@ ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/flattening/README.md b/csharp-client-sdk/docs/sdks/flattening/README.md index ca984eb6b..b59e031b3 100755 --- a/csharp-client-sdk/docs/sdks/flattening/README.md +++ b/csharp-client-sdk/docs/sdks/flattening/README.md @@ -1,5 +1,5 @@ -# FlatteningSDK -(*Flattening*) +# Flattening +(*.Flattening*) ## Overview @@ -18,13 +18,12 @@ Endpoints for testing flattening through request body and parameter combinations ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -35,14 +34,14 @@ var sdk = new SDKSDK( var res = await sdk.Flattening.ComponentBodyAndParamConflictAsync(new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -74,13 +73,12 @@ var res = await sdk.Flattening.ComponentBodyAndParamConflictAsync(new SimpleObje ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -91,14 +89,14 @@ var sdk = new SDKSDK( var res = await sdk.Flattening.ComponentBodyAndParamNoConflictAsync("string", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -130,11 +128,11 @@ var res = await sdk.Flattening.ComponentBodyAndParamNoConflictAsync("string", ne ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -165,11 +163,11 @@ var res = await sdk.Flattening.ConflictingParamsAsync("string", "string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -202,11 +200,11 @@ var res = await sdk.Flattening.InlineBodyAndParamConflictAsync(new InlineBodyAnd ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/generation/README.md b/csharp-client-sdk/docs/sdks/generation/README.md index cdf52bd9b..016172855 100755 --- a/csharp-client-sdk/docs/sdks/generation/README.md +++ b/csharp-client-sdk/docs/sdks/generation/README.md @@ -1,5 +1,5 @@ -# GenerationSDK -(*Generation*) +# Generation +(*.Generation*) ## Overview @@ -33,10 +33,10 @@ Endpoints for purely testing valid generation behavior. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -60,10 +60,10 @@ var res = await sdk.Generation.AnchorTypesGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -87,10 +87,10 @@ var res = await sdk.Generation.ArrayCircularReferenceGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -114,12 +114,12 @@ var res = await sdk.Generation.CircularReferenceGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -127,7 +127,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.Generation.DateParamWithDefaultAsync(LocalDate.FromDateTime(DateTime.Parse("2021-11-30"))); +var res = await sdk.Generation.DateParamWithDefaultAsync(LocalDate.FromDateTime(System.DateTime.Parse("2021-11-30"))); // handle response ``` @@ -149,12 +149,11 @@ var res = await sdk.Generation.DateParamWithDefaultAsync(LocalDate.FromDateTime( ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; -using System; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -162,7 +161,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.Generation.DateTimeParamWithDefaultAsync(DateTime.Parse("2023-02-09T21:53:21.077Z")); +var res = await sdk.Generation.DateTimeParamWithDefaultAsync(System.DateTime.Parse("2023-02-09T21:53:21.077Z")); // handle response ``` @@ -184,11 +183,11 @@ var res = await sdk.Generation.DateTimeParamWithDefaultAsync(DateTime.Parse("202 ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -218,10 +217,10 @@ var res = await sdk.Generation.DecimalParamWithDefaultAsync(4060.06M); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -251,10 +250,10 @@ var res = await sdk.Generation.DeprecatedFieldInSchemaPostAsync(new DeprecatedFi ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -280,11 +279,11 @@ var res = await sdk.Generation.DeprecatedObjectInSchemaGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -318,11 +317,11 @@ This is an endpoint setup to test deprecation with comments ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -353,11 +352,11 @@ var res = await sdk.Generation.DeprecatedOperationWithCommentsGetAsync("string", ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -387,10 +386,10 @@ var res = await sdk.Generation.EmptyObjectGetAsync(new EmptyObjectParam() {}); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -414,10 +413,10 @@ var res = await sdk.Generation.EmptyResponseObjectWithCommentGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -441,10 +440,11 @@ var res = await sdk.Generation.GlobalNameOverriddenAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Callbacks; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -468,11 +468,11 @@ var res = await sdk.Generation.IgnoredGenerationGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -480,17 +480,17 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.Generation.IgnoresPostAsync(new IgnoresPostApplicationJSON() {}, "string"); +var res = await sdk.Generation.IgnoresPostAsync(new IgnoresPostRequestBody() {}, "string"); // handle response ``` ### Parameters -| Parameter | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `RequestBody` | [IgnoresPostApplicationJSON](../../models/operations/IgnoresPostApplicationJSON.md) | :heavy_check_mark: | N/A | -| `TestParam` | *string* | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | +| `RequestBody` | [IgnoresPostRequestBody](../../models/operations/IgnoresPostRequestBody.md) | :heavy_check_mark: | N/A | +| `TestParam` | *string* | :heavy_minus_sign: | N/A | ### Response @@ -503,11 +503,11 @@ var res = await sdk.Generation.IgnoresPostAsync(new IgnoresPostApplicationJSON() ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -515,17 +515,17 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.Generation.NameOverrideAsync(SDK.Models.Operations.NameOverrideGetEnumNameOverride.Value3, "example"); +var res = await sdk.Generation.NameOverrideAsync(EnumNameOverride.Value3, "example"); // handle response ``` ### Parameters -| Parameter | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `TestEnumQueryParam` | [NameOverrideGetEnumNameOverride](../../models/operations/NameOverrideGetEnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | -| `TestQueryParam` | *string* | :heavy_check_mark: | N/A | example | +| Parameter | Type | Required | Description | Example | +| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | +| `TestEnumQueryParam` | [EnumNameOverride](../../models/operations/EnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | +| `TestQueryParam` | *string* | :heavy_check_mark: | N/A | example | ### Response @@ -538,10 +538,10 @@ var res = await sdk.Generation.NameOverrideAsync(SDK.Models.Operations.NameOverr ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -565,10 +565,10 @@ var res = await sdk.Generation.ObjectCircularReferenceGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -592,12 +592,12 @@ var res = await sdk.Generation.OneOfCircularReferenceGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -605,7 +605,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.Generation.TypedParameterGenerationGetAsync(879275, LocalDate.FromDateTime(DateTime.Parse("2023-11-18")), 3346.96M, new TypedParameterGenerationGetObj() { +var res = await sdk.Generation.TypedParameterGenerationGetAsync(879275, LocalDate.FromDateTime(System.DateTime.Parse("2023-11-18")), 3346.96M, new Obj() { Bool = false, Num = 4778.06D, Str = "string", @@ -616,12 +616,12 @@ var res = await sdk.Generation.TypedParameterGenerationGetAsync(879275, LocalDat ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `Bigint` | *BigInteger* | :heavy_minus_sign: | N/A | -| `Date` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_minus_sign: | N/A | -| `Decimal` | *decimal* | :heavy_minus_sign: | N/A | -| `Obj` | [TypedParameterGenerationGetObj](../../models/operations/TypedParameterGenerationGetObj.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | +| `Bigint` | *BigInteger* | :heavy_minus_sign: | N/A | +| `Date` | [LocalDate](https://nodatime.org/3.1.x/api/NodaTime.LocalDate.html) | :heavy_minus_sign: | N/A | +| `Decimal` | *decimal* | :heavy_minus_sign: | N/A | +| `Obj` | [Obj](../../models/operations/Obj.md) | :heavy_minus_sign: | N/A | ### Response @@ -639,13 +639,12 @@ Usage example docs ### Example Usage ```csharp -using SDK; -using SDK.Models.Operations; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Operations; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( globalPathParam: 100, globalQueryParam: "some example global query param" ); @@ -657,13 +656,13 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit BigintParameter = 168827, BigintStrParameter = 446729, BoolParameter = false, - DateParameter = LocalDate.FromDateTime(DateTime.Parse("2023-06-11")), - DateTimeDefaultParameter = DateTime.Parse("2022-07-22T13:16:48.221Z"), - DateTimeParameter = DateTime.Parse("2021-10-21T09:16:58.799Z"), + DateParameter = LocalDate.FromDateTime(System.DateTime.Parse("2023-06-11")), + DateTimeDefaultParameter = System.DateTime.Parse("2022-07-22T13:16:48.221Z"), + DateTimeParameter = System.DateTime.Parse("2021-10-21T09:16:58.799Z"), DecimalParameter = 5223.72M, DecimalStrParameter = 2911.37M, DoubleParameter = 6946.59D, - EnumParameter = SDK.Models.Operations.UsageExamplePostEnumParameter.Value1, + EnumParameter = EnumParameter.Value1, FalseyNumberParameter = 0D, Float32Parameter = 1029.75F, FloatParameter = 5669.99D, @@ -676,14 +675,14 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit SimpleObject = new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -694,7 +693,7 @@ var res = await sdk.Generation.UsageExamplePostAsync(new UsageExamplePostSecurit StrOpt = "testOptional", }, }, - OptEnumParameter = SDK.Models.Operations.UsageExamplePostOptEnumParameter.Value3, + OptEnumParameter = OptEnumParameter.Value3, }); // handle response diff --git a/csharp-client-sdk/docs/sdks/globals/README.md b/csharp-client-sdk/docs/sdks/globals/README.md index fee2c2f17..494c60617 100755 --- a/csharp-client-sdk/docs/sdks/globals/README.md +++ b/csharp-client-sdk/docs/sdks/globals/README.md @@ -1,5 +1,5 @@ -# GlobalsSDK -(*Globals*) +# Globals +(*.Globals*) ## Overview @@ -15,11 +15,11 @@ Endpoints for testing global parameters. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -49,11 +49,11 @@ var res = await sdk.Globals.GlobalPathParameterGetAsync(719830); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/nest/README.md b/csharp-client-sdk/docs/sdks/nest/README.md index c63515e84..609dfaf00 100755 --- a/csharp-client-sdk/docs/sdks/nest/README.md +++ b/csharp-client-sdk/docs/sdks/nest/README.md @@ -1,5 +1,5 @@ -# NestSDK -(*Nest*) +# Nest +(*.Nest*) ### Available Operations diff --git a/csharp-client-sdk/docs/sdks/nested/README.md b/csharp-client-sdk/docs/sdks/nested/README.md index a68264c12..260ff15d5 100755 --- a/csharp-client-sdk/docs/sdks/nested/README.md +++ b/csharp-client-sdk/docs/sdks/nested/README.md @@ -1,5 +1,5 @@ -# NestedSDK -(*Nested*) +# Nested +(*.Nested*) ### Available Operations @@ -10,10 +10,10 @@ ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/nestedfirst/README.md b/csharp-client-sdk/docs/sdks/nestedfirst/README.md deleted file mode 100755 index ee9b9f14b..000000000 --- a/csharp-client-sdk/docs/sdks/nestedfirst/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# NestedFirstSDK -(*Nested.First*) - -### Available Operations - -* [Get](#get) - -## Get - -### Example Usage - -```csharp -using SDK; -using SDK.Models.Shared; - -var sdk = new SDKSDK( - security: new Security() { - ApiKeyAuth = "Token YOUR_API_KEY", - }, - globalPathParam: 100, - globalQueryParam: "some example global query param" -); - -var res = await sdk.Nested.First.GetAsync(); - -// handle response -``` - - -### Response - -**[NestedFirstGetResponse](../../models/operations/NestedFirstGetResponse.md)** - diff --git a/csharp-client-sdk/docs/sdks/nestedsecond/README.md b/csharp-client-sdk/docs/sdks/nestedsecond/README.md deleted file mode 100755 index 545aca1bd..000000000 --- a/csharp-client-sdk/docs/sdks/nestedsecond/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# NestedSecondSDK -(*Nested.Second*) - -### Available Operations - -* [Get](#get) - -## Get - -### Example Usage - -```csharp -using SDK; -using SDK.Models.Shared; - -var sdk = new SDKSDK( - security: new Security() { - ApiKeyAuth = "Token YOUR_API_KEY", - }, - globalPathParam: 100, - globalQueryParam: "some example global query param" -); - -var res = await sdk.Nested.Second.GetAsync(); - -// handle response -``` - - -### Response - -**[NestedSecondGetResponse](../../models/operations/NestedSecondGetResponse.md)** - diff --git a/csharp-client-sdk/docs/sdks/nestfirst/README.md b/csharp-client-sdk/docs/sdks/nestfirst/README.md deleted file mode 100755 index 189e17eaf..000000000 --- a/csharp-client-sdk/docs/sdks/nestfirst/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# NestFirstSDK -(*Nest.First*) - -### Available Operations - -* [Get](#get) - -## Get - -### Example Usage - -```csharp -using SDK; -using SDK.Models.Shared; - -var sdk = new SDKSDK( - security: new Security() { - ApiKeyAuth = "Token YOUR_API_KEY", - }, - globalPathParam: 100, - globalQueryParam: "some example global query param" -); - -var res = await sdk.Nest.First.GetAsync(); - -// handle response -``` - - -### Response - -**[NestFirstGetResponse](../../models/operations/NestFirstGetResponse.md)** - diff --git a/csharp-client-sdk/docs/sdks/pagination/README.md b/csharp-client-sdk/docs/sdks/pagination/README.md index cdc029f76..b95d9cf6f 100755 --- a/csharp-client-sdk/docs/sdks/pagination/README.md +++ b/csharp-client-sdk/docs/sdks/pagination/README.md @@ -1,5 +1,5 @@ -# PaginationSDK -(*Pagination*) +# Pagination +(*.Pagination*) ## Overview @@ -19,11 +19,11 @@ Endpoints for testing the pagination extension ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -56,11 +56,11 @@ var res = await sdk.Pagination.PaginationCursorBodyAsync(new PaginationCursorBod ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -91,10 +91,10 @@ var res = await sdk.Pagination.PaginationCursorParamsAsync(24812); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -125,11 +125,11 @@ var res = await sdk.Pagination.PaginationLimitOffsetOffsetBodyAsync(new LimitOff ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -161,10 +161,10 @@ var res = await sdk.Pagination.PaginationLimitOffsetOffsetParamsAsync(661976, 60 ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -195,11 +195,11 @@ var res = await sdk.Pagination.PaginationLimitOffsetPageBodyAsync(new LimitOffse ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/parameters/README.md b/csharp-client-sdk/docs/sdks/parameters/README.md index 83780df8a..110d8d2ca 100755 --- a/csharp-client-sdk/docs/sdks/parameters/README.md +++ b/csharp-client-sdk/docs/sdks/parameters/README.md @@ -1,5 +1,5 @@ -# ParametersSDK -(*Parameters*) +# Parameters +(*.Parameters*) ## Overview @@ -36,11 +36,12 @@ Endpoints for testing parameters. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; +using System.Collections.Generic; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -52,14 +53,14 @@ var res = await sdk.Parameters.DeepObjectQueryParamsMapAsync(new Dictionary>() { - { "test2", new List() { - "test3", - "test4", - } }, { "test", new List() { "test", "test2", } }, + { "test2", new List() { + "test3", + "test4", + } }, }); // handle response @@ -83,13 +84,13 @@ var res = await sdk.Parameters.DeepObjectQueryParamsMapAsync(new Dictionary() { "test", "test2", @@ -128,10 +129,10 @@ var res = await sdk.Parameters.DeepObjectQueryParamsObjectAsync(new SimpleObject ### Parameters -| Parameter | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `ObjParam` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `ObjArrParam` | [DeepObjectQueryParamsObjectObjArrParam](../../models/operations/DeepObjectQueryParamsObjectObjArrParam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `ObjParam` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `ObjArrParam` | [ObjArrParam](../../models/operations/ObjArrParam.md) | :heavy_minus_sign: | N/A | ### Response @@ -144,11 +145,11 @@ var res = await sdk.Parameters.DeepObjectQueryParamsObjectAsync(new SimpleObject ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -178,11 +179,12 @@ var res = await sdk.Parameters.DuplicateParamAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; +using System.Collections.Generic; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -219,11 +221,11 @@ var res = await sdk.Parameters.FormQueryParamsArrayAsync(new List() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -231,10 +233,10 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.Parameters.FormQueryParamsCamelObjectAsync(new FormQueryParamsCamelObjectObjParamExploded() { +var res = await sdk.Parameters.FormQueryParamsCamelObjectAsync(new ObjParamExploded() { ItemCount = "10", SearchTerm = "foo", -}, new FormQueryParamsCamelObjectObjParam() { +}, new ObjParam() { EncodedCount = "11", EncodedTerm = "bar", }); @@ -244,10 +246,10 @@ var res = await sdk.Parameters.FormQueryParamsCamelObjectAsync(new FormQueryPara ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `ObjParamExploded` | [FormQueryParamsCamelObjectObjParamExploded](../../models/operations/FormQueryParamsCamelObjectObjParamExploded.md) | :heavy_check_mark: | N/A | -| `ObjParam` | [FormQueryParamsCamelObjectObjParam](../../models/operations/FormQueryParamsCamelObjectObjParam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | +| `ObjParamExploded` | [ObjParamExploded](../../models/operations/ObjParamExploded.md) | :heavy_check_mark: | N/A | +| `ObjParam` | [ObjParam](../../models/operations/ObjParam.md) | :heavy_minus_sign: | N/A | ### Response @@ -260,11 +262,12 @@ var res = await sdk.Parameters.FormQueryParamsCamelObjectAsync(new FormQueryPara ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; +using System.Collections.Generic; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -276,8 +279,8 @@ var res = await sdk.Parameters.FormQueryParamsMapAsync(new Dictionary() { - { "test", 1 }, { "test2", 2 }, + { "test", 1 }, }); // handle response @@ -301,13 +304,12 @@ var res = await sdk.Parameters.FormQueryParamsMapAsync(new Dictionary() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; +using System.Collections.Generic; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -511,8 +515,8 @@ var res = await sdk.Parameters.HeaderParamsMapAsync(new Dictionary() { - { "test2", "val2" }, { "test1", "val1" }, + { "test2", "val2" }, }); // handle response @@ -536,13 +540,12 @@ var res = await sdk.Parameters.HeaderParamsMapAsync(new Dictionary() ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; +using System.Collections.Generic; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1181,13 +1184,12 @@ var res = await sdk.Parameters.SimplePathParameterMapsAsync(new Dictionary() { 2355.17D, }, - NullableRequiredEnum = SDK.Models.Operations.NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.Second, + NullableRequiredEnum = NullableRequiredEnum.Second, NullableRequiredInt = 50266, }); @@ -207,11 +208,11 @@ var res = await sdk.RequestBodies.NullableRequiredPropertyPostAsync(new Nullable ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -248,12 +249,11 @@ var res = await sdk.RequestBodies.NullableRequiredSharedObjectPostAsync(new Null ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -265,14 +265,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayAsync(new L new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -305,12 +305,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayAsync(new L ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using System; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -322,13 +321,13 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayCamelCaseAs new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -360,12 +359,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayCamelCaseAs ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -377,14 +375,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayObjAsync(ne new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -416,12 +414,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayObjAsync(ne ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using System; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -433,13 +430,13 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayObjCamelCas new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -470,12 +467,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayObjCamelCas ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -488,14 +484,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfArrayAsyn new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -529,12 +525,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfArrayAsyn ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using System; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -547,13 +542,13 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfArrayCame new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -586,10 +581,10 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfArrayCame ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -624,12 +619,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfArrayOfPr ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -642,14 +636,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfMapAsync( { "key", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -683,12 +677,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfMapAsync( ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using System; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -701,13 +694,13 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfMapCamelC { "key", new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -740,10 +733,10 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfMapCamelC ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -776,12 +769,12 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonArrayOfPrimitive ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -795,14 +788,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonDeepAsync(new De new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -815,14 +808,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonDeepAsync(new De new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -839,14 +832,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonDeepAsync(new De { "key", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -859,14 +852,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonDeepAsync(new De { "key2", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -881,14 +874,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonDeepAsync(new De Obj = new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -921,12 +914,12 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonDeepAsync(new De ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using System; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -940,13 +933,13 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonDeepCamelCaseAsy new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -962,13 +955,13 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonDeepCamelCaseAsy { "key", new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -982,13 +975,13 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonDeepCamelCaseAsy ObjVal = new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -1020,12 +1013,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonDeepCamelCaseAsy ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1037,14 +1029,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapAsync(new Dic { "key", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -1077,12 +1069,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapAsync(new Dic ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using System; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1094,13 +1085,13 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapCamelCaseAsyn { "key", new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -1132,12 +1123,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapCamelCaseAsyn ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1149,14 +1139,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapObjAsync(new { "key", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -1188,12 +1178,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapObjAsync(new ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using System; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1205,13 +1194,13 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapObjCamelCaseA { "key", new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -1242,12 +1231,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapObjCamelCaseA ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1260,14 +1248,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfArrayAsync( new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -1301,12 +1289,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfArrayAsync( ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using System; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1319,13 +1306,13 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfArrayCamelC new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -1358,12 +1345,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfArrayCamelC ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1376,14 +1362,14 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfMapAsync(ne { "key", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -1417,12 +1403,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfMapAsync(ne ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using System; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1435,13 +1420,13 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfMapCamelCas { "key", new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -1474,10 +1459,10 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfMapCamelCas ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1512,10 +1497,10 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfMapOfPrimit ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1548,12 +1533,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMapOfPrimitiveAs ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1564,14 +1548,14 @@ var sdk = new SDKSDK( var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMultipleJsonFilteredAsync(new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -1602,12 +1586,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonMultipleJsonFilt ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1618,14 +1601,14 @@ var sdk = new SDKSDK( var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonSimpleAsync(new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -1656,12 +1639,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonSimpleAsync(new ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using System; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1672,13 +1654,13 @@ var sdk = new SDKSDK( var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonSimpleCamelCaseAsync(new SimpleObjectCamelCase() { AnyVal = "any example", BoolVal = true, - DateTimeVal = DateTime.Parse("2020-01-01T00:00:00Z"), - DateVal = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - EnumVal = SDK.Models.Shared.Enum.One, + DateTimeVal = System.DateTime.Parse("2020-01-01T00:00:00Z"), + DateVal = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + EnumVal = Enum.One, Float32Val = 2.2222222F, - Int32EnumVal = SDK.Models.Shared.SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + Int32EnumVal = Int32EnumVal.SixtyNine, Int32Val = 1, - IntEnumVal = SDK.Models.Shared.SimpleObjectCamelCaseIntEnumVal.Three, + IntEnumVal = IntEnumVal.Three, IntVal = 999999, NumVal = 1.1D, StrVal = "example", @@ -1708,11 +1690,11 @@ var res = await sdk.RequestBodies.RequestBodyPostApplicationJsonSimpleCamelCaseA ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1757,12 +1739,11 @@ var res = await sdk.RequestBodies.RequestBodyPostComplexNumberTypesAsync(new Req ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1774,12 +1755,12 @@ var res = await sdk.RequestBodies.RequestBodyPostDefaultsAndConstsAsync(new Defa ConstBigInt = 559205, ConstBigIntStr = 233601, ConstBool = false, - ConstDate = LocalDate.FromDateTime(DateTime.Parse("2022-12-15")), - ConstDateTime = DateTime.Parse("2023-10-01T02:16:56.173Z"), + ConstDate = LocalDate.FromDateTime(System.DateTime.Parse("2022-12-15")), + ConstDateTime = System.DateTime.Parse("2023-10-01T02:16:56.173Z"), ConstDecimal = 1120.58M, ConstDecimalStr = 8445.08M, - ConstEnumInt = SDK.Models.Shared.DefaultsAndConstsConstEnumInt.One, - ConstEnumStr = SDK.Models.Shared.DefaultsAndConstsConstEnumStr.Two, + ConstEnumInt = ConstEnumInt.One, + ConstEnumStr = ConstEnumStr.Two, ConstInt = 450379, ConstNum = 7742.71D, ConstStr = "string", @@ -1807,11 +1788,11 @@ var res = await sdk.RequestBodies.RequestBodyPostDefaultsAndConstsAsync(new Defa ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1820,8 +1801,8 @@ var sdk = new SDKSDK( ); var res = await sdk.RequestBodies.RequestBodyPostEmptyObjectAsync(new RequestBodyPostEmptyObjectRequestBody() { - Empty = new RequestBodyPostEmptyObjectRequestBodyEmpty() {}, - EmptyWithEmptyProperties = new RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties() {}, + Empty = new Empty() {}, + EmptyWithEmptyProperties = new EmptyWithEmptyProperties() {}, }); // handle response @@ -1844,12 +1825,12 @@ var res = await sdk.RequestBodies.RequestBodyPostEmptyObjectAsync(new RequestBod ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -1863,14 +1844,14 @@ var res = await sdk.RequestBodies.RequestBodyPostFormDeepAsync(new DeepObject() new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -1883,14 +1864,14 @@ var res = await sdk.RequestBodies.RequestBodyPostFormDeepAsync(new DeepObject() new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -1907,14 +1888,14 @@ var res = await sdk.RequestBodies.RequestBodyPostFormDeepAsync(new DeepObject() { "key", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -1927,14 +1908,14 @@ var res = await sdk.RequestBodies.RequestBodyPostFormDeepAsync(new DeepObject() { "key2", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -1949,14 +1930,14 @@ var res = await sdk.RequestBodies.RequestBodyPostFormDeepAsync(new DeepObject() Obj = new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -1989,10 +1970,10 @@ var res = await sdk.RequestBodies.RequestBodyPostFormDeepAsync(new DeepObject() ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2024,12 +2005,11 @@ var res = await sdk.RequestBodies.RequestBodyPostFormMapPrimitiveAsync(new Dicti ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2040,14 +2020,14 @@ var sdk = new SDKSDK( var res = await sdk.RequestBodies.RequestBodyPostFormSimpleAsync(new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -2078,10 +2058,10 @@ var res = await sdk.RequestBodies.RequestBodyPostFormSimpleAsync(new SimpleObjec ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2113,10 +2093,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesArrayBigIntAsync(n ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2125,7 +2105,7 @@ var sdk = new SDKSDK( ); var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesArrayDateAsync(new List() { - LocalDate.FromDateTime(DateTime.Parse("2022-03-22")), + LocalDate.FromDateTime(System.DateTime.Parse("2022-03-22")), }); // handle response @@ -2148,10 +2128,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesArrayDateAsync(new ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2183,10 +2163,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesArrayDecimalStrAsy ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2216,10 +2196,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesBigIntAsync(687617 ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2249,10 +2229,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesBigIntStrAsync(649 ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2282,10 +2262,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesBooleanAsync(false ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2293,7 +2273,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesDateAsync(LocalDate.FromDateTime(DateTime.Parse("2022-03-04"))); +var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesDateAsync(LocalDate.FromDateTime(System.DateTime.Parse("2022-03-04"))); // handle response ``` @@ -2315,10 +2295,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesDateAsync(LocalDat ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2326,7 +2306,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesDateTimeAsync(DateTime.Parse("2023-03-04T01:33:15.031Z")); +var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesDateTimeAsync(System.DateTime.Parse("2023-03-04T01:33:15.031Z")); // handle response ``` @@ -2348,10 +2328,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesDateTimeAsync(Date ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2381,10 +2361,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesDecimalAsync(1107. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2414,10 +2394,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesDecimalStrAsync(54 ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2447,10 +2427,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesFloat32Async(4464. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2480,10 +2460,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesInt32Async(22155); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2513,10 +2493,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesIntegerAsync(27367 ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2548,10 +2528,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesMapBigIntStrAsync( ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2560,7 +2540,7 @@ var sdk = new SDKSDK( ); var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesMapDateTimeAsync(new Dictionary() { - { "key", DateTime.Parse("2022-09-03T18:52:14.477Z") }, + { "key", System.DateTime.Parse("2022-09-03T18:52:14.477Z") }, }); // handle response @@ -2583,10 +2563,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesMapDateTimeAsync(n ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2618,10 +2598,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesMapDecimalAsync(ne ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2651,10 +2631,10 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesNumberAsync(2193.6 ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2684,12 +2664,11 @@ var res = await sdk.RequestBodies.RequestBodyPostJsonDataTypesStringAsync("strin ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2700,14 +2679,14 @@ var sdk = new SDKSDK( var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesComponentFilteredAsync(new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -2738,11 +2717,11 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesComponentFi ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2750,7 +2729,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesInlineFilteredAsync(new RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON() { +var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesInlineFilteredAsync(new RequestBodyPostMultipleContentTypesInlineFilteredRequestBody() { Bool = false, Num = 3558.41D, Str = "string", @@ -2761,9 +2740,9 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesInlineFilte ### Parameters -| Parameter | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request` | [RequestBodyPostMultipleContentTypesInlineFilteredRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -2776,11 +2755,11 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesInlineFilte ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2788,7 +2767,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamFormAsync(new RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded() { +var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamFormAsync(new RequestBodyPostMultipleContentTypesSplitParamFormRequestBody() { Bool3 = false, Num3 = 8693.24D, Str3 = "string", @@ -2799,10 +2778,10 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamF ### Parameters -| Parameter | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md) | :heavy_check_mark: | N/A | -| `ParamStr` | *string* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md) | :heavy_check_mark: | N/A | +| `ParamStr` | *string* | :heavy_check_mark: | N/A | ### Response @@ -2815,11 +2794,11 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamF ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2827,7 +2806,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamJsonAsync(new RequestBodyPostMultipleContentTypesSplitParamApplicationJSON() { +var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamJsonAsync(new RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody() { Bool = false, Num = 9771.91D, Str = "string", @@ -2840,7 +2819,7 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamJ | Parameter | Type | Required | Description | | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md) | :heavy_check_mark: | N/A | +| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md) | :heavy_check_mark: | N/A | | `ParamStr` | *string* | :heavy_check_mark: | N/A | @@ -2854,11 +2833,11 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamJ ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2866,7 +2845,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamMultipartAsync(new RequestBodyPostMultipleContentTypesSplitParamMultipartFormData() { +var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamMultipartAsync(new RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody() { Bool2 = false, Num2 = 7000.76D, Str2 = "string", @@ -2877,10 +2856,10 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamM ### Parameters -| Parameter | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md) | :heavy_check_mark: | N/A | -| `ParamStr` | *string* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md) | :heavy_check_mark: | N/A | +| `ParamStr` | *string* | :heavy_check_mark: | N/A | ### Response @@ -2893,11 +2872,11 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamM ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2905,7 +2884,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitFormAsync(new RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded() { +var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitFormAsync(new RequestBodyPostMultipleContentTypesSplitFormRequestBody() { Bool3 = false, Num3 = 7842.07D, Str3 = "string", @@ -2916,9 +2895,9 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitFormAs ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded](../../models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | +| `request` | [RequestBodyPostMultipleContentTypesSplitFormRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -2931,11 +2910,11 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitFormAs ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2943,7 +2922,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitJsonAsync(new RequestBodyPostMultipleContentTypesSplitApplicationJSON() { +var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitJsonAsync(new RequestBodyPostMultipleContentTypesSplitJsonRequestBody() { Bool = false, Num = 2445.56D, Str = "string", @@ -2956,7 +2935,7 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitJsonAs | Parameter | Type | Required | Description | | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [RequestBodyPostMultipleContentTypesSplitApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md) | :heavy_check_mark: | The request object to use for the request. | +| `request` | [RequestBodyPostMultipleContentTypesSplitJsonRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -2969,11 +2948,11 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitJsonAs ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -2981,7 +2960,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitMultipartAsync(new RequestBodyPostMultipleContentTypesSplitMultipartFormData() { +var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitMultipartAsync(new RequestBodyPostMultipleContentTypesSplitMultipartRequestBody() { Bool2 = false, Num2 = 2079.2D, Str2 = "string", @@ -2992,9 +2971,9 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitMultip ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [RequestBodyPostMultipleContentTypesSplitMultipartFormData](../../models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request` | [RequestBodyPostMultipleContentTypesSplitMultipartRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3007,10 +2986,10 @@ var res = await sdk.RequestBodies.RequestBodyPostMultipleContentTypesSplitMultip ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3040,10 +3019,10 @@ var res = await sdk.RequestBodies.RequestBodyPostNotNullableNotRequiredStringBod ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3075,10 +3054,10 @@ var res = await sdk.RequestBodies.RequestBodyPostNullArrayAsync(new List ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3110,10 +3089,10 @@ var res = await sdk.RequestBodies.RequestBodyPostNullDictionaryAsync(new Diction ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3143,10 +3122,10 @@ var res = await sdk.RequestBodies.RequestBodyPostNullableNotRequiredStringBodyAs ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3176,10 +3155,10 @@ var res = await sdk.RequestBodies.RequestBodyPostNullableRequiredStringBodyAsync ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3187,7 +3166,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyPutBytesAsync("9sS}}O%}aJ as bytes <<<>>>"); +var res = await sdk.RequestBodies.RequestBodyPutBytesAsync("0x5DbFFb1Ff9 as bytes <<<>>>"); // handle response ``` @@ -3209,11 +3188,11 @@ var res = await sdk.RequestBodies.RequestBodyPutBytesAsync("9sS}}O%}aJ as bytes ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3221,7 +3200,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyPutBytesWithParamsAsync("o%jIWe4_P6 as bytes <<<>>>", "string"); +var res = await sdk.RequestBodies.RequestBodyPutBytesWithParamsAsync("0xC1B9cA4eb5 as bytes <<<>>>", "string"); // handle response ``` @@ -3244,12 +3223,12 @@ var res = await sdk.RequestBodies.RequestBodyPutBytesWithParamsAsync("o%jIWe4_P6 ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3263,14 +3242,14 @@ var res = await sdk.RequestBodies.RequestBodyPutMultipartDeepAsync(new DeepObjec new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -3283,14 +3262,14 @@ var res = await sdk.RequestBodies.RequestBodyPutMultipartDeepAsync(new DeepObjec new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -3307,14 +3286,14 @@ var res = await sdk.RequestBodies.RequestBodyPutMultipartDeepAsync(new DeepObjec { "key", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -3327,14 +3306,14 @@ var res = await sdk.RequestBodies.RequestBodyPutMultipartDeepAsync(new DeepObjec { "key2", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -3349,14 +3328,14 @@ var res = await sdk.RequestBodies.RequestBodyPutMultipartDeepAsync(new DeepObjec Obj = new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -3389,11 +3368,11 @@ var res = await sdk.RequestBodies.RequestBodyPutMultipartDeepAsync(new DeepObjec ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3402,9 +3381,9 @@ var sdk = new SDKSDK( ); var res = await sdk.RequestBodies.RequestBodyPutMultipartDifferentFileNameAsync(new RequestBodyPutMultipartDifferentFileNameRequestBody() { - DifferentFileName = new RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName() { - Content = "Y}'H[5/Z[, as bytes <<<>>>", - DifferentFileName = "string", + DifferentFileName = new DifferentFileName() { + Content = "0xdF19d43dd2 as bytes <<<>>>", + FileName = "west_tunisian.pdf", }, }); @@ -3428,11 +3407,11 @@ var res = await sdk.RequestBodies.RequestBodyPutMultipartDifferentFileNameAsync( ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3441,9 +3420,9 @@ var sdk = new SDKSDK( ); var res = await sdk.RequestBodies.RequestBodyPutMultipartFileAsync(new RequestBodyPutMultipartFileRequestBody() { - File = new RequestBodyPutMultipartFileRequestBodyFile() { - Content = "OJa,v`.FW- as bytes <<<>>>", - File = "string", + File = new File() { + Content = "0xa9f2Ee38c3 as bytes <<<>>>", + FileName = "bandwidth_sedan.pdf", }, }); @@ -3467,12 +3446,11 @@ var res = await sdk.RequestBodies.RequestBodyPutMultipartFileAsync(new RequestBo ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3483,14 +3461,14 @@ var sdk = new SDKSDK( var res = await sdk.RequestBodies.RequestBodyPutMultipartSimpleAsync(new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -3521,10 +3499,10 @@ var res = await sdk.RequestBodies.RequestBodyPutMultipartSimpleAsync(new SimpleO ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3554,11 +3532,11 @@ var res = await sdk.RequestBodies.RequestBodyPutStringAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3589,10 +3567,10 @@ var res = await sdk.RequestBodies.RequestBodyPutStringWithParamsAsync("string", ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3600,7 +3578,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.RequestBodies.RequestBodyReadAndWriteAsync(new ReadWriteObjectInput() { +var res = await sdk.RequestBodies.RequestBodyReadAndWriteAsync(new ReadWriteObject() { Num1 = 797612, Num2 = 89374, Num3 = 459345, @@ -3611,10 +3589,10 @@ var res = await sdk.RequestBodies.RequestBodyReadAndWriteAsync(new ReadWriteObje ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | -| `request` | [ReadWriteObjectInput](../../models/shared/ReadWriteObjectInput.md) | :heavy_check_mark: | The request object to use for the request. | -| `serverURL` | *string* | :heavy_minus_sign: | An optional server URL to use. | +| Parameter | Type | Required | Description | +| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | +| `request` | [ReadWriteObject](../../models/shared/ReadWriteObject.md) | :heavy_check_mark: | The request object to use for the request. | +| `serverURL` | *string* | :heavy_minus_sign: | An optional server URL to use. | ### Response @@ -3627,10 +3605,10 @@ var res = await sdk.RequestBodies.RequestBodyReadAndWriteAsync(new ReadWriteObje ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3661,10 +3639,10 @@ var res = await sdk.RequestBodies.RequestBodyReadOnlyInputAsync(new ReadOnlyObje ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3695,10 +3673,10 @@ var res = await sdk.RequestBodies.RequestBodyReadOnlyUnionAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3729,10 +3707,10 @@ var res = await sdk.RequestBodies.RequestBodyReadWriteOnlyUnionAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3767,10 +3745,10 @@ var res = await sdk.RequestBodies.RequestBodyWriteOnlyAsync(new WriteOnlyObject( ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -3805,10 +3783,10 @@ var res = await sdk.RequestBodies.RequestBodyWriteOnlyOutputAsync(new WriteOnlyO ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/resource/README.md b/csharp-client-sdk/docs/sdks/resource/README.md index 408aec925..e9ca0883c 100755 --- a/csharp-client-sdk/docs/sdks/resource/README.md +++ b/csharp-client-sdk/docs/sdks/resource/README.md @@ -1,5 +1,5 @@ -# ResourceSDK -(*Resource*) +# Resource +(*.Resource*) ### Available Operations @@ -14,11 +14,11 @@ ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -27,9 +27,9 @@ var sdk = new SDKSDK( ); var res = await sdk.Resource.CreateFileAsync(new CreateFileRequestBody() { - File = new CreateFileRequestBodyFile() { - Content = "`'$Z`(L/RH as bytes <<<>>>", - File = "string", + File = new CreateFileFile() { + Content = "0xf10df1a3b9 as bytes <<<>>>", + FileName = "rap_national.mp4v", }, }); @@ -53,11 +53,11 @@ var res = await sdk.Resource.CreateFileAsync(new CreateFileRequestBody() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using System; +using Openapi; +using Openapi.Models.Shared; +using System.Collections.Generic; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -66,8 +66,8 @@ var sdk = new SDKSDK( ); var res = await sdk.Resource.CreateResourceAsync(new ExampleResource() { - Chocolates = new List() { - new ExampleResourceChocolates() { + Chocolates = new List() { + new Chocolates() { Description = "Digitized optimal archive", }, }, @@ -108,11 +108,11 @@ var res = await sdk.Resource.CreateResourceAsync(new ExampleResource() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -142,11 +142,11 @@ var res = await sdk.Resource.DeleteResourceAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -176,11 +176,11 @@ var res = await sdk.Resource.GetResourceAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/responsebodies/README.md b/csharp-client-sdk/docs/sdks/responsebodies/README.md index 1b9585fff..c8a84da92 100755 --- a/csharp-client-sdk/docs/sdks/responsebodies/README.md +++ b/csharp-client-sdk/docs/sdks/responsebodies/README.md @@ -1,5 +1,5 @@ -# ResponseBodiesSDK -(*ResponseBodies*) +# ResponseBodies +(*.ResponseBodies*) ## Overview @@ -24,10 +24,10 @@ Endpoints for testing response bodies. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -59,10 +59,10 @@ var res = await sdk.ResponseBodies.ResponseBodyAdditionalPropertiesComplexNumber ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -71,7 +71,7 @@ var sdk = new SDKSDK( ); var res = await sdk.ResponseBodies.ResponseBodyAdditionalPropertiesDatePostAsync(new Dictionary() { - { "key", LocalDate.FromDateTime(DateTime.Parse("2021-03-16")) }, + { "key", LocalDate.FromDateTime(System.DateTime.Parse("2021-03-16")) }, }); // handle response @@ -94,12 +94,11 @@ var res = await sdk.ResponseBodies.ResponseBodyAdditionalPropertiesDatePostAsync ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -111,14 +110,14 @@ var res = await sdk.ResponseBodies.ResponseBodyAdditionalPropertiesObjectPostAsy { "key", new SimpleObject() { Any = "any", Bool = true, - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00.000000001Z"), - Enum = SDK.Models.Shared.Enum.One, + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00.000000001Z"), + Enum = Enum.One, Float32 = 1.1F, Int = 1, Int32 = 1, - Int32Enum = SDK.Models.Shared.SimpleObjectInt32Enum.FiftyFive, - IntEnum = SDK.Models.Shared.SimpleObjectIntEnum.Two, + Int32Enum = Int32Enum.FiftyFive, + IntEnum = IntEnum.Two, Num = 1.1D, Str = "test", Bigint = 8821239038968084, @@ -150,10 +149,10 @@ var res = await sdk.ResponseBodies.ResponseBodyAdditionalPropertiesObjectPostAsy ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -185,10 +184,10 @@ var res = await sdk.ResponseBodies.ResponseBodyAdditionalPropertiesPostAsync(new ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -212,11 +211,11 @@ var res = await sdk.ResponseBodies.ResponseBodyBytesGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -247,10 +246,10 @@ var res = await sdk.ResponseBodies.ResponseBodyEmptyWithHeadersAsync(1751.8D, "s ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -280,10 +279,10 @@ var res = await sdk.ResponseBodies.ResponseBodyOptionalGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -313,10 +312,10 @@ var res = await sdk.ResponseBodies.ResponseBodyReadOnlyAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -340,10 +339,10 @@ var res = await sdk.ResponseBodies.ResponseBodyStringGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -367,12 +366,11 @@ var res = await sdk.ResponseBodies.ResponseBodyXmlGetAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; using NodaTime; -using System; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -381,8 +379,8 @@ var sdk = new SDKSDK( ); var res = await sdk.ResponseBodies.ResponseBodyZeroValueComplexTypePtrsPostAsync(new ObjWithZeroValueComplexTypePtrs() { - Date = LocalDate.FromDateTime(DateTime.Parse("2020-01-01")), - DateTime = DateTime.Parse("2020-01-01T00:00:00Z"), + Date = LocalDate.FromDateTime(System.DateTime.Parse("2020-01-01")), + DateTime = System.DateTime.Parse("2020-01-01T00:00:00Z"), }); // handle response diff --git a/csharp-client-sdk/docs/sdks/retries/README.md b/csharp-client-sdk/docs/sdks/retries/README.md index 96d5673f9..a79e34d62 100755 --- a/csharp-client-sdk/docs/sdks/retries/README.md +++ b/csharp-client-sdk/docs/sdks/retries/README.md @@ -1,5 +1,5 @@ -# RetriesSDK -(*Retries*) +# Retries +(*.Retries*) ## Overview @@ -14,11 +14,11 @@ Endpoints for testing retries. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/sdk/README.md b/csharp-client-sdk/docs/sdks/sdk/README.md index 87029f6a4..05952231e 100755 --- a/csharp-client-sdk/docs/sdks/sdk/README.md +++ b/csharp-client-sdk/docs/sdks/sdk/README.md @@ -18,10 +18,10 @@ Speakeasy Docs ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -29,7 +29,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.SDK.PutAnythingIgnoredGenerationAsync("string"); +var res = await sdk.PutAnythingIgnoredGenerationAsync("string"); // handle response ``` @@ -51,10 +51,10 @@ var res = await sdk.SDK.PutAnythingIgnoredGenerationAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -62,7 +62,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.SDK.ResponseBodyJsonGetAsync(); +var res = await sdk.ResponseBodyJsonGetAsync(); // handle response ``` diff --git a/csharp-client-sdk/docs/sdks/sdkfirst/README.md b/csharp-client-sdk/docs/sdks/sdkfirst/README.md new file mode 100755 index 000000000..993037ed6 --- /dev/null +++ b/csharp-client-sdk/docs/sdks/sdkfirst/README.md @@ -0,0 +1,33 @@ +# SDKFirst +(*.Nest.First*) + +### Available Operations + +* [Get](#get) + +## Get + +### Example Usage + +```csharp +using Openapi; +using Openapi.Models.Shared; + +var sdk = new SDK( + security: new Security() { + ApiKeyAuth = "Token YOUR_API_KEY", + }, + globalPathParam: 100, + globalQueryParam: "some example global query param" +); + +var res = await sdk.Nest.First.GetAsync(); + +// handle response +``` + + +### Response + +**[NestFirstGetResponse](../../models/operations/NestFirstGetResponse.md)** + diff --git a/csharp-client-sdk/docs/sdks/sdknestedfirst/README.md b/csharp-client-sdk/docs/sdks/sdknestedfirst/README.md new file mode 100755 index 000000000..1af9ac577 --- /dev/null +++ b/csharp-client-sdk/docs/sdks/sdknestedfirst/README.md @@ -0,0 +1,33 @@ +# SDKNestedFirst +(*.Nested.First*) + +### Available Operations + +* [Get](#get) + +## Get + +### Example Usage + +```csharp +using Openapi; +using Openapi.Models.Shared; + +var sdk = new SDK( + security: new Security() { + ApiKeyAuth = "Token YOUR_API_KEY", + }, + globalPathParam: 100, + globalQueryParam: "some example global query param" +); + +var res = await sdk.Nested.First.GetAsync(); + +// handle response +``` + + +### Response + +**[NestedFirstGetResponse](../../models/operations/NestedFirstGetResponse.md)** + diff --git a/csharp-client-sdk/docs/sdks/sdksecond/README.md b/csharp-client-sdk/docs/sdks/sdksecond/README.md new file mode 100755 index 000000000..81138e99b --- /dev/null +++ b/csharp-client-sdk/docs/sdks/sdksecond/README.md @@ -0,0 +1,33 @@ +# SDKSecond +(*.Nested.Second*) + +### Available Operations + +* [Get](#get) + +## Get + +### Example Usage + +```csharp +using Openapi; +using Openapi.Models.Shared; + +var sdk = new SDK( + security: new Security() { + ApiKeyAuth = "Token YOUR_API_KEY", + }, + globalPathParam: 100, + globalQueryParam: "some example global query param" +); + +var res = await sdk.Nested.Second.GetAsync(); + +// handle response +``` + + +### Response + +**[NestedSecondGetResponse](../../models/operations/NestedSecondGetResponse.md)** + diff --git a/csharp-client-sdk/docs/sdks/second/README.md b/csharp-client-sdk/docs/sdks/second/README.md index d4307920c..a15716864 100755 --- a/csharp-client-sdk/docs/sdks/second/README.md +++ b/csharp-client-sdk/docs/sdks/second/README.md @@ -1,5 +1,5 @@ -# SecondSDK -(*Second*) +# Second +(*.Second*) ### Available Operations @@ -10,10 +10,10 @@ ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/servers/README.md b/csharp-client-sdk/docs/sdks/servers/README.md index b314ff595..5dac41640 100755 --- a/csharp-client-sdk/docs/sdks/servers/README.md +++ b/csharp-client-sdk/docs/sdks/servers/README.md @@ -1,5 +1,5 @@ -# ServersSDK -(*Servers*) +# Servers +(*.Servers*) ## Overview @@ -19,10 +19,10 @@ Endpoints for testing servers. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -48,10 +48,10 @@ Select a server by ID. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -81,10 +81,10 @@ var res = await sdk.Servers.SelectServerWithIDAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -114,10 +114,10 @@ var res = await sdk.Servers.ServerWithProtocolTemplateAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -147,10 +147,10 @@ var res = await sdk.Servers.ServerWithTemplatesAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -174,10 +174,10 @@ var res = await sdk.Servers.ServerWithTemplatesGlobalAsync(); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/telemetry/README.md b/csharp-client-sdk/docs/sdks/telemetry/README.md index e794dce20..84bc32cb4 100755 --- a/csharp-client-sdk/docs/sdks/telemetry/README.md +++ b/csharp-client-sdk/docs/sdks/telemetry/README.md @@ -1,5 +1,5 @@ -# TelemetrySDK -(*Telemetry*) +# Telemetry +(*.Telemetry*) ## Overview @@ -15,11 +15,11 @@ Endpoints for testing telemetry. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; -using SDK.Models.Operations; +using Openapi; +using Openapi.Models.Shared; +using Openapi.Models.Operations; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -49,10 +49,10 @@ var res = await sdk.Telemetry.TelemetrySpeakeasyUserAgentGetAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/docs/sdks/unions/README.md b/csharp-client-sdk/docs/sdks/unions/README.md index 28036e11b..c89ea9749 100755 --- a/csharp-client-sdk/docs/sdks/unions/README.md +++ b/csharp-client-sdk/docs/sdks/unions/README.md @@ -1,5 +1,5 @@ -# UnionsSDK -(*Unions*) +# Unions +(*.Unions*) ## Overview @@ -28,10 +28,10 @@ Endpoints for testing union types. ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -61,10 +61,10 @@ var res = await sdk.Unions.FlattenedTypedObjectPostAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -94,10 +94,10 @@ var res = await sdk.Unions.MixedTypeOneOfPostAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -107,7 +107,7 @@ var sdk = new SDKSDK( var res = await sdk.Unions.NullableOneOfRefInObjectPostAsync(new NullableOneOfRefInObject() { NullableOneOfOne = new TypedObject1() { - Type = SDK.Models.Shared.TypedObject1Type.Obj1, + Type = Type.Obj1, Value = "string", }, NullableOneOfTwo = "string", @@ -134,10 +134,10 @@ var res = await sdk.Unions.NullableOneOfRefInObjectPostAsync(new NullableOneOfRe ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -167,10 +167,10 @@ var res = await sdk.Unions.NullableOneOfSchemaPostAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -204,10 +204,10 @@ var res = await sdk.Unions.NullableOneOfTypeInObjectPostAsync(new NullableOneOfT ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -216,7 +216,7 @@ var sdk = new SDKSDK( ); var res = await sdk.Unions.NullableTypedObjectPostAsync(new TypedObject1() { - Type = SDK.Models.Shared.TypedObject1Type.Obj1, + Type = Type.Obj1, Value = "string", }); @@ -240,10 +240,10 @@ var res = await sdk.Unions.NullableTypedObjectPostAsync(new TypedObject1() { ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -273,10 +273,10 @@ var res = await sdk.Unions.PrimitiveTypeOneOfPostAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -306,10 +306,10 @@ var res = await sdk.Unions.StronglyTypedOneOfPostAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -339,10 +339,10 @@ var res = await sdk.Unions.TypedObjectNullableOneOfPostAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -372,10 +372,10 @@ var res = await sdk.Unions.TypedObjectOneOfPostAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -405,10 +405,10 @@ var res = await sdk.Unions.UnionBigIntDecimalAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -416,7 +416,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.Unions.UnionDateNullAsync(LocalDate.FromDateTime(DateTime.Parse("2022-11-25"))); +var res = await sdk.Unions.UnionDateNullAsync(LocalDate.FromDateTime(System.DateTime.Parse("2022-11-25"))); // handle response ``` @@ -438,10 +438,10 @@ var res = await sdk.Unions.UnionDateNullAsync(LocalDate.FromDateTime(DateTime.Pa ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -471,10 +471,10 @@ var res = await sdk.Unions.UnionDateTimeBigIntAsync("string"); ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, @@ -482,7 +482,7 @@ var sdk = new SDKSDK( globalQueryParam: "some example global query param" ); -var res = await sdk.Unions.UnionDateTimeNullAsync(DateTime.Parse("2022-04-12T19:39:53.907Z")); +var res = await sdk.Unions.UnionDateTimeNullAsync(System.DateTime.Parse("2022-04-12T19:39:53.907Z")); // handle response ``` @@ -504,10 +504,10 @@ var res = await sdk.Unions.UnionDateTimeNullAsync(DateTime.Parse("2022-04-12T19: ### Example Usage ```csharp -using SDK; -using SDK.Models.Shared; +using Openapi; +using Openapi.Models.Shared; -var sdk = new SDKSDK( +var sdk = new SDK( security: new Security() { ApiKeyAuth = "Token YOUR_API_KEY", }, diff --git a/csharp-client-sdk/files.gen b/csharp-client-sdk/files.gen index c5a76e931..1eebc21aa 100755 --- a/csharp-client-sdk/files.gen +++ b/csharp-client-sdk/files.gen @@ -1,41 +1,41 @@ -SDK/Auth.cs -SDK/AuthNew.cs -SDK/Documentation.cs -SDK/Errors.cs -SDK/First.cs -SDK/Flattening.cs -SDK/Generation.cs -SDK/Globals.cs -SDK/NestFirst.cs -SDK/Nest.cs -SDK/NestedFirst.cs -SDK/NestedSecond.cs -SDK/Nested.cs -SDK/Pagination.cs -SDK/Parameters.cs -SDK/RequestBodies.cs -SDK/Resource.cs -SDK/ResponseBodies.cs -SDK/Retries.cs -SDK/Second.cs -SDK/Servers.cs -SDK/Telemetry.cs -SDK/Unions.cs -SDK/SDKSDK.cs -SDK/Utils/BigIntSerializer.cs -SDK/Utils/DecimalSerializer.cs -SDK/Utils/EnumSerializer.cs -SDK/Utils/FlexibleObjectDeserializer.cs -SDK/Utils/HeaderSerializer.cs -SDK/Utils/IsoDateTimeSerializer.cs -SDK/Utils/RequestBodySerializer.cs -SDK/Utils/SecuritySerializer.cs -SDK/Utils/SpeakeasyHttpClient.cs -SDK/Utils/SpeakeasyMetadata.cs -SDK/Utils/URLBuilder.cs -SDK/Utils/Utilities.cs -SDK/SDK.csproj -SDK.sln +Openapi/Generation.cs +Openapi/Errors.cs +Openapi/Unions.cs +Openapi/Flattening.cs +Openapi/Globals.cs +Openapi/Parameters.cs +Openapi/SDKFirst.cs +Openapi/Nest.cs +Openapi/SDKNestedFirst.cs +Openapi/SDKSecond.cs +Openapi/Nested.cs +Openapi/RequestBodies.cs +Openapi/ResponseBodies.cs +Openapi/Servers.cs +Openapi/Telemetry.cs +Openapi/AuthNew.cs +Openapi/Auth.cs +Openapi/Documentation.cs +Openapi/Resource.cs +Openapi/First.cs +Openapi/Second.cs +Openapi/Pagination.cs +Openapi/Retries.cs +Openapi/SDK.cs +Openapi/Utils/BigIntSerializer.cs +Openapi/Utils/DecimalSerializer.cs +Openapi/Utils/EnumSerializer.cs +Openapi/Utils/FlexibleObjectDeserializer.cs +Openapi/Utils/HeaderSerializer.cs +Openapi/Utils/IsoDateTimeSerializer.cs +Openapi/Utils/RequestBodySerializer.cs +Openapi/Utils/SecuritySerializer.cs +Openapi/Utils/SpeakeasyHttpClient.cs +Openapi/Utils/SpeakeasyMetadata.cs +Openapi/Utils/URLBuilder.cs +Openapi/Utils/Utilities.cs +Openapi/Openapi.csproj +Openapi.sln Tests/CommonHelpers.cs Tests/Tests.csproj TestsCommon/CommonHelpers.cs @@ -53,638 +53,562 @@ TestsPrimary/ServersShould.cs TestsPrimary/TelemetryShould.cs TestsSimpleSecurity/AuthShould.cs ../../testprojects/csharp/testproject.csproj -SDK/Models/Operations/PutAnythingIgnoredGeneration200ApplicationJSON.cs -SDK/Models/Operations/PutAnythingIgnoredGenerationResponse.cs -SDK/Models/Operations/ResponseBodyJsonGetResponse.cs -SDK/Models/Operations/ApiKeyAuthSecurity.cs -SDK/Models/Operations/ApiKeyAuthToken.cs -SDK/Models/Operations/ApiKeyAuthResponse.cs -SDK/Models/Operations/ApiKeyAuthGlobalToken.cs -SDK/Models/Operations/ApiKeyAuthGlobalResponse.cs -SDK/Models/Operations/BasicAuthSecurity.cs -SDK/Models/Operations/BasicAuthRequest.cs -SDK/Models/Operations/BasicAuthUser.cs -SDK/Models/Operations/BasicAuthResponse.cs -SDK/Models/Operations/BearerAuthSecurity.cs -SDK/Models/Operations/BearerAuthToken.cs -SDK/Models/Operations/BearerAuthResponse.cs -SDK/Models/Operations/GlobalBearerAuthToken.cs -SDK/Models/Operations/GlobalBearerAuthResponse.cs -SDK/Models/Operations/Oauth2AuthSecurity.cs -SDK/Models/Operations/Oauth2AuthToken.cs -SDK/Models/Operations/Oauth2AuthResponse.cs -SDK/Models/Operations/Oauth2OverrideSecurity.cs -SDK/Models/Operations/Oauth2OverrideRequest.cs -SDK/Models/Operations/Oauth2OverrideToken.cs -SDK/Models/Operations/Oauth2OverrideResponse.cs -SDK/Models/Operations/OpenIdConnectAuthSecurity.cs -SDK/Models/Operations/OpenIdConnectAuthToken.cs -SDK/Models/Operations/OpenIdConnectAuthResponse.cs -SDK/Models/Operations/ApiKeyAuthGlobalNewResponse.cs -SDK/Models/Operations/AuthGlobalResponse.cs -SDK/Models/Operations/BasicAuthNewSecurity.cs -SDK/Models/Operations/BasicAuthNewResponse.cs -SDK/Models/Operations/MultipleMixedOptionsAuthSecurity.cs -SDK/Models/Operations/MultipleMixedOptionsAuthResponse.cs -SDK/Models/Operations/MultipleMixedSchemeAuthSecurity.cs -SDK/Models/Operations/MultipleMixedSchemeAuthResponse.cs -SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.cs -SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.cs -SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurity.cs -SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthResponse.cs -SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.cs -SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.cs -SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurity.cs -SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthResponse.cs -SDK/Models/Operations/MultipleSimpleOptionsAuthSecurity.cs -SDK/Models/Operations/MultipleSimpleOptionsAuthResponse.cs -SDK/Models/Operations/MultipleSimpleSchemeAuthSecurity.cs -SDK/Models/Operations/MultipleSimpleSchemeAuthResponse.cs -SDK/Models/Operations/Oauth2AuthNewSecurity.cs -SDK/Models/Operations/Oauth2AuthNewResponse.cs -SDK/Models/Operations/OpenIdConnectAuthNewSecurity.cs -SDK/Models/Operations/OpenIdConnectAuthNewResponse.cs -SDK/Models/Operations/GetDocumentationPerLanguageRequest.cs -SDK/Models/Operations/GetDocumentationPerLanguageResponse.cs -SDK/Models/Operations/ConnectionErrorGetResponse.cs -SDK/Models/Operations/StatusGetErrorRequest.cs -SDK/Models/Operations/StatusGetErrorResponse.cs -SDK/Models/Operations/StatusGetXSpeakeasyErrorsRequest.cs -SDK/Models/Operations/StatusGetXSpeakeasyErrors501ApplicationJSON.cs -SDK/Models/Operations/StatusGetXSpeakeasyErrorsResponse.cs -SDK/Models/Operations/GroupFirstGetResponse.cs -SDK/Models/Operations/ComponentBodyAndParamConflictRequest.cs -SDK/Models/Operations/ComponentBodyAndParamConflictRes.cs -SDK/Models/Operations/ComponentBodyAndParamConflictResponse.cs -SDK/Models/Operations/ComponentBodyAndParamNoConflictRequest.cs -SDK/Models/Operations/ComponentBodyAndParamNoConflictRes.cs -SDK/Models/Operations/ComponentBodyAndParamNoConflictResponse.cs -SDK/Models/Operations/ConflictingParamsRequest.cs -SDK/Models/Operations/ConflictingParamsRes.cs -SDK/Models/Operations/ConflictingParamsResponse.cs -SDK/Models/Operations/InlineBodyAndParamConflictRequestBody.cs -SDK/Models/Operations/InlineBodyAndParamConflictRequest.cs -SDK/Models/Operations/InlineBodyAndParamConflictResJson.cs -SDK/Models/Operations/InlineBodyAndParamConflictRes.cs -SDK/Models/Operations/InlineBodyAndParamConflictResponse.cs -SDK/Models/Operations/InlineBodyAndParamNoConflictRequestBody.cs -SDK/Models/Operations/InlineBodyAndParamNoConflictRequest.cs -SDK/Models/Operations/InlineBodyAndParamNoConflictResJson.cs -SDK/Models/Operations/InlineBodyAndParamNoConflictRes.cs -SDK/Models/Operations/InlineBodyAndParamNoConflictResponse.cs -SDK/Models/Operations/TypeFromAnchor.cs -SDK/Models/Operations/AnchorTypesGetResponse.cs -SDK/Models/Operations/ArrayCircularReferenceGetResponse.cs -SDK/Models/Operations/CircularReferenceGetResponse.cs -SDK/Models/Operations/DateParamWithDefaultRequest.cs -SDK/Models/Operations/DateParamWithDefaultResponse.cs -SDK/Models/Operations/DateTimeParamWithDefaultRequest.cs -SDK/Models/Operations/DateTimeParamWithDefaultResponse.cs -SDK/Models/Operations/DecimalParamWithDefaultRequest.cs -SDK/Models/Operations/DecimalParamWithDefaultResponse.cs -SDK/Models/Operations/DeprecatedFieldInSchemaPostResponse.cs -SDK/Models/Operations/DeprecatedObjectInSchemaGet200ApplicationJSON.cs -SDK/Models/Operations/DeprecatedObjectInSchemaGetResponse.cs -SDK/Models/Operations/DeprecatedOperationNoCommentsGetRequest.cs -SDK/Models/Operations/DeprecatedOperationNoCommentsGetResponse.cs -SDK/Models/Operations/DeprecatedOperationWithCommentsGetRequest.cs -SDK/Models/Operations/DeprecatedOperationWithCommentsGetResponse.cs -SDK/Models/Operations/EmptyObjectGetRequest.cs -SDK/Models/Operations/EmptyObjectGetResponse.cs -SDK/Models/Operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.cs -SDK/Models/Operations/EmptyResponseObjectWithCommentGetResponse.cs -SDK/Models/Operations/GetGlobalNameOverride200ApplicationJSON.cs -SDK/Models/Operations/GetGlobalNameOverrideResponse.cs -SDK/Models/Operations/IgnoredGenerationGet200ApplicationJSON.cs -SDK/Models/Operations/IgnoredGenerationGetResponse.cs -SDK/Models/Operations/IgnoresPostApplicationJSON.cs -SDK/Models/Operations/IgnoresPostRequest.cs -SDK/Models/Operations/IgnoresPostResponse.cs -SDK/Models/Operations/NameOverrideGetEnumNameOverride.cs -SDK/Models/Operations/NameOverrideGetRequest.cs -SDK/Models/Operations/OverriddenResponse.cs -SDK/Models/Operations/NameOverrideGetResponse.cs -SDK/Models/Operations/ObjectCircularReferenceGetResponse.cs -SDK/Models/Operations/OneOfCircularReferenceGetResponse.cs -SDK/Models/Operations/TypedParameterGenerationGetObj.cs -SDK/Models/Operations/TypedParameterGenerationGetRequest.cs -SDK/Models/Operations/TypedParameterGenerationGetResponse.cs -SDK/Models/Operations/UsageExamplePostSecurity.cs -SDK/Models/Operations/UsageExamplePostRequestBody.cs -SDK/Models/Operations/UsageExamplePostEnumParameter.cs -SDK/Models/Operations/UsageExamplePostOptEnumParameter.cs -SDK/Models/Operations/UsageExamplePostRequest.cs -SDK/Models/Operations/UsageExamplePost200ApplicationJSONJSON.cs -SDK/Models/Operations/UsageExamplePost200ApplicationJSON.cs -SDK/Models/Operations/UsageExamplePostResponse.cs -SDK/Models/Operations/GlobalPathParameterGetRequest.cs -SDK/Models/Operations/GlobalPathParameterGetRes.cs -SDK/Models/Operations/GlobalPathParameterGetResponse.cs -SDK/Models/Operations/GlobalsQueryParameterGetRequest.cs -SDK/Models/Operations/GlobalsQueryParameterGetResArgs.cs -SDK/Models/Operations/GlobalsQueryParameterGetRes.cs -SDK/Models/Operations/GlobalsQueryParameterGetResponse.cs -SDK/Models/Operations/NestFirstGetResponse.cs -SDK/Models/Operations/NestedGetResponse.cs -SDK/Models/Operations/NestedFirstGetResponse.cs -SDK/Models/Operations/NestedSecondGetResponse.cs -SDK/Models/Operations/PaginationCursorBodyRequestBody.cs -SDK/Models/Operations/PaginationCursorBodyRes.cs -SDK/Models/Operations/PaginationCursorBodyResponse.cs -SDK/Models/Operations/PaginationCursorParamsRequest.cs -SDK/Models/Operations/PaginationCursorParamsRes.cs -SDK/Models/Operations/PaginationCursorParamsResponse.cs -SDK/Models/Operations/PaginationLimitOffsetOffsetBodyRes.cs -SDK/Models/Operations/PaginationLimitOffsetOffsetBodyResponse.cs -SDK/Models/Operations/PaginationLimitOffsetOffsetParamsRequest.cs -SDK/Models/Operations/PaginationLimitOffsetOffsetParamsRes.cs -SDK/Models/Operations/PaginationLimitOffsetOffsetParamsResponse.cs -SDK/Models/Operations/PaginationLimitOffsetPageBodyRes.cs -SDK/Models/Operations/PaginationLimitOffsetPageBodyResponse.cs -SDK/Models/Operations/PaginationLimitOffsetPageParamsRequest.cs -SDK/Models/Operations/PaginationLimitOffsetPageParamsRes.cs -SDK/Models/Operations/PaginationLimitOffsetPageParamsResponse.cs -SDK/Models/Operations/DeepObjectQueryParamsMapRequest.cs -SDK/Models/Operations/DeepObjectQueryParamsMapRes.cs -SDK/Models/Operations/DeepObjectQueryParamsMapResponse.cs -SDK/Models/Operations/DeepObjectQueryParamsObjectObjArrParam.cs -SDK/Models/Operations/DeepObjectQueryParamsObjectRequest.cs -SDK/Models/Operations/DeepObjectQueryParamsObjectResArgs.cs -SDK/Models/Operations/DeepObjectQueryParamsObjectRes.cs -SDK/Models/Operations/DeepObjectQueryParamsObjectResponse.cs -SDK/Models/Operations/DuplicateParamRequest.cs -SDK/Models/Operations/DuplicateParamDuplicateParamResponse.cs -SDK/Models/Operations/DuplicateParamResponse.cs -SDK/Models/Operations/FormQueryParamsArrayRequest.cs -SDK/Models/Operations/FormQueryParamsArrayResArgs.cs -SDK/Models/Operations/FormQueryParamsArrayRes.cs -SDK/Models/Operations/FormQueryParamsArrayResponse.cs -SDK/Models/Operations/FormQueryParamsCamelObjectObjParam.cs -SDK/Models/Operations/FormQueryParamsCamelObjectObjParamExploded.cs -SDK/Models/Operations/FormQueryParamsCamelObjectRequest.cs -SDK/Models/Operations/FormQueryParamsCamelObjectResArgs.cs -SDK/Models/Operations/FormQueryParamsCamelObjectRes.cs -SDK/Models/Operations/FormQueryParamsCamelObjectResponse.cs -SDK/Models/Operations/FormQueryParamsMapRequest.cs -SDK/Models/Operations/FormQueryParamsMapRes.cs -SDK/Models/Operations/FormQueryParamsMapResponse.cs -SDK/Models/Operations/FormQueryParamsObjectRequest.cs -SDK/Models/Operations/FormQueryParamsObjectResArgs.cs -SDK/Models/Operations/FormQueryParamsObjectRes.cs -SDK/Models/Operations/FormQueryParamsObjectResponse.cs -SDK/Models/Operations/FormQueryParamsPrimitiveRequest.cs -SDK/Models/Operations/FormQueryParamsPrimitiveResArgs.cs -SDK/Models/Operations/FormQueryParamsPrimitiveRes.cs -SDK/Models/Operations/FormQueryParamsPrimitiveResponse.cs -SDK/Models/Operations/FormQueryParamsRefParamObjectRequest.cs -SDK/Models/Operations/FormQueryParamsRefParamObjectResArgs.cs -SDK/Models/Operations/FormQueryParamsRefParamObjectRes.cs -SDK/Models/Operations/FormQueryParamsRefParamObjectResponse.cs -SDK/Models/Operations/HeaderParamsArrayRequest.cs -SDK/Models/Operations/HeaderParamsArrayResHeaders.cs -SDK/Models/Operations/HeaderParamsArrayRes.cs -SDK/Models/Operations/HeaderParamsArrayResponse.cs -SDK/Models/Operations/HeaderParamsMapRequest.cs -SDK/Models/Operations/HeaderParamsMapResHeaders.cs -SDK/Models/Operations/HeaderParamsMapRes.cs -SDK/Models/Operations/HeaderParamsMapResponse.cs -SDK/Models/Operations/HeaderParamsObjectRequest.cs -SDK/Models/Operations/HeaderParamsObjectResHeaders.cs -SDK/Models/Operations/HeaderParamsObjectRes.cs -SDK/Models/Operations/HeaderParamsObjectResponse.cs -SDK/Models/Operations/HeaderParamsPrimitiveRequest.cs -SDK/Models/Operations/HeaderParamsPrimitiveResHeaders.cs -SDK/Models/Operations/HeaderParamsPrimitiveRes.cs -SDK/Models/Operations/HeaderParamsPrimitiveResponse.cs -SDK/Models/Operations/JsonQueryParamsObjectRequest.cs -SDK/Models/Operations/JsonQueryParamsObjectResArgs.cs -SDK/Models/Operations/JsonQueryParamsObjectRes.cs -SDK/Models/Operations/JsonQueryParamsObjectResponse.cs -SDK/Models/Operations/MixedParametersCamelCaseRequest.cs -SDK/Models/Operations/MixedParametersCamelCaseResArgs.cs -SDK/Models/Operations/MixedParametersCamelCaseResHeaders.cs -SDK/Models/Operations/MixedParametersCamelCaseRes.cs -SDK/Models/Operations/MixedParametersCamelCaseResponse.cs -SDK/Models/Operations/MixedParametersPrimitivesRequest.cs -SDK/Models/Operations/MixedParametersPrimitivesResArgs.cs -SDK/Models/Operations/MixedParametersPrimitivesResHeaders.cs -SDK/Models/Operations/MixedParametersPrimitivesRes.cs -SDK/Models/Operations/MixedParametersPrimitivesResponse.cs -SDK/Models/Operations/MixedQueryParamsRequest.cs -SDK/Models/Operations/MixedQueryParamsRes.cs -SDK/Models/Operations/MixedQueryParamsResponse.cs -SDK/Models/Operations/PathParameterJsonRequest.cs -SDK/Models/Operations/PathParameterJsonRes.cs -SDK/Models/Operations/PathParameterJsonResponse.cs -SDK/Models/Operations/PipeDelimitedQueryParamsArrayRequest.cs -SDK/Models/Operations/PipeDelimitedQueryParamsArrayResArgs.cs -SDK/Models/Operations/PipeDelimitedQueryParamsArrayRes.cs -SDK/Models/Operations/PipeDelimitedQueryParamsArrayResponse.cs -SDK/Models/Operations/SimplePathParameterArraysRequest.cs -SDK/Models/Operations/SimplePathParameterArraysRes.cs -SDK/Models/Operations/SimplePathParameterArraysResponse.cs -SDK/Models/Operations/SimplePathParameterMapsRequest.cs -SDK/Models/Operations/SimplePathParameterMapsRes.cs -SDK/Models/Operations/SimplePathParameterMapsResponse.cs -SDK/Models/Operations/SimplePathParameterObjectsRequest.cs -SDK/Models/Operations/SimplePathParameterObjectsRes.cs -SDK/Models/Operations/SimplePathParameterObjectsResponse.cs -SDK/Models/Operations/SimplePathParameterPrimitivesRequest.cs -SDK/Models/Operations/SimplePathParameterPrimitivesRes.cs -SDK/Models/Operations/SimplePathParameterPrimitivesResponse.cs -SDK/Models/Operations/NullableObjectPostRes.cs -SDK/Models/Operations/NullableObjectPostResponse.cs -SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.cs -SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.cs -SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.cs -SDK/Models/Operations/NullableRequiredEmptyObjectPostRequestBody.cs -SDK/Models/Operations/NullableRequiredEmptyObjectPostResponse.cs -SDK/Models/Operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.cs -SDK/Models/Operations/NullableRequiredPropertyPostRequestBody.cs -SDK/Models/Operations/NullableRequiredPropertyPostResponse.cs -SDK/Models/Operations/NullableRequiredSharedObjectPostRequestBody.cs -SDK/Models/Operations/NullableRequiredSharedObjectPostResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonArrayObjResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonArrayObjCamelCaseResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonDeepRes.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonDeepResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseRes.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMapResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMapCamelCaseResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMapObjResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMapObjCamelCaseResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapCamelCaseResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapOfPrimitiveResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfPrimitiveResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredRes.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleRes.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleResponse.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.cs -SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.cs -SDK/Models/Operations/RequestBodyPostComplexNumberTypesRequest.cs -SDK/Models/Operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostComplexNumberTypesResponse.cs -SDK/Models/Operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.cs -SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBodyEmpty.cs -SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.cs -SDK/Models/Operations/RequestBodyPostEmptyObjectRequestBody.cs -SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.cs -SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.cs -SDK/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostEmptyObjectResponse.cs -SDK/Models/Operations/RequestBodyPostFormDeepResForm.cs -SDK/Models/Operations/RequestBodyPostFormDeepRes.cs -SDK/Models/Operations/RequestBodyPostFormDeepResponse.cs -SDK/Models/Operations/RequestBodyPostFormMapPrimitiveRes.cs -SDK/Models/Operations/RequestBodyPostFormMapPrimitiveResponse.cs -SDK/Models/Operations/RequestBodyPostFormSimpleResForm.cs -SDK/Models/Operations/RequestBodyPostFormSimpleResHeaders.cs -SDK/Models/Operations/RequestBodyPostFormSimpleRes.cs -SDK/Models/Operations/RequestBodyPostFormSimpleResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.cs -SDK/Models/Operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRes.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormResponse.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRes.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.cs -SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.cs -SDK/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.cs -SDK/Models/Operations/RequestBodyPostNullArray200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostNullArrayResponse.cs -SDK/Models/Operations/RequestBodyPostNullDictionary200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostNullDictionaryResponse.cs -SDK/Models/Operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.cs -SDK/Models/Operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.cs -SDK/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.cs -SDK/Models/Operations/RequestBodyPutBytesRes.cs -SDK/Models/Operations/RequestBodyPutBytesResponse.cs -SDK/Models/Operations/RequestBodyPutBytesWithParamsRequest.cs -SDK/Models/Operations/RequestBodyPutBytesWithParamsResArgs.cs -SDK/Models/Operations/RequestBodyPutBytesWithParamsRes.cs -SDK/Models/Operations/RequestBodyPutBytesWithParamsResponse.cs -SDK/Models/Operations/RequestBodyPutMultipartDeepResForm.cs -SDK/Models/Operations/RequestBodyPutMultipartDeepRes.cs -SDK/Models/Operations/RequestBodyPutMultipartDeepResponse.cs -SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.cs -SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.cs -SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameRes.cs -SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameResponse.cs -SDK/Models/Operations/RequestBodyPutMultipartFileRequestBodyFile.cs -SDK/Models/Operations/RequestBodyPutMultipartFileRequestBody.cs -SDK/Models/Operations/RequestBodyPutMultipartFileRes.cs -SDK/Models/Operations/RequestBodyPutMultipartFileResponse.cs -SDK/Models/Operations/RequestBodyPutMultipartSimpleResForm.cs -SDK/Models/Operations/RequestBodyPutMultipartSimpleResHeaders.cs -SDK/Models/Operations/RequestBodyPutMultipartSimpleRes.cs -SDK/Models/Operations/RequestBodyPutMultipartSimpleResponse.cs -SDK/Models/Operations/RequestBodyPutStringRes.cs -SDK/Models/Operations/RequestBodyPutStringResponse.cs -SDK/Models/Operations/RequestBodyPutStringWithParamsRequest.cs -SDK/Models/Operations/RequestBodyPutStringWithParamsResArgs.cs -SDK/Models/Operations/RequestBodyPutStringWithParamsRes.cs -SDK/Models/Operations/RequestBodyPutStringWithParamsResponse.cs -SDK/Models/Operations/RequestBodyReadAndWriteResponse.cs -SDK/Models/Operations/RequestBodyReadOnlyInputResponse.cs -SDK/Models/Operations/RequestBodyReadOnlyUnionResponse.cs -SDK/Models/Operations/RequestBodyReadWriteOnlyUnionResponse.cs -SDK/Models/Operations/RequestBodyWriteOnlyResponse.cs -SDK/Models/Operations/RequestBodyWriteOnlyOutputResponse.cs -SDK/Models/Operations/RequestBodyWriteOnlyUnionResponse.cs -SDK/Models/Operations/CreateFileRequestBodyFile.cs -SDK/Models/Operations/CreateFileRequestBody.cs -SDK/Models/Operations/CreateFileResponse.cs -SDK/Models/Operations/CreateResourceResponse.cs -SDK/Models/Operations/DeleteResourceRequest.cs -SDK/Models/Operations/DeleteResourceResponse.cs -SDK/Models/Operations/GetResourceRequest.cs -SDK/Models/Operations/GetResourceResponse.cs -SDK/Models/Operations/UpdateResourceRequest.cs -SDK/Models/Operations/UpdateResourceResponse.cs -SDK/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.cs -SDK/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.cs -SDK/Models/Operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.cs -SDK/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.cs -SDK/Models/Operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.cs -SDK/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.cs -SDK/Models/Operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.cs -SDK/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.cs -SDK/Models/Operations/ResponseBodyBytesGetResponse.cs -SDK/Models/Operations/ResponseBodyEmptyWithHeadersRequest.cs -SDK/Models/Operations/ResponseBodyEmptyWithHeadersResponse.cs -SDK/Models/Operations/ResponseBodyOptionalGetResponse.cs -SDK/Models/Operations/ResponseBodyReadOnlyResponse.cs -SDK/Models/Operations/ResponseBodyStringGetResponse.cs -SDK/Models/Operations/ResponseBodyXmlGetResponse.cs -SDK/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.cs -SDK/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.cs -SDK/Models/Operations/RetriesGetRequest.cs -SDK/Models/Operations/RetriesGetRetries.cs -SDK/Models/Operations/RetriesGetResponse.cs -SDK/Models/Operations/GroupSecondGetResponse.cs -SDK/Models/Operations/SelectGlobalServerResponse.cs -SDK/Models/Operations/SelectServerWithIDResponse.cs -SDK/Models/Operations/ServerWithProtocolTemplateResponse.cs -SDK/Models/Operations/ServerWithTemplatesResponse.cs -SDK/Models/Operations/ServerWithTemplatesGlobalResponse.cs -SDK/Models/Operations/ServersByIDWithTemplatesResponse.cs -SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetRequest.cs -SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetRes.cs -SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetResponse.cs -SDK/Models/Operations/TelemetryUserAgentGetRes.cs -SDK/Models/Operations/TelemetryUserAgentGetResponse.cs -SDK/Models/Operations/FlattenedTypedObjectPostRes.cs -SDK/Models/Operations/FlattenedTypedObjectPostResponse.cs -SDK/Models/Operations/MixedTypeOneOfPostRes.cs -SDK/Models/Operations/MixedTypeOneOfPostResponse.cs -SDK/Models/Operations/NullableOneOfRefInObjectPostRes.cs -SDK/Models/Operations/NullableOneOfRefInObjectPostResponse.cs -SDK/Models/Operations/NullableOneOfSchemaPostRes.cs -SDK/Models/Operations/NullableOneOfSchemaPostResponse.cs -SDK/Models/Operations/NullableOneOfTypeInObjectPostRes.cs -SDK/Models/Operations/NullableOneOfTypeInObjectPostResponse.cs -SDK/Models/Operations/NullableTypedObjectPostRes.cs -SDK/Models/Operations/NullableTypedObjectPostResponse.cs -SDK/Models/Operations/PrimitiveTypeOneOfPostRes.cs -SDK/Models/Operations/PrimitiveTypeOneOfPostResponse.cs -SDK/Models/Operations/StronglyTypedOneOfPostRes.cs -SDK/Models/Operations/StronglyTypedOneOfPostResponse.cs -SDK/Models/Operations/TypedObjectNullableOneOfPostRes.cs -SDK/Models/Operations/TypedObjectNullableOneOfPostResponse.cs -SDK/Models/Operations/TypedObjectOneOfPostRes.cs -SDK/Models/Operations/TypedObjectOneOfPostResponse.cs -SDK/Models/Operations/UnionBigIntDecimalRes.cs -SDK/Models/Operations/UnionBigIntDecimalResponse.cs -SDK/Models/Operations/UnionDateNullRes.cs -SDK/Models/Operations/UnionDateNullResponse.cs -SDK/Models/Operations/UnionDateTimeBigIntRes.cs -SDK/Models/Operations/UnionDateTimeBigIntResponse.cs -SDK/Models/Operations/UnionDateTimeNullRes.cs -SDK/Models/Operations/UnionDateTimeNullResponse.cs -SDK/Models/Operations/WeaklyTypedOneOfPostRes.cs -SDK/Models/Operations/WeaklyTypedOneOfPostResponse.cs -SDK/Models/Shared/HttpBinSimpleJsonObjectSlideshowSlides.cs -SDK/Models/Shared/HttpBinSimpleJsonObjectSlideshow.cs -SDK/Models/Shared/HttpBinSimpleJsonObject.cs -SDK/Models/Shared/AuthServiceRequestBodyBasicAuth.cs -SDK/Models/Shared/AuthServiceRequestBodyHeaderAuth.cs -SDK/Models/Shared/AuthServiceRequestBody.cs -SDK/Models/Shared/SchemeBasicAuth.cs -SDK/Models/Shared/Security.cs -SDK/Models/Shared/ErrorType.cs -SDK/Models/Shared/Error.cs -SDK/Models/Shared/SimpleObjectInt32Enum.cs -SDK/Models/Shared/SimpleObjectIntEnum.cs -SDK/Models/Shared/SimpleObject.cs -SDK/Models/Shared/Enum.cs -SDK/Models/Shared/ArrayCircularReferenceObject.cs -SDK/Models/Shared/ValidCircularReferenceObject.cs -SDK/Models/Shared/DeprecatedFieldInObjectDeprecatedEnum.cs -SDK/Models/Shared/DeprecatedFieldInObject.cs -SDK/Models/Shared/DeprecatedObject.cs -SDK/Models/Shared/EmptyObjectParam.cs -SDK/Models/Shared/ObjectCircularReferenceObject.cs -SDK/Models/Shared/OneOfCircularReferenceObject.cs -SDK/Models/Shared/FakerStrings.cs -SDK/Models/Shared/FakerFormattedStrings.cs -SDK/Models/Shared/LimitOffsetConfig.cs -SDK/Models/Shared/RefQueryParamObjExploded.cs -SDK/Models/Shared/RefQueryParamObj.cs -SDK/Models/Shared/DeepObject.cs -SDK/Models/Shared/NullableObject.cs -SDK/Models/Shared/SimpleObjectCamelCaseInt32EnumVal.cs -SDK/Models/Shared/SimpleObjectCamelCaseIntEnumVal.cs -SDK/Models/Shared/SimpleObjectCamelCase.cs -SDK/Models/Shared/ArrObjValue.cs -SDK/Models/Shared/ArrObjValueCamelCase.cs -SDK/Models/Shared/DeepObjectCamelCase.cs -SDK/Models/Shared/MapObjValue.cs -SDK/Models/Shared/MapObjValueCamelCase.cs -SDK/Models/Shared/ComplexNumberTypes.cs -SDK/Models/Shared/DefaultsAndConstsOutputConstEnumInt.cs -SDK/Models/Shared/DefaultsAndConstsOutputConstEnumStr.cs -SDK/Models/Shared/DefaultsAndConstsOutputDefaultEnumInt.cs -SDK/Models/Shared/DefaultsAndConstsOutputDefaultEnumStr.cs -SDK/Models/Shared/DefaultsAndConstsOutput.cs -SDK/Models/Shared/DefaultsAndConstsConstEnumInt.cs -SDK/Models/Shared/DefaultsAndConstsConstEnumStr.cs -SDK/Models/Shared/DefaultsAndConstsDefaultEnumInt.cs -SDK/Models/Shared/DefaultsAndConstsDefaultEnumStr.cs -SDK/Models/Shared/DefaultsAndConsts.cs -SDK/Models/Shared/ReadWriteObjectInput.cs -SDK/Models/Shared/ReadWriteObjectOutput.cs -SDK/Models/Shared/ReadOnlyObject.cs -SDK/Models/Shared/ReadOnlyObjectInput.cs -SDK/Models/Shared/WriteOnlyObject.cs -SDK/Models/Shared/WriteOnlyObjectOutput.cs -SDK/Models/Shared/FileResource.cs -SDK/Models/Shared/ExampleResourceChocolates.cs -SDK/Models/Shared/ExampleResourceEnumNumber.cs -SDK/Models/Shared/ExampleResourceEnumStr.cs -SDK/Models/Shared/ExampleResource.cs -SDK/Models/Shared/TypedObject1Type.cs -SDK/Models/Shared/TypedObject1.cs -SDK/Models/Shared/ObjWithZeroValueComplexTypePtrs.cs -SDK/Models/Shared/NullableOneOfRefInObject.cs -SDK/Models/Shared/NullableOneOfTypeInObject.cs -SDK/Models/Shared/AllOfToAllOf.cs -SDK/Models/Shared/OneOfGenerationStressTest.cs -SDK/Models/Shared/UnsupportedEnums.cs -SDK/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse.cs -SDK/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody.cs -SDK/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.cs -SDK/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.cs +Openapi/Models/Operations/PutAnythingIgnoredGenerationResponseBody.cs +Openapi/Models/Operations/PutAnythingIgnoredGenerationResponse.cs +Openapi/Models/Operations/ResponseBodyJsonGetResponse.cs +Openapi/Models/Operations/AnchorTypesGetTypeFromAnchor.cs +Openapi/Models/Operations/AnchorTypesGetResponse.cs +Openapi/Models/Operations/ArrayCircularReferenceGetResponse.cs +Openapi/Models/Operations/CircularReferenceGetResponse.cs +Openapi/Models/Operations/DateParamWithDefaultRequest.cs +Openapi/Models/Operations/DateParamWithDefaultResponse.cs +Openapi/Models/Operations/DateTimeParamWithDefaultRequest.cs +Openapi/Models/Operations/DateTimeParamWithDefaultResponse.cs +Openapi/Models/Operations/DecimalParamWithDefaultRequest.cs +Openapi/Models/Operations/DecimalParamWithDefaultResponse.cs +Openapi/Models/Operations/DeprecatedFieldInSchemaPostResponse.cs +Openapi/Models/Operations/DeprecatedObjectInSchemaGetResponseBody.cs +Openapi/Models/Operations/DeprecatedObjectInSchemaGetResponse.cs +Openapi/Models/Operations/DeprecatedOperationNoCommentsGetRequest.cs +Openapi/Models/Operations/DeprecatedOperationNoCommentsGetResponse.cs +Openapi/Models/Operations/DeprecatedOperationWithCommentsGetRequest.cs +Openapi/Models/Operations/DeprecatedOperationWithCommentsGetResponse.cs +Openapi/Models/Operations/EmptyObjectGetRequest.cs +Openapi/Models/Operations/EmptyObjectGetResponse.cs +Openapi/Models/Operations/EmptyResponseObjectWithCommentGetResponseBody.cs +Openapi/Models/Operations/EmptyResponseObjectWithCommentGetResponse.cs +Openapi/Models/Operations/GetGlobalNameOverrideResponseBody.cs +Openapi/Models/Operations/GetGlobalNameOverrideResponse.cs +Openapi/Models/Operations/IgnoredGenerationGetResponseBody.cs +Openapi/Models/Operations/IgnoredGenerationGetResponse.cs +Openapi/Models/Operations/IgnoresPostRequestBody.cs +Openapi/Models/Operations/IgnoresPostRequest.cs +Openapi/Models/Operations/IgnoresPostResponse.cs +Openapi/Models/Operations/EnumNameOverride.cs +Openapi/Models/Operations/NameOverrideGetRequest.cs +Openapi/Models/Operations/NameOverrideGetOverriddenResponse.cs +Openapi/Models/Operations/NameOverrideGetResponse.cs +Openapi/Models/Operations/ObjectCircularReferenceGetResponse.cs +Openapi/Models/Operations/OneOfCircularReferenceGetResponse.cs +Openapi/Models/Operations/Obj.cs +Openapi/Models/Operations/TypedParameterGenerationGetRequest.cs +Openapi/Models/Operations/TypedParameterGenerationGetResponse.cs +Openapi/Models/Operations/UsageExamplePostSecurity.cs +Openapi/Models/Operations/UsageExamplePostRequestBody.cs +Openapi/Models/Operations/EnumParameter.cs +Openapi/Models/Operations/OptEnumParameter.cs +Openapi/Models/Operations/UsageExamplePostRequest.cs +Openapi/Models/Operations/UsageExamplePostJson.cs +Openapi/Models/Operations/UsageExamplePostResponseBody.cs +Openapi/Models/Operations/UsageExamplePostResponse.cs +Openapi/Models/Operations/ConnectionErrorGetResponse.cs +Openapi/Models/Operations/StatusGetErrorRequest.cs +Openapi/Models/Operations/StatusGetErrorResponse.cs +Openapi/Models/Operations/StatusGetXSpeakeasyErrorsRequest.cs +Openapi/Models/Operations/StatusGetXSpeakeasyErrorsResponseBody.cs +Openapi/Models/Operations/StatusGetXSpeakeasyErrorsResponse.cs +Openapi/Models/Operations/FlattenedTypedObjectPostRes.cs +Openapi/Models/Operations/FlattenedTypedObjectPostResponse.cs +Openapi/Models/Operations/MixedTypeOneOfPostRes.cs +Openapi/Models/Operations/MixedTypeOneOfPostResponse.cs +Openapi/Models/Operations/NullableOneOfRefInObjectPostRes.cs +Openapi/Models/Operations/NullableOneOfRefInObjectPostResponse.cs +Openapi/Models/Operations/NullableOneOfSchemaPostRes.cs +Openapi/Models/Operations/NullableOneOfSchemaPostResponse.cs +Openapi/Models/Operations/NullableOneOfTypeInObjectPostRes.cs +Openapi/Models/Operations/NullableOneOfTypeInObjectPostResponse.cs +Openapi/Models/Operations/NullableTypedObjectPostRes.cs +Openapi/Models/Operations/NullableTypedObjectPostResponse.cs +Openapi/Models/Operations/PrimitiveTypeOneOfPostRes.cs +Openapi/Models/Operations/PrimitiveTypeOneOfPostResponse.cs +Openapi/Models/Operations/StronglyTypedOneOfPostRes.cs +Openapi/Models/Operations/StronglyTypedOneOfPostResponse.cs +Openapi/Models/Operations/TypedObjectNullableOneOfPostRes.cs +Openapi/Models/Operations/TypedObjectNullableOneOfPostResponse.cs +Openapi/Models/Operations/TypedObjectOneOfPostRes.cs +Openapi/Models/Operations/TypedObjectOneOfPostResponse.cs +Openapi/Models/Operations/UnionBigIntDecimalRes.cs +Openapi/Models/Operations/UnionBigIntDecimalResponse.cs +Openapi/Models/Operations/UnionDateNullRes.cs +Openapi/Models/Operations/UnionDateNullResponse.cs +Openapi/Models/Operations/UnionDateTimeBigIntRes.cs +Openapi/Models/Operations/UnionDateTimeBigIntResponse.cs +Openapi/Models/Operations/UnionDateTimeNullRes.cs +Openapi/Models/Operations/UnionDateTimeNullResponse.cs +Openapi/Models/Operations/WeaklyTypedOneOfPostRes.cs +Openapi/Models/Operations/WeaklyTypedOneOfPostResponse.cs +Openapi/Models/Operations/ComponentBodyAndParamConflictRequest.cs +Openapi/Models/Operations/ComponentBodyAndParamConflictRes.cs +Openapi/Models/Operations/ComponentBodyAndParamConflictResponse.cs +Openapi/Models/Operations/ComponentBodyAndParamNoConflictRequest.cs +Openapi/Models/Operations/ComponentBodyAndParamNoConflictRes.cs +Openapi/Models/Operations/ComponentBodyAndParamNoConflictResponse.cs +Openapi/Models/Operations/ConflictingParamsRequest.cs +Openapi/Models/Operations/ConflictingParamsRes.cs +Openapi/Models/Operations/ConflictingParamsResponse.cs +Openapi/Models/Operations/InlineBodyAndParamConflictRequestBody.cs +Openapi/Models/Operations/InlineBodyAndParamConflictRequest.cs +Openapi/Models/Operations/Json.cs +Openapi/Models/Operations/InlineBodyAndParamConflictRes.cs +Openapi/Models/Operations/InlineBodyAndParamConflictResponse.cs +Openapi/Models/Operations/InlineBodyAndParamNoConflictRequestBody.cs +Openapi/Models/Operations/InlineBodyAndParamNoConflictRequest.cs +Openapi/Models/Operations/InlineBodyAndParamNoConflictJson.cs +Openapi/Models/Operations/InlineBodyAndParamNoConflictRes.cs +Openapi/Models/Operations/InlineBodyAndParamNoConflictResponse.cs +Openapi/Models/Operations/GlobalPathParameterGetRequest.cs +Openapi/Models/Operations/GlobalPathParameterGetRes.cs +Openapi/Models/Operations/GlobalPathParameterGetResponse.cs +Openapi/Models/Operations/GlobalsQueryParameterGetRequest.cs +Openapi/Models/Operations/Args.cs +Openapi/Models/Operations/GlobalsQueryParameterGetRes.cs +Openapi/Models/Operations/GlobalsQueryParameterGetResponse.cs +Openapi/Models/Operations/DeepObjectQueryParamsMapRequest.cs +Openapi/Models/Operations/DeepObjectQueryParamsMapRes.cs +Openapi/Models/Operations/DeepObjectQueryParamsMapResponse.cs +Openapi/Models/Operations/ObjArrParam.cs +Openapi/Models/Operations/DeepObjectQueryParamsObjectRequest.cs +Openapi/Models/Operations/DeepObjectQueryParamsObjectArgs.cs +Openapi/Models/Operations/DeepObjectQueryParamsObjectRes.cs +Openapi/Models/Operations/DeepObjectQueryParamsObjectResponse.cs +Openapi/Models/Operations/DuplicateParamRequest.cs +Openapi/Models/Operations/DuplicateParamDuplicateParamResponse.cs +Openapi/Models/Operations/DuplicateParamResponse.cs +Openapi/Models/Operations/FormQueryParamsArrayRequest.cs +Openapi/Models/Operations/FormQueryParamsArrayArgs.cs +Openapi/Models/Operations/FormQueryParamsArrayRes.cs +Openapi/Models/Operations/FormQueryParamsArrayResponse.cs +Openapi/Models/Operations/ObjParam.cs +Openapi/Models/Operations/ObjParamExploded.cs +Openapi/Models/Operations/FormQueryParamsCamelObjectRequest.cs +Openapi/Models/Operations/FormQueryParamsCamelObjectArgs.cs +Openapi/Models/Operations/FormQueryParamsCamelObjectRes.cs +Openapi/Models/Operations/FormQueryParamsCamelObjectResponse.cs +Openapi/Models/Operations/FormQueryParamsMapRequest.cs +Openapi/Models/Operations/FormQueryParamsMapRes.cs +Openapi/Models/Operations/FormQueryParamsMapResponse.cs +Openapi/Models/Operations/FormQueryParamsObjectRequest.cs +Openapi/Models/Operations/FormQueryParamsObjectArgs.cs +Openapi/Models/Operations/FormQueryParamsObjectRes.cs +Openapi/Models/Operations/FormQueryParamsObjectResponse.cs +Openapi/Models/Operations/FormQueryParamsPrimitiveRequest.cs +Openapi/Models/Operations/FormQueryParamsPrimitiveArgs.cs +Openapi/Models/Operations/FormQueryParamsPrimitiveRes.cs +Openapi/Models/Operations/FormQueryParamsPrimitiveResponse.cs +Openapi/Models/Operations/FormQueryParamsRefParamObjectRequest.cs +Openapi/Models/Operations/FormQueryParamsRefParamObjectArgs.cs +Openapi/Models/Operations/FormQueryParamsRefParamObjectRes.cs +Openapi/Models/Operations/FormQueryParamsRefParamObjectResponse.cs +Openapi/Models/Operations/HeaderParamsArrayRequest.cs +Openapi/Models/Operations/Headers.cs +Openapi/Models/Operations/HeaderParamsArrayRes.cs +Openapi/Models/Operations/HeaderParamsArrayResponse.cs +Openapi/Models/Operations/HeaderParamsMapRequest.cs +Openapi/Models/Operations/HeaderParamsMapHeaders.cs +Openapi/Models/Operations/HeaderParamsMapRes.cs +Openapi/Models/Operations/HeaderParamsMapResponse.cs +Openapi/Models/Operations/HeaderParamsObjectRequest.cs +Openapi/Models/Operations/HeaderParamsObjectHeaders.cs +Openapi/Models/Operations/HeaderParamsObjectRes.cs +Openapi/Models/Operations/HeaderParamsObjectResponse.cs +Openapi/Models/Operations/HeaderParamsPrimitiveRequest.cs +Openapi/Models/Operations/HeaderParamsPrimitiveHeaders.cs +Openapi/Models/Operations/HeaderParamsPrimitiveRes.cs +Openapi/Models/Operations/HeaderParamsPrimitiveResponse.cs +Openapi/Models/Operations/JsonQueryParamsObjectRequest.cs +Openapi/Models/Operations/JsonQueryParamsObjectArgs.cs +Openapi/Models/Operations/JsonQueryParamsObjectRes.cs +Openapi/Models/Operations/JsonQueryParamsObjectResponse.cs +Openapi/Models/Operations/MixedParametersCamelCaseRequest.cs +Openapi/Models/Operations/MixedParametersCamelCaseArgs.cs +Openapi/Models/Operations/MixedParametersCamelCaseHeaders.cs +Openapi/Models/Operations/MixedParametersCamelCaseRes.cs +Openapi/Models/Operations/MixedParametersCamelCaseResponse.cs +Openapi/Models/Operations/MixedParametersPrimitivesRequest.cs +Openapi/Models/Operations/MixedParametersPrimitivesArgs.cs +Openapi/Models/Operations/MixedParametersPrimitivesHeaders.cs +Openapi/Models/Operations/MixedParametersPrimitivesRes.cs +Openapi/Models/Operations/MixedParametersPrimitivesResponse.cs +Openapi/Models/Operations/MixedQueryParamsRequest.cs +Openapi/Models/Operations/MixedQueryParamsRes.cs +Openapi/Models/Operations/MixedQueryParamsResponse.cs +Openapi/Models/Operations/PathParameterJsonRequest.cs +Openapi/Models/Operations/PathParameterJsonRes.cs +Openapi/Models/Operations/PathParameterJsonResponse.cs +Openapi/Models/Operations/PipeDelimitedQueryParamsArrayRequest.cs +Openapi/Models/Operations/PipeDelimitedQueryParamsArrayArgs.cs +Openapi/Models/Operations/PipeDelimitedQueryParamsArrayRes.cs +Openapi/Models/Operations/PipeDelimitedQueryParamsArrayResponse.cs +Openapi/Models/Operations/SimplePathParameterArraysRequest.cs +Openapi/Models/Operations/SimplePathParameterArraysRes.cs +Openapi/Models/Operations/SimplePathParameterArraysResponse.cs +Openapi/Models/Operations/SimplePathParameterMapsRequest.cs +Openapi/Models/Operations/SimplePathParameterMapsRes.cs +Openapi/Models/Operations/SimplePathParameterMapsResponse.cs +Openapi/Models/Operations/SimplePathParameterObjectsRequest.cs +Openapi/Models/Operations/SimplePathParameterObjectsRes.cs +Openapi/Models/Operations/SimplePathParameterObjectsResponse.cs +Openapi/Models/Operations/SimplePathParameterPrimitivesRequest.cs +Openapi/Models/Operations/SimplePathParameterPrimitivesRes.cs +Openapi/Models/Operations/SimplePathParameterPrimitivesResponse.cs +Openapi/Models/Operations/NestFirstGetResponse.cs +Openapi/Models/Operations/NestedGetResponse.cs +Openapi/Models/Operations/NestedFirstGetResponse.cs +Openapi/Models/Operations/NestedSecondGetResponse.cs +Openapi/Models/Operations/NullableObjectPostRes.cs +Openapi/Models/Operations/NullableObjectPostResponse.cs +Openapi/Models/Operations/NullableOptionalObj.cs +Openapi/Models/Operations/NullableRequiredObj.cs +Openapi/Models/Operations/RequiredObj.cs +Openapi/Models/Operations/NullableRequiredEmptyObjectPostRequestBody.cs +Openapi/Models/Operations/NullableRequiredEmptyObjectPostResponse.cs +Openapi/Models/Operations/NullableRequiredEnum.cs +Openapi/Models/Operations/NullableRequiredPropertyPostRequestBody.cs +Openapi/Models/Operations/NullableRequiredPropertyPostResponse.cs +Openapi/Models/Operations/NullableRequiredSharedObjectPostRequestBody.cs +Openapi/Models/Operations/NullableRequiredSharedObjectPostResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayObjResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayObjCamelCaseResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepRes.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseRes.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMapResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMapCamelCaseResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMapObjResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMapObjCamelCaseResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapCamelCaseResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapOfPrimitiveResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfPrimitiveResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredRes.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleRes.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleResponse.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.cs +Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.cs +Openapi/Models/Operations/RequestBodyPostComplexNumberTypesRequest.cs +Openapi/Models/Operations/RequestBodyPostComplexNumberTypesResponseBody.cs +Openapi/Models/Operations/RequestBodyPostComplexNumberTypesResponse.cs +Openapi/Models/Operations/RequestBodyPostDefaultsAndConstsResponseBody.cs +Openapi/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.cs +Openapi/Models/Operations/Empty.cs +Openapi/Models/Operations/EmptyWithEmptyProperties.cs +Openapi/Models/Operations/RequestBodyPostEmptyObjectRequestBody.cs +Openapi/Models/Operations/RequestBodyPostEmptyObjectEmpty.cs +Openapi/Models/Operations/EmptyRespWithEmptyProperies.cs +Openapi/Models/Operations/RequestBodyPostEmptyObjectResponseBody.cs +Openapi/Models/Operations/RequestBodyPostEmptyObjectResponse.cs +Openapi/Models/Operations/Form.cs +Openapi/Models/Operations/RequestBodyPostFormDeepRes.cs +Openapi/Models/Operations/RequestBodyPostFormDeepResponse.cs +Openapi/Models/Operations/RequestBodyPostFormMapPrimitiveRes.cs +Openapi/Models/Operations/RequestBodyPostFormMapPrimitiveResponse.cs +Openapi/Models/Operations/RequestBodyPostFormSimpleForm.cs +Openapi/Models/Operations/RequestBodyPostFormSimpleHeaders.cs +Openapi/Models/Operations/RequestBodyPostFormSimpleRes.cs +Openapi/Models/Operations/RequestBodyPostFormSimpleResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesInt32ResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesNumberResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesStringResponseBody.cs +Openapi/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRes.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormResponse.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRes.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.cs +Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.cs +Openapi/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.cs +Openapi/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.cs +Openapi/Models/Operations/RequestBodyPostNullArrayResponseBody.cs +Openapi/Models/Operations/RequestBodyPostNullArrayResponse.cs +Openapi/Models/Operations/RequestBodyPostNullDictionaryResponseBody.cs +Openapi/Models/Operations/RequestBodyPostNullDictionaryResponse.cs +Openapi/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.cs +Openapi/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.cs +Openapi/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponseBody.cs +Openapi/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.cs +Openapi/Models/Operations/RequestBodyPutBytesRes.cs +Openapi/Models/Operations/RequestBodyPutBytesResponse.cs +Openapi/Models/Operations/RequestBodyPutBytesWithParamsRequest.cs +Openapi/Models/Operations/RequestBodyPutBytesWithParamsArgs.cs +Openapi/Models/Operations/RequestBodyPutBytesWithParamsRes.cs +Openapi/Models/Operations/RequestBodyPutBytesWithParamsResponse.cs +Openapi/Models/Operations/RequestBodyPutMultipartDeepForm.cs +Openapi/Models/Operations/RequestBodyPutMultipartDeepRes.cs +Openapi/Models/Operations/RequestBodyPutMultipartDeepResponse.cs +Openapi/Models/Operations/DifferentFileName.cs +Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.cs +Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameRes.cs +Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameResponse.cs +Openapi/Models/Operations/File.cs +Openapi/Models/Operations/RequestBodyPutMultipartFileRequestBody.cs +Openapi/Models/Operations/RequestBodyPutMultipartFileRes.cs +Openapi/Models/Operations/RequestBodyPutMultipartFileResponse.cs +Openapi/Models/Operations/RequestBodyPutMultipartSimpleForm.cs +Openapi/Models/Operations/RequestBodyPutMultipartSimpleHeaders.cs +Openapi/Models/Operations/RequestBodyPutMultipartSimpleRes.cs +Openapi/Models/Operations/RequestBodyPutMultipartSimpleResponse.cs +Openapi/Models/Operations/RequestBodyPutStringRes.cs +Openapi/Models/Operations/RequestBodyPutStringResponse.cs +Openapi/Models/Operations/RequestBodyPutStringWithParamsRequest.cs +Openapi/Models/Operations/RequestBodyPutStringWithParamsArgs.cs +Openapi/Models/Operations/RequestBodyPutStringWithParamsRes.cs +Openapi/Models/Operations/RequestBodyPutStringWithParamsResponse.cs +Openapi/Models/Operations/RequestBodyReadAndWriteResponse.cs +Openapi/Models/Operations/RequestBodyReadOnlyInputResponse.cs +Openapi/Models/Operations/RequestBodyReadOnlyUnionResponse.cs +Openapi/Models/Operations/RequestBodyReadWriteOnlyUnionResponse.cs +Openapi/Models/Operations/RequestBodyWriteOnlyResponse.cs +Openapi/Models/Operations/RequestBodyWriteOnlyOutputResponse.cs +Openapi/Models/Operations/RequestBodyWriteOnlyUnionResponse.cs +Openapi/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.cs +Openapi/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.cs +Openapi/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.cs +Openapi/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.cs +Openapi/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.cs +Openapi/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.cs +Openapi/Models/Operations/ResponseBodyAdditionalPropertiesPostResponseBody.cs +Openapi/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.cs +Openapi/Models/Operations/ResponseBodyBytesGetResponse.cs +Openapi/Models/Operations/ResponseBodyEmptyWithHeadersRequest.cs +Openapi/Models/Operations/ResponseBodyEmptyWithHeadersResponse.cs +Openapi/Models/Operations/ResponseBodyOptionalGetResponse.cs +Openapi/Models/Operations/ResponseBodyReadOnlyResponse.cs +Openapi/Models/Operations/ResponseBodyStringGetResponse.cs +Openapi/Models/Operations/ResponseBodyXmlGetResponse.cs +Openapi/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.cs +Openapi/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.cs +Openapi/Models/Operations/SelectGlobalServerResponse.cs +Openapi/Models/Operations/SelectServerWithIDResponse.cs +Openapi/Models/Operations/ServerWithProtocolTemplateResponse.cs +Openapi/Models/Operations/ServerWithTemplatesResponse.cs +Openapi/Models/Operations/ServerWithTemplatesGlobalResponse.cs +Openapi/Models/Operations/ServersByIDWithTemplatesResponse.cs +Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetRequest.cs +Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetRes.cs +Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetResponse.cs +Openapi/Models/Operations/TelemetryUserAgentGetRes.cs +Openapi/Models/Operations/TelemetryUserAgentGetResponse.cs +Openapi/Models/Operations/ApiKeyAuthGlobalNewResponse.cs +Openapi/Models/Operations/AuthGlobalResponse.cs +Openapi/Models/Operations/BasicAuthNewSecurity.cs +Openapi/Models/Operations/BasicAuthNewResponse.cs +Openapi/Models/Operations/MultipleMixedOptionsAuthSecurity.cs +Openapi/Models/Operations/MultipleMixedOptionsAuthResponse.cs +Openapi/Models/Operations/MultipleMixedSchemeAuthSecurity.cs +Openapi/Models/Operations/MultipleMixedSchemeAuthResponse.cs +Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.cs +Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.cs +Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurity.cs +Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthResponse.cs +Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.cs +Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.cs +Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurity.cs +Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthResponse.cs +Openapi/Models/Operations/MultipleSimpleOptionsAuthSecurity.cs +Openapi/Models/Operations/MultipleSimpleOptionsAuthResponse.cs +Openapi/Models/Operations/MultipleSimpleSchemeAuthSecurity.cs +Openapi/Models/Operations/MultipleSimpleSchemeAuthResponse.cs +Openapi/Models/Operations/Oauth2AuthNewSecurity.cs +Openapi/Models/Operations/Oauth2AuthNewResponse.cs +Openapi/Models/Operations/OpenIdConnectAuthNewSecurity.cs +Openapi/Models/Operations/OpenIdConnectAuthNewResponse.cs +Openapi/Models/Operations/ApiKeyAuthSecurity.cs +Openapi/Models/Operations/ApiKeyAuthToken.cs +Openapi/Models/Operations/ApiKeyAuthResponse.cs +Openapi/Models/Operations/ApiKeyAuthGlobalToken.cs +Openapi/Models/Operations/ApiKeyAuthGlobalResponse.cs +Openapi/Models/Operations/BasicAuthSecurity.cs +Openapi/Models/Operations/BasicAuthRequest.cs +Openapi/Models/Operations/BasicAuthUser.cs +Openapi/Models/Operations/BasicAuthResponse.cs +Openapi/Models/Operations/BearerAuthSecurity.cs +Openapi/Models/Operations/BearerAuthToken.cs +Openapi/Models/Operations/BearerAuthResponse.cs +Openapi/Models/Operations/GlobalBearerAuthToken.cs +Openapi/Models/Operations/GlobalBearerAuthResponse.cs +Openapi/Models/Operations/Oauth2AuthSecurity.cs +Openapi/Models/Operations/Oauth2AuthToken.cs +Openapi/Models/Operations/Oauth2AuthResponse.cs +Openapi/Models/Operations/Oauth2OverrideSecurity.cs +Openapi/Models/Operations/Oauth2OverrideRequest.cs +Openapi/Models/Operations/Oauth2OverrideToken.cs +Openapi/Models/Operations/Oauth2OverrideResponse.cs +Openapi/Models/Operations/OpenIdConnectAuthSecurity.cs +Openapi/Models/Operations/OpenIdConnectAuthToken.cs +Openapi/Models/Operations/OpenIdConnectAuthResponse.cs +Openapi/Models/Operations/GetDocumentationPerLanguageRequest.cs +Openapi/Models/Operations/GetDocumentationPerLanguageResponse.cs +Openapi/Models/Operations/CreateFileFile.cs +Openapi/Models/Operations/CreateFileRequestBody.cs +Openapi/Models/Operations/CreateFileResponse.cs +Openapi/Models/Operations/CreateResourceResponse.cs +Openapi/Models/Operations/DeleteResourceRequest.cs +Openapi/Models/Operations/DeleteResourceResponse.cs +Openapi/Models/Operations/GetResourceRequest.cs +Openapi/Models/Operations/GetResourceResponse.cs +Openapi/Models/Operations/UpdateResourceRequest.cs +Openapi/Models/Operations/UpdateResourceResponse.cs +Openapi/Models/Operations/GroupFirstGetResponse.cs +Openapi/Models/Operations/GroupSecondGetResponse.cs +Openapi/Models/Operations/PaginationCursorBodyRequestBody.cs +Openapi/Models/Operations/PaginationCursorBodyRes.cs +Openapi/Models/Operations/PaginationCursorBodyResponse.cs +Openapi/Models/Operations/PaginationCursorParamsRequest.cs +Openapi/Models/Operations/PaginationCursorParamsRes.cs +Openapi/Models/Operations/PaginationCursorParamsResponse.cs +Openapi/Models/Operations/PaginationLimitOffsetOffsetBodyRes.cs +Openapi/Models/Operations/PaginationLimitOffsetOffsetBodyResponse.cs +Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsRequest.cs +Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsRes.cs +Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsResponse.cs +Openapi/Models/Operations/PaginationLimitOffsetPageBodyRes.cs +Openapi/Models/Operations/PaginationLimitOffsetPageBodyResponse.cs +Openapi/Models/Operations/PaginationLimitOffsetPageParamsRequest.cs +Openapi/Models/Operations/PaginationLimitOffsetPageParamsRes.cs +Openapi/Models/Operations/PaginationLimitOffsetPageParamsResponse.cs +Openapi/Models/Operations/RetriesGetRequest.cs +Openapi/Models/Operations/RetriesGetRetries.cs +Openapi/Models/Operations/RetriesGetResponse.cs +Openapi/Models/Shared/Slides.cs +Openapi/Models/Shared/Slideshow.cs +Openapi/Models/Shared/HttpBinSimpleJsonObject.cs +Openapi/Models/Shared/Int32Enum.cs +Openapi/Models/Shared/IntEnum.cs +Openapi/Models/Shared/SimpleObject.cs +Openapi/Models/Shared/Enum.cs +Openapi/Models/Shared/ArrayCircularReferenceObject.cs +Openapi/Models/Shared/ValidCircularReferenceObject.cs +Openapi/Models/Shared/DeprecatedEnum.cs +Openapi/Models/Shared/DeprecatedFieldInObject.cs +Openapi/Models/Shared/DeprecatedObject.cs +Openapi/Models/Shared/EmptyObjectParam.cs +Openapi/Models/Shared/ObjectCircularReferenceObject.cs +Openapi/Models/Shared/OneOfCircularReferenceObject.cs +Openapi/Models/Shared/FakerStrings.cs +Openapi/Models/Shared/FakerFormattedStrings.cs +Openapi/Models/Shared/ErrorType.cs +Openapi/Models/Shared/Error.cs +Openapi/Models/Shared/NullableOneOfRefInObject.cs +Openapi/Models/Shared/Type.cs +Openapi/Models/Shared/TypedObject1.cs +Openapi/Models/Shared/NullableOneOfTypeInObject.cs +Openapi/Models/Shared/RefQueryParamObjExploded.cs +Openapi/Models/Shared/RefQueryParamObj.cs +Openapi/Models/Shared/DeepObject.cs +Openapi/Models/Shared/NullableObject.cs +Openapi/Models/Shared/Int32EnumVal.cs +Openapi/Models/Shared/IntEnumVal.cs +Openapi/Models/Shared/SimpleObjectCamelCase.cs +Openapi/Models/Shared/ArrObjValue.cs +Openapi/Models/Shared/ArrObjValueCamelCase.cs +Openapi/Models/Shared/DeepObjectCamelCase.cs +Openapi/Models/Shared/MapObjValue.cs +Openapi/Models/Shared/MapObjValueCamelCase.cs +Openapi/Models/Shared/ComplexNumberTypes.cs +Openapi/Models/Shared/DefaultsAndConstsOutputConstEnumInt.cs +Openapi/Models/Shared/DefaultsAndConstsOutputConstEnumStr.cs +Openapi/Models/Shared/DefaultsAndConstsOutputDefaultEnumInt.cs +Openapi/Models/Shared/DefaultsAndConstsOutputDefaultEnumStr.cs +Openapi/Models/Shared/DefaultsAndConstsOutput.cs +Openapi/Models/Shared/ConstEnumInt.cs +Openapi/Models/Shared/ConstEnumStr.cs +Openapi/Models/Shared/DefaultEnumInt.cs +Openapi/Models/Shared/DefaultEnumStr.cs +Openapi/Models/Shared/DefaultsAndConsts.cs +Openapi/Models/Shared/ReadWriteObject.cs +Openapi/Models/Shared/ReadWriteObjectOutput.cs +Openapi/Models/Shared/ReadOnlyObject.cs +Openapi/Models/Shared/ReadOnlyObjectInput.cs +Openapi/Models/Shared/WriteOnlyObject.cs +Openapi/Models/Shared/WriteOnlyObjectOutput.cs +Openapi/Models/Shared/ObjWithZeroValueComplexTypePtrs.cs +Openapi/Models/Shared/BasicAuth.cs +Openapi/Models/Shared/HeaderAuth.cs +Openapi/Models/Shared/AuthServiceRequestBody.cs +Openapi/Models/Shared/SchemeBasicAuth.cs +Openapi/Models/Shared/Security.cs +Openapi/Models/Shared/FileResource.cs +Openapi/Models/Shared/Chocolates.cs +Openapi/Models/Shared/EnumNumber.cs +Openapi/Models/Shared/EnumStr.cs +Openapi/Models/Shared/ExampleResource.cs +Openapi/Models/Shared/LimitOffsetConfig.cs +Openapi/Models/Shared/AllOfToAllOf.cs +Openapi/Models/Shared/OneOfGenerationStressTest.cs +Openapi/Models/Shared/UnsupportedEnums.cs +Openapi/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse.cs +Openapi/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody.cs +Openapi/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.cs +Openapi/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.cs USAGE.md -docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md +docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md docs/models/operations/PutAnythingIgnoredGenerationResponse.md docs/models/operations/ResponseBodyJsonGetResponse.md -docs/models/operations/ApiKeyAuthSecurity.md -docs/models/operations/ApiKeyAuthToken.md -docs/models/operations/ApiKeyAuthResponse.md -docs/models/operations/ApiKeyAuthGlobalToken.md -docs/models/operations/ApiKeyAuthGlobalResponse.md -docs/models/operations/BasicAuthSecurity.md -docs/models/operations/BasicAuthRequest.md -docs/models/operations/BasicAuthUser.md -docs/models/operations/BasicAuthResponse.md -docs/models/operations/BearerAuthSecurity.md -docs/models/operations/BearerAuthToken.md -docs/models/operations/BearerAuthResponse.md -docs/models/operations/GlobalBearerAuthToken.md -docs/models/operations/GlobalBearerAuthResponse.md -docs/models/operations/Oauth2AuthSecurity.md -docs/models/operations/Oauth2AuthToken.md -docs/models/operations/Oauth2AuthResponse.md -docs/models/operations/Oauth2OverrideSecurity.md -docs/models/operations/Oauth2OverrideRequest.md -docs/models/operations/Oauth2OverrideToken.md -docs/models/operations/Oauth2OverrideResponse.md -docs/models/operations/OpenIdConnectAuthSecurity.md -docs/models/operations/OpenIdConnectAuthToken.md -docs/models/operations/OpenIdConnectAuthResponse.md -docs/models/operations/ApiKeyAuthGlobalNewResponse.md -docs/models/operations/AuthGlobalResponse.md -docs/models/operations/BasicAuthNewSecurity.md -docs/models/operations/BasicAuthNewResponse.md -docs/models/operations/MultipleMixedOptionsAuthSecurity.md -docs/models/operations/MultipleMixedOptionsAuthResponse.md -docs/models/operations/MultipleMixedSchemeAuthSecurity.md -docs/models/operations/MultipleMixedSchemeAuthResponse.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthResponse.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthResponse.md -docs/models/operations/MultipleSimpleOptionsAuthSecurity.md -docs/models/operations/MultipleSimpleOptionsAuthResponse.md -docs/models/operations/MultipleSimpleSchemeAuthSecurity.md -docs/models/operations/MultipleSimpleSchemeAuthResponse.md -docs/models/operations/Oauth2AuthNewSecurity.md -docs/models/operations/Oauth2AuthNewResponse.md -docs/models/operations/OpenIdConnectAuthNewSecurity.md -docs/models/operations/OpenIdConnectAuthNewResponse.md -docs/models/operations/GetDocumentationPerLanguageRequest.md -docs/models/operations/GetDocumentationPerLanguageResponse.md -docs/models/operations/ConnectionErrorGetResponse.md -docs/models/operations/StatusGetErrorRequest.md -docs/models/operations/StatusGetErrorResponse.md -docs/models/operations/StatusGetXSpeakeasyErrorsRequest.md -docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md -docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md -docs/models/operations/GroupFirstGetResponse.md -docs/models/operations/ComponentBodyAndParamConflictRequest.md -docs/models/operations/ComponentBodyAndParamConflictRes.md -docs/models/operations/ComponentBodyAndParamConflictResponse.md -docs/models/operations/ComponentBodyAndParamNoConflictRequest.md -docs/models/operations/ComponentBodyAndParamNoConflictRes.md -docs/models/operations/ComponentBodyAndParamNoConflictResponse.md -docs/models/operations/ConflictingParamsRequest.md -docs/models/operations/ConflictingParamsRes.md -docs/models/operations/ConflictingParamsResponse.md -docs/models/operations/InlineBodyAndParamConflictRequestBody.md -docs/models/operations/InlineBodyAndParamConflictRequest.md -docs/models/operations/InlineBodyAndParamConflictResJson.md -docs/models/operations/InlineBodyAndParamConflictRes.md -docs/models/operations/InlineBodyAndParamConflictResponse.md -docs/models/operations/InlineBodyAndParamNoConflictRequestBody.md -docs/models/operations/InlineBodyAndParamNoConflictRequest.md -docs/models/operations/InlineBodyAndParamNoConflictResJson.md -docs/models/operations/InlineBodyAndParamNoConflictRes.md -docs/models/operations/InlineBodyAndParamNoConflictResponse.md -docs/models/operations/TypeFromAnchor.md +docs/models/operations/AnchorTypesGetTypeFromAnchor.md docs/models/operations/AnchorTypesGetResponse.md docs/models/operations/ArrayCircularReferenceGetResponse.md docs/models/operations/CircularReferenceGetResponse.md @@ -695,7 +619,7 @@ docs/models/operations/DateTimeParamWithDefaultResponse.md docs/models/operations/DecimalParamWithDefaultRequest.md docs/models/operations/DecimalParamWithDefaultResponse.md docs/models/operations/DeprecatedFieldInSchemaPostResponse.md -docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md +docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md docs/models/operations/DeprecatedObjectInSchemaGetResponse.md docs/models/operations/DeprecatedOperationNoCommentsGetRequest.md docs/models/operations/DeprecatedOperationNoCommentsGetResponse.md @@ -703,123 +627,158 @@ docs/models/operations/DeprecatedOperationWithCommentsGetRequest.md docs/models/operations/DeprecatedOperationWithCommentsGetResponse.md docs/models/operations/EmptyObjectGetRequest.md docs/models/operations/EmptyObjectGetResponse.md -docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md +docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md docs/models/operations/EmptyResponseObjectWithCommentGetResponse.md -docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md +docs/models/operations/GetGlobalNameOverrideResponseBody.md docs/models/operations/GetGlobalNameOverrideResponse.md -docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md +docs/models/operations/IgnoredGenerationGetResponseBody.md docs/models/operations/IgnoredGenerationGetResponse.md -docs/models/operations/IgnoresPostApplicationJSON.md +docs/models/operations/IgnoresPostRequestBody.md docs/models/operations/IgnoresPostRequest.md docs/models/operations/IgnoresPostResponse.md -docs/models/operations/NameOverrideGetEnumNameOverride.md +docs/models/operations/EnumNameOverride.md docs/models/operations/NameOverrideGetRequest.md -docs/models/operations/OverriddenResponse.md +docs/models/operations/NameOverrideGetOverriddenResponse.md docs/models/operations/NameOverrideGetResponse.md docs/models/operations/ObjectCircularReferenceGetResponse.md docs/models/operations/OneOfCircularReferenceGetResponse.md -docs/models/operations/TypedParameterGenerationGetObj.md +docs/models/operations/Obj.md docs/models/operations/TypedParameterGenerationGetRequest.md docs/models/operations/TypedParameterGenerationGetResponse.md docs/models/operations/UsageExamplePostSecurity.md docs/models/operations/UsageExamplePostRequestBody.md -docs/models/operations/UsageExamplePostEnumParameter.md -docs/models/operations/UsageExamplePostOptEnumParameter.md +docs/models/operations/EnumParameter.md +docs/models/operations/OptEnumParameter.md docs/models/operations/UsageExamplePostRequest.md -docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md -docs/models/operations/UsageExamplePost200ApplicationJSON.md +docs/models/operations/UsageExamplePostJson.md +docs/models/operations/UsageExamplePostResponseBody.md docs/models/operations/UsageExamplePostResponse.md +docs/models/operations/ConnectionErrorGetResponse.md +docs/models/operations/StatusGetErrorRequest.md +docs/models/operations/StatusGetErrorResponse.md +docs/models/operations/StatusGetXSpeakeasyErrorsRequest.md +docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md +docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md +docs/models/operations/FlattenedTypedObjectPostRes.md +docs/models/operations/FlattenedTypedObjectPostResponse.md +docs/models/operations/MixedTypeOneOfPostRes.md +docs/models/operations/MixedTypeOneOfPostResponse.md +docs/models/operations/NullableOneOfRefInObjectPostRes.md +docs/models/operations/NullableOneOfRefInObjectPostResponse.md +docs/models/operations/NullableOneOfSchemaPostRes.md +docs/models/operations/NullableOneOfSchemaPostResponse.md +docs/models/operations/NullableOneOfTypeInObjectPostRes.md +docs/models/operations/NullableOneOfTypeInObjectPostResponse.md +docs/models/operations/NullableTypedObjectPostRes.md +docs/models/operations/NullableTypedObjectPostResponse.md +docs/models/operations/PrimitiveTypeOneOfPostRes.md +docs/models/operations/PrimitiveTypeOneOfPostResponse.md +docs/models/operations/StronglyTypedOneOfPostRes.md +docs/models/operations/StronglyTypedOneOfPostResponse.md +docs/models/operations/TypedObjectNullableOneOfPostRes.md +docs/models/operations/TypedObjectNullableOneOfPostResponse.md +docs/models/operations/TypedObjectOneOfPostRes.md +docs/models/operations/TypedObjectOneOfPostResponse.md +docs/models/operations/UnionBigIntDecimalRes.md +docs/models/operations/UnionBigIntDecimalResponse.md +docs/models/operations/UnionDateNullRes.md +docs/models/operations/UnionDateNullResponse.md +docs/models/operations/UnionDateTimeBigIntRes.md +docs/models/operations/UnionDateTimeBigIntResponse.md +docs/models/operations/UnionDateTimeNullRes.md +docs/models/operations/UnionDateTimeNullResponse.md +docs/models/operations/WeaklyTypedOneOfPostRes.md +docs/models/operations/WeaklyTypedOneOfPostResponse.md +docs/models/operations/ComponentBodyAndParamConflictRequest.md +docs/models/operations/ComponentBodyAndParamConflictRes.md +docs/models/operations/ComponentBodyAndParamConflictResponse.md +docs/models/operations/ComponentBodyAndParamNoConflictRequest.md +docs/models/operations/ComponentBodyAndParamNoConflictRes.md +docs/models/operations/ComponentBodyAndParamNoConflictResponse.md +docs/models/operations/ConflictingParamsRequest.md +docs/models/operations/ConflictingParamsRes.md +docs/models/operations/ConflictingParamsResponse.md +docs/models/operations/InlineBodyAndParamConflictRequestBody.md +docs/models/operations/InlineBodyAndParamConflictRequest.md +docs/models/operations/Json.md +docs/models/operations/InlineBodyAndParamConflictRes.md +docs/models/operations/InlineBodyAndParamConflictResponse.md +docs/models/operations/InlineBodyAndParamNoConflictRequestBody.md +docs/models/operations/InlineBodyAndParamNoConflictRequest.md +docs/models/operations/InlineBodyAndParamNoConflictJson.md +docs/models/operations/InlineBodyAndParamNoConflictRes.md +docs/models/operations/InlineBodyAndParamNoConflictResponse.md docs/models/operations/GlobalPathParameterGetRequest.md docs/models/operations/GlobalPathParameterGetRes.md docs/models/operations/GlobalPathParameterGetResponse.md docs/models/operations/GlobalsQueryParameterGetRequest.md -docs/models/operations/GlobalsQueryParameterGetResArgs.md +docs/models/operations/Args.md docs/models/operations/GlobalsQueryParameterGetRes.md docs/models/operations/GlobalsQueryParameterGetResponse.md -docs/models/operations/NestFirstGetResponse.md -docs/models/operations/NestedGetResponse.md -docs/models/operations/NestedFirstGetResponse.md -docs/models/operations/NestedSecondGetResponse.md -docs/models/operations/PaginationCursorBodyRequestBody.md -docs/models/operations/PaginationCursorBodyRes.md -docs/models/operations/PaginationCursorBodyResponse.md -docs/models/operations/PaginationCursorParamsRequest.md -docs/models/operations/PaginationCursorParamsRes.md -docs/models/operations/PaginationCursorParamsResponse.md -docs/models/operations/PaginationLimitOffsetOffsetBodyRes.md -docs/models/operations/PaginationLimitOffsetOffsetBodyResponse.md -docs/models/operations/PaginationLimitOffsetOffsetParamsRequest.md -docs/models/operations/PaginationLimitOffsetOffsetParamsRes.md -docs/models/operations/PaginationLimitOffsetOffsetParamsResponse.md -docs/models/operations/PaginationLimitOffsetPageBodyRes.md -docs/models/operations/PaginationLimitOffsetPageBodyResponse.md -docs/models/operations/PaginationLimitOffsetPageParamsRequest.md -docs/models/operations/PaginationLimitOffsetPageParamsRes.md -docs/models/operations/PaginationLimitOffsetPageParamsResponse.md docs/models/operations/DeepObjectQueryParamsMapRequest.md docs/models/operations/DeepObjectQueryParamsMapRes.md docs/models/operations/DeepObjectQueryParamsMapResponse.md -docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md +docs/models/operations/ObjArrParam.md docs/models/operations/DeepObjectQueryParamsObjectRequest.md -docs/models/operations/DeepObjectQueryParamsObjectResArgs.md +docs/models/operations/DeepObjectQueryParamsObjectArgs.md docs/models/operations/DeepObjectQueryParamsObjectRes.md docs/models/operations/DeepObjectQueryParamsObjectResponse.md docs/models/operations/DuplicateParamRequest.md docs/models/operations/DuplicateParamDuplicateParamResponse.md docs/models/operations/DuplicateParamResponse.md docs/models/operations/FormQueryParamsArrayRequest.md -docs/models/operations/FormQueryParamsArrayResArgs.md +docs/models/operations/FormQueryParamsArrayArgs.md docs/models/operations/FormQueryParamsArrayRes.md docs/models/operations/FormQueryParamsArrayResponse.md -docs/models/operations/FormQueryParamsCamelObjectObjParam.md -docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md +docs/models/operations/ObjParam.md +docs/models/operations/ObjParamExploded.md docs/models/operations/FormQueryParamsCamelObjectRequest.md -docs/models/operations/FormQueryParamsCamelObjectResArgs.md +docs/models/operations/FormQueryParamsCamelObjectArgs.md docs/models/operations/FormQueryParamsCamelObjectRes.md docs/models/operations/FormQueryParamsCamelObjectResponse.md docs/models/operations/FormQueryParamsMapRequest.md docs/models/operations/FormQueryParamsMapRes.md docs/models/operations/FormQueryParamsMapResponse.md docs/models/operations/FormQueryParamsObjectRequest.md -docs/models/operations/FormQueryParamsObjectResArgs.md +docs/models/operations/FormQueryParamsObjectArgs.md docs/models/operations/FormQueryParamsObjectRes.md docs/models/operations/FormQueryParamsObjectResponse.md docs/models/operations/FormQueryParamsPrimitiveRequest.md -docs/models/operations/FormQueryParamsPrimitiveResArgs.md +docs/models/operations/FormQueryParamsPrimitiveArgs.md docs/models/operations/FormQueryParamsPrimitiveRes.md docs/models/operations/FormQueryParamsPrimitiveResponse.md docs/models/operations/FormQueryParamsRefParamObjectRequest.md -docs/models/operations/FormQueryParamsRefParamObjectResArgs.md +docs/models/operations/FormQueryParamsRefParamObjectArgs.md docs/models/operations/FormQueryParamsRefParamObjectRes.md docs/models/operations/FormQueryParamsRefParamObjectResponse.md docs/models/operations/HeaderParamsArrayRequest.md -docs/models/operations/HeaderParamsArrayResHeaders.md +docs/models/operations/Headers.md docs/models/operations/HeaderParamsArrayRes.md docs/models/operations/HeaderParamsArrayResponse.md docs/models/operations/HeaderParamsMapRequest.md -docs/models/operations/HeaderParamsMapResHeaders.md +docs/models/operations/HeaderParamsMapHeaders.md docs/models/operations/HeaderParamsMapRes.md docs/models/operations/HeaderParamsMapResponse.md docs/models/operations/HeaderParamsObjectRequest.md -docs/models/operations/HeaderParamsObjectResHeaders.md +docs/models/operations/HeaderParamsObjectHeaders.md docs/models/operations/HeaderParamsObjectRes.md docs/models/operations/HeaderParamsObjectResponse.md docs/models/operations/HeaderParamsPrimitiveRequest.md -docs/models/operations/HeaderParamsPrimitiveResHeaders.md +docs/models/operations/HeaderParamsPrimitiveHeaders.md docs/models/operations/HeaderParamsPrimitiveRes.md docs/models/operations/HeaderParamsPrimitiveResponse.md docs/models/operations/JsonQueryParamsObjectRequest.md -docs/models/operations/JsonQueryParamsObjectResArgs.md +docs/models/operations/JsonQueryParamsObjectArgs.md docs/models/operations/JsonQueryParamsObjectRes.md docs/models/operations/JsonQueryParamsObjectResponse.md docs/models/operations/MixedParametersCamelCaseRequest.md -docs/models/operations/MixedParametersCamelCaseResArgs.md -docs/models/operations/MixedParametersCamelCaseResHeaders.md +docs/models/operations/MixedParametersCamelCaseArgs.md +docs/models/operations/MixedParametersCamelCaseHeaders.md docs/models/operations/MixedParametersCamelCaseRes.md docs/models/operations/MixedParametersCamelCaseResponse.md docs/models/operations/MixedParametersPrimitivesRequest.md -docs/models/operations/MixedParametersPrimitivesResArgs.md -docs/models/operations/MixedParametersPrimitivesResHeaders.md +docs/models/operations/MixedParametersPrimitivesArgs.md +docs/models/operations/MixedParametersPrimitivesHeaders.md docs/models/operations/MixedParametersPrimitivesRes.md docs/models/operations/MixedParametersPrimitivesResponse.md docs/models/operations/MixedQueryParamsRequest.md @@ -829,7 +788,7 @@ docs/models/operations/PathParameterJsonRequest.md docs/models/operations/PathParameterJsonRes.md docs/models/operations/PathParameterJsonResponse.md docs/models/operations/PipeDelimitedQueryParamsArrayRequest.md -docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md +docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md docs/models/operations/PipeDelimitedQueryParamsArrayRes.md docs/models/operations/PipeDelimitedQueryParamsArrayResponse.md docs/models/operations/SimplePathParameterArraysRequest.md @@ -844,14 +803,18 @@ docs/models/operations/SimplePathParameterObjectsResponse.md docs/models/operations/SimplePathParameterPrimitivesRequest.md docs/models/operations/SimplePathParameterPrimitivesRes.md docs/models/operations/SimplePathParameterPrimitivesResponse.md +docs/models/operations/NestFirstGetResponse.md +docs/models/operations/NestedGetResponse.md +docs/models/operations/NestedFirstGetResponse.md +docs/models/operations/NestedSecondGetResponse.md docs/models/operations/NullableObjectPostRes.md docs/models/operations/NullableObjectPostResponse.md -docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md -docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md -docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md +docs/models/operations/NullableOptionalObj.md +docs/models/operations/NullableRequiredObj.md +docs/models/operations/RequiredObj.md docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md docs/models/operations/NullableRequiredEmptyObjectPostResponse.md -docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md +docs/models/operations/NullableRequiredEnum.md docs/models/operations/NullableRequiredPropertyPostRequestBody.md docs/models/operations/NullableRequiredPropertyPostResponse.md docs/models/operations/NullableRequiredSharedObjectPostRequestBody.md @@ -887,123 +850,123 @@ docs/models/operations/RequestBodyPostApplicationJsonSimpleResponse.md docs/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.md docs/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.md docs/models/operations/RequestBodyPostComplexNumberTypesRequest.md -docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md +docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md -docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md +docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md -docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md -docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md +docs/models/operations/Empty.md +docs/models/operations/EmptyWithEmptyProperties.md docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md -docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md -docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md -docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md +docs/models/operations/RequestBodyPostEmptyObjectEmpty.md +docs/models/operations/EmptyRespWithEmptyProperies.md +docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md docs/models/operations/RequestBodyPostEmptyObjectResponse.md -docs/models/operations/RequestBodyPostFormDeepResForm.md +docs/models/operations/Form.md docs/models/operations/RequestBodyPostFormDeepRes.md docs/models/operations/RequestBodyPostFormDeepResponse.md docs/models/operations/RequestBodyPostFormMapPrimitiveRes.md docs/models/operations/RequestBodyPostFormMapPrimitiveResponse.md -docs/models/operations/RequestBodyPostFormSimpleResForm.md -docs/models/operations/RequestBodyPostFormSimpleResHeaders.md +docs/models/operations/RequestBodyPostFormSimpleForm.md +docs/models/operations/RequestBodyPostFormSimpleHeaders.md docs/models/operations/RequestBodyPostFormSimpleRes.md docs/models/operations/RequestBodyPostFormSimpleResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md -docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md -docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md docs/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.md docs/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md +docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.md docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.md -docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md +docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md -docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullArrayResponseBody.md docs/models/operations/RequestBodyPostNullArrayResponse.md -docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md docs/models/operations/RequestBodyPostNullDictionaryResponse.md -docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md -docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md docs/models/operations/RequestBodyPutBytesRes.md docs/models/operations/RequestBodyPutBytesResponse.md docs/models/operations/RequestBodyPutBytesWithParamsRequest.md -docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md +docs/models/operations/RequestBodyPutBytesWithParamsArgs.md docs/models/operations/RequestBodyPutBytesWithParamsRes.md docs/models/operations/RequestBodyPutBytesWithParamsResponse.md -docs/models/operations/RequestBodyPutMultipartDeepResForm.md +docs/models/operations/RequestBodyPutMultipartDeepForm.md docs/models/operations/RequestBodyPutMultipartDeepRes.md docs/models/operations/RequestBodyPutMultipartDeepResponse.md -docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md +docs/models/operations/DifferentFileName.md docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md docs/models/operations/RequestBodyPutMultipartDifferentFileNameRes.md docs/models/operations/RequestBodyPutMultipartDifferentFileNameResponse.md -docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md +docs/models/operations/File.md docs/models/operations/RequestBodyPutMultipartFileRequestBody.md docs/models/operations/RequestBodyPutMultipartFileRes.md docs/models/operations/RequestBodyPutMultipartFileResponse.md -docs/models/operations/RequestBodyPutMultipartSimpleResForm.md -docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md +docs/models/operations/RequestBodyPutMultipartSimpleForm.md +docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md docs/models/operations/RequestBodyPutMultipartSimpleRes.md docs/models/operations/RequestBodyPutMultipartSimpleResponse.md docs/models/operations/RequestBodyPutStringRes.md docs/models/operations/RequestBodyPutStringResponse.md docs/models/operations/RequestBodyPutStringWithParamsRequest.md -docs/models/operations/RequestBodyPutStringWithParamsResArgs.md +docs/models/operations/RequestBodyPutStringWithParamsArgs.md docs/models/operations/RequestBodyPutStringWithParamsRes.md docs/models/operations/RequestBodyPutStringWithParamsResponse.md docs/models/operations/RequestBodyReadAndWriteResponse.md @@ -1013,23 +976,13 @@ docs/models/operations/RequestBodyReadWriteOnlyUnionResponse.md docs/models/operations/RequestBodyWriteOnlyResponse.md docs/models/operations/RequestBodyWriteOnlyOutputResponse.md docs/models/operations/RequestBodyWriteOnlyUnionResponse.md -docs/models/operations/CreateFileRequestBodyFile.md -docs/models/operations/CreateFileRequestBody.md -docs/models/operations/CreateFileResponse.md -docs/models/operations/CreateResourceResponse.md -docs/models/operations/DeleteResourceRequest.md -docs/models/operations/DeleteResourceResponse.md -docs/models/operations/GetResourceRequest.md -docs/models/operations/GetResourceResponse.md -docs/models/operations/UpdateResourceRequest.md -docs/models/operations/UpdateResourceResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md docs/models/operations/ResponseBodyBytesGetResponse.md docs/models/operations/ResponseBodyEmptyWithHeadersRequest.md @@ -1038,12 +991,8 @@ docs/models/operations/ResponseBodyOptionalGetResponse.md docs/models/operations/ResponseBodyReadOnlyResponse.md docs/models/operations/ResponseBodyStringGetResponse.md docs/models/operations/ResponseBodyXmlGetResponse.md -docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md +docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md -docs/models/operations/RetriesGetRequest.md -docs/models/operations/RetriesGetRetries.md -docs/models/operations/RetriesGetResponse.md -docs/models/operations/GroupSecondGetResponse.md docs/models/operations/SelectGlobalServerResponse.md docs/models/operations/SelectServerWithIDResponse.md docs/models/operations/ServerWithProtocolTemplateResponse.md @@ -1055,53 +1004,97 @@ docs/models/operations/TelemetrySpeakeasyUserAgentGetRes.md docs/models/operations/TelemetrySpeakeasyUserAgentGetResponse.md docs/models/operations/TelemetryUserAgentGetRes.md docs/models/operations/TelemetryUserAgentGetResponse.md -docs/models/operations/FlattenedTypedObjectPostRes.md -docs/models/operations/FlattenedTypedObjectPostResponse.md -docs/models/operations/MixedTypeOneOfPostRes.md -docs/models/operations/MixedTypeOneOfPostResponse.md -docs/models/operations/NullableOneOfRefInObjectPostRes.md -docs/models/operations/NullableOneOfRefInObjectPostResponse.md -docs/models/operations/NullableOneOfSchemaPostRes.md -docs/models/operations/NullableOneOfSchemaPostResponse.md -docs/models/operations/NullableOneOfTypeInObjectPostRes.md -docs/models/operations/NullableOneOfTypeInObjectPostResponse.md -docs/models/operations/NullableTypedObjectPostRes.md -docs/models/operations/NullableTypedObjectPostResponse.md -docs/models/operations/PrimitiveTypeOneOfPostRes.md -docs/models/operations/PrimitiveTypeOneOfPostResponse.md -docs/models/operations/StronglyTypedOneOfPostRes.md -docs/models/operations/StronglyTypedOneOfPostResponse.md -docs/models/operations/TypedObjectNullableOneOfPostRes.md -docs/models/operations/TypedObjectNullableOneOfPostResponse.md -docs/models/operations/TypedObjectOneOfPostRes.md -docs/models/operations/TypedObjectOneOfPostResponse.md -docs/models/operations/UnionBigIntDecimalRes.md -docs/models/operations/UnionBigIntDecimalResponse.md -docs/models/operations/UnionDateNullRes.md -docs/models/operations/UnionDateNullResponse.md -docs/models/operations/UnionDateTimeBigIntRes.md -docs/models/operations/UnionDateTimeBigIntResponse.md -docs/models/operations/UnionDateTimeNullRes.md -docs/models/operations/UnionDateTimeNullResponse.md -docs/models/operations/WeaklyTypedOneOfPostRes.md -docs/models/operations/WeaklyTypedOneOfPostResponse.md -docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md -docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md +docs/models/operations/ApiKeyAuthGlobalNewResponse.md +docs/models/operations/AuthGlobalResponse.md +docs/models/operations/BasicAuthNewSecurity.md +docs/models/operations/BasicAuthNewResponse.md +docs/models/operations/MultipleMixedOptionsAuthSecurity.md +docs/models/operations/MultipleMixedOptionsAuthResponse.md +docs/models/operations/MultipleMixedSchemeAuthSecurity.md +docs/models/operations/MultipleMixedSchemeAuthResponse.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthResponse.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthResponse.md +docs/models/operations/MultipleSimpleOptionsAuthSecurity.md +docs/models/operations/MultipleSimpleOptionsAuthResponse.md +docs/models/operations/MultipleSimpleSchemeAuthSecurity.md +docs/models/operations/MultipleSimpleSchemeAuthResponse.md +docs/models/operations/Oauth2AuthNewSecurity.md +docs/models/operations/Oauth2AuthNewResponse.md +docs/models/operations/OpenIdConnectAuthNewSecurity.md +docs/models/operations/OpenIdConnectAuthNewResponse.md +docs/models/operations/ApiKeyAuthSecurity.md +docs/models/operations/ApiKeyAuthToken.md +docs/models/operations/ApiKeyAuthResponse.md +docs/models/operations/ApiKeyAuthGlobalToken.md +docs/models/operations/ApiKeyAuthGlobalResponse.md +docs/models/operations/BasicAuthSecurity.md +docs/models/operations/BasicAuthRequest.md +docs/models/operations/BasicAuthUser.md +docs/models/operations/BasicAuthResponse.md +docs/models/operations/BearerAuthSecurity.md +docs/models/operations/BearerAuthToken.md +docs/models/operations/BearerAuthResponse.md +docs/models/operations/GlobalBearerAuthToken.md +docs/models/operations/GlobalBearerAuthResponse.md +docs/models/operations/Oauth2AuthSecurity.md +docs/models/operations/Oauth2AuthToken.md +docs/models/operations/Oauth2AuthResponse.md +docs/models/operations/Oauth2OverrideSecurity.md +docs/models/operations/Oauth2OverrideRequest.md +docs/models/operations/Oauth2OverrideToken.md +docs/models/operations/Oauth2OverrideResponse.md +docs/models/operations/OpenIdConnectAuthSecurity.md +docs/models/operations/OpenIdConnectAuthToken.md +docs/models/operations/OpenIdConnectAuthResponse.md +docs/models/operations/GetDocumentationPerLanguageRequest.md +docs/models/operations/GetDocumentationPerLanguageResponse.md +docs/models/operations/CreateFileFile.md +docs/models/operations/CreateFileRequestBody.md +docs/models/operations/CreateFileResponse.md +docs/models/operations/CreateResourceResponse.md +docs/models/operations/DeleteResourceRequest.md +docs/models/operations/DeleteResourceResponse.md +docs/models/operations/GetResourceRequest.md +docs/models/operations/GetResourceResponse.md +docs/models/operations/UpdateResourceRequest.md +docs/models/operations/UpdateResourceResponse.md +docs/models/operations/GroupFirstGetResponse.md +docs/models/operations/GroupSecondGetResponse.md +docs/models/operations/PaginationCursorBodyRequestBody.md +docs/models/operations/PaginationCursorBodyRes.md +docs/models/operations/PaginationCursorBodyResponse.md +docs/models/operations/PaginationCursorParamsRequest.md +docs/models/operations/PaginationCursorParamsRes.md +docs/models/operations/PaginationCursorParamsResponse.md +docs/models/operations/PaginationLimitOffsetOffsetBodyRes.md +docs/models/operations/PaginationLimitOffsetOffsetBodyResponse.md +docs/models/operations/PaginationLimitOffsetOffsetParamsRequest.md +docs/models/operations/PaginationLimitOffsetOffsetParamsRes.md +docs/models/operations/PaginationLimitOffsetOffsetParamsResponse.md +docs/models/operations/PaginationLimitOffsetPageBodyRes.md +docs/models/operations/PaginationLimitOffsetPageBodyResponse.md +docs/models/operations/PaginationLimitOffsetPageParamsRequest.md +docs/models/operations/PaginationLimitOffsetPageParamsRes.md +docs/models/operations/PaginationLimitOffsetPageParamsResponse.md +docs/models/operations/RetriesGetRequest.md +docs/models/operations/RetriesGetRetries.md +docs/models/operations/RetriesGetResponse.md +docs/models/shared/Slides.md +docs/models/shared/Slideshow.md docs/models/shared/HttpBinSimpleJsonObject.md -docs/models/shared/AuthServiceRequestBodyBasicAuth.md -docs/models/shared/AuthServiceRequestBodyHeaderAuth.md -docs/models/shared/AuthServiceRequestBody.md -docs/models/shared/SchemeBasicAuth.md -docs/models/shared/Security.md -docs/models/shared/ErrorType.md -docs/models/shared/Error.md -docs/models/shared/SimpleObjectInt32Enum.md -docs/models/shared/SimpleObjectIntEnum.md +docs/models/shared/Int32Enum.md +docs/models/shared/IntEnum.md docs/models/shared/SimpleObject.md docs/models/shared/Enum.md docs/models/shared/ArrayCircularReferenceObject.md docs/models/shared/ValidCircularReferenceObject.md -docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md +docs/models/shared/DeprecatedEnum.md docs/models/shared/DeprecatedFieldInObject.md docs/models/shared/DeprecatedObject.md docs/models/shared/EmptyObjectParam.md @@ -1109,13 +1102,18 @@ docs/models/shared/ObjectCircularReferenceObject.md docs/models/shared/OneOfCircularReferenceObject.md docs/models/shared/FakerStrings.md docs/models/shared/FakerFormattedStrings.md -docs/models/shared/LimitOffsetConfig.md +docs/models/shared/ErrorType.md +docs/models/shared/Error.md +docs/models/shared/NullableOneOfRefInObject.md +docs/models/shared/Type.md +docs/models/shared/TypedObject1.md +docs/models/shared/NullableOneOfTypeInObject.md docs/models/shared/RefQueryParamObjExploded.md docs/models/shared/RefQueryParamObj.md docs/models/shared/DeepObject.md docs/models/shared/NullableObject.md -docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md -docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md +docs/models/shared/Int32EnumVal.md +docs/models/shared/IntEnumVal.md docs/models/shared/SimpleObjectCamelCase.md docs/models/shared/ArrObjValue.md docs/models/shared/ArrObjValueCamelCase.md @@ -1128,27 +1126,29 @@ docs/models/shared/DefaultsAndConstsOutputConstEnumStr.md docs/models/shared/DefaultsAndConstsOutputDefaultEnumInt.md docs/models/shared/DefaultsAndConstsOutputDefaultEnumStr.md docs/models/shared/DefaultsAndConstsOutput.md -docs/models/shared/DefaultsAndConstsConstEnumInt.md -docs/models/shared/DefaultsAndConstsConstEnumStr.md -docs/models/shared/DefaultsAndConstsDefaultEnumInt.md -docs/models/shared/DefaultsAndConstsDefaultEnumStr.md +docs/models/shared/ConstEnumInt.md +docs/models/shared/ConstEnumStr.md +docs/models/shared/DefaultEnumInt.md +docs/models/shared/DefaultEnumStr.md docs/models/shared/DefaultsAndConsts.md -docs/models/shared/ReadWriteObjectInput.md +docs/models/shared/ReadWriteObject.md docs/models/shared/ReadWriteObjectOutput.md docs/models/shared/ReadOnlyObject.md docs/models/shared/ReadOnlyObjectInput.md docs/models/shared/WriteOnlyObject.md docs/models/shared/WriteOnlyObjectOutput.md +docs/models/shared/ObjWithZeroValueComplexTypePtrs.md +docs/models/shared/BasicAuth.md +docs/models/shared/HeaderAuth.md +docs/models/shared/AuthServiceRequestBody.md +docs/models/shared/SchemeBasicAuth.md +docs/models/shared/Security.md docs/models/shared/FileResource.md -docs/models/shared/ExampleResourceChocolates.md -docs/models/shared/ExampleResourceEnumNumber.md -docs/models/shared/ExampleResourceEnumStr.md +docs/models/shared/Chocolates.md +docs/models/shared/EnumNumber.md +docs/models/shared/EnumStr.md docs/models/shared/ExampleResource.md -docs/models/shared/TypedObject1Type.md -docs/models/shared/TypedObject1.md -docs/models/shared/ObjWithZeroValueComplexTypePtrs.md -docs/models/shared/NullableOneOfRefInObject.md -docs/models/shared/NullableOneOfTypeInObject.md +docs/models/shared/LimitOffsetConfig.md docs/models/shared/AllOfToAllOf.md docs/models/shared/OneOfGenerationStressTest.md docs/models/shared/UnsupportedEnums.md @@ -1157,27 +1157,27 @@ docs/models/callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequest docs/models/callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.md docs/models/callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.md docs/sdks/sdk/README.md -docs/sdks/auth/README.md -docs/sdks/authnew/README.md -docs/sdks/documentation/README.md +docs/sdks/generation/README.md docs/sdks/errors/README.md -docs/sdks/first/README.md +docs/sdks/unions/README.md docs/sdks/flattening/README.md -docs/sdks/generation/README.md docs/sdks/globals/README.md +docs/sdks/parameters/README.md docs/sdks/nest/README.md -docs/sdks/nestfirst/README.md +docs/sdks/sdkfirst/README.md docs/sdks/nested/README.md -docs/sdks/nestedfirst/README.md -docs/sdks/nestedsecond/README.md -docs/sdks/pagination/README.md -docs/sdks/parameters/README.md +docs/sdks/sdknestedfirst/README.md +docs/sdks/sdksecond/README.md docs/sdks/requestbodies/README.md -docs/sdks/resource/README.md docs/sdks/responsebodies/README.md -docs/sdks/retries/README.md -docs/sdks/second/README.md docs/sdks/servers/README.md docs/sdks/telemetry/README.md -docs/sdks/unions/README.md +docs/sdks/authnew/README.md +docs/sdks/auth/README.md +docs/sdks/documentation/README.md +docs/sdks/resource/README.md +docs/sdks/first/README.md +docs/sdks/second/README.md +docs/sdks/pagination/README.md +docs/sdks/retries/README.md .gitattributes \ No newline at end of file diff --git a/csharp-client-sdk/gen.yaml b/csharp-client-sdk/gen.yaml index caaa0767e..bc80d0d57 100755 --- a/csharp-client-sdk/gen.yaml +++ b/csharp-client-sdk/gen.yaml @@ -2,15 +2,15 @@ configVersion: 1.0.0 management: docChecksum: 0c1717dc8f9e83b99bad896fa719645c docVersion: 0.1.0 - speakeasyVersion: 1.112.1 - generationVersion: 2.173.0 + speakeasyVersion: 1.114.1 + generationVersion: 2.181.1 generation: comments: {} sdkClassName: SDK repoURL: https://github.com/speakeasy-api/openapi-generation-tests.git features: csharp: - core: 2.93.0 + core: 3.1.0 deprecations: 2.81.1 docs: 0.0.3 enums: 2.81.1 @@ -29,9 +29,17 @@ features: pagination: 0.1.1 serverIDs: 2.81.1 csharp: - version: 0.1.2 + version: 0.2.0 author: Speakeasy dotnetVersion: net5.0 + imports: + option: openapi + paths: + callbacks: Models/Callbacks + errors: Models/Errors + operations: Models/Operations + shared: Models/Shared + webhooks: Models/Webhooks maxMethodParams: 5 packageName: openapi published: true diff --git a/go-client-sdk/README.md b/go-client-sdk/README.md index 0e257d4d8..fc498e4e5 100755 --- a/go-client-sdk/README.md +++ b/go-client-sdk/README.md @@ -16,8 +16,8 @@ package main import ( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -35,7 +35,7 @@ func main() { log.Fatal(err) } - if res.GetGlobalNameOverride200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -52,10 +52,10 @@ import ( "context" "log" "math/big" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -88,8 +88,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -104,20 +104,20 @@ func main() { DecimalParameter: types.MustNewDecimalFromString("5223.72"), DecimalStrParameter: types.MustNewDecimalFromString("2911.37"), DoubleParameter: 6946.59, - EnumParameter: operations.UsageExamplePostEnumParameterValue1, + EnumParameter: operations.EnumParameterValue1, FalseyNumberParameter: 0, Float32Parameter: 1029.75, FloatParameter: 5669.99, Int64Parameter: 195232, IntParameter: 569663, - OptEnumParameter: operations.UsageExamplePostOptEnumParameterValue3.ToPointer(), + OptEnumParameter: operations.OptEnumParameterValue3.ToPointer(), StrParameter: "example 1", }, operationSecurity) if err != nil { log.Fatal(err) } - if res.UsageExamplePost200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -133,54 +133,7 @@ func main() { * [PutAnythingIgnoredGeneration](docs/sdks/sdk/README.md#putanythingignoredgeneration) * [ResponseBodyJSONGet](docs/sdks/sdk/README.md#responsebodyjsonget) -### [Auth](docs/sdks/auth/README.md) - -* [APIKeyAuth](docs/sdks/auth/README.md#apikeyauth) -* [APIKeyAuthGlobal](docs/sdks/auth/README.md#apikeyauthglobal) -* [BasicAuth](docs/sdks/auth/README.md#basicauth) -* [BearerAuth](docs/sdks/auth/README.md#bearerauth) -* [GlobalBearerAuth](docs/sdks/auth/README.md#globalbearerauth) -* [Oauth2Auth](docs/sdks/auth/README.md#oauth2auth) -* [Oauth2Override](docs/sdks/auth/README.md#oauth2override) -* [OpenIDConnectAuth](docs/sdks/auth/README.md#openidconnectauth) - -### [AuthNew](docs/sdks/authnew/README.md) - -* [APIKeyAuthGlobalNew](docs/sdks/authnew/README.md#apikeyauthglobalnew) -* [AuthGlobal](docs/sdks/authnew/README.md#authglobal) -* [BasicAuthNew](docs/sdks/authnew/README.md#basicauthnew) -* [MultipleMixedOptionsAuth](docs/sdks/authnew/README.md#multiplemixedoptionsauth) -* [MultipleMixedSchemeAuth](docs/sdks/authnew/README.md#multiplemixedschemeauth) -* [MultipleOptionsWithMixedSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithmixedschemesauth) -* [MultipleOptionsWithSimpleSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithsimpleschemesauth) -* [MultipleSimpleOptionsAuth](docs/sdks/authnew/README.md#multiplesimpleoptionsauth) -* [MultipleSimpleSchemeAuth](docs/sdks/authnew/README.md#multiplesimpleschemeauth) -* [Oauth2AuthNew](docs/sdks/authnew/README.md#oauth2authnew) -* [OpenIDConnectAuthNew](docs/sdks/authnew/README.md#openidconnectauthnew) - -### [Documentation](docs/sdks/documentation/README.md) - -* [GetDocumentationPerLanguage](docs/sdks/documentation/README.md#getdocumentationperlanguage) - Gets documentation for some language, I guess. - -### [Errors](docs/sdks/errors/README.md) - -* [ConnectionErrorGet](docs/sdks/errors/README.md#connectionerrorget) -* [StatusGetError](docs/sdks/errors/README.md#statusgeterror) -* [StatusGetXSpeakeasyErrors](docs/sdks/errors/README.md#statusgetxspeakeasyerrors) - -### [First](docs/sdks/first/README.md) - -* [Get](docs/sdks/first/README.md#get) - -### [Flattening](docs/sdks/flattening/README.md) - -* [ComponentBodyAndParamConflict](docs/sdks/flattening/README.md#componentbodyandparamconflict) -* [ComponentBodyAndParamNoConflict](docs/sdks/flattening/README.md#componentbodyandparamnoconflict) -* [ConflictingParams](docs/sdks/flattening/README.md#conflictingparams) -* [InlineBodyAndParamConflict](docs/sdks/flattening/README.md#inlinebodyandparamconflict) -* [InlineBodyAndParamNoConflict](docs/sdks/flattening/README.md#inlinebodyandparamnoconflict) - -### [Generation](docs/sdks/generation/README.md) +### [.Generation](docs/sdks/generation/README.md) * [AnchorTypesGet](docs/sdks/generation/README.md#anchortypesget) * [ArrayCircularReferenceGet](docs/sdks/generation/README.md#arraycircularreferenceget) @@ -203,38 +156,44 @@ func main() { * [TypedParameterGenerationGet](docs/sdks/generation/README.md#typedparametergenerationget) * [UsageExamplePost](docs/sdks/generation/README.md#usageexamplepost) - An operation used for testing usage examples -### [Globals](docs/sdks/globals/README.md) - -* [GlobalPathParameterGet](docs/sdks/globals/README.md#globalpathparameterget) -* [GlobalsQueryParameterGet](docs/sdks/globals/README.md#globalsqueryparameterget) - - -### [Nest.First](docs/sdks/nestfirst/README.md) +### [.Errors](docs/sdks/errors/README.md) -* [Get](docs/sdks/nestfirst/README.md#get) - -### [Nested](docs/sdks/nested/README.md) - -* [Get](docs/sdks/nested/README.md#get) +* [ConnectionErrorGet](docs/sdks/errors/README.md#connectionerrorget) +* [StatusGetError](docs/sdks/errors/README.md#statusgeterror) +* [StatusGetXSpeakeasyErrors](docs/sdks/errors/README.md#statusgetxspeakeasyerrors) -### [Nested.First](docs/sdks/nestedfirst/README.md) +### [.Unions](docs/sdks/unions/README.md) -* [Get](docs/sdks/nestedfirst/README.md#get) +* [FlattenedTypedObjectPost](docs/sdks/unions/README.md#flattenedtypedobjectpost) +* [MixedTypeOneOfPost](docs/sdks/unions/README.md#mixedtypeoneofpost) +* [NullableOneOfRefInObjectPost](docs/sdks/unions/README.md#nullableoneofrefinobjectpost) +* [NullableOneOfSchemaPost](docs/sdks/unions/README.md#nullableoneofschemapost) +* [NullableOneOfTypeInObjectPost](docs/sdks/unions/README.md#nullableoneoftypeinobjectpost) +* [NullableTypedObjectPost](docs/sdks/unions/README.md#nullabletypedobjectpost) +* [PrimitiveTypeOneOfPost](docs/sdks/unions/README.md#primitivetypeoneofpost) +* [StronglyTypedOneOfPost](docs/sdks/unions/README.md#stronglytypedoneofpost) +* [TypedObjectNullableOneOfPost](docs/sdks/unions/README.md#typedobjectnullableoneofpost) +* [TypedObjectOneOfPost](docs/sdks/unions/README.md#typedobjectoneofpost) +* [UnionBigIntDecimal](docs/sdks/unions/README.md#unionbigintdecimal) +* [UnionDateNull](docs/sdks/unions/README.md#uniondatenull) +* [UnionDateTimeBigInt](docs/sdks/unions/README.md#uniondatetimebigint) +* [UnionDateTimeNull](docs/sdks/unions/README.md#uniondatetimenull) +* [WeaklyTypedOneOfPost](docs/sdks/unions/README.md#weaklytypedoneofpost) -### [Nested.Second](docs/sdks/nestedsecond/README.md) +### [.Flattening](docs/sdks/flattening/README.md) -* [Get](docs/sdks/nestedsecond/README.md#get) +* [ComponentBodyAndParamConflict](docs/sdks/flattening/README.md#componentbodyandparamconflict) +* [ComponentBodyAndParamNoConflict](docs/sdks/flattening/README.md#componentbodyandparamnoconflict) +* [ConflictingParams](docs/sdks/flattening/README.md#conflictingparams) +* [InlineBodyAndParamConflict](docs/sdks/flattening/README.md#inlinebodyandparamconflict) +* [InlineBodyAndParamNoConflict](docs/sdks/flattening/README.md#inlinebodyandparamnoconflict) -### [Pagination](docs/sdks/pagination/README.md) +### [.Globals](docs/sdks/globals/README.md) -* [PaginationCursorBody](docs/sdks/pagination/README.md#paginationcursorbody) -* [PaginationCursorParams](docs/sdks/pagination/README.md#paginationcursorparams) -* [PaginationLimitOffsetOffsetBody](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetbody) -* [PaginationLimitOffsetOffsetParams](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetparams) -* [PaginationLimitOffsetPageBody](docs/sdks/pagination/README.md#paginationlimitoffsetpagebody) -* [PaginationLimitOffsetPageParams](docs/sdks/pagination/README.md#paginationlimitoffsetpageparams) +* [GlobalPathParameterGet](docs/sdks/globals/README.md#globalpathparameterget) +* [GlobalsQueryParameterGet](docs/sdks/globals/README.md#globalsqueryparameterget) -### [Parameters](docs/sdks/parameters/README.md) +### [.Parameters](docs/sdks/parameters/README.md) * [DeepObjectQueryParamsMap](docs/sdks/parameters/README.md#deepobjectqueryparamsmap) * [DeepObjectQueryParamsObject](docs/sdks/parameters/README.md#deepobjectqueryparamsobject) @@ -260,7 +219,24 @@ func main() { * [SimplePathParameterObjects](docs/sdks/parameters/README.md#simplepathparameterobjects) * [SimplePathParameterPrimitives](docs/sdks/parameters/README.md#simplepathparameterprimitives) -### [RequestBodies](docs/sdks/requestbodies/README.md) + +### [.Nest.First](docs/sdks/sdkfirst/README.md) + +* [Get](docs/sdks/sdkfirst/README.md#get) + +### [.Nested](docs/sdks/nested/README.md) + +* [Get](docs/sdks/nested/README.md#get) + +### [.Nested.First](docs/sdks/sdknestedfirst/README.md) + +* [Get](docs/sdks/sdknestedfirst/README.md#get) + +### [.Nested.Second](docs/sdks/sdksecond/README.md) + +* [Get](docs/sdks/sdksecond/README.md#get) + +### [.RequestBodies](docs/sdks/requestbodies/README.md) * [NullableObjectPost](docs/sdks/requestbodies/README.md#nullableobjectpost) * [NullableRequiredEmptyObjectPost](docs/sdks/requestbodies/README.md#nullablerequiredemptyobjectpost) @@ -344,15 +320,7 @@ func main() { * [RequestBodyWriteOnlyOutput](docs/sdks/requestbodies/README.md#requestbodywriteonlyoutput) * [RequestBodyWriteOnlyUnion](docs/sdks/requestbodies/README.md#requestbodywriteonlyunion) -### [Resource](docs/sdks/resource/README.md) - -* [CreateFile](docs/sdks/resource/README.md#createfile) -* [CreateResource](docs/sdks/resource/README.md#createresource) -* [DeleteResource](docs/sdks/resource/README.md#deleteresource) -* [GetResource](docs/sdks/resource/README.md#getresource) -* [UpdateResource](docs/sdks/resource/README.md#updateresource) - -### [ResponseBodies](docs/sdks/responsebodies/README.md) +### [.ResponseBodies](docs/sdks/responsebodies/README.md) * [ResponseBodyAdditionalPropertiesComplexNumbersPost](docs/sdks/responsebodies/README.md#responsebodyadditionalpropertiescomplexnumberspost) * [ResponseBodyAdditionalPropertiesDatePost](docs/sdks/responsebodies/README.md#responsebodyadditionalpropertiesdatepost) @@ -366,15 +334,7 @@ func main() { * [ResponseBodyXMLGet](docs/sdks/responsebodies/README.md#responsebodyxmlget) * [ResponseBodyZeroValueComplexTypePtrsPost](docs/sdks/responsebodies/README.md#responsebodyzerovaluecomplextypeptrspost) -### [Retries](docs/sdks/retries/README.md) - -* [RetriesGet](docs/sdks/retries/README.md#retriesget) - -### [Second](docs/sdks/second/README.md) - -* [Get](docs/sdks/second/README.md#get) - -### [Servers](docs/sdks/servers/README.md) +### [.Servers](docs/sdks/servers/README.md) * [SelectGlobalServer](docs/sdks/servers/README.md#selectglobalserver) * [SelectServerWithID](docs/sdks/servers/README.md#selectserverwithid) - Select a server by ID. @@ -383,28 +343,68 @@ func main() { * [ServerWithTemplatesGlobal](docs/sdks/servers/README.md#serverwithtemplatesglobal) * [ServersByIDWithTemplates](docs/sdks/servers/README.md#serversbyidwithtemplates) -### [Telemetry](docs/sdks/telemetry/README.md) +### [.Telemetry](docs/sdks/telemetry/README.md) * [TelemetrySpeakeasyUserAgentGet](docs/sdks/telemetry/README.md#telemetryspeakeasyuseragentget) * [TelemetryUserAgentGet](docs/sdks/telemetry/README.md#telemetryuseragentget) -### [Unions](docs/sdks/unions/README.md) +### [.AuthNew](docs/sdks/authnew/README.md) -* [FlattenedTypedObjectPost](docs/sdks/unions/README.md#flattenedtypedobjectpost) -* [MixedTypeOneOfPost](docs/sdks/unions/README.md#mixedtypeoneofpost) -* [NullableOneOfRefInObjectPost](docs/sdks/unions/README.md#nullableoneofrefinobjectpost) -* [NullableOneOfSchemaPost](docs/sdks/unions/README.md#nullableoneofschemapost) -* [NullableOneOfTypeInObjectPost](docs/sdks/unions/README.md#nullableoneoftypeinobjectpost) -* [NullableTypedObjectPost](docs/sdks/unions/README.md#nullabletypedobjectpost) -* [PrimitiveTypeOneOfPost](docs/sdks/unions/README.md#primitivetypeoneofpost) -* [StronglyTypedOneOfPost](docs/sdks/unions/README.md#stronglytypedoneofpost) -* [TypedObjectNullableOneOfPost](docs/sdks/unions/README.md#typedobjectnullableoneofpost) -* [TypedObjectOneOfPost](docs/sdks/unions/README.md#typedobjectoneofpost) -* [UnionBigIntDecimal](docs/sdks/unions/README.md#unionbigintdecimal) -* [UnionDateNull](docs/sdks/unions/README.md#uniondatenull) -* [UnionDateTimeBigInt](docs/sdks/unions/README.md#uniondatetimebigint) -* [UnionDateTimeNull](docs/sdks/unions/README.md#uniondatetimenull) -* [WeaklyTypedOneOfPost](docs/sdks/unions/README.md#weaklytypedoneofpost) +* [APIKeyAuthGlobalNew](docs/sdks/authnew/README.md#apikeyauthglobalnew) +* [AuthGlobal](docs/sdks/authnew/README.md#authglobal) +* [BasicAuthNew](docs/sdks/authnew/README.md#basicauthnew) +* [MultipleMixedOptionsAuth](docs/sdks/authnew/README.md#multiplemixedoptionsauth) +* [MultipleMixedSchemeAuth](docs/sdks/authnew/README.md#multiplemixedschemeauth) +* [MultipleOptionsWithMixedSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithmixedschemesauth) +* [MultipleOptionsWithSimpleSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithsimpleschemesauth) +* [MultipleSimpleOptionsAuth](docs/sdks/authnew/README.md#multiplesimpleoptionsauth) +* [MultipleSimpleSchemeAuth](docs/sdks/authnew/README.md#multiplesimpleschemeauth) +* [Oauth2AuthNew](docs/sdks/authnew/README.md#oauth2authnew) +* [OpenIDConnectAuthNew](docs/sdks/authnew/README.md#openidconnectauthnew) + +### [.Auth](docs/sdks/auth/README.md) + +* [APIKeyAuth](docs/sdks/auth/README.md#apikeyauth) +* [APIKeyAuthGlobal](docs/sdks/auth/README.md#apikeyauthglobal) +* [BasicAuth](docs/sdks/auth/README.md#basicauth) +* [BearerAuth](docs/sdks/auth/README.md#bearerauth) +* [GlobalBearerAuth](docs/sdks/auth/README.md#globalbearerauth) +* [Oauth2Auth](docs/sdks/auth/README.md#oauth2auth) +* [Oauth2Override](docs/sdks/auth/README.md#oauth2override) +* [OpenIDConnectAuth](docs/sdks/auth/README.md#openidconnectauth) + +### [.Documentation](docs/sdks/documentation/README.md) + +* [GetDocumentationPerLanguage](docs/sdks/documentation/README.md#getdocumentationperlanguage) - Gets documentation for some language, I guess. + +### [.Resource](docs/sdks/resource/README.md) + +* [CreateFile](docs/sdks/resource/README.md#createfile) +* [CreateResource](docs/sdks/resource/README.md#createresource) +* [DeleteResource](docs/sdks/resource/README.md#deleteresource) +* [GetResource](docs/sdks/resource/README.md#getresource) +* [UpdateResource](docs/sdks/resource/README.md#updateresource) + +### [.First](docs/sdks/first/README.md) + +* [Get](docs/sdks/first/README.md#get) + +### [.Second](docs/sdks/second/README.md) + +* [Get](docs/sdks/second/README.md#get) + +### [.Pagination](docs/sdks/pagination/README.md) + +* [PaginationCursorBody](docs/sdks/pagination/README.md#paginationcursorbody) +* [PaginationCursorParams](docs/sdks/pagination/README.md#paginationcursorparams) +* [PaginationLimitOffsetOffsetBody](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetbody) +* [PaginationLimitOffsetOffsetParams](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetparams) +* [PaginationLimitOffsetPageBody](docs/sdks/pagination/README.md#paginationlimitoffsetpagebody) +* [PaginationLimitOffsetPageParams](docs/sdks/pagination/README.md#paginationlimitoffsetpageparams) + +### [.Retries](docs/sdks/retries/README.md) + +* [RetriesGet](docs/sdks/retries/README.md#retriesget) @@ -433,9 +433,9 @@ package main import ( "context" "log" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" ) func main() { @@ -528,8 +528,8 @@ package main import ( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -565,8 +565,8 @@ package main import ( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -610,8 +610,8 @@ package main import ( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -629,13 +629,13 @@ func main() { res, err := s.Errors.StatusGetXSpeakeasyErrors(ctx, statusCode) if err != nil { - var e *error + var e *sdkerrors.Error if errors.As(err, &e) { // handle error log.Fatal(e.Error()) } - var e *statusGetXSpeakeasyErrors_501ApplicationJSON_object + var e *sdkerrors.StatusGetXSpeakeasyErrorsResponseBody if errors.As(err, &e) { // handle error log.Fatal(e.Error()) @@ -672,38 +672,37 @@ Some of the server options above contain variables. If you want to set the value * `WithProtocol string` - * `WithSomething ServerSomething` + * `WithSomething openapi.ServerSomething` For example: - ```go package main import ( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { s := openapi.New( + openapi.WithServerIndex(4), openapi.WithSecurity(shared.Security{ APIKeyAuth: openapi.String("Token YOUR_API_KEY"), }), openapi.WithGlobalPathParam(100), openapi.WithGlobalQueryParam("some example global query param"), - openapi.WithServerIndex(4), ) ctx := context.Background() - res, err := s.SDK.PutAnythingIgnoredGeneration(ctx, "string") + res, err := s.PutAnythingIgnoredGeneration(ctx, "string") if err != nil { log.Fatal(err) } - if res.PutAnythingIgnoredGeneration200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -715,34 +714,33 @@ func main() { The default server can also be overridden globally using the `WithServerURL` option when initializing the SDK client instance. For example: - ```go package main import ( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { s := openapi.New( + openapi.WithServerURL("http://localhost:35123"), openapi.WithSecurity(shared.Security{ APIKeyAuth: openapi.String("Token YOUR_API_KEY"), }), openapi.WithGlobalPathParam(100), openapi.WithGlobalQueryParam("some example global query param"), - openapi.WithServerURL("http://localhost:35123"), ) ctx := context.Background() - res, err := s.SDK.PutAnythingIgnoredGeneration(ctx, "string") + res, err := s.PutAnythingIgnoredGeneration(ctx, "string") if err != nil { log.Fatal(err) } - if res.PutAnythingIgnoredGeneration200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -753,15 +751,14 @@ func main() { The server URL can also be overridden on a per-operation basis, provided a server list was specified for the operation. For example: - ```go package main import ( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -774,18 +771,7 @@ func main() { ) ctx := context.Background() - res, err := s.AuthNew.APIKeyAuthGlobalNew(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ - Password: "owsGgP4_AhRPMSJ", - Username: "Devonte_Bins", - }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ - ExpectedValue: "string", - HeaderName: "string", - }, - }, - }, operations.WithServerURL("http://localhost:35456")) + res, err := s.Errors.ConnectionErrorGet(ctx, operations.WithServerURL("http://somebrokenapi.broken")) if err != nil { log.Fatal(err) } @@ -829,6 +815,256 @@ var ( This can be a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration. + + + +# Retries + +Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK. + +To change the default retry strategy for a single API call, simply provide a retryConfig object to the call: + + +## Example + +```go +package main + +import ( + "/pkg/models/operations" + "/pkg/utils" + "context" + "log" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" +) + +func main() { + s := openapi.New( + openapi.WithSecurity(shared.Security{ + APIKeyAuth: openapi.String("Token YOUR_API_KEY"), + }), + openapi.WithGlobalPathParam(100), + openapi.WithGlobalQueryParam("some example global query param"), + ) + + var requestID string = "string" + + var numRetries *int64 = 75342 + + ctx := context.Background() + res, err := s.Retries.RetriesGet(ctx, requestID, numRetries, operations.WithRetries(utils.RetryConfig{ + Strategy: "backoff", + Backoff: &utils.BackoffStrategy{ + InitialInterval: 1, + MaxInterval: 50, + Exponent: 1.1, + MaxElapsedTime: 100, + }, + RetryConnectionErrors: false, + })) + if err != nil { + log.Fatal(err) + } + + if res.Retries != nil { + // handle response + } +} + +``` + +If you'd like to override the default retry strategy for all operations that support retries, you can provide a retryConfig at SDK initialization: + + +## Example + +```go +package main + +import ( + "/pkg/models/operations" + "/pkg/utils" + "context" + "log" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" +) + +func main() { + s := openapi.New( + openapi.WithRetryConfig(utils.RetryConfig{ + Strategy: "backoff", + Backoff: &utils.BackoffStrategy{ + InitialInterval: 1, + MaxInterval: 50, + Exponent: 1.1, + MaxElapsedTime: 100, + }, + RetryConnectionErrors: false, + }), + openapi.WithSecurity(shared.Security{ + APIKeyAuth: openapi.String("Token YOUR_API_KEY"), + }), + openapi.WithGlobalPathParam(100), + openapi.WithGlobalQueryParam("some example global query param"), + ) + + var requestID string = "string" + + var numRetries *int64 = 75342 + + ctx := context.Background() + res, err := s.Retries.RetriesGet(ctx, requestID, numRetries) + if err != nil { + log.Fatal(err) + } + + if res.Retries != nil { + // handle response + } +} + +``` + + + + + + + + +# Authentication + +## Per-Client Security Schemes + +Your SDK supports the following security schemes globally: + +| Name | Type | Scheme | +| --------------- | --------------- | --------------- | +| `APIKeyAuth` | apiKey | API key | +| `APIKeyAuthNew` | apiKey | API key | +| `Oauth2` | oauth2 | OAuth2 token | + +You can set the security parameters through the `WithSecurity` option when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example: + +```go +package main + +import ( + "context" + "log" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" +) + +func main() { + s := openapi.New( + openapi.WithSecurity(shared.Security{ + APIKeyAuth: openapi.String("Token YOUR_API_KEY"), + }), + openapi.WithGlobalPathParam(100), + openapi.WithGlobalQueryParam("some example global query param"), + ) + + ctx := context.Background() + res, err := s.PutAnythingIgnoredGeneration(ctx, "string") + if err != nil { + log.Fatal(err) + } + + if res.Object != nil { + // handle response + } +} + +``` + +## Per-Operation Security Schemes + +Some operations in your SDK require the security scheme to be specified at the request level. For example: +## Second +Do this second +```go +package main + +import ( + "context" + "log" + "math/big" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" +) + +func main() { + s := openapi.New( + openapi.WithGlobalPathParam(100), + openapi.WithGlobalQueryParam("some example global query param"), + ) + + operationSecurity := operations.UsageExamplePostSecurity{ + Password: "YOUR_PASSWORD", + Username: "YOUR_USERNAME", + } + + ctx := context.Background() + res, err := s.Generation.UsageExamplePost(ctx, operations.UsageExamplePostRequest{ + RequestBody: &operations.UsageExamplePostRequestBody{ + FakerFormattedStrings: &shared.FakerFormattedStrings{}, + FakerStrings: &shared.FakerStrings{}, + SimpleObject: &shared.SimpleObject{ + Any: "any", + Bigint: big.NewInt(8821239038968084), + BigintStr: types.MustNewBigIntFromString("9223372036854775808"), + Bool: true, + BoolOpt: openapi.Bool(true), + Date: types.MustDateFromString("2020-01-01"), + DateTime: types.MustTimeFromString("2020-01-01T00:00:00.000000001Z"), + Decimal: types.MustNewDecimalFromString("3.141592653589793"), + DecimalStr: types.MustNewDecimalFromString("3.14159265358979344719667586"), + Enum: shared.EnumOne, + Float32: 1.1, + Int: 1, + Int32: 1, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, + Num: 1.1, + Str: "test", + StrOpt: openapi.String("testOptional"), + }, + }, + BigintParameter: big.NewInt(168827), + BigintStrParameter: big.NewInt(446729), + BoolParameter: false, + DateParameter: types.MustDateFromString("2023-06-11"), + DateTimeDefaultParameter: types.MustTimeFromString("2022-07-22T13:16:48.221Z"), + DateTimeParameter: types.MustTimeFromString("2021-10-21T09:16:58.799Z"), + DecimalParameter: types.MustNewDecimalFromString("5223.72"), + DecimalStrParameter: types.MustNewDecimalFromString("2911.37"), + DoubleParameter: 6946.59, + EnumParameter: operations.EnumParameterValue1, + FalseyNumberParameter: 0, + Float32Parameter: 1029.75, + FloatParameter: 5669.99, + Int64Parameter: 195232, + IntParameter: 569663, + OptEnumParameter: operations.OptEnumParameterValue3.ToPointer(), + StrParameter: "example 1", + }, operationSecurity) + if err != nil { + log.Fatal(err) + } + + if res.Object != nil { + // handle response + } +} + +``` + + diff --git a/go-client-sdk/USAGE.md b/go-client-sdk/USAGE.md index 4d35e665f..1254d6696 100755 --- a/go-client-sdk/USAGE.md +++ b/go-client-sdk/USAGE.md @@ -7,8 +7,8 @@ package main import ( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -26,7 +26,7 @@ func main() { log.Fatal(err) } - if res.GetGlobalNameOverride200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -43,10 +43,10 @@ import ( "context" "log" "math/big" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -79,8 +79,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -95,20 +95,20 @@ func main() { DecimalParameter: types.MustNewDecimalFromString("5223.72"), DecimalStrParameter: types.MustNewDecimalFromString("2911.37"), DoubleParameter: 6946.59, - EnumParameter: operations.UsageExamplePostEnumParameterValue1, + EnumParameter: operations.EnumParameterValue1, FalseyNumberParameter: 0, Float32Parameter: 1029.75, FloatParameter: 5669.99, Int64Parameter: 195232, IntParameter: 569663, - OptEnumParameter: operations.UsageExamplePostOptEnumParameterValue3.ToPointer(), + OptEnumParameter: operations.OptEnumParameterValue3.ToPointer(), StrParameter: "example 1", }, operationSecurity) if err != nil { log.Fatal(err) } - if res.UsageExamplePost200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } diff --git a/go-client-sdk/auth.go b/go-client-sdk/auth.go index 8f6a89c8b..29e127a09 100755 --- a/go-client-sdk/auth.go +++ b/go-client-sdk/auth.go @@ -8,24 +8,24 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" "strings" ) -// auth - Endpoints for testing authentication. -type auth struct { +// Auth - Endpoints for testing authentication. +type Auth struct { sdkConfiguration sdkConfiguration } -func newAuth(sdkConfig sdkConfiguration) *auth { - return &auth{ +func newAuth(sdkConfig sdkConfiguration) *Auth { + return &Auth{ sdkConfiguration: sdkConfig, } } -func (s *auth) APIKeyAuth(ctx context.Context, security operations.APIKeyAuthSecurity) (*operations.APIKeyAuthResponse, error) { +func (s *Auth) APIKeyAuth(ctx context.Context, security operations.APIKeyAuthSecurity) (*operations.APIKeyAuthResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/bearer#operation" @@ -84,7 +84,7 @@ func (s *auth) APIKeyAuth(ctx context.Context, security operations.APIKeyAuthSec return res, nil } -func (s *auth) APIKeyAuthGlobal(ctx context.Context) (*operations.APIKeyAuthGlobalResponse, error) { +func (s *Auth) APIKeyAuthGlobal(ctx context.Context) (*operations.APIKeyAuthGlobalResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/bearer" @@ -143,7 +143,7 @@ func (s *auth) APIKeyAuthGlobal(ctx context.Context) (*operations.APIKeyAuthGlob return res, nil } -func (s *auth) BasicAuth(ctx context.Context, security operations.BasicAuthSecurity, passwd string, user string) (*operations.BasicAuthResponse, error) { +func (s *Auth) BasicAuth(ctx context.Context, security operations.BasicAuthSecurity, passwd string, user string) (*operations.BasicAuthResponse, error) { request := operations.BasicAuthRequest{ Passwd: passwd, User: user, @@ -210,7 +210,7 @@ func (s *auth) BasicAuth(ctx context.Context, security operations.BasicAuthSecur return res, nil } -func (s *auth) BearerAuth(ctx context.Context, security operations.BearerAuthSecurity) (*operations.BearerAuthResponse, error) { +func (s *Auth) BearerAuth(ctx context.Context, security operations.BearerAuthSecurity) (*operations.BearerAuthResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/bearer#bearer" @@ -269,7 +269,7 @@ func (s *auth) BearerAuth(ctx context.Context, security operations.BearerAuthSec return res, nil } -func (s *auth) GlobalBearerAuth(ctx context.Context) (*operations.GlobalBearerAuthResponse, error) { +func (s *Auth) GlobalBearerAuth(ctx context.Context) (*operations.GlobalBearerAuthResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/bearer#global" @@ -328,7 +328,7 @@ func (s *auth) GlobalBearerAuth(ctx context.Context) (*operations.GlobalBearerAu return res, nil } -func (s *auth) Oauth2Auth(ctx context.Context, security operations.Oauth2AuthSecurity) (*operations.Oauth2AuthResponse, error) { +func (s *Auth) Oauth2Auth(ctx context.Context, security operations.Oauth2AuthSecurity) (*operations.Oauth2AuthResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/bearer#oauth2" @@ -387,7 +387,7 @@ func (s *auth) Oauth2Auth(ctx context.Context, security operations.Oauth2AuthSec return res, nil } -func (s *auth) Oauth2Override(ctx context.Context, security operations.Oauth2OverrideSecurity) (*operations.Oauth2OverrideResponse, error) { +func (s *Auth) Oauth2Override(ctx context.Context, security operations.Oauth2OverrideSecurity) (*operations.Oauth2OverrideResponse, error) { request := operations.Oauth2OverrideRequest{} baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) @@ -450,7 +450,7 @@ func (s *auth) Oauth2Override(ctx context.Context, security operations.Oauth2Ove return res, nil } -func (s *auth) OpenIDConnectAuth(ctx context.Context, security operations.OpenIDConnectAuthSecurity) (*operations.OpenIDConnectAuthResponse, error) { +func (s *Auth) OpenIDConnectAuth(ctx context.Context, security operations.OpenIDConnectAuthSecurity) (*operations.OpenIDConnectAuthResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/bearer#openIdConnect" diff --git a/go-client-sdk/authnew.go b/go-client-sdk/authnew.go index cef2c3eb2..1f2270d1c 100755 --- a/go-client-sdk/authnew.go +++ b/go-client-sdk/authnew.go @@ -8,25 +8,25 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/models/shared" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/utils" "strings" ) -// authNew - Endpoints for testing authentication. -type authNew struct { +// AuthNew - Endpoints for testing authentication. +type AuthNew struct { sdkConfiguration sdkConfiguration } -func newAuthNew(sdkConfig sdkConfiguration) *authNew { - return &authNew{ +func newAuthNew(sdkConfig sdkConfiguration) *AuthNew { + return &AuthNew{ sdkConfiguration: sdkConfig, } } -func (s *authNew) APIKeyAuthGlobalNew(ctx context.Context, request shared.AuthServiceRequestBody, opts ...operations.Option) (*operations.APIKeyAuthGlobalNewResponse, error) { +func (s *AuthNew) APIKeyAuthGlobalNew(ctx context.Context, request shared.AuthServiceRequestBody, opts ...operations.Option) (*operations.APIKeyAuthGlobalNewResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -98,7 +98,7 @@ func (s *authNew) APIKeyAuthGlobalNew(ctx context.Context, request shared.AuthSe return res, nil } -func (s *authNew) AuthGlobal(ctx context.Context, request shared.AuthServiceRequestBody, opts ...operations.Option) (*operations.AuthGlobalResponse, error) { +func (s *AuthNew) AuthGlobal(ctx context.Context, request shared.AuthServiceRequestBody, opts ...operations.Option) (*operations.AuthGlobalResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -170,7 +170,7 @@ func (s *authNew) AuthGlobal(ctx context.Context, request shared.AuthServiceRequ return res, nil } -func (s *authNew) BasicAuthNew(ctx context.Context, request shared.AuthServiceRequestBody, security operations.BasicAuthNewSecurity, opts ...operations.Option) (*operations.BasicAuthNewResponse, error) { +func (s *AuthNew) BasicAuthNew(ctx context.Context, request shared.AuthServiceRequestBody, security operations.BasicAuthNewSecurity, opts ...operations.Option) (*operations.BasicAuthNewResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -242,7 +242,7 @@ func (s *authNew) BasicAuthNew(ctx context.Context, request shared.AuthServiceRe return res, nil } -func (s *authNew) MultipleMixedOptionsAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleMixedOptionsAuthSecurity, opts ...operations.Option) (*operations.MultipleMixedOptionsAuthResponse, error) { +func (s *AuthNew) MultipleMixedOptionsAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleMixedOptionsAuthSecurity, opts ...operations.Option) (*operations.MultipleMixedOptionsAuthResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -314,7 +314,7 @@ func (s *authNew) MultipleMixedOptionsAuth(ctx context.Context, request shared.A return res, nil } -func (s *authNew) MultipleMixedSchemeAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleMixedSchemeAuthSecurity, opts ...operations.Option) (*operations.MultipleMixedSchemeAuthResponse, error) { +func (s *AuthNew) MultipleMixedSchemeAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleMixedSchemeAuthSecurity, opts ...operations.Option) (*operations.MultipleMixedSchemeAuthResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -386,7 +386,7 @@ func (s *authNew) MultipleMixedSchemeAuth(ctx context.Context, request shared.Au return res, nil } -func (s *authNew) MultipleOptionsWithMixedSchemesAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleOptionsWithMixedSchemesAuthSecurity, opts ...operations.Option) (*operations.MultipleOptionsWithMixedSchemesAuthResponse, error) { +func (s *AuthNew) MultipleOptionsWithMixedSchemesAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleOptionsWithMixedSchemesAuthSecurity, opts ...operations.Option) (*operations.MultipleOptionsWithMixedSchemesAuthResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -458,7 +458,7 @@ func (s *authNew) MultipleOptionsWithMixedSchemesAuth(ctx context.Context, reque return res, nil } -func (s *authNew) MultipleOptionsWithSimpleSchemesAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleOptionsWithSimpleSchemesAuthSecurity, opts ...operations.Option) (*operations.MultipleOptionsWithSimpleSchemesAuthResponse, error) { +func (s *AuthNew) MultipleOptionsWithSimpleSchemesAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleOptionsWithSimpleSchemesAuthSecurity, opts ...operations.Option) (*operations.MultipleOptionsWithSimpleSchemesAuthResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -530,7 +530,7 @@ func (s *authNew) MultipleOptionsWithSimpleSchemesAuth(ctx context.Context, requ return res, nil } -func (s *authNew) MultipleSimpleOptionsAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleSimpleOptionsAuthSecurity, opts ...operations.Option) (*operations.MultipleSimpleOptionsAuthResponse, error) { +func (s *AuthNew) MultipleSimpleOptionsAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleSimpleOptionsAuthSecurity, opts ...operations.Option) (*operations.MultipleSimpleOptionsAuthResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -602,7 +602,7 @@ func (s *authNew) MultipleSimpleOptionsAuth(ctx context.Context, request shared. return res, nil } -func (s *authNew) MultipleSimpleSchemeAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleSimpleSchemeAuthSecurity, opts ...operations.Option) (*operations.MultipleSimpleSchemeAuthResponse, error) { +func (s *AuthNew) MultipleSimpleSchemeAuth(ctx context.Context, request shared.AuthServiceRequestBody, security operations.MultipleSimpleSchemeAuthSecurity, opts ...operations.Option) (*operations.MultipleSimpleSchemeAuthResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -674,7 +674,7 @@ func (s *authNew) MultipleSimpleSchemeAuth(ctx context.Context, request shared.A return res, nil } -func (s *authNew) Oauth2AuthNew(ctx context.Context, request shared.AuthServiceRequestBody, security operations.Oauth2AuthNewSecurity, opts ...operations.Option) (*operations.Oauth2AuthNewResponse, error) { +func (s *AuthNew) Oauth2AuthNew(ctx context.Context, request shared.AuthServiceRequestBody, security operations.Oauth2AuthNewSecurity, opts ...operations.Option) (*operations.Oauth2AuthNewResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -746,7 +746,7 @@ func (s *authNew) Oauth2AuthNew(ctx context.Context, request shared.AuthServiceR return res, nil } -func (s *authNew) OpenIDConnectAuthNew(ctx context.Context, request shared.AuthServiceRequestBody, security operations.OpenIDConnectAuthNewSecurity, opts ...operations.Option) (*operations.OpenIDConnectAuthNewResponse, error) { +func (s *AuthNew) OpenIDConnectAuthNew(ctx context.Context, request shared.AuthServiceRequestBody, security operations.OpenIDConnectAuthNewSecurity, opts ...operations.Option) (*operations.OpenIDConnectAuthNewResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, diff --git a/go-client-sdk/docs/models/errors/error.md b/go-client-sdk/docs/models/errors/error.md index 97e6b75b1..0d0aae131 100755 --- a/go-client-sdk/docs/models/errors/error.md +++ b/go-client-sdk/docs/models/errors/error.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | -| `Code` | **string* | :heavy_minus_sign: | N/A | -| `Message` | **string* | :heavy_minus_sign: | N/A | -| `Type` | [*ErrorType](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | +| `Code` | **string* | :heavy_minus_sign: | N/A | +| `Message` | **string* | :heavy_minus_sign: | N/A | +| `Type` | [*sdkerrors.ErrorType](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md b/go-client-sdk/docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md deleted file mode 100755 index 8a94b91c1..000000000 --- a/go-client-sdk/docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md +++ /dev/null @@ -1,13 +0,0 @@ -# StatusGetXSpeakeasyErrors501ApplicationJSON - -Not Implemented - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Code` | **string* | :heavy_minus_sign: | N/A | -| `Message` | **string* | :heavy_minus_sign: | N/A | -| `Type` | [*ErrorType](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md b/go-client-sdk/docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md new file mode 100755 index 000000000..1a00ff607 --- /dev/null +++ b/go-client-sdk/docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md @@ -0,0 +1,13 @@ +# StatusGetXSpeakeasyErrorsResponseBody + +Not Implemented + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Code` | **string* | :heavy_minus_sign: | N/A | +| `Message` | **string* | :heavy_minus_sign: | N/A | +| `Type` | [*sdkerrors.ErrorType](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/anchortypesgetresponse.md b/go-client-sdk/docs/models/operations/anchortypesgetresponse.md index f2de6ac66..f6ac940f1 100755 --- a/go-client-sdk/docs/models/operations/anchortypesgetresponse.md +++ b/go-client-sdk/docs/models/operations/anchortypesgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `TypeFromAnchor` | [*TypeFromAnchor](../../models/operations/typefromanchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `TypeFromAnchor` | [*operations.AnchorTypesGetTypeFromAnchor](../../models/operations/anchortypesgettypefromanchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md b/go-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md new file mode 100755 index 000000000..629135ffb --- /dev/null +++ b/go-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md @@ -0,0 +1,10 @@ +# AnchorTypesGetTypeFromAnchor + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `JSON` | [*shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/apikeyauthglobalresponse.md b/go-client-sdk/docs/models/operations/apikeyauthglobalresponse.md index cabd98523..4b2992eb2 100755 --- a/go-client-sdk/docs/models/operations/apikeyauthglobalresponse.md +++ b/go-client-sdk/docs/models/operations/apikeyauthglobalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Token` | [*APIKeyAuthGlobalToken](../../models/operations/apikeyauthglobaltoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Token` | [*operations.APIKeyAuthGlobalToken](../../models/operations/apikeyauthglobaltoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/apikeyauthresponse.md b/go-client-sdk/docs/models/operations/apikeyauthresponse.md index 1bb7c5d3a..6746aabc0 100755 --- a/go-client-sdk/docs/models/operations/apikeyauthresponse.md +++ b/go-client-sdk/docs/models/operations/apikeyauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Token` | [*APIKeyAuthToken](../../models/operations/apikeyauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Token` | [*operations.APIKeyAuthToken](../../models/operations/apikeyauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/args.md b/go-client-sdk/docs/models/operations/args.md new file mode 100755 index 000000000..77fa5686c --- /dev/null +++ b/go-client-sdk/docs/models/operations/args.md @@ -0,0 +1,8 @@ +# Args + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `GlobalQueryParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/basicauthresponse.md b/go-client-sdk/docs/models/operations/basicauthresponse.md index caa13b69a..19528606c 100755 --- a/go-client-sdk/docs/models/operations/basicauthresponse.md +++ b/go-client-sdk/docs/models/operations/basicauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `User` | [*BasicAuthUser](../../models/operations/basicauthuser.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `User` | [*operations.BasicAuthUser](../../models/operations/basicauthuser.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/bearerauthresponse.md b/go-client-sdk/docs/models/operations/bearerauthresponse.md index 1d193d7f5..3b4ce20e7 100755 --- a/go-client-sdk/docs/models/operations/bearerauthresponse.md +++ b/go-client-sdk/docs/models/operations/bearerauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Token` | [*BearerAuthToken](../../models/operations/bearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Token` | [*operations.BearerAuthToken](../../models/operations/bearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md b/go-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md index 1ddb79b25..a3dea6920 100755 --- a/go-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md +++ b/go-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*ComponentBodyAndParamConflictRes](../../models/operations/componentbodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.ComponentBodyAndParamConflictRes](../../models/operations/componentbodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md b/go-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md index f89403ebc..1b1f45f8a 100755 --- a/go-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md +++ b/go-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*ComponentBodyAndParamNoConflictRes](../../models/operations/componentbodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.ComponentBodyAndParamNoConflictRes](../../models/operations/componentbodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/conflictingparamsresponse.md b/go-client-sdk/docs/models/operations/conflictingparamsresponse.md index 14c1c20c6..4b087f44c 100755 --- a/go-client-sdk/docs/models/operations/conflictingparamsresponse.md +++ b/go-client-sdk/docs/models/operations/conflictingparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*ConflictingParamsRes](../../models/operations/conflictingparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.ConflictingParamsRes](../../models/operations/conflictingparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/createfilefile.md b/go-client-sdk/docs/models/operations/createfilefile.md new file mode 100755 index 000000000..870894965 --- /dev/null +++ b/go-client-sdk/docs/models/operations/createfilefile.md @@ -0,0 +1,9 @@ +# CreateFileFile + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Content` | *[]byte* | :heavy_check_mark: | N/A | +| `FileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/createfilerequestbody.md b/go-client-sdk/docs/models/operations/createfilerequestbody.md index fed1bce88..bf94c3a4f 100755 --- a/go-client-sdk/docs/models/operations/createfilerequestbody.md +++ b/go-client-sdk/docs/models/operations/createfilerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| `File` | [*CreateFileRequestBodyFile](../../models/operations/createfilerequestbodyfile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `File` | [*operations.CreateFileFile](../../models/operations/createfilefile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/createfilerequestbodyfile.md b/go-client-sdk/docs/models/operations/createfilerequestbodyfile.md deleted file mode 100755 index a123494ba..000000000 --- a/go-client-sdk/docs/models/operations/createfilerequestbodyfile.md +++ /dev/null @@ -1,9 +0,0 @@ -# CreateFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Content` | *[]byte* | :heavy_check_mark: | N/A | -| `File` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapargs.md b/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapargs.md new file mode 100755 index 000000000..65159b141 --- /dev/null +++ b/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapargs.md @@ -0,0 +1,17 @@ +# DeepObjectQueryParamsMapArgs + + +## Supported Types + +### + +```go +deepObjectQueryParamsMapArgs := operations.CreateDeepObjectQueryParamsMapArgsStr(string{/* values here */}) +``` + +### + +```go +deepObjectQueryParamsMapArgs := operations.CreateDeepObjectQueryParamsMapArgsArrayOfstr([]string{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapres.md b/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapres.md index 081535303..97d6a588f 100755 --- a/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapres.md +++ b/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Args` | map[string][DeepObjectQueryParamsMapResArgs](../../models/operations/deepobjectqueryparamsmapresargs.md) | :heavy_check_mark: | N/A | [object Object] | +| `Args` | map[string][operations.DeepObjectQueryParamsMapArgs](../../models/operations/deepobjectqueryparamsmapargs.md) | :heavy_check_mark: | N/A | [object Object] | | `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/deepObject/map?mapArrParam[test2]=test3&mapArrParam[test2]=test4&mapArrParam[test]=test&mapArrParam[test]=test2&mapParam[test2]=value2&mapParam[test]=value | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapresargs.md b/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapresargs.md deleted file mode 100755 index 797ff8891..000000000 --- a/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapresargs.md +++ /dev/null @@ -1,17 +0,0 @@ -# DeepObjectQueryParamsMapResArgs - - -## Supported Types - -### - -```go -deepObjectQueryParamsMapResArgs := operations.CreateDeepObjectQueryParamsMapResArgsStr(string{/* values here */}) -``` - -### - -```go -deepObjectQueryParamsMapResArgs := operations.CreateDeepObjectQueryParamsMapResArgsArrayOfstr([]string{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md b/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md index 58017c77f..62ce7f55a 100755 --- a/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md +++ b/go-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*DeepObjectQueryParamsMapRes](../../models/operations/deepobjectqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.DeepObjectQueryParamsMapRes](../../models/operations/deepobjectqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md b/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md new file mode 100755 index 000000000..2238f0f48 --- /dev/null +++ b/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md @@ -0,0 +1,26 @@ +# DeepObjectQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | +| `ObjArrParamArr` | []*string* | :heavy_check_mark: | N/A | | +| `ObjParamAny` | *string* | :heavy_check_mark: | N/A | any | +| `ObjParamBigintStr` | **string* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `ObjParamBigint` | **string* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `ObjParamBoolOpt` | *string* | :heavy_check_mark: | N/A | true | +| `ObjParamBool` | *string* | :heavy_check_mark: | N/A | true | +| `ObjParamDateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `ObjParamDate` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | +| `ObjParamDecimalStr` | **string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `ObjParamDecimal` | **string* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `ObjParamEnum` | *string* | :heavy_check_mark: | N/A | one | +| `ObjParamFloat32` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `ObjParamInt32Enum` | *string* | :heavy_check_mark: | N/A | 55 | +| `ObjParamInt32` | *string* | :heavy_check_mark: | N/A | 1 | +| `ObjParamIntEnum` | *string* | :heavy_check_mark: | N/A | 2 | +| `ObjParamInt` | *string* | :heavy_check_mark: | N/A | 1 | +| `ObjParamNum` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `ObjParamStrOpt` | *string* | :heavy_check_mark: | N/A | testOptional | +| `ObjParamStr` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md b/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md deleted file mode 100755 index 89cb3d78e..000000000 --- a/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md +++ /dev/null @@ -1,8 +0,0 @@ -# DeepObjectQueryParamsObjectObjArrParam - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Arr` | []*string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md b/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md index d94e85fcb..2e1941d52 100755 --- a/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md +++ b/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `ObjParam` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `ObjArrParam` | [*DeepObjectQueryParamsObjectObjArrParam](../../models/operations/deepobjectqueryparamsobjectobjarrparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `ObjParam` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `ObjArrParam` | [*operations.ObjArrParam](../../models/operations/objarrparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md b/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md index 0da68b69f..6e385c3ec 100755 --- a/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md +++ b/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Args` | [DeepObjectQueryParamsObjectResArgs](../../models/operations/deepobjectqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `Args` | [operations.DeepObjectQueryParamsObjectArgs](../../models/operations/deepobjectqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/deepObject/obj?objArrParam[arr]=test&objArrParam[arr]=test2&objParam[any]=any&objParam[bigintStr]=9223372036854775808&objParam[bigint]=8821239038968084&objParam[boolOpt]=true&objParam[bool]=true&objParam[dateTime]=2020-01-01T00%3A00%3A00.000000001Z&objParam[date]=2020-01-01&objParam[decimalStr]=3.14159265358979344719667586&objParam[decimal]=3.141592653589793&objParam[enum]=one&objParam[float32]=1.1&objParam[int32Enum]=55&objParam[int32]=1&objParam[intEnum]=2&objParam[int]=1&objParam[num]=1.1&objParam[strOpt]=testOptional&objParam[str]=test | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md b/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md deleted file mode 100755 index ecefe4cb6..000000000 --- a/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md +++ /dev/null @@ -1,26 +0,0 @@ -# DeepObjectQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | -| `ObjArrParamArr` | []*string* | :heavy_check_mark: | N/A | | -| `ObjParamAny` | *string* | :heavy_check_mark: | N/A | any | -| `ObjParamBigintStr` | **string* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `ObjParamBigint` | **string* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `ObjParamBoolOpt` | *string* | :heavy_check_mark: | N/A | true | -| `ObjParamBool` | *string* | :heavy_check_mark: | N/A | true | -| `ObjParamDateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `ObjParamDate` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | -| `ObjParamDecimalStr` | **string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `ObjParamDecimal` | **string* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `ObjParamEnum` | *string* | :heavy_check_mark: | N/A | one | -| `ObjParamFloat32` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `ObjParamInt32Enum` | *string* | :heavy_check_mark: | N/A | 55 | -| `ObjParamInt32` | *string* | :heavy_check_mark: | N/A | 1 | -| `ObjParamIntEnum` | *string* | :heavy_check_mark: | N/A | 2 | -| `ObjParamInt` | *string* | :heavy_check_mark: | N/A | 1 | -| `ObjParamNum` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `ObjParamStrOpt` | *string* | :heavy_check_mark: | N/A | testOptional | -| `ObjParamStr` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md b/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md index 4b9f2258f..9c0ac6fcc 100755 --- a/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md +++ b/go-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*DeepObjectQueryParamsObjectRes](../../models/operations/deepobjectqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.DeepObjectQueryParamsObjectRes](../../models/operations/deepobjectqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md b/go-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md deleted file mode 100755 index 4c35959db..000000000 --- a/go-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# DeprecatedObjectInSchemaGet200ApplicationJSON - -A successful response that contains a deprecatedObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | -| ~~`JSON`~~ | [*shared.DeprecatedObject](../../models/shared/deprecatedobject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md b/go-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md index b4a345c89..fa30a0495 100755 --- a/go-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md +++ b/go-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `DeprecatedObjectInSchemaGet200ApplicationJSONObject` | [*DeprecatedObjectInSchemaGet200ApplicationJSON](../../models/operations/deprecatedobjectinschemaget200applicationjson.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.DeprecatedObjectInSchemaGetResponseBody](../../models/operations/deprecatedobjectinschemagetresponsebody.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md b/go-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md new file mode 100755 index 000000000..54c874c1c --- /dev/null +++ b/go-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md @@ -0,0 +1,10 @@ +# DeprecatedObjectInSchemaGetResponseBody + +A successful response that contains a deprecatedObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | +| ~~`JSON`~~ | [*shared.DeprecatedObject](../../models/shared/deprecatedobject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/differentfilename.md b/go-client-sdk/docs/models/operations/differentfilename.md new file mode 100755 index 000000000..470951603 --- /dev/null +++ b/go-client-sdk/docs/models/operations/differentfilename.md @@ -0,0 +1,9 @@ +# DifferentFileName + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Content` | *[]byte* | :heavy_check_mark: | N/A | +| `FileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/duplicateparamresponse.md b/go-client-sdk/docs/models/operations/duplicateparamresponse.md index bd688ddef..da01e24ec 100755 --- a/go-client-sdk/docs/models/operations/duplicateparamresponse.md +++ b/go-client-sdk/docs/models/operations/duplicateparamresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `DuplicateParamResponse` | [*DuplicateParamDuplicateParamResponse](../../models/operations/duplicateparamduplicateparamresponse.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `DuplicateParamResponse` | [*operations.DuplicateParamDuplicateParamResponse](../../models/operations/duplicateparamduplicateparamresponse.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/empty.md b/go-client-sdk/docs/models/operations/empty.md new file mode 100755 index 000000000..f9f6b3eab --- /dev/null +++ b/go-client-sdk/docs/models/operations/empty.md @@ -0,0 +1,7 @@ +# Empty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md b/go-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md deleted file mode 100755 index bbddca47a..000000000 --- a/go-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md +++ /dev/null @@ -1,9 +0,0 @@ -# EmptyResponseObjectWithCommentGet200ApplicationOctetStream - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md b/go-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md new file mode 100755 index 000000000..5098e6819 --- /dev/null +++ b/go-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md @@ -0,0 +1,9 @@ +# EmptyResponseObjectWithCommentGetResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md b/go-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md new file mode 100755 index 000000000..1da3e5d24 --- /dev/null +++ b/go-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md @@ -0,0 +1,7 @@ +# EmptyRespWithEmptyProperies + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/emptywithemptyproperties.md b/go-client-sdk/docs/models/operations/emptywithemptyproperties.md new file mode 100755 index 000000000..535ae89ed --- /dev/null +++ b/go-client-sdk/docs/models/operations/emptywithemptyproperties.md @@ -0,0 +1,7 @@ +# EmptyWithEmptyProperties + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/enumnameoverride.md b/go-client-sdk/docs/models/operations/enumnameoverride.md new file mode 100755 index 000000000..3703f8645 --- /dev/null +++ b/go-client-sdk/docs/models/operations/enumnameoverride.md @@ -0,0 +1,12 @@ +# EnumNameOverride + +An enum type + + +## Values + +| Name | Value | +| ------------------------ | ------------------------ | +| `EnumNameOverrideValue1` | value1 | +| `EnumNameOverrideValue2` | value2 | +| `EnumNameOverrideValue3` | value3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/enumparameter.md b/go-client-sdk/docs/models/operations/enumparameter.md new file mode 100755 index 000000000..96a63522d --- /dev/null +++ b/go-client-sdk/docs/models/operations/enumparameter.md @@ -0,0 +1,12 @@ +# EnumParameter + +An enum type + + +## Values + +| Name | Value | +| --------------------- | --------------------- | +| `EnumParameterValue1` | value1 | +| `EnumParameterValue2` | value2 | +| `EnumParameterValue3` | value3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/file.md b/go-client-sdk/docs/models/operations/file.md new file mode 100755 index 000000000..769a6f817 --- /dev/null +++ b/go-client-sdk/docs/models/operations/file.md @@ -0,0 +1,9 @@ +# File + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Content` | *[]byte* | :heavy_check_mark: | N/A | +| `FileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md b/go-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md index 4cb967cfc..b33d104d8 100755 --- a/go-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md +++ b/go-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*FlattenedTypedObjectPostRes](../../models/operations/flattenedtypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.FlattenedTypedObjectPostRes](../../models/operations/flattenedtypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/form.md b/go-client-sdk/docs/models/operations/form.md new file mode 100755 index 000000000..5d53fdf22 --- /dev/null +++ b/go-client-sdk/docs/models/operations/form.md @@ -0,0 +1,14 @@ +# Form + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Arr` | *string* | :heavy_check_mark: | N/A | +| `Bool` | *string* | :heavy_check_mark: | N/A | +| `Int` | *string* | :heavy_check_mark: | N/A | +| `Map` | *string* | :heavy_check_mark: | N/A | +| `Num` | *string* | :heavy_check_mark: | N/A | +| `Obj` | *string* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsarrayargs.md b/go-client-sdk/docs/models/operations/formqueryparamsarrayargs.md new file mode 100755 index 000000000..b01f2d120 --- /dev/null +++ b/go-client-sdk/docs/models/operations/formqueryparamsarrayargs.md @@ -0,0 +1,9 @@ +# FormQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `ArrParam` | *string* | :heavy_check_mark: | N/A | test,test2 | +| `ArrParamExploded` | []*string* | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsarrayres.md b/go-client-sdk/docs/models/operations/formqueryparamsarrayres.md index 94bd6518f..febd94c41 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamsarrayres.md +++ b/go-client-sdk/docs/models/operations/formqueryparamsarrayres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | -| `Args` | [FormQueryParamsArrayResArgs](../../models/operations/formqueryparamsarrayresargs.md) | :heavy_check_mark: | N/A | | +| `Args` | [operations.FormQueryParamsArrayArgs](../../models/operations/formqueryparamsarrayargs.md) | :heavy_check_mark: | N/A | | | `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/array?arrParam=test%2Ctest2&arrParamExploded=1&arrParamExploded=2 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md b/go-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md deleted file mode 100755 index 4ace7e3c1..000000000 --- a/go-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `ArrParam` | *string* | :heavy_check_mark: | N/A | test,test2 | -| `ArrParamExploded` | []*string* | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md b/go-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md index 83a0afdec..3a36dc5a1 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md +++ b/go-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*FormQueryParamsArrayRes](../../models/operations/formqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.FormQueryParamsArrayRes](../../models/operations/formqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md b/go-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md new file mode 100755 index 000000000..736127be1 --- /dev/null +++ b/go-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md @@ -0,0 +1,9 @@ +# FormQueryParamsCamelObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `ItemCount` | *string* | :heavy_check_mark: | N/A | 10 | +| `SearchTerm` | *string* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md b/go-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md deleted file mode 100755 index ac4f858c3..000000000 --- a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParam - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `EncodedCount` | **string* | :heavy_minus_sign: | N/A | 11 | -| `EncodedTerm` | **string* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md b/go-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md deleted file mode 100755 index c2a61dbc9..000000000 --- a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParamExploded - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `ItemCount` | **string* | :heavy_minus_sign: | N/A | 10 | -| `SearchTerm` | **string* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md b/go-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md index 7208cb44d..953a4d0c7 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md +++ b/go-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `ObjParamExploded` | [FormQueryParamsCamelObjectObjParamExploded](../../models/operations/formqueryparamscamelobjectobjparamexploded.md) | :heavy_check_mark: | N/A | -| `ObjParam` | [*FormQueryParamsCamelObjectObjParam](../../models/operations/formqueryparamscamelobjectobjparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `ObjParamExploded` | [operations.ObjParamExploded](../../models/operations/objparamexploded.md) | :heavy_check_mark: | N/A | +| `ObjParam` | [*operations.ObjParam](../../models/operations/objparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md b/go-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md index 496148674..fc0eb46d1 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md +++ b/go-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `Args` | [FormQueryParamsCamelObjectResArgs](../../models/operations/formqueryparamscamelobjectresargs.md) | :heavy_check_mark: | N/A | | +| `Args` | [operations.FormQueryParamsCamelObjectArgs](../../models/operations/formqueryparamscamelobjectargs.md) | :heavy_check_mark: | N/A | | | `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/camelObj?item_count=10&obj_param=encoded_count%2C11%2Cencoded_term%2Cbar&search_term=foo | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md b/go-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md deleted file mode 100755 index 533d43834..000000000 --- a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `ItemCount` | *string* | :heavy_check_mark: | N/A | 10 | -| `SearchTerm` | *string* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md b/go-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md index 853b5e864..a64052876 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md +++ b/go-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*FormQueryParamsCamelObjectRes](../../models/operations/formqueryparamscamelobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.FormQueryParamsCamelObjectRes](../../models/operations/formqueryparamscamelobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsmapresponse.md b/go-client-sdk/docs/models/operations/formqueryparamsmapresponse.md index e0adce417..52e3570df 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamsmapresponse.md +++ b/go-client-sdk/docs/models/operations/formqueryparamsmapresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*FormQueryParamsMapRes](../../models/operations/formqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.FormQueryParamsMapRes](../../models/operations/formqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsobjectargs.md b/go-client-sdk/docs/models/operations/formqueryparamsobjectargs.md new file mode 100755 index 000000000..f9ad1dc10 --- /dev/null +++ b/go-client-sdk/docs/models/operations/formqueryparamsobjectargs.md @@ -0,0 +1,28 @@ +# FormQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `Any` | *string* | :heavy_check_mark: | N/A | any | +| `Bigint` | **string* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `BigintStr` | **string* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `Bool` | *string* | :heavy_check_mark: | N/A | true | +| `BoolOpt` | **string* | :heavy_minus_sign: | N/A | true | +| `Date` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | +| `DateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `Decimal` | **string* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `DecimalStr` | **string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `Enum` | *string* | :heavy_check_mark: | N/A | one | +| `Float32` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `Int` | *string* | :heavy_check_mark: | N/A | 1 | +| `Int32` | *string* | :heavy_check_mark: | N/A | 1 | +| `Int32Enum` | *string* | :heavy_check_mark: | N/A | 55 | +| `IntEnum` | *string* | :heavy_check_mark: | N/A | 2 | +| `IntOptNull` | **string* | :heavy_minus_sign: | N/A | | +| `Num` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `NumOptNull` | **string* | :heavy_minus_sign: | N/A | | +| `ObjParam` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `Str` | *string* | :heavy_check_mark: | N/A | test | +| `StrOpt` | **string* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsobjectres.md b/go-client-sdk/docs/models/operations/formqueryparamsobjectres.md index d5862965e..2b3e91de7 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamsobjectres.md +++ b/go-client-sdk/docs/models/operations/formqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Args` | [FormQueryParamsObjectResArgs](../../models/operations/formqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `Args` | [operations.FormQueryParamsObjectArgs](../../models/operations/formqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/obj?any=any&bigint=8821239038968084&bigintStr=9223372036854775808&bool=true&boolOpt=true&date=2020-01-01&dateTime=2020-01-01T00%3A00%3A00.000000001Z&decimal=3.141592653589793&decimalStr=3.14159265358979344719667586&enum=one&float32=1.1&int=1&int32=1&int32Enum=55&intEnum=2&num=1.1&objParam=any%2Cany%2Cbigint%2C8821239038968084%2CbigintStr%2C9223372036854775808%2Cbool%2Ctrue%2CboolOpt%2Ctrue%2Cdate%2C2020-01-01%2CdateTime%2C2020-01-01T00%3A00%3A00.000000001Z%2Cdecimal%2C3.141592653589793%2CdecimalStr%2C3.14159265358979344719667586%2Cenum%2Cone%2Cfloat32%2C1.1%2Cint%2C1%2Cint32%2C1%2Cint32Enum%2C55%2CintEnum%2C2%2Cnum%2C1.1%2Cstr%2Ctest%2CstrOpt%2CtestOptional&str=test&strOpt=testOptional | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md b/go-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md deleted file mode 100755 index 706d9a091..000000000 --- a/go-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md +++ /dev/null @@ -1,28 +0,0 @@ -# FormQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Any` | *string* | :heavy_check_mark: | N/A | any | -| `Bigint` | **string* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `BigintStr` | **string* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `Bool` | *string* | :heavy_check_mark: | N/A | true | -| `BoolOpt` | **string* | :heavy_minus_sign: | N/A | true | -| `Date` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | -| `DateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `Decimal` | **string* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `DecimalStr` | **string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `Enum` | *string* | :heavy_check_mark: | N/A | one | -| `Float32` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `Int` | *string* | :heavy_check_mark: | N/A | 1 | -| `Int32` | *string* | :heavy_check_mark: | N/A | 1 | -| `Int32Enum` | *string* | :heavy_check_mark: | N/A | 55 | -| `IntEnum` | *string* | :heavy_check_mark: | N/A | 2 | -| `IntOptNull` | **string* | :heavy_minus_sign: | N/A | | -| `Num` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `NumOptNull` | **string* | :heavy_minus_sign: | N/A | | -| `ObjParam` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `Str` | *string* | :heavy_check_mark: | N/A | test | -| `StrOpt` | **string* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md b/go-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md index 3081017af..ab8110030 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md +++ b/go-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*FormQueryParamsObjectRes](../../models/operations/formqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.FormQueryParamsObjectRes](../../models/operations/formqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md b/go-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md new file mode 100755 index 000000000..b22d192cc --- /dev/null +++ b/go-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md @@ -0,0 +1,11 @@ +# FormQueryParamsPrimitiveArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `BoolParam` | *string* | :heavy_check_mark: | N/A | true | +| `IntParam` | *string* | :heavy_check_mark: | N/A | 1 | +| `NumParam` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `StrParam` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md b/go-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md index 110186628..9f18feaf5 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md +++ b/go-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -| `Args` | [FormQueryParamsPrimitiveResArgs](../../models/operations/formqueryparamsprimitiveresargs.md) | :heavy_check_mark: | N/A | | +| `Args` | [operations.FormQueryParamsPrimitiveArgs](../../models/operations/formqueryparamsprimitiveargs.md) | :heavy_check_mark: | N/A | | | `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/primitive?boolParam=true&intParam=1&numParam=1.1&strParam=test | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md b/go-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md deleted file mode 100755 index d12382fd6..000000000 --- a/go-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md +++ /dev/null @@ -1,11 +0,0 @@ -# FormQueryParamsPrimitiveResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `BoolParam` | *string* | :heavy_check_mark: | N/A | true | -| `IntParam` | *string* | :heavy_check_mark: | N/A | 1 | -| `NumParam` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `StrParam` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md b/go-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md index 7c4553d08..62e215745 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md +++ b/go-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*FormQueryParamsPrimitiveRes](../../models/operations/formqueryparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.FormQueryParamsPrimitiveRes](../../models/operations/formqueryparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md b/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md new file mode 100755 index 000000000..9dd1af44a --- /dev/null +++ b/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md @@ -0,0 +1,12 @@ +# FormQueryParamsRefParamObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | +| `Bool` | *string* | :heavy_check_mark: | N/A | true | +| `Int` | *string* | :heavy_check_mark: | N/A | 1 | +| `Num` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `RefObjParam` | *string* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | +| `Str` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md b/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md index d6a4ceec6..3a3091c6e 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md +++ b/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Args` | [FormQueryParamsRefParamObjectResArgs](../../models/operations/formqueryparamsrefparamobjectresargs.md) | :heavy_check_mark: | N/A | | +| `Args` | [operations.FormQueryParamsRefParamObjectArgs](../../models/operations/formqueryparamsrefparamobjectargs.md) | :heavy_check_mark: | N/A | | | `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/refParamObject?bool=true&int=1&num=1.1&refObjParam=bool%2Ctrue%2Cint%2C1%2Cnum%2C1.1%2Cstr%2Ctest&str=test | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md b/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md deleted file mode 100755 index d88bb5ad8..000000000 --- a/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md +++ /dev/null @@ -1,12 +0,0 @@ -# FormQueryParamsRefParamObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -| `Bool` | *string* | :heavy_check_mark: | N/A | true | -| `Int` | *string* | :heavy_check_mark: | N/A | 1 | -| `Num` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `RefObjParam` | *string* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | -| `Str` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md b/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md index 1f268f435..1fb561dbb 100755 --- a/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md +++ b/go-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*FormQueryParamsRefParamObjectRes](../../models/operations/formqueryparamsrefparamobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.FormQueryParamsRefParamObjectRes](../../models/operations/formqueryparamsrefparamobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md b/go-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md deleted file mode 100755 index f543bea31..000000000 --- a/go-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# GetGlobalNameOverride200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `JSON` | [*shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md b/go-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md index 7f4bb8f17..ae655f9d9 100755 --- a/go-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md +++ b/go-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `GetGlobalNameOverride200ApplicationJSONObject` | [*GetGlobalNameOverride200ApplicationJSON](../../models/operations/getglobalnameoverride200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.GetGlobalNameOverrideResponseBody](../../models/operations/getglobalnameoverrideresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md b/go-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md new file mode 100755 index 000000000..fc16cae9d --- /dev/null +++ b/go-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md @@ -0,0 +1,10 @@ +# GetGlobalNameOverrideResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `JSON` | [*shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/globalbearerauthresponse.md b/go-client-sdk/docs/models/operations/globalbearerauthresponse.md index 2162ecab7..3a524ecf8 100755 --- a/go-client-sdk/docs/models/operations/globalbearerauthresponse.md +++ b/go-client-sdk/docs/models/operations/globalbearerauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Token` | [*GlobalBearerAuthToken](../../models/operations/globalbearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Token` | [*operations.GlobalBearerAuthToken](../../models/operations/globalbearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/globalpathparametergetresponse.md b/go-client-sdk/docs/models/operations/globalpathparametergetresponse.md index b12031902..1c210c2e8 100755 --- a/go-client-sdk/docs/models/operations/globalpathparametergetresponse.md +++ b/go-client-sdk/docs/models/operations/globalpathparametergetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*GlobalPathParameterGetRes](../../models/operations/globalpathparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.GlobalPathParameterGetRes](../../models/operations/globalpathparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/globalsqueryparametergetres.md b/go-client-sdk/docs/models/operations/globalsqueryparametergetres.md index 7b4d5c85a..091e58afd 100755 --- a/go-client-sdk/docs/models/operations/globalsqueryparametergetres.md +++ b/go-client-sdk/docs/models/operations/globalsqueryparametergetres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `Args` | [GlobalsQueryParameterGetResArgs](../../models/operations/globalsqueryparametergetresargs.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | +| `Args` | [operations.Args](../../models/operations/args.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md b/go-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md deleted file mode 100755 index b91513df0..000000000 --- a/go-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# GlobalsQueryParameterGetResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `GlobalQueryParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md b/go-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md index e91fc8548..dbdfbb734 100755 --- a/go-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md +++ b/go-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*GlobalsQueryParameterGetRes](../../models/operations/globalsqueryparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.GlobalsQueryParameterGetRes](../../models/operations/globalsqueryparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsarrayres.md b/go-client-sdk/docs/models/operations/headerparamsarrayres.md index ab51206c3..14b2b46bf 100755 --- a/go-client-sdk/docs/models/operations/headerparamsarrayres.md +++ b/go-client-sdk/docs/models/operations/headerparamsarrayres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `Headers` | [HeaderParamsArrayResHeaders](../../models/operations/headerparamsarrayresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | +| `Headers` | [operations.Headers](../../models/operations/headers.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsarrayresheaders.md b/go-client-sdk/docs/models/operations/headerparamsarrayresheaders.md deleted file mode 100755 index fee659498..000000000 --- a/go-client-sdk/docs/models/operations/headerparamsarrayresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# HeaderParamsArrayResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `XHeaderArray` | *string* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsarrayresponse.md b/go-client-sdk/docs/models/operations/headerparamsarrayresponse.md index d5bb85a50..bd92148df 100755 --- a/go-client-sdk/docs/models/operations/headerparamsarrayresponse.md +++ b/go-client-sdk/docs/models/operations/headerparamsarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*HeaderParamsArrayRes](../../models/operations/headerparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.HeaderParamsArrayRes](../../models/operations/headerparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsmapheaders.md b/go-client-sdk/docs/models/operations/headerparamsmapheaders.md new file mode 100755 index 000000000..bd9b020bd --- /dev/null +++ b/go-client-sdk/docs/models/operations/headerparamsmapheaders.md @@ -0,0 +1,9 @@ +# HeaderParamsMapHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | +| `XHeaderMap` | *string* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | +| `XHeaderMapExplode` | *string* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsmapres.md b/go-client-sdk/docs/models/operations/headerparamsmapres.md index 82081e1cf..422ffd040 100755 --- a/go-client-sdk/docs/models/operations/headerparamsmapres.md +++ b/go-client-sdk/docs/models/operations/headerparamsmapres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `Headers` | [HeaderParamsMapResHeaders](../../models/operations/headerparamsmapresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `Headers` | [operations.HeaderParamsMapHeaders](../../models/operations/headerparamsmapheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsmapresheaders.md b/go-client-sdk/docs/models/operations/headerparamsmapresheaders.md deleted file mode 100755 index dcc67f174..000000000 --- a/go-client-sdk/docs/models/operations/headerparamsmapresheaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsMapResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | -| `XHeaderMap` | *string* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | -| `XHeaderMapExplode` | *string* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsmapresponse.md b/go-client-sdk/docs/models/operations/headerparamsmapresponse.md index 1e47b4b83..2b2cc877d 100755 --- a/go-client-sdk/docs/models/operations/headerparamsmapresponse.md +++ b/go-client-sdk/docs/models/operations/headerparamsmapresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*HeaderParamsMapRes](../../models/operations/headerparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.HeaderParamsMapRes](../../models/operations/headerparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsobjectheaders.md b/go-client-sdk/docs/models/operations/headerparamsobjectheaders.md new file mode 100755 index 000000000..3c2e2486d --- /dev/null +++ b/go-client-sdk/docs/models/operations/headerparamsobjectheaders.md @@ -0,0 +1,9 @@ +# HeaderParamsObjectHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `XHeaderObj` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `XHeaderObjExplode` | *string* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsobjectres.md b/go-client-sdk/docs/models/operations/headerparamsobjectres.md index e1f41b7cf..36ec2b761 100755 --- a/go-client-sdk/docs/models/operations/headerparamsobjectres.md +++ b/go-client-sdk/docs/models/operations/headerparamsobjectres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `Headers` | [HeaderParamsObjectResHeaders](../../models/operations/headerparamsobjectresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `Headers` | [operations.HeaderParamsObjectHeaders](../../models/operations/headerparamsobjectheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsobjectresheaders.md b/go-client-sdk/docs/models/operations/headerparamsobjectresheaders.md deleted file mode 100755 index 628a4a0c6..000000000 --- a/go-client-sdk/docs/models/operations/headerparamsobjectresheaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsObjectResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `XHeaderObj` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `XHeaderObjExplode` | *string* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsobjectresponse.md b/go-client-sdk/docs/models/operations/headerparamsobjectresponse.md index ab8eaf604..e6644a0e3 100755 --- a/go-client-sdk/docs/models/operations/headerparamsobjectresponse.md +++ b/go-client-sdk/docs/models/operations/headerparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*HeaderParamsObjectRes](../../models/operations/headerparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.HeaderParamsObjectRes](../../models/operations/headerparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md b/go-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md new file mode 100755 index 000000000..5288bc896 --- /dev/null +++ b/go-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md @@ -0,0 +1,11 @@ +# HeaderParamsPrimitiveHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `XHeaderBoolean` | *string* | :heavy_check_mark: | N/A | true | +| `XHeaderInteger` | *string* | :heavy_check_mark: | N/A | 1 | +| `XHeaderNumber` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `XHeaderString` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsprimitiveres.md b/go-client-sdk/docs/models/operations/headerparamsprimitiveres.md index 587b905b8..29777701d 100755 --- a/go-client-sdk/docs/models/operations/headerparamsprimitiveres.md +++ b/go-client-sdk/docs/models/operations/headerparamsprimitiveres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `Headers` | [HeaderParamsPrimitiveResHeaders](../../models/operations/headerparamsprimitiveresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `Headers` | [operations.HeaderParamsPrimitiveHeaders](../../models/operations/headerparamsprimitiveheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md b/go-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md deleted file mode 100755 index 30fbf6bf9..000000000 --- a/go-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md +++ /dev/null @@ -1,11 +0,0 @@ -# HeaderParamsPrimitiveResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `XHeaderBoolean` | *string* | :heavy_check_mark: | N/A | true | -| `XHeaderInteger` | *string* | :heavy_check_mark: | N/A | 1 | -| `XHeaderNumber` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `XHeaderString` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md b/go-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md index a85b1b707..83581c840 100755 --- a/go-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md +++ b/go-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*HeaderParamsPrimitiveRes](../../models/operations/headerparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.HeaderParamsPrimitiveRes](../../models/operations/headerparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/headers.md b/go-client-sdk/docs/models/operations/headers.md new file mode 100755 index 000000000..8cc07a81d --- /dev/null +++ b/go-client-sdk/docs/models/operations/headers.md @@ -0,0 +1,8 @@ +# Headers + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `XHeaderArray` | *string* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md b/go-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md deleted file mode 100755 index e29f271cf..000000000 --- a/go-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# IgnoredGenerationGet200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `JSON` | [*shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md b/go-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md index fd403a0b1..90020e250 100755 --- a/go-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md +++ b/go-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `IgnoredGenerationGet200ApplicationJSONObject` | [*IgnoredGenerationGet200ApplicationJSON](../../models/operations/ignoredgenerationget200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.IgnoredGenerationGetResponseBody](../../models/operations/ignoredgenerationgetresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md b/go-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md new file mode 100755 index 000000000..0b57b9ac1 --- /dev/null +++ b/go-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md @@ -0,0 +1,10 @@ +# IgnoredGenerationGetResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `JSON` | [*shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/ignorespostapplicationjson.md b/go-client-sdk/docs/models/operations/ignorespostapplicationjson.md deleted file mode 100755 index d3550fce9..000000000 --- a/go-client-sdk/docs/models/operations/ignorespostapplicationjson.md +++ /dev/null @@ -1,9 +0,0 @@ -# IgnoresPostApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `CallbackURL` | **string* | :heavy_minus_sign: | N/A | -| `TestProp` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/ignorespostrequest.md b/go-client-sdk/docs/models/operations/ignorespostrequest.md index c9d18efc8..23a95acfb 100755 --- a/go-client-sdk/docs/models/operations/ignorespostrequest.md +++ b/go-client-sdk/docs/models/operations/ignorespostrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `RequestBody` | [IgnoresPostApplicationJSON](../../models/operations/ignorespostapplicationjson.md) | :heavy_check_mark: | N/A | -| `TestParam` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `RequestBody` | [operations.IgnoresPostRequestBody](../../models/operations/ignorespostrequestbody.md) | :heavy_check_mark: | N/A | +| `TestParam` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/ignorespostrequestbody.md b/go-client-sdk/docs/models/operations/ignorespostrequestbody.md new file mode 100755 index 000000000..67bc9a2dc --- /dev/null +++ b/go-client-sdk/docs/models/operations/ignorespostrequestbody.md @@ -0,0 +1,9 @@ +# IgnoresPostRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `CallbackURL` | **string* | :heavy_minus_sign: | N/A | +| `TestProp` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md b/go-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md index 30d4fec37..033d92762 100755 --- a/go-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md +++ b/go-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `RequestBody` | [InlineBodyAndParamConflictRequestBody](../../models/operations/inlinebodyandparamconflictrequestbody.md) | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `RequestBody` | [operations.InlineBodyAndParamConflictRequestBody](../../models/operations/inlinebodyandparamconflictrequestbody.md) | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md b/go-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md index 1bee62639..912b9a66c 100755 --- a/go-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md +++ b/go-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `Args` | map[string]*string* | :heavy_check_mark: | N/A | -| `JSON` | [InlineBodyAndParamConflictResJSON](../../models/operations/inlinebodyandparamconflictresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | +| `Args` | map[string]*string* | :heavy_check_mark: | N/A | +| `JSON` | [operations.JSON](../../models/operations/json.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md b/go-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md deleted file mode 100755 index 4c07c826c..000000000 --- a/go-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamConflictResJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md b/go-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md index 5be885350..065c02e19 100755 --- a/go-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md +++ b/go-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*InlineBodyAndParamConflictRes](../../models/operations/inlinebodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.InlineBodyAndParamConflictRes](../../models/operations/inlinebodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md b/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md new file mode 100755 index 000000000..61d29c01e --- /dev/null +++ b/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md @@ -0,0 +1,8 @@ +# InlineBodyAndParamNoConflictJSON + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `BodyStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md b/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md index 4d1d8b5e1..0e36a45b5 100755 --- a/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md +++ b/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `RequestBody` | [InlineBodyAndParamNoConflictRequestBody](../../models/operations/inlinebodyandparamnoconflictrequestbody.md) | :heavy_check_mark: | N/A | -| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `RequestBody` | [operations.InlineBodyAndParamNoConflictRequestBody](../../models/operations/inlinebodyandparamnoconflictrequestbody.md) | :heavy_check_mark: | N/A | +| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md b/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md index fde1b620d..c63aa8762 100755 --- a/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md +++ b/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `Args` | map[string]*string* | :heavy_check_mark: | N/A | -| `JSON` | [InlineBodyAndParamNoConflictResJSON](../../models/operations/inlinebodyandparamnoconflictresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `Args` | map[string]*string* | :heavy_check_mark: | N/A | +| `JSON` | [operations.InlineBodyAndParamNoConflictJSON](../../models/operations/inlinebodyandparamnoconflictjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md b/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md deleted file mode 100755 index 6a29cfeb4..000000000 --- a/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamNoConflictResJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `BodyStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md b/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md index f74898ed2..39762776f 100755 --- a/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md +++ b/go-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*InlineBodyAndParamNoConflictRes](../../models/operations/inlinebodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.InlineBodyAndParamNoConflictRes](../../models/operations/inlinebodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/json.md b/go-client-sdk/docs/models/operations/json.md new file mode 100755 index 000000000..e70589b3e --- /dev/null +++ b/go-client-sdk/docs/models/operations/json.md @@ -0,0 +1,8 @@ +# JSON + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md b/go-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md new file mode 100755 index 000000000..0d353517b --- /dev/null +++ b/go-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md @@ -0,0 +1,9 @@ +# JSONQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `DeepObjParam` | *string* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | +| `SimpleObjParam` | *string* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md b/go-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md index f161fcb85..9e85ba2ec 100755 --- a/go-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md +++ b/go-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Args` | [JSONQueryParamsObjectResArgs](../../models/operations/jsonqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `Args` | [operations.JSONQueryParamsObjectArgs](../../models/operations/jsonqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/json/obj?deepObjParam={"any"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"arr"%3A[{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}]%2C"bool"%3Atrue%2C"int"%3A1%2C"map"%3A{"key"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"key2"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}}%2C"num"%3A1.1%2C"obj"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"str"%3A"test"}&simpleObjParam={"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"} | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md b/go-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md deleted file mode 100755 index 85a8d8d52..000000000 --- a/go-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# JSONQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `DeepObjParam` | *string* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | -| `SimpleObjParam` | *string* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md b/go-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md index 67756a881..918504fa3 100755 --- a/go-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md +++ b/go-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*JSONQueryParamsObjectRes](../../models/operations/jsonqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.JSONQueryParamsObjectRes](../../models/operations/jsonqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md b/go-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md new file mode 100755 index 000000000..f6ca7ea48 --- /dev/null +++ b/go-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md b/go-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md new file mode 100755 index 000000000..0cfb81a76 --- /dev/null +++ b/go-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `HeaderParam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md b/go-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md index 082b3748c..9da2e2394 100755 --- a/go-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md +++ b/go-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `Args` | [MixedParametersCamelCaseResArgs](../../models/operations/mixedparameterscamelcaseresargs.md) | :heavy_check_mark: | N/A | | -| `Headers` | [MixedParametersCamelCaseResHeaders](../../models/operations/mixedparameterscamelcaseresheaders.md) | :heavy_check_mark: | N/A | | -| `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `Args` | [operations.MixedParametersCamelCaseArgs](../../models/operations/mixedparameterscamelcaseargs.md) | :heavy_check_mark: | N/A | | +| `Headers` | [operations.MixedParametersCamelCaseHeaders](../../models/operations/mixedparameterscamelcaseheaders.md) | :heavy_check_mark: | N/A | | +| `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md b/go-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md deleted file mode 100755 index da70c1038..000000000 --- a/go-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md b/go-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md deleted file mode 100755 index 1250cc6c3..000000000 --- a/go-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `HeaderParam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md b/go-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md index b8991807e..0d1591877 100755 --- a/go-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md +++ b/go-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*MixedParametersCamelCaseRes](../../models/operations/mixedparameterscamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.MixedParametersCamelCaseRes](../../models/operations/mixedparameterscamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md b/go-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md new file mode 100755 index 000000000..fc9ec1810 --- /dev/null +++ b/go-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md b/go-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md new file mode 100755 index 000000000..40e4caa87 --- /dev/null +++ b/go-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `Headerparam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparametersprimitivesres.md b/go-client-sdk/docs/models/operations/mixedparametersprimitivesres.md index 1b2ba294b..4a8d92cff 100755 --- a/go-client-sdk/docs/models/operations/mixedparametersprimitivesres.md +++ b/go-client-sdk/docs/models/operations/mixedparametersprimitivesres.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `Args` | [MixedParametersPrimitivesResArgs](../../models/operations/mixedparametersprimitivesresargs.md) | :heavy_check_mark: | N/A | | -| `Headers` | [MixedParametersPrimitivesResHeaders](../../models/operations/mixedparametersprimitivesresheaders.md) | :heavy_check_mark: | N/A | | -| `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `Args` | [operations.MixedParametersPrimitivesArgs](../../models/operations/mixedparametersprimitivesargs.md) | :heavy_check_mark: | N/A | | +| `Headers` | [operations.MixedParametersPrimitivesHeaders](../../models/operations/mixedparametersprimitivesheaders.md) | :heavy_check_mark: | N/A | | +| `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md b/go-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md deleted file mode 100755 index cca52b129..000000000 --- a/go-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md b/go-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md deleted file mode 100755 index ebf450068..000000000 --- a/go-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `Headerparam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md b/go-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md index 2512eb1b1..bfbaa49a4 100755 --- a/go-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md +++ b/go-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*MixedParametersPrimitivesRes](../../models/operations/mixedparametersprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.MixedParametersPrimitivesRes](../../models/operations/mixedparametersprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedqueryparamsresponse.md b/go-client-sdk/docs/models/operations/mixedqueryparamsresponse.md index ec83f83ab..fa62f13e2 100755 --- a/go-client-sdk/docs/models/operations/mixedqueryparamsresponse.md +++ b/go-client-sdk/docs/models/operations/mixedqueryparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*MixedQueryParamsRes](../../models/operations/mixedqueryparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.MixedQueryParamsRes](../../models/operations/mixedqueryparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedtypeoneofpostjson.md b/go-client-sdk/docs/models/operations/mixedtypeoneofpostjson.md new file mode 100755 index 000000000..61cf3bfa0 --- /dev/null +++ b/go-client-sdk/docs/models/operations/mixedtypeoneofpostjson.md @@ -0,0 +1,23 @@ +# MixedTypeOneOfPostJSON + + +## Supported Types + +### + +```go +mixedTypeOneOfPostJSON := operations.CreateMixedTypeOneOfPostJSONStr(string{/* values here */}) +``` + +### + +```go +mixedTypeOneOfPostJSON := operations.CreateMixedTypeOneOfPostJSONInteger(int64{/* values here */}) +``` + +### SimpleObject + +```go +mixedTypeOneOfPostJSON := operations.CreateMixedTypeOneOfPostJSONSimpleObject(shared.SimpleObject{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/operations/mixedtypeoneofpostres.md b/go-client-sdk/docs/models/operations/mixedtypeoneofpostres.md index 728a7f057..868ca2faa 100755 --- a/go-client-sdk/docs/models/operations/mixedtypeoneofpostres.md +++ b/go-client-sdk/docs/models/operations/mixedtypeoneofpostres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `JSON` | [MixedTypeOneOfPostResJSON](../../models/operations/mixedtypeoneofpostresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `JSON` | [operations.MixedTypeOneOfPostJSON](../../models/operations/mixedtypeoneofpostjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/mixedtypeoneofpostresjson.md b/go-client-sdk/docs/models/operations/mixedtypeoneofpostresjson.md deleted file mode 100755 index aba12b615..000000000 --- a/go-client-sdk/docs/models/operations/mixedtypeoneofpostresjson.md +++ /dev/null @@ -1,23 +0,0 @@ -# MixedTypeOneOfPostResJSON - - -## Supported Types - -### - -```go -mixedTypeOneOfPostResJSON := operations.CreateMixedTypeOneOfPostResJSONStr(string{/* values here */}) -``` - -### - -```go -mixedTypeOneOfPostResJSON := operations.CreateMixedTypeOneOfPostResJSONInteger(int64{/* values here */}) -``` - -### SimpleObject - -```go -mixedTypeOneOfPostResJSON := operations.CreateMixedTypeOneOfPostResJSONSimpleObject(shared.SimpleObject{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md b/go-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md index 8ada6905b..209382a94 100755 --- a/go-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md +++ b/go-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*MixedTypeOneOfPostRes](../../models/operations/mixedtypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.MixedTypeOneOfPostRes](../../models/operations/mixedtypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md b/go-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md index f59da1a1e..08f14b4cf 100755 --- a/go-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md +++ b/go-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | -| `Option1` | [*MultipleOptionsWithMixedSchemesAuthSecurityOption1](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | -| `Option2` | [*MultipleOptionsWithMixedSchemesAuthSecurityOption2](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | +| `Option1` | [*operations.MultipleOptionsWithMixedSchemesAuthSecurityOption1](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | +| `Option2` | [*operations.MultipleOptionsWithMixedSchemesAuthSecurityOption2](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md b/go-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md index ce2c8a277..95ece3b5c 100755 --- a/go-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md +++ b/go-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -| `Option1` | [*MultipleOptionsWithSimpleSchemesAuthSecurityOption1](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | -| `Option2` | [*MultipleOptionsWithSimpleSchemesAuthSecurityOption2](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | +| `Option1` | [*operations.MultipleOptionsWithSimpleSchemesAuthSecurityOption1](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | +| `Option2` | [*operations.MultipleOptionsWithSimpleSchemesAuthSecurityOption2](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md b/go-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md deleted file mode 100755 index 07b50daf1..000000000 --- a/go-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md +++ /dev/null @@ -1,12 +0,0 @@ -# NameOverrideGetEnumNameOverride - -An enum type - - -## Values - -| Name | Value | -| --------------------------------------- | --------------------------------------- | -| `NameOverrideGetEnumNameOverrideValue1` | value1 | -| `NameOverrideGetEnumNameOverrideValue2` | value2 | -| `NameOverrideGetEnumNameOverrideValue3` | value3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md b/go-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md new file mode 100755 index 000000000..fc9531b18 --- /dev/null +++ b/go-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md @@ -0,0 +1,10 @@ +# NameOverrideGetOverriddenResponse + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `JSON` | [*shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nameoverridegetrequest.md b/go-client-sdk/docs/models/operations/nameoverridegetrequest.md index 934e4d835..ec67dab65 100755 --- a/go-client-sdk/docs/models/operations/nameoverridegetrequest.md +++ b/go-client-sdk/docs/models/operations/nameoverridegetrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `TestEnumQueryParam` | [NameOverrideGetEnumNameOverride](../../models/operations/nameoverridegetenumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | -| `TestQueryParam` | *string* | :heavy_check_mark: | N/A | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `TestEnumQueryParam` | [operations.EnumNameOverride](../../models/operations/enumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | +| `TestQueryParam` | *string* | :heavy_check_mark: | N/A | example | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nameoverridegetresponse.md b/go-client-sdk/docs/models/operations/nameoverridegetresponse.md index ee9835f45..4e7ecf89d 100755 --- a/go-client-sdk/docs/models/operations/nameoverridegetresponse.md +++ b/go-client-sdk/docs/models/operations/nameoverridegetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `OverriddenResponse` | [*OverriddenResponse](../../models/operations/overriddenresponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `OverriddenResponse` | [*operations.NameOverrideGetOverriddenResponse](../../models/operations/nameoverridegetoverriddenresponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullableobjectpostresponse.md b/go-client-sdk/docs/models/operations/nullableobjectpostresponse.md index e14b390cd..46119e01f 100755 --- a/go-client-sdk/docs/models/operations/nullableobjectpostresponse.md +++ b/go-client-sdk/docs/models/operations/nullableobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*NullableObjectPostRes](../../models/operations/nullableobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.NullableObjectPostRes](../../models/operations/nullableobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md b/go-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md index 607556d4c..2d7a13781 100755 --- a/go-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md +++ b/go-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*NullableOneOfRefInObjectPostRes](../../models/operations/nullableoneofrefinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.NullableOneOfRefInObjectPostRes](../../models/operations/nullableoneofrefinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullableoneofschemapostjson.md b/go-client-sdk/docs/models/operations/nullableoneofschemapostjson.md new file mode 100755 index 000000000..69d080a35 --- /dev/null +++ b/go-client-sdk/docs/models/operations/nullableoneofschemapostjson.md @@ -0,0 +1,17 @@ +# NullableOneOfSchemaPostJSON + + +## Supported Types + +### TypedObject1 + +```go +nullableOneOfSchemaPostJSON := operations.CreateNullableOneOfSchemaPostJSONTypedObject1(shared.TypedObject1{/* values here */}) +``` + +### TypedObject2 + +```go +nullableOneOfSchemaPostJSON := operations.CreateNullableOneOfSchemaPostJSONTypedObject2(shared.TypedObject2{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/operations/nullableoneofschemapostres.md b/go-client-sdk/docs/models/operations/nullableoneofschemapostres.md index 2f30ebba3..4881982c3 100755 --- a/go-client-sdk/docs/models/operations/nullableoneofschemapostres.md +++ b/go-client-sdk/docs/models/operations/nullableoneofschemapostres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `JSON` | [NullableOneOfSchemaPostResJSON](../../models/operations/nullableoneofschemapostresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `JSON` | [operations.NullableOneOfSchemaPostJSON](../../models/operations/nullableoneofschemapostjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullableoneofschemapostresjson.md b/go-client-sdk/docs/models/operations/nullableoneofschemapostresjson.md deleted file mode 100755 index debd1a1ee..000000000 --- a/go-client-sdk/docs/models/operations/nullableoneofschemapostresjson.md +++ /dev/null @@ -1,17 +0,0 @@ -# NullableOneOfSchemaPostResJSON - - -## Supported Types - -### TypedObject1 - -```go -nullableOneOfSchemaPostResJSON := operations.CreateNullableOneOfSchemaPostResJSONTypedObject1(shared.TypedObject1{/* values here */}) -``` - -### TypedObject2 - -```go -nullableOneOfSchemaPostResJSON := operations.CreateNullableOneOfSchemaPostResJSONTypedObject2(shared.TypedObject2{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md b/go-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md index 670fd2495..195041095 100755 --- a/go-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md +++ b/go-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*NullableOneOfSchemaPostRes](../../models/operations/nullableoneofschemapostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.NullableOneOfSchemaPostRes](../../models/operations/nullableoneofschemapostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md b/go-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md index d5c9faeaa..30c2c983a 100755 --- a/go-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md +++ b/go-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*NullableOneOfTypeInObjectPostRes](../../models/operations/nullableoneoftypeinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.NullableOneOfTypeInObjectPostRes](../../models/operations/nullableoneoftypeinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullableoptionalobj.md b/go-client-sdk/docs/models/operations/nullableoptionalobj.md new file mode 100755 index 000000000..a4e5f26bb --- /dev/null +++ b/go-client-sdk/docs/models/operations/nullableoptionalobj.md @@ -0,0 +1,7 @@ +# NullableOptionalObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md b/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md index c05c83875..2cdea9071 100755 --- a/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md +++ b/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `NullableOptionalObj` | [*NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj](../../models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md) | :heavy_minus_sign: | N/A | -| `NullableRequiredObj` | [NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj](../../models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md) | :heavy_check_mark: | N/A | -| `RequiredObj` | [NullableRequiredEmptyObjectPostRequestBodyRequiredObj](../../models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | +| `NullableOptionalObj` | [*operations.NullableOptionalObj](../../models/operations/nullableoptionalobj.md) | :heavy_minus_sign: | N/A | +| `NullableRequiredObj` | [operations.NullableRequiredObj](../../models/operations/nullablerequiredobj.md) | :heavy_check_mark: | N/A | +| `RequiredObj` | [operations.RequiredObj](../../models/operations/requiredobj.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md b/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md deleted file mode 100755 index 4bd625eb3..000000000 --- a/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md b/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md deleted file mode 100755 index f5a542eea..000000000 --- a/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md b/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md deleted file mode 100755 index 20a807232..000000000 --- a/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md b/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md index fa6f5c47b..60ec244f9 100755 --- a/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md +++ b/go-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `NullableRequiredEmptyObjectPost200ApplicationJSONString` | **string* | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | **string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullablerequiredenum.md b/go-client-sdk/docs/models/operations/nullablerequiredenum.md new file mode 100755 index 000000000..01d47408d --- /dev/null +++ b/go-client-sdk/docs/models/operations/nullablerequiredenum.md @@ -0,0 +1,9 @@ +# NullableRequiredEnum + + +## Values + +| Name | Value | +| ---------------------------- | ---------------------------- | +| `NullableRequiredEnumFirst` | first | +| `NullableRequiredEnumSecond` | second | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullablerequiredobj.md b/go-client-sdk/docs/models/operations/nullablerequiredobj.md new file mode 100755 index 000000000..b1e3ab8c2 --- /dev/null +++ b/go-client-sdk/docs/models/operations/nullablerequiredobj.md @@ -0,0 +1,7 @@ +# NullableRequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md b/go-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md index a149130c3..91bec1afa 100755 --- a/go-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md +++ b/go-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -| `NullableOptionalInt` | **int64* | :heavy_minus_sign: | N/A | -| `NullableRequiredArray` | []*float64* | :heavy_check_mark: | N/A | -| `NullableRequiredEnum` | [NullableRequiredPropertyPostRequestBodyNullableRequiredEnum](../../models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md) | :heavy_check_mark: | N/A | -| `NullableRequiredInt` | *int64* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `NullableOptionalInt` | **int64* | :heavy_minus_sign: | N/A | +| `NullableRequiredArray` | []*float64* | :heavy_check_mark: | N/A | +| `NullableRequiredEnum` | [operations.NullableRequiredEnum](../../models/operations/nullablerequiredenum.md) | :heavy_check_mark: | N/A | +| `NullableRequiredInt` | *int64* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md b/go-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md deleted file mode 100755 index 4a2f88be4..000000000 --- a/go-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md +++ /dev/null @@ -1,9 +0,0 @@ -# NullableRequiredPropertyPostRequestBodyNullableRequiredEnum - - -## Values - -| Name | Value | -| ------------------------------------------------------------------- | ------------------------------------------------------------------- | -| `NullableRequiredPropertyPostRequestBodyNullableRequiredEnumFirst` | first | -| `NullableRequiredPropertyPostRequestBodyNullableRequiredEnumSecond` | second | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md b/go-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md index 0e12eae6e..52772871c 100755 --- a/go-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md +++ b/go-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `NullableRequiredPropertyPost200ApplicationJSONString` | **string* | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | **string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md b/go-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md index 990cacb61..226cd01f4 100755 --- a/go-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md +++ b/go-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `NullableRequiredSharedObjectPost200ApplicationJSONString` | **string* | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | **string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md b/go-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md index 0d4b175e3..f4dd69c70 100755 --- a/go-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md +++ b/go-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*NullableTypedObjectPostRes](../../models/operations/nullabletypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.NullableTypedObjectPostRes](../../models/operations/nullabletypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/oauth2authresponse.md b/go-client-sdk/docs/models/operations/oauth2authresponse.md index 1359a5f06..76fefbcea 100755 --- a/go-client-sdk/docs/models/operations/oauth2authresponse.md +++ b/go-client-sdk/docs/models/operations/oauth2authresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Token` | [*Oauth2AuthToken](../../models/operations/oauth2authtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Token` | [*operations.Oauth2AuthToken](../../models/operations/oauth2authtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/oauth2overrideresponse.md b/go-client-sdk/docs/models/operations/oauth2overrideresponse.md index bf31ac49e..d6cf9f05e 100755 --- a/go-client-sdk/docs/models/operations/oauth2overrideresponse.md +++ b/go-client-sdk/docs/models/operations/oauth2overrideresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Token` | [*Oauth2OverrideToken](../../models/operations/oauth2overridetoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Token` | [*operations.Oauth2OverrideToken](../../models/operations/oauth2overridetoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/obj.md b/go-client-sdk/docs/models/operations/obj.md new file mode 100755 index 000000000..aa35eb92f --- /dev/null +++ b/go-client-sdk/docs/models/operations/obj.md @@ -0,0 +1,10 @@ +# Obj + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool` | *bool* | :heavy_check_mark: | N/A | +| `Num` | *float64* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/objarrparam.md b/go-client-sdk/docs/models/operations/objarrparam.md new file mode 100755 index 000000000..2fb670954 --- /dev/null +++ b/go-client-sdk/docs/models/operations/objarrparam.md @@ -0,0 +1,8 @@ +# ObjArrParam + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Arr` | []*string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/objparam.md b/go-client-sdk/docs/models/operations/objparam.md new file mode 100755 index 000000000..ae16c0116 --- /dev/null +++ b/go-client-sdk/docs/models/operations/objparam.md @@ -0,0 +1,9 @@ +# ObjParam + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `EncodedCount` | **string* | :heavy_minus_sign: | N/A | 11 | +| `EncodedTerm` | **string* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/objparamexploded.md b/go-client-sdk/docs/models/operations/objparamexploded.md new file mode 100755 index 000000000..532e89ccb --- /dev/null +++ b/go-client-sdk/docs/models/operations/objparamexploded.md @@ -0,0 +1,9 @@ +# ObjParamExploded + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `ItemCount` | **string* | :heavy_minus_sign: | N/A | 10 | +| `SearchTerm` | **string* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/openidconnectauthresponse.md b/go-client-sdk/docs/models/operations/openidconnectauthresponse.md index 93e7011e9..805f98902 100755 --- a/go-client-sdk/docs/models/operations/openidconnectauthresponse.md +++ b/go-client-sdk/docs/models/operations/openidconnectauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Token` | [*OpenIDConnectAuthToken](../../models/operations/openidconnectauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Token` | [*operations.OpenIDConnectAuthToken](../../models/operations/openidconnectauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/optenumparameter.md b/go-client-sdk/docs/models/operations/optenumparameter.md new file mode 100755 index 000000000..d1d3e014a --- /dev/null +++ b/go-client-sdk/docs/models/operations/optenumparameter.md @@ -0,0 +1,12 @@ +# OptEnumParameter + +An enum type + + +## Values + +| Name | Value | +| ------------------------ | ------------------------ | +| `OptEnumParameterValue1` | value1 | +| `OptEnumParameterValue2` | value2 | +| `OptEnumParameterValue3` | value3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/overriddenresponse.md b/go-client-sdk/docs/models/operations/overriddenresponse.md deleted file mode 100755 index a3ab1617d..000000000 --- a/go-client-sdk/docs/models/operations/overriddenresponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# OverriddenResponse - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `JSON` | [*shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/paginationcursorbodyresponse.md b/go-client-sdk/docs/models/operations/paginationcursorbodyresponse.md index 9a1154cba..4f0328f51 100755 --- a/go-client-sdk/docs/models/operations/paginationcursorbodyresponse.md +++ b/go-client-sdk/docs/models/operations/paginationcursorbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*PaginationCursorBodyRes](../../models/operations/paginationcursorbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.PaginationCursorBodyRes](../../models/operations/paginationcursorbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/paginationcursorparamsresponse.md b/go-client-sdk/docs/models/operations/paginationcursorparamsresponse.md index 62aa45a3e..490827173 100755 --- a/go-client-sdk/docs/models/operations/paginationcursorparamsresponse.md +++ b/go-client-sdk/docs/models/operations/paginationcursorparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*PaginationCursorParamsRes](../../models/operations/paginationcursorparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.PaginationCursorParamsRes](../../models/operations/paginationcursorparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md b/go-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md index 6780b36fc..9f30a0115 100755 --- a/go-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md +++ b/go-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*PaginationLimitOffsetOffsetBodyRes](../../models/operations/paginationlimitoffsetoffsetbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.PaginationLimitOffsetOffsetBodyRes](../../models/operations/paginationlimitoffsetoffsetbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md b/go-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md index b8b9e1ca8..69043329d 100755 --- a/go-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md +++ b/go-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*PaginationLimitOffsetOffsetParamsRes](../../models/operations/paginationlimitoffsetoffsetparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.PaginationLimitOffsetOffsetParamsRes](../../models/operations/paginationlimitoffsetoffsetparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md b/go-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md index 1d94582e1..28ce8754c 100755 --- a/go-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md +++ b/go-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*PaginationLimitOffsetPageBodyRes](../../models/operations/paginationlimitoffsetpagebodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.PaginationLimitOffsetPageBodyRes](../../models/operations/paginationlimitoffsetpagebodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md b/go-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md index 96215252c..e446edd18 100755 --- a/go-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md +++ b/go-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*PaginationLimitOffsetPageParamsRes](../../models/operations/paginationlimitoffsetpageparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.PaginationLimitOffsetPageParamsRes](../../models/operations/paginationlimitoffsetpageparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/pathparameterjsonresponse.md b/go-client-sdk/docs/models/operations/pathparameterjsonresponse.md index 517f3c054..24998a992 100755 --- a/go-client-sdk/docs/models/operations/pathparameterjsonresponse.md +++ b/go-client-sdk/docs/models/operations/pathparameterjsonresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*PathParameterJSONRes](../../models/operations/pathparameterjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.PathParameterJSONRes](../../models/operations/pathparameterjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md b/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md new file mode 100755 index 000000000..4e7871ac0 --- /dev/null +++ b/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md @@ -0,0 +1,9 @@ +# PipeDelimitedQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `ArrParam` | *string* | :heavy_check_mark: | N/A | test\|test2 | +| `ArrParamExploded` | []*string* | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md b/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md index 08c6e56a9..abdcc3125 100755 --- a/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md +++ b/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `Args` | [PipeDelimitedQueryParamsArrayResArgs](../../models/operations/pipedelimitedqueryparamsarrayresargs.md) | :heavy_check_mark: | N/A | | +| `Args` | [operations.PipeDelimitedQueryParamsArrayArgs](../../models/operations/pipedelimitedqueryparamsarrayargs.md) | :heavy_check_mark: | N/A | | | `URL` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/pipe/array?arrParam=test\|test2&arrParamExploded=1&arrParamExploded=2&mapParam=key1\|val1\|key2\|val2&objParam=any\|any\|bigint\|8821239038968084\|bigintStr\|9223372036854775808\|bool\|true\|boolOpt\|true\|date\|2020-01-01\|dateTime\|2020-01-01T00%3A00%3A00.000000001Z\|decimal\|3.141592653589793\|decimalStr\|3.14159265358979344719667586\|enum\|one\|float32\|1.1\|int\|1\|int32\|1\|int32Enum\|55\|intEnum\|2\|num\|1.1\|str\|test\|strOpt\|testOptional | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md b/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md deleted file mode 100755 index c4d0b8489..000000000 --- a/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# PipeDelimitedQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `ArrParam` | *string* | :heavy_check_mark: | N/A | test\|test2 | -| `ArrParamExploded` | []*string* | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md b/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md index 89b2bc8de..0bf997669 100755 --- a/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md +++ b/go-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*PipeDelimitedQueryParamsArrayRes](../../models/operations/pipedelimitedqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.PipeDelimitedQueryParamsArrayRes](../../models/operations/pipedelimitedqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/primitivetypeoneofpostjson.md b/go-client-sdk/docs/models/operations/primitivetypeoneofpostjson.md new file mode 100755 index 000000000..4daca5ed0 --- /dev/null +++ b/go-client-sdk/docs/models/operations/primitivetypeoneofpostjson.md @@ -0,0 +1,29 @@ +# PrimitiveTypeOneOfPostJSON + + +## Supported Types + +### + +```go +primitiveTypeOneOfPostJSON := operations.CreatePrimitiveTypeOneOfPostJSONStr(string{/* values here */}) +``` + +### + +```go +primitiveTypeOneOfPostJSON := operations.CreatePrimitiveTypeOneOfPostJSONInteger(int64{/* values here */}) +``` + +### + +```go +primitiveTypeOneOfPostJSON := operations.CreatePrimitiveTypeOneOfPostJSONNumber(float64{/* values here */}) +``` + +### + +```go +primitiveTypeOneOfPostJSON := operations.CreatePrimitiveTypeOneOfPostJSONBoolean(bool{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/operations/primitivetypeoneofpostres.md b/go-client-sdk/docs/models/operations/primitivetypeoneofpostres.md index 62a042054..5e9fe447e 100755 --- a/go-client-sdk/docs/models/operations/primitivetypeoneofpostres.md +++ b/go-client-sdk/docs/models/operations/primitivetypeoneofpostres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `JSON` | [PrimitiveTypeOneOfPostResJSON](../../models/operations/primitivetypeoneofpostresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `JSON` | [operations.PrimitiveTypeOneOfPostJSON](../../models/operations/primitivetypeoneofpostjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/primitivetypeoneofpostresjson.md b/go-client-sdk/docs/models/operations/primitivetypeoneofpostresjson.md deleted file mode 100755 index 94d6f075d..000000000 --- a/go-client-sdk/docs/models/operations/primitivetypeoneofpostresjson.md +++ /dev/null @@ -1,29 +0,0 @@ -# PrimitiveTypeOneOfPostResJSON - - -## Supported Types - -### - -```go -primitiveTypeOneOfPostResJSON := operations.CreatePrimitiveTypeOneOfPostResJSONStr(string{/* values here */}) -``` - -### - -```go -primitiveTypeOneOfPostResJSON := operations.CreatePrimitiveTypeOneOfPostResJSONInteger(int64{/* values here */}) -``` - -### - -```go -primitiveTypeOneOfPostResJSON := operations.CreatePrimitiveTypeOneOfPostResJSONNumber(float64{/* values here */}) -``` - -### - -```go -primitiveTypeOneOfPostResJSON := operations.CreatePrimitiveTypeOneOfPostResJSONBoolean(bool{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md b/go-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md index 726f4aa17..117b6cf9e 100755 --- a/go-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md +++ b/go-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*PrimitiveTypeOneOfPostRes](../../models/operations/primitivetypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.PrimitiveTypeOneOfPostRes](../../models/operations/primitivetypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md b/go-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md deleted file mode 100755 index da75a718d..000000000 --- a/go-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# PutAnythingIgnoredGeneration200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `JSON` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md b/go-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md index b7455eeeb..b49c174b8 100755 --- a/go-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md +++ b/go-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `PutAnythingIgnoredGeneration200ApplicationJSONObject` | [*PutAnythingIgnoredGeneration200ApplicationJSON](../../models/operations/putanythingignoredgeneration200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.PutAnythingIgnoredGenerationResponseBody](../../models/operations/putanythingignoredgenerationresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md b/go-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md new file mode 100755 index 000000000..381cd2ff8 --- /dev/null +++ b/go-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md @@ -0,0 +1,10 @@ +# PutAnythingIgnoredGenerationResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `JSON` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md index 10fcf86b7..bafdd1758 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `SimpleObjectCamelCases` | [][shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | [][shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md index c01d45520..b76df78ac 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Arrs` | [][][shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | [][][shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md index 785a57232..dd4ff77f4 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Arrs` | [][]*string* | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | [][]*string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md index 91522ca55..626a4c090 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Arrs` | [][][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | [][][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md index 6cd2d075d..45e234785 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Maps` | []map[string][shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | []map[string][shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md index 8e70bddcc..e6f625f11 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Maps` | []map[string][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | []map[string][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md index 768c3af13..984bf9360 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Strings` | []*string* | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | []*string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md index 33b94f9d9..864a82897 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md @@ -8,4 +8,4 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `SimpleObjects` | [][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `Res` | [][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md index 0d1bc042e..9bf04651d 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostApplicationJSONDeepCamelCaseRes](../../models/operations/requestbodypostapplicationjsondeepcamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostApplicationJSONDeepCamelCaseRes](../../models/operations/requestbodypostapplicationjsondeepcamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md index ecd1057c3..4d926eced 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostApplicationJSONDeepRes](../../models/operations/requestbodypostapplicationjsondeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostApplicationJSONDeepRes](../../models/operations/requestbodypostapplicationjsondeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md index 5b3b0a12f..b0a68b8b2 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostApplicationJSONMultipleJSONFilteredRes](../../models/operations/requestbodypostapplicationjsonmultiplejsonfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostApplicationJSONMultipleJSONFilteredRes](../../models/operations/requestbodypostapplicationjsonmultiplejsonfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md index f55be18e3..3b1ab20ad 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostApplicationJSONSimpleCamelCaseRes](../../models/operations/requestbodypostapplicationjsonsimplecamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostApplicationJSONSimpleCamelCaseRes](../../models/operations/requestbodypostapplicationjsonsimplecamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md index 8510d1c62..3fecfd1c5 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostApplicationJSONSimpleRes](../../models/operations/requestbodypostapplicationjsonsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostApplicationJSONSimpleRes](../../models/operations/requestbodypostapplicationjsonsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md deleted file mode 100755 index 56f590796..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostComplexNumberTypes200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | -| `JSON` | [shared.ComplexNumberTypes](../../models/shared/complexnumbertypes.md) | :heavy_check_mark: | N/A | -| `URL` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md b/go-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md index 839050f09..3f4469d70 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostComplexNumberTypes200ApplicationJSONObject` | [*RequestBodyPostComplexNumberTypes200ApplicationJSON](../../models/operations/requestbodypostcomplexnumbertypes200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostComplexNumberTypesResponseBody](../../models/operations/requestbodypostcomplexnumbertypesresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md new file mode 100755 index 000000000..5b35763e8 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostComplexNumberTypesResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | +| `JSON` | [shared.ComplexNumberTypes](../../models/shared/complexnumbertypes.md) | :heavy_check_mark: | N/A | +| `URL` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md deleted file mode 100755 index 2de70ae2d..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostDefaultsAndConsts200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -| `JSON` | [shared.DefaultsAndConstsOutput](../../models/shared/defaultsandconstsoutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md b/go-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md index 653c38c71..8742e980a 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostDefaultsAndConsts200ApplicationJSONObject` | [*RequestBodyPostDefaultsAndConsts200ApplicationJSON](../../models/operations/requestbodypostdefaultsandconsts200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostDefaultsAndConstsResponseBody](../../models/operations/requestbodypostdefaultsandconstsresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md new file mode 100755 index 000000000..1e43619b5 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostDefaultsAndConstsResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | +| `JSON` | [shared.DefaultsAndConstsOutput](../../models/shared/defaultsandconstsoutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md deleted file mode 100755 index f4341325f..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `Empty` | [*RequestBodyPostEmptyObject200ApplicationJSONEmpty](../../models/operations/requestbodypostemptyobject200applicationjsonempty.md) | :heavy_minus_sign: | N/A | -| `EmptyRespWithEmptyProperies` | [*RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies](../../models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md b/go-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md deleted file mode 100755 index 6248bf538..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md b/go-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md deleted file mode 100755 index 27326d373..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md b/go-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md new file mode 100755 index 000000000..7624b0484 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md @@ -0,0 +1,7 @@ +# RequestBodyPostEmptyObjectEmpty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md b/go-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md index 3154377aa..0d9c5b797 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md +++ b/go-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Empty` | [*RequestBodyPostEmptyObjectRequestBodyEmpty](../../models/operations/requestbodypostemptyobjectrequestbodyempty.md) | :heavy_minus_sign: | N/A | -| `EmptyWithEmptyProperties` | [*RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties](../../models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | +| `Empty` | [*operations.Empty](../../models/operations/empty.md) | :heavy_minus_sign: | N/A | +| `EmptyWithEmptyProperties` | [*operations.EmptyWithEmptyProperties](../../models/operations/emptywithemptyproperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md b/go-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md deleted file mode 100755 index 60e906506..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md b/go-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md deleted file mode 100755 index 66bb29b41..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md b/go-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md index fb11c8eab..591b9a01b 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostEmptyObject200ApplicationJSONObject` | [*RequestBodyPostEmptyObject200ApplicationJSON](../../models/operations/requestbodypostemptyobject200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostEmptyObjectResponseBody](../../models/operations/requestbodypostemptyobjectresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md new file mode 100755 index 000000000..39b59bfc1 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostEmptyObjectResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | +| `Empty` | [*operations.RequestBodyPostEmptyObjectEmpty](../../models/operations/requestbodypostemptyobjectempty.md) | :heavy_minus_sign: | N/A | +| `EmptyRespWithEmptyProperies` | [*operations.EmptyRespWithEmptyProperies](../../models/operations/emptyrespwithemptyproperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostformdeepres.md b/go-client-sdk/docs/models/operations/requestbodypostformdeepres.md index 50ae577dc..4725aa60e 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostformdeepres.md +++ b/go-client-sdk/docs/models/operations/requestbodypostformdeepres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `Form` | [RequestBodyPostFormDeepResForm](../../models/operations/requestbodypostformdeepresform.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | +| `Form` | [operations.Form](../../models/operations/form.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostformdeepresform.md b/go-client-sdk/docs/models/operations/requestbodypostformdeepresform.md deleted file mode 100755 index 21eb1ad96..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostformdeepresform.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPostFormDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Arr` | *string* | :heavy_check_mark: | N/A | -| `Bool` | *string* | :heavy_check_mark: | N/A | -| `Int` | *string* | :heavy_check_mark: | N/A | -| `Map` | *string* | :heavy_check_mark: | N/A | -| `Num` | *string* | :heavy_check_mark: | N/A | -| `Obj` | *string* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md b/go-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md index 0c8d99bca..d04b368ad 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostFormDeepRes](../../models/operations/requestbodypostformdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostFormDeepRes](../../models/operations/requestbodypostformdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md b/go-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md index ab3b1323e..096274497 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostFormMapPrimitiveRes](../../models/operations/requestbodypostformmapprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostFormMapPrimitiveRes](../../models/operations/requestbodypostformmapprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostformsimpleform.md b/go-client-sdk/docs/models/operations/requestbodypostformsimpleform.md new file mode 100755 index 000000000..fc434bd4d --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostformsimpleform.md @@ -0,0 +1,21 @@ +# RequestBodyPostFormSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Any` | *string* | :heavy_check_mark: | N/A | +| `Bool` | *string* | :heavy_check_mark: | N/A | +| `BoolOpt` | **string* | :heavy_minus_sign: | N/A | +| `Date` | *string* | :heavy_check_mark: | N/A | +| `DateTime` | *string* | :heavy_check_mark: | N/A | +| `Enum` | *string* | :heavy_check_mark: | N/A | +| `Float32` | *string* | :heavy_check_mark: | N/A | +| `Int` | *string* | :heavy_check_mark: | N/A | +| `Int32` | *string* | :heavy_check_mark: | N/A | +| `IntOptNull` | **string* | :heavy_minus_sign: | N/A | +| `Num` | *string* | :heavy_check_mark: | N/A | +| `NumOptNull` | **string* | :heavy_minus_sign: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | +| `StrOpt` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md b/go-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md new file mode 100755 index 000000000..40f1a4363 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md @@ -0,0 +1,8 @@ +# RequestBodyPostFormSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `ContentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostformsimpleres.md b/go-client-sdk/docs/models/operations/requestbodypostformsimpleres.md index 4a96c30f1..1d530031c 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostformsimpleres.md +++ b/go-client-sdk/docs/models/operations/requestbodypostformsimpleres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `Form` | [RequestBodyPostFormSimpleResForm](../../models/operations/requestbodypostformsimpleresform.md) | :heavy_check_mark: | N/A | -| `Headers` | [RequestBodyPostFormSimpleResHeaders](../../models/operations/requestbodypostformsimpleresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `Form` | [operations.RequestBodyPostFormSimpleForm](../../models/operations/requestbodypostformsimpleform.md) | :heavy_check_mark: | N/A | +| `Headers` | [operations.RequestBodyPostFormSimpleHeaders](../../models/operations/requestbodypostformsimpleheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md b/go-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md deleted file mode 100755 index 954e8746c..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPostFormSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Any` | *string* | :heavy_check_mark: | N/A | -| `Bool` | *string* | :heavy_check_mark: | N/A | -| `BoolOpt` | **string* | :heavy_minus_sign: | N/A | -| `Date` | *string* | :heavy_check_mark: | N/A | -| `DateTime` | *string* | :heavy_check_mark: | N/A | -| `Enum` | *string* | :heavy_check_mark: | N/A | -| `Float32` | *string* | :heavy_check_mark: | N/A | -| `Int` | *string* | :heavy_check_mark: | N/A | -| `Int32` | *string* | :heavy_check_mark: | N/A | -| `IntOptNull` | **string* | :heavy_minus_sign: | N/A | -| `Num` | *string* | :heavy_check_mark: | N/A | -| `NumOptNull` | **string* | :heavy_minus_sign: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | -| `StrOpt` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md b/go-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md deleted file mode 100755 index 08522b2f8..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPostFormSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `ContentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md b/go-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md index 8da00041d..5e7d0ee3d 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostFormSimpleRes](../../models/operations/requestbodypostformsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostFormSimpleRes](../../models/operations/requestbodypostformsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md deleted file mode 100755 index 78caa6580..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | [][*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md index c5b0ffe0a..9b24904dd 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesArrayBigIntResponseBody](../../models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md new file mode 100755 index 000000000..9eeaecabb --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesArrayBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | [][*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md deleted file mode 100755 index 17c1614d6..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | [][types.Date](../../types/date.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md index 3d3a2bbd7..1b8ec03dd 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesArrayDateResponseBody](../../models/operations/requestbodypostjsondatatypesarraydateresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md new file mode 100755 index 000000000..c90ea3aba --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesArrayDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | [][types.Date](../../types/date.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md deleted file mode 100755 index 9bde28963..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | [][*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md index a57b55f8c..626513fef 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody](../../models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md new file mode 100755 index 000000000..285743082 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | [][*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md deleted file mode 100755 index 657a69e81..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md index 84ddfa585..37cbd021b 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesBigInt200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesBigInt200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesbigint200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesBigIntResponseBody](../../models/operations/requestbodypostjsondatatypesbigintresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md new file mode 100755 index 000000000..5e2825da2 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md deleted file mode 100755 index e94d004ee..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md index 01e21b5e5..5579b3054 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesBigIntStrResponseBody](../../models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md new file mode 100755 index 000000000..b88a6a94c --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md deleted file mode 100755 index d49d2758e..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesBoolean200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `JSON` | *bool* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md index 441bab5c5..b9c0104b6 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesBoolean200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesBoolean200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesboolean200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesBooleanResponseBody](../../models/operations/requestbodypostjsondatatypesbooleanresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md new file mode 100755 index 000000000..9fa73e0a4 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesBooleanResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `JSON` | *bool* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md deleted file mode 100755 index b9e00bd31..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | [types.Date](../../types/date.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md index 640d9d38a..a22e8f694 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesDate200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesDate200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesdate200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesDateResponseBody](../../models/operations/requestbodypostjsondatatypesdateresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md new file mode 100755 index 000000000..babfb6154 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | [types.Date](../../types/date.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md deleted file mode 100755 index 7caac7c32..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md index e035ccfdc..0227213c9 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesDateTime200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesDateTime200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesDateTimeResponseBody](../../models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md new file mode 100755 index 000000000..047c70f48 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md deleted file mode 100755 index f0fd2b7d5..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md index 7193c731b..f85451fa9 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesDecimal200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesDecimal200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesDecimalResponseBody](../../models/operations/requestbodypostjsondatatypesdecimalresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md new file mode 100755 index 000000000..257c62ce1 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md deleted file mode 100755 index 686983f55..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md index ce76390ba..a72126fb0 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesDecimalStrResponseBody](../../models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md new file mode 100755 index 000000000..b2cc536d5 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md deleted file mode 100755 index 902385d93..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesFloat32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `JSON` | *float64* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md index 50da48046..c116a7fbe 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesFloat32200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesFloat32200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesFloat32ResponseBody](../../models/operations/requestbodypostjsondatatypesfloat32responsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md new file mode 100755 index 000000000..1e6ab42a1 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesFloat32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `JSON` | *float64* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md deleted file mode 100755 index a9dc381ac..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInt32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `JSON` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md index d942b7130..2d443be50 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesInt32200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesInt32200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesint32200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesInt32ResponseBody](../../models/operations/requestbodypostjsondatatypesint32responsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md new file mode 100755 index 000000000..1986109e5 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesInt32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `JSON` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md deleted file mode 100755 index 7d79a93f0..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInteger200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `JSON` | *int64* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md index 12a426a92..85f047f0d 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesInteger200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesInteger200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesinteger200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesIntegerResponseBody](../../models/operations/requestbodypostjsondatatypesintegerresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md new file mode 100755 index 000000000..7a5453646 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesIntegerResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `JSON` | *int64* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md deleted file mode 100755 index c677f2ed1..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | map[string][*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md index 94eef330c..2047ef431 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesMapBigIntStrResponseBody](../../models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md new file mode 100755 index 000000000..6c9ebc776 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesMapBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | map[string][*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md deleted file mode 100755 index f368eacc0..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | map[string][time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md index 57d10e520..c8958c4f7 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesMapDateTimeResponseBody](../../models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md new file mode 100755 index 000000000..b295f7140 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesMapDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | map[string][time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md deleted file mode 100755 index cd721d8d9..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| `Data` | *string* | :heavy_check_mark: | N/A | -| `JSON` | map[string][*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md index 01d0c2161..d8e56df85 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesMapDecimalResponseBody](../../models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md new file mode 100755 index 000000000..2772e5027 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesMapDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `Data` | *string* | :heavy_check_mark: | N/A | +| `JSON` | map[string][*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md deleted file mode 100755 index 6ad9340bb..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesNumber200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `JSON` | *float64* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md index d67213fc1..fa580fdb5 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesNumber200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesNumber200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesnumber200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesNumberResponseBody](../../models/operations/requestbodypostjsondatatypesnumberresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md new file mode 100755 index 000000000..991d7563b --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesNumberResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `JSON` | *float64* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md deleted file mode 100755 index 07db9625c..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesString200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `JSON` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md index e6063cbca..b68c6aba3 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostJSONDataTypesString200ApplicationJSONObject` | [*RequestBodyPostJSONDataTypesString200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesstring200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostJSONDataTypesStringResponseBody](../../models/operations/requestbodypostjsondatatypesstringresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md new file mode 100755 index 000000000..e824172a8 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesStringResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `JSON` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md index 5c4c93f8c..151ca980a 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostMultipleContentTypesComponentFilteredRes](../../models/operations/requestbodypostmultiplecontenttypescomponentfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostMultipleContentTypesComponentFilteredRes](../../models/operations/requestbodypostmultiplecontenttypescomponentfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md deleted file mode 100755 index 89a569f5e..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool` | *bool* | :heavy_check_mark: | N/A | -| `Num` | *float64* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md new file mode 100755 index 000000000..82190ca00 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesInlineFilteredRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool` | *bool* | :heavy_check_mark: | N/A | +| `Num` | *float64* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md index f01b008c1..646d1e437 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostMultipleContentTypesInlineFilteredRes](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostMultipleContentTypesInlineFilteredRes](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md deleted file mode 100755 index cf735d952..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool` | *bool* | :heavy_check_mark: | N/A | -| `Num` | *float64* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md deleted file mode 100755 index 2aa992d4c..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool3` | *bool* | :heavy_check_mark: | N/A | -| `Num3` | *float64* | :heavy_check_mark: | N/A | -| `Str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md new file mode 100755 index 000000000..9735acf78 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool3` | *bool* | :heavy_check_mark: | N/A | +| `Num3` | *float64* | :heavy_check_mark: | N/A | +| `Str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md index 03bb11844..173a4a3e4 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostMultipleContentTypesSplitFormRes](../../models/operations/requestbodypostmultiplecontenttypessplitformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostMultipleContentTypesSplitFormRes](../../models/operations/requestbodypostmultiplecontenttypessplitformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md new file mode 100755 index 000000000..df3671af3 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitJSONRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool` | *bool* | :heavy_check_mark: | N/A | +| `Num` | *float64* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md index df798014a..b6d75598e 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostMultipleContentTypesSplitJSONRes](../../models/operations/requestbodypostmultiplecontenttypessplitjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostMultipleContentTypesSplitJSONRes](../../models/operations/requestbodypostmultiplecontenttypessplitjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md deleted file mode 100755 index e7b4ac584..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool2` | *bool* | :heavy_check_mark: | N/A | -| `Num2` | *float64* | :heavy_check_mark: | N/A | -| `Str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md new file mode 100755 index 000000000..86afc66d9 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool2` | *bool* | :heavy_check_mark: | N/A | +| `Num2` | *float64* | :heavy_check_mark: | N/A | +| `Str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md index af6ddcf32..f43077a14 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostMultipleContentTypesSplitMultipartRes](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostMultipleContentTypesSplitMultipartRes](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md deleted file mode 100755 index 43c682bbd..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool` | *bool* | :heavy_check_mark: | N/A | -| `Num` | *float64* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md deleted file mode 100755 index f44dbc524..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool3` | *bool* | :heavy_check_mark: | N/A | -| `Num3` | *float64* | :heavy_check_mark: | N/A | -| `Str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md index 707d39767..f7dbcf172 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md) | :heavy_check_mark: | N/A | -| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `RequestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md) | :heavy_check_mark: | N/A | +| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md new file mode 100755 index 000000000..ed37e2a49 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool3` | *bool* | :heavy_check_mark: | N/A | +| `Num3` | *float64* | :heavy_check_mark: | N/A | +| `Str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md index 79995d339..b64b4f947 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostMultipleContentTypesSplitParamFormRes](../../models/operations/requestbodypostmultiplecontenttypessplitparamformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostMultipleContentTypesSplitParamFormRes](../../models/operations/requestbodypostmultiplecontenttypessplitparamformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md index b735de11b..123e36693 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md) | :heavy_check_mark: | N/A | -| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `RequestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md) | :heavy_check_mark: | N/A | +| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md new file mode 100755 index 000000000..b188a4748 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool` | *bool* | :heavy_check_mark: | N/A | +| `Num` | *float64* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md index b06ddb217..b3b6f2616 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostMultipleContentTypesSplitParamJSONRes](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostMultipleContentTypesSplitParamJSONRes](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md deleted file mode 100755 index c9e9c7cc3..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool2` | *bool* | :heavy_check_mark: | N/A | -| `Num2` | *float64* | :heavy_check_mark: | N/A | -| `Str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md index ac4e8426d..ffc1a6208 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `RequestBody` | [RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md) | :heavy_check_mark: | N/A | -| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `RequestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md) | :heavy_check_mark: | N/A | +| `ParamStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md new file mode 100755 index 000000000..17dafd947 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Bool2` | *bool* | :heavy_check_mark: | N/A | +| `Num2` | *float64* | :heavy_check_mark: | N/A | +| `Str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md index 450cc562b..06bfe8790 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPostMultipleContentTypesSplitParamMultipartRes](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRes](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md deleted file mode 100755 index 53076b762..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md b/go-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md index 28d371b53..de5d5e314 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject` | [*RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON](../../models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody](../../models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md new file mode 100755 index 000000000..cf8f4db4d --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNotNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md deleted file mode 100755 index f66defeb6..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md b/go-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md index 770d2a08f..030f573e3 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject` | [*RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON](../../models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody](../../models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md new file mode 100755 index 000000000..e304d0747 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md deleted file mode 100755 index 49c1f34fb..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md b/go-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md index da0cf186d..0c0d7eb4b 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostNullableRequiredStringBody200ApplicationJSONObject` | [*RequestBodyPostNullableRequiredStringBody200ApplicationJSON](../../models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostNullableRequiredStringBodyResponseBody](../../models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md new file mode 100755 index 000000000..c2036504e --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md deleted file mode 100755 index 395ccfb58..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullArray200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md b/go-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md index a5318332c..477a7fdd5 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostNullArray200ApplicationJSONObject` | [*RequestBodyPostNullArray200ApplicationJSON](../../models/operations/requestbodypostnullarray200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostNullArrayResponseBody](../../models/operations/requestbodypostnullarrayresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md new file mode 100755 index 000000000..143cac607 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullArrayResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md b/go-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md deleted file mode 100755 index 1f37b1060..000000000 --- a/go-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullDictionary200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md b/go-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md index 8cc17b4bf..74699b9af 100755 --- a/go-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `RequestBodyPostNullDictionary200ApplicationJSONObject` | [*RequestBodyPostNullDictionary200ApplicationJSON](../../models/operations/requestbodypostnulldictionary200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.RequestBodyPostNullDictionaryResponseBody](../../models/operations/requestbodypostnulldictionaryresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md b/go-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md new file mode 100755 index 000000000..8fc7972a5 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullDictionaryResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputbytesresponse.md b/go-client-sdk/docs/models/operations/requestbodyputbytesresponse.md index c7e6cd37d..a1dad3bb6 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputbytesresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodyputbytesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPutBytesRes](../../models/operations/requestbodyputbytesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPutBytesRes](../../models/operations/requestbodyputbytesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md b/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md new file mode 100755 index 000000000..964ea8703 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md @@ -0,0 +1,8 @@ +# RequestBodyPutBytesWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md b/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md index 9a1b78aa1..181b3dda4 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md +++ b/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `Args` | [RequestBodyPutBytesWithParamsResArgs](../../models/operations/requestbodyputbyteswithparamsresargs.md) | :heavy_check_mark: | N/A | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `Args` | [operations.RequestBodyPutBytesWithParamsArgs](../../models/operations/requestbodyputbyteswithparamsargs.md) | :heavy_check_mark: | N/A | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md b/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md deleted file mode 100755 index 20bbe00b9..000000000 --- a/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutBytesWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md b/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md index 44d94f09c..44865ed09 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPutBytesWithParamsRes](../../models/operations/requestbodyputbyteswithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPutBytesWithParamsRes](../../models/operations/requestbodyputbyteswithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md new file mode 100755 index 000000000..d40c6eb60 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md @@ -0,0 +1,14 @@ +# RequestBodyPutMultipartDeepForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Arr` | *string* | :heavy_check_mark: | N/A | +| `Bool` | *string* | :heavy_check_mark: | N/A | +| `Int` | *string* | :heavy_check_mark: | N/A | +| `Map` | *string* | :heavy_check_mark: | N/A | +| `Num` | *string* | :heavy_check_mark: | N/A | +| `Obj` | *string* | :heavy_check_mark: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md index af2bb18d7..8b292c200 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md +++ b/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `Form` | [RequestBodyPutMultipartDeepResForm](../../models/operations/requestbodyputmultipartdeepresform.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `Form` | [operations.RequestBodyPutMultipartDeepForm](../../models/operations/requestbodyputmultipartdeepform.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md deleted file mode 100755 index 39ac66be2..000000000 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPutMultipartDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Arr` | *string* | :heavy_check_mark: | N/A | -| `Bool` | *string* | :heavy_check_mark: | N/A | -| `Int` | *string* | :heavy_check_mark: | N/A | -| `Map` | *string* | :heavy_check_mark: | N/A | -| `Num` | *string* | :heavy_check_mark: | N/A | -| `Obj` | *string* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md index 2511f59d2..ee8d8c880 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPutMultipartDeepRes](../../models/operations/requestbodyputmultipartdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPutMultipartDeepRes](../../models/operations/requestbodyputmultipartdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md index 35e923aaa..45536c29b 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md +++ b/go-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `DifferentFileName` | [*RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName](../../models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | +| `DifferentFileName` | [*operations.DifferentFileName](../../models/operations/differentfilename.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md deleted file mode 100755 index 67e0fd406..000000000 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName - - -## Fields - -| Field | Type | Required | Description | -| ------------------- | ------------------- | ------------------- | ------------------- | -| `Content` | *[]byte* | :heavy_check_mark: | N/A | -| `DifferentFileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md index 029aa39ac..372eeaceb 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPutMultipartDifferentFileNameRes](../../models/operations/requestbodyputmultipartdifferentfilenameres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPutMultipartDifferentFileNameRes](../../models/operations/requestbodyputmultipartdifferentfilenameres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md index a4185e01b..d037fe18c 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md +++ b/go-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -| `File` | [*RequestBodyPutMultipartFileRequestBodyFile](../../models/operations/requestbodyputmultipartfilerequestbodyfile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | +| `File` | [*operations.File](../../models/operations/file.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md deleted file mode 100755 index 3bff5666e..000000000 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Content` | *[]byte* | :heavy_check_mark: | N/A | -| `File` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md index 4deb2ca93..ad3f0f6aa 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPutMultipartFileRes](../../models/operations/requestbodyputmultipartfileres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPutMultipartFileRes](../../models/operations/requestbodyputmultipartfileres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md new file mode 100755 index 000000000..586c8edbe --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md @@ -0,0 +1,21 @@ +# RequestBodyPutMultipartSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Any` | *string* | :heavy_check_mark: | N/A | +| `Bool` | *string* | :heavy_check_mark: | N/A | +| `BoolOpt` | **string* | :heavy_minus_sign: | N/A | +| `Date` | *string* | :heavy_check_mark: | N/A | +| `DateTime` | *string* | :heavy_check_mark: | N/A | +| `Enum` | *string* | :heavy_check_mark: | N/A | +| `Float32` | *string* | :heavy_check_mark: | N/A | +| `Int` | *string* | :heavy_check_mark: | N/A | +| `Int32` | *string* | :heavy_check_mark: | N/A | +| `IntOptNull` | **string* | :heavy_minus_sign: | N/A | +| `Num` | *string* | :heavy_check_mark: | N/A | +| `NumOptNull` | **string* | :heavy_minus_sign: | N/A | +| `Str` | *string* | :heavy_check_mark: | N/A | +| `StrOpt` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md new file mode 100755 index 000000000..bb43d93aa --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md @@ -0,0 +1,8 @@ +# RequestBodyPutMultipartSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `ContentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md index e23ab52cc..3d50e502a 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md +++ b/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `Form` | [RequestBodyPutMultipartSimpleResForm](../../models/operations/requestbodyputmultipartsimpleresform.md) | :heavy_check_mark: | N/A | -| `Headers` | [RequestBodyPutMultipartSimpleResHeaders](../../models/operations/requestbodyputmultipartsimpleresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | +| `Form` | [operations.RequestBodyPutMultipartSimpleForm](../../models/operations/requestbodyputmultipartsimpleform.md) | :heavy_check_mark: | N/A | +| `Headers` | [operations.RequestBodyPutMultipartSimpleHeaders](../../models/operations/requestbodyputmultipartsimpleheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md deleted file mode 100755 index 5c449fe9b..000000000 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPutMultipartSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Any` | *string* | :heavy_check_mark: | N/A | -| `Bool` | *string* | :heavy_check_mark: | N/A | -| `BoolOpt` | **string* | :heavy_minus_sign: | N/A | -| `Date` | *string* | :heavy_check_mark: | N/A | -| `DateTime` | *string* | :heavy_check_mark: | N/A | -| `Enum` | *string* | :heavy_check_mark: | N/A | -| `Float32` | *string* | :heavy_check_mark: | N/A | -| `Int` | *string* | :heavy_check_mark: | N/A | -| `Int32` | *string* | :heavy_check_mark: | N/A | -| `IntOptNull` | **string* | :heavy_minus_sign: | N/A | -| `Num` | *string* | :heavy_check_mark: | N/A | -| `NumOptNull` | **string* | :heavy_minus_sign: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | -| `StrOpt` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md deleted file mode 100755 index 93a7d1a57..000000000 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutMultipartSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `ContentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md b/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md index 40ba1c8d3..93591dc46 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPutMultipartSimpleRes](../../models/operations/requestbodyputmultipartsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPutMultipartSimpleRes](../../models/operations/requestbodyputmultipartsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputstringresponse.md b/go-client-sdk/docs/models/operations/requestbodyputstringresponse.md index 2809846c3..ea6121419 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputstringresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodyputstringresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPutStringRes](../../models/operations/requestbodyputstringres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPutStringRes](../../models/operations/requestbodyputstringres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md b/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md new file mode 100755 index 000000000..13dc170b6 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md @@ -0,0 +1,8 @@ +# RequestBodyPutStringWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md b/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md index e69002cb8..0f3573f82 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md +++ b/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `Args` | [RequestBodyPutStringWithParamsResArgs](../../models/operations/requestbodyputstringwithparamsresargs.md) | :heavy_check_mark: | N/A | -| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `Args` | [operations.RequestBodyPutStringWithParamsArgs](../../models/operations/requestbodyputstringwithparamsargs.md) | :heavy_check_mark: | N/A | +| `Data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md b/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md deleted file mode 100755 index c43dc8aa8..000000000 --- a/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutStringWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `QueryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md b/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md index b670d524f..6f1a10f57 100755 --- a/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md +++ b/go-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*RequestBodyPutStringWithParamsRes](../../models/operations/requestbodyputstringwithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.RequestBodyPutStringWithParamsRes](../../models/operations/requestbodyputstringwithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/requiredobj.md b/go-client-sdk/docs/models/operations/requiredobj.md new file mode 100755 index 000000000..75e7b11a1 --- /dev/null +++ b/go-client-sdk/docs/models/operations/requiredobj.md @@ -0,0 +1,7 @@ +# RequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md deleted file mode 100755 index 27aeb4865..000000000 --- a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -| `JSON` | [shared.ObjWithComplexNumbersAdditionalProperties](../../models/shared/objwithcomplexnumbersadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md index 242ec20c1..42d892cb8 100755 --- a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md +++ b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject` | [*ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON](../../models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody](../../models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md new file mode 100755 index 000000000..522099fa5 --- /dev/null +++ b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `JSON` | [shared.ObjWithComplexNumbersAdditionalProperties](../../models/shared/objwithcomplexnumbersadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md deleted file mode 100755 index 421e51d09..000000000 --- a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `JSON` | [shared.ObjWithDateAdditionalProperties](../../models/shared/objwithdateadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md index a29c0adc2..c2d061e70 100755 --- a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md +++ b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyAdditionalPropertiesDatePost200ApplicationJSONObject` | [*ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON](../../models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.ResponseBodyAdditionalPropertiesDatePostResponseBody](../../models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md new file mode 100755 index 000000000..498a3b2c5 --- /dev/null +++ b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesDatePostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `JSON` | [shared.ObjWithDateAdditionalProperties](../../models/shared/objwithdateadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md deleted file mode 100755 index 066d6a5c2..000000000 --- a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| `JSON` | [shared.ObjWithObjAdditionalProperties](../../models/shared/objwithobjadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md index 0c9da3cbd..aa54d95e5 100755 --- a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md +++ b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject` | [*ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON](../../models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody](../../models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md new file mode 100755 index 000000000..f68031339 --- /dev/null +++ b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesObjectPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `JSON` | [shared.ObjWithObjAdditionalProperties](../../models/shared/objwithobjadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md deleted file mode 100755 index cd3d5602d..000000000 --- a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| `JSON` | [shared.ObjWithStringAdditionalProperties](../../models/shared/objwithstringadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md index 640f16bb0..fc8c1e653 100755 --- a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md +++ b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyAdditionalPropertiesPost200ApplicationJSONObject` | [*ResponseBodyAdditionalPropertiesPost200ApplicationJSON](../../models/operations/responsebodyadditionalpropertiespost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.ResponseBodyAdditionalPropertiesPostResponseBody](../../models/operations/responsebodyadditionalpropertiespostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md new file mode 100755 index 000000000..f753459fc --- /dev/null +++ b/go-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | +| `JSON` | [shared.ObjWithStringAdditionalProperties](../../models/shared/objwithstringadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md b/go-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md index 28e7b1fdd..d435878c6 100755 --- a/go-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md +++ b/go-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md @@ -8,5 +8,5 @@ | `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyOptionalGet200TextPlainString` | **string* | :heavy_minus_sign: | OK | +| `Res` | **string* | :heavy_minus_sign: | OK | | `TypedObject1` | [*shared.TypedObject1](../../models/shared/typedobject1.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md b/go-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md deleted file mode 100755 index faf345532..000000000 --- a/go-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `JSON` | [shared.ObjWithZeroValueComplexTypePtrs](../../models/shared/objwithzerovaluecomplextypeptrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md b/go-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md index 8ed6f934c..f7e5cda5d 100755 --- a/go-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md +++ b/go-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject` | [*ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON](../../models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody](../../models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md b/go-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md new file mode 100755 index 000000000..898692083 --- /dev/null +++ b/go-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyZeroValueComplexTypePtrsPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `JSON` | [shared.ObjWithZeroValueComplexTypePtrs](../../models/shared/objwithzerovaluecomplextypeptrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/retriesgetresponse.md b/go-client-sdk/docs/models/operations/retriesgetresponse.md index 1630958e1..01e1aff8d 100755 --- a/go-client-sdk/docs/models/operations/retriesgetresponse.md +++ b/go-client-sdk/docs/models/operations/retriesgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Retries` | [*RetriesGetRetries](../../models/operations/retriesgetretries.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Retries` | [*operations.RetriesGetRetries](../../models/operations/retriesgetretries.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md b/go-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md index 16a242eeb..6e5f71cb2 100755 --- a/go-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md +++ b/go-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*SimplePathParameterArraysRes](../../models/operations/simplepathparameterarraysres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.SimplePathParameterArraysRes](../../models/operations/simplepathparameterarraysres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/simplepathparametermapsresponse.md b/go-client-sdk/docs/models/operations/simplepathparametermapsresponse.md index cc2d0ad40..f17c1b9a3 100755 --- a/go-client-sdk/docs/models/operations/simplepathparametermapsresponse.md +++ b/go-client-sdk/docs/models/operations/simplepathparametermapsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*SimplePathParameterMapsRes](../../models/operations/simplepathparametermapsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.SimplePathParameterMapsRes](../../models/operations/simplepathparametermapsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md b/go-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md index 337ed7594..6258e8c74 100755 --- a/go-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md +++ b/go-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*SimplePathParameterObjectsRes](../../models/operations/simplepathparameterobjectsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.SimplePathParameterObjectsRes](../../models/operations/simplepathparameterobjectsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md b/go-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md index 0cbddf2c7..84b151dba 100755 --- a/go-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md +++ b/go-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*SimplePathParameterPrimitivesRes](../../models/operations/simplepathparameterprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.SimplePathParameterPrimitivesRes](../../models/operations/simplepathparameterprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md b/go-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md index d312e5425..379fd3f82 100755 --- a/go-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md +++ b/go-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*StronglyTypedOneOfPostRes](../../models/operations/stronglytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.StronglyTypedOneOfPostRes](../../models/operations/stronglytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md b/go-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md index 3e740f659..9b89812a9 100755 --- a/go-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md +++ b/go-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*TelemetrySpeakeasyUserAgentGetRes](../../models/operations/telemetryspeakeasyuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.TelemetrySpeakeasyUserAgentGetRes](../../models/operations/telemetryspeakeasyuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md b/go-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md index 70d053eb6..1b587dd76 100755 --- a/go-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md +++ b/go-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*TelemetryUserAgentGetRes](../../models/operations/telemetryuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.TelemetryUserAgentGetRes](../../models/operations/telemetryuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md b/go-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md index b31ab1a22..d065778d3 100755 --- a/go-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md +++ b/go-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*TypedObjectNullableOneOfPostRes](../../models/operations/typedobjectnullableoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.TypedObjectNullableOneOfPostRes](../../models/operations/typedobjectnullableoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md b/go-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md index bff2ade17..d52615a9b 100755 --- a/go-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md +++ b/go-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*TypedObjectOneOfPostRes](../../models/operations/typedobjectoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.TypedObjectOneOfPostRes](../../models/operations/typedobjectoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/typedparametergenerationgetobj.md b/go-client-sdk/docs/models/operations/typedparametergenerationgetobj.md deleted file mode 100755 index 30387305c..000000000 --- a/go-client-sdk/docs/models/operations/typedparametergenerationgetobj.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypedParameterGenerationGetObj - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Bool` | *bool* | :heavy_check_mark: | N/A | -| `Num` | *float64* | :heavy_check_mark: | N/A | -| `Str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md b/go-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md index 0cb7ccfd8..7bf2c4e4f 100755 --- a/go-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md +++ b/go-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -| `Bigint` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | -| `Date` | [*types.Date](../../types/date.md) | :heavy_minus_sign: | N/A | -| `Decimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | -| `Obj` | [*TypedParameterGenerationGetObj](../../models/operations/typedparametergenerationgetobj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `Bigint` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | +| `Date` | [*types.Date](../../types/date.md) | :heavy_minus_sign: | N/A | +| `Decimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | +| `Obj` | [*operations.Obj](../../models/operations/obj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/typefromanchor.md b/go-client-sdk/docs/models/operations/typefromanchor.md deleted file mode 100755 index 2f8ff8e80..000000000 --- a/go-client-sdk/docs/models/operations/typefromanchor.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypeFromAnchor - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `JSON` | [*shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/unionbigintdecimaljson.md b/go-client-sdk/docs/models/operations/unionbigintdecimaljson.md new file mode 100755 index 000000000..8fd92de78 --- /dev/null +++ b/go-client-sdk/docs/models/operations/unionbigintdecimaljson.md @@ -0,0 +1,17 @@ +# UnionBigIntDecimalJSON + + +## Supported Types + +### + +```go +unionBigIntDecimalJSON := operations.CreateUnionBigIntDecimalJSONBigint(*big.Int{/* values here */}) +``` + +### + +```go +unionBigIntDecimalJSON := operations.CreateUnionBigIntDecimalJSONDecimal(*decimal.Big{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/operations/unionbigintdecimalres.md b/go-client-sdk/docs/models/operations/unionbigintdecimalres.md index ee825831f..7d6b344c6 100755 --- a/go-client-sdk/docs/models/operations/unionbigintdecimalres.md +++ b/go-client-sdk/docs/models/operations/unionbigintdecimalres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `JSON` | [UnionBigIntDecimalResJSON](../../models/operations/unionbigintdecimalresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `JSON` | [operations.UnionBigIntDecimalJSON](../../models/operations/unionbigintdecimaljson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/unionbigintdecimalresjson.md b/go-client-sdk/docs/models/operations/unionbigintdecimalresjson.md deleted file mode 100755 index 67143de8e..000000000 --- a/go-client-sdk/docs/models/operations/unionbigintdecimalresjson.md +++ /dev/null @@ -1,17 +0,0 @@ -# UnionBigIntDecimalResJSON - - -## Supported Types - -### - -```go -unionBigIntDecimalResJSON := operations.CreateUnionBigIntDecimalResJSONBigint(*big.Int{/* values here */}) -``` - -### - -```go -unionBigIntDecimalResJSON := operations.CreateUnionBigIntDecimalResJSONDecimal(*decimal.Big{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/operations/unionbigintdecimalresponse.md b/go-client-sdk/docs/models/operations/unionbigintdecimalresponse.md index 2c6f13a9f..4e046e51b 100755 --- a/go-client-sdk/docs/models/operations/unionbigintdecimalresponse.md +++ b/go-client-sdk/docs/models/operations/unionbigintdecimalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*UnionBigIntDecimalRes](../../models/operations/unionbigintdecimalres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.UnionBigIntDecimalRes](../../models/operations/unionbigintdecimalres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/uniondatenullresponse.md b/go-client-sdk/docs/models/operations/uniondatenullresponse.md index 5feebcf97..6d79fcb4a 100755 --- a/go-client-sdk/docs/models/operations/uniondatenullresponse.md +++ b/go-client-sdk/docs/models/operations/uniondatenullresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*UnionDateNullRes](../../models/operations/uniondatenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.UnionDateNullRes](../../models/operations/uniondatenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/uniondatetimebigintjson.md b/go-client-sdk/docs/models/operations/uniondatetimebigintjson.md new file mode 100755 index 000000000..55571c7ad --- /dev/null +++ b/go-client-sdk/docs/models/operations/uniondatetimebigintjson.md @@ -0,0 +1,17 @@ +# UnionDateTimeBigIntJSON + + +## Supported Types + +### + +```go +unionDateTimeBigIntJSON := operations.CreateUnionDateTimeBigIntJSONDateTime(time.Time{/* values here */}) +``` + +### + +```go +unionDateTimeBigIntJSON := operations.CreateUnionDateTimeBigIntJSONBigint(*big.Int{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/operations/uniondatetimebigintres.md b/go-client-sdk/docs/models/operations/uniondatetimebigintres.md index f54bba636..6e9a5e71e 100755 --- a/go-client-sdk/docs/models/operations/uniondatetimebigintres.md +++ b/go-client-sdk/docs/models/operations/uniondatetimebigintres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `JSON` | [UnionDateTimeBigIntResJSON](../../models/operations/uniondatetimebigintresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +| `JSON` | [operations.UnionDateTimeBigIntJSON](../../models/operations/uniondatetimebigintjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/uniondatetimebigintresjson.md b/go-client-sdk/docs/models/operations/uniondatetimebigintresjson.md deleted file mode 100755 index e722cedf7..000000000 --- a/go-client-sdk/docs/models/operations/uniondatetimebigintresjson.md +++ /dev/null @@ -1,17 +0,0 @@ -# UnionDateTimeBigIntResJSON - - -## Supported Types - -### - -```go -unionDateTimeBigIntResJSON := operations.CreateUnionDateTimeBigIntResJSONDateTime(time.Time{/* values here */}) -``` - -### - -```go -unionDateTimeBigIntResJSON := operations.CreateUnionDateTimeBigIntResJSONBigint(*big.Int{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/operations/uniondatetimebigintresponse.md b/go-client-sdk/docs/models/operations/uniondatetimebigintresponse.md index 10630c32d..487717784 100755 --- a/go-client-sdk/docs/models/operations/uniondatetimebigintresponse.md +++ b/go-client-sdk/docs/models/operations/uniondatetimebigintresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*UnionDateTimeBigIntRes](../../models/operations/uniondatetimebigintres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.UnionDateTimeBigIntRes](../../models/operations/uniondatetimebigintres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/uniondatetimenullresponse.md b/go-client-sdk/docs/models/operations/uniondatetimenullresponse.md index d4372e3eb..a8a8e63b5 100755 --- a/go-client-sdk/docs/models/operations/uniondatetimenullresponse.md +++ b/go-client-sdk/docs/models/operations/uniondatetimenullresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*UnionDateTimeNullRes](../../models/operations/uniondatetimenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.UnionDateTimeNullRes](../../models/operations/uniondatetimenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md b/go-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md deleted file mode 100755 index a3c4185ae..000000000 --- a/go-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSON - -A response body that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `JSON` | [UsageExamplePost200ApplicationJSONJSON](../../models/operations/usageexamplepost200applicationjsonjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md b/go-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md deleted file mode 100755 index 813e22307..000000000 --- a/go-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSONJSON - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `FakerFormattedStrings` | [*shared.FakerFormattedStrings](../../models/shared/fakerformattedstrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | -| `FakerStrings` | [*shared.FakerStrings](../../models/shared/fakerstrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | -| `SimpleObject` | [*shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/usageexamplepostenumparameter.md b/go-client-sdk/docs/models/operations/usageexamplepostenumparameter.md deleted file mode 100755 index 7951b9d09..000000000 --- a/go-client-sdk/docs/models/operations/usageexamplepostenumparameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostEnumParameter - -An enum type - - -## Values - -| Name | Value | -| ------------------------------------- | ------------------------------------- | -| `UsageExamplePostEnumParameterValue1` | value1 | -| `UsageExamplePostEnumParameterValue2` | value2 | -| `UsageExamplePostEnumParameterValue3` | value3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/usageexamplepostjson.md b/go-client-sdk/docs/models/operations/usageexamplepostjson.md new file mode 100755 index 000000000..359bb3cc2 --- /dev/null +++ b/go-client-sdk/docs/models/operations/usageexamplepostjson.md @@ -0,0 +1,10 @@ +# UsageExamplePostJSON + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `FakerFormattedStrings` | [*shared.FakerFormattedStrings](../../models/shared/fakerformattedstrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | +| `FakerStrings` | [*shared.FakerStrings](../../models/shared/fakerstrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | +| `SimpleObject` | [*shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md b/go-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md deleted file mode 100755 index 4ce89a22f..000000000 --- a/go-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostOptEnumParameter - -An enum type - - -## Values - -| Name | Value | -| ---------------------------------------- | ---------------------------------------- | -| `UsageExamplePostOptEnumParameterValue1` | value1 | -| `UsageExamplePostOptEnumParameterValue2` | value2 | -| `UsageExamplePostOptEnumParameterValue3` | value3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/usageexamplepostrequest.md b/go-client-sdk/docs/models/operations/usageexamplepostrequest.md index 898fd8799..2789329d7 100755 --- a/go-client-sdk/docs/models/operations/usageexamplepostrequest.md +++ b/go-client-sdk/docs/models/operations/usageexamplepostrequest.md @@ -3,27 +3,27 @@ ## Fields -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `RequestBody` | [*UsageExamplePostRequestBody](../../models/operations/usageexamplepostrequestbody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | -| `BigintParameter` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | An bigint parameter | | -| `BigintParameterOptional` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | An bigint parameter | | -| `BigintStrParameter` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | An bigint parameter | | -| `BigintStrParameterOptional` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | An bigint parameter | | -| `BoolParameter` | *bool* | :heavy_check_mark: | A boolean parameter | | -| `DateParameter` | [types.Date](../../types/date.md) | :heavy_check_mark: | A date parameter | | -| `DateTimeDefaultParameter` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | A date time parameter with a default value | | -| `DateTimeParameter` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | A date time parameter | | -| `DecimalParameter` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | A decimal parameter | | -| `DecimalParameterOptional` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | A decimal parameter | | -| `DecimalStrParameter` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | A decimal parameter | | -| `DecimalStrParameterOptional` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | A decimal parameter | | -| `DoubleParameter` | *float64* | :heavy_check_mark: | A double parameter | | -| `EnumParameter` | [UsageExamplePostEnumParameter](../../models/operations/usageexamplepostenumparameter.md) | :heavy_check_mark: | An enum parameter | | -| `FalseyNumberParameter` | *float64* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | -| `Float32Parameter` | *float32* | :heavy_check_mark: | A float32 parameter | | -| `FloatParameter` | *float64* | :heavy_check_mark: | A float parameter | | -| `Int64Parameter` | *int64* | :heavy_check_mark: | An int64 parameter | | -| `IntParameter` | *int* | :heavy_check_mark: | An integer parameter | | -| `OptEnumParameter` | [*UsageExamplePostOptEnumParameter](../../models/operations/usageexamplepostoptenumparameter.md) | :heavy_minus_sign: | An enum parameter | value3 | -| `StrParameter` | *string* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| `RequestBody` | [*operations.UsageExamplePostRequestBody](../../models/operations/usageexamplepostrequestbody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | +| `BigintParameter` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | An bigint parameter | | +| `BigintParameterOptional` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | An bigint parameter | | +| `BigintStrParameter` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | An bigint parameter | | +| `BigintStrParameterOptional` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | An bigint parameter | | +| `BoolParameter` | *bool* | :heavy_check_mark: | A boolean parameter | | +| `DateParameter` | [types.Date](../../types/date.md) | :heavy_check_mark: | A date parameter | | +| `DateTimeDefaultParameter` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | A date time parameter with a default value | | +| `DateTimeParameter` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | A date time parameter | | +| `DecimalParameter` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | A decimal parameter | | +| `DecimalParameterOptional` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | A decimal parameter | | +| `DecimalStrParameter` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | A decimal parameter | | +| `DecimalStrParameterOptional` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | A decimal parameter | | +| `DoubleParameter` | *float64* | :heavy_check_mark: | A double parameter | | +| `EnumParameter` | [operations.EnumParameter](../../models/operations/enumparameter.md) | :heavy_check_mark: | An enum parameter | | +| `FalseyNumberParameter` | *float64* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | +| `Float32Parameter` | *float32* | :heavy_check_mark: | A float32 parameter | | +| `FloatParameter` | *float64* | :heavy_check_mark: | A float parameter | | +| `Int64Parameter` | *int64* | :heavy_check_mark: | An int64 parameter | | +| `IntParameter` | *int* | :heavy_check_mark: | An integer parameter | | +| `OptEnumParameter` | [*operations.OptEnumParameter](../../models/operations/optenumparameter.md) | :heavy_minus_sign: | An enum parameter | value3 | +| `StrParameter` | *string* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/usageexamplepostresponse.md b/go-client-sdk/docs/models/operations/usageexamplepostresponse.md index c82c671b8..62e6ee768 100755 --- a/go-client-sdk/docs/models/operations/usageexamplepostresponse.md +++ b/go-client-sdk/docs/models/operations/usageexamplepostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `UsageExamplePost200ApplicationJSONObject` | [*UsageExamplePost200ApplicationJSON](../../models/operations/usageexamplepost200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Object` | [*operations.UsageExamplePostResponseBody](../../models/operations/usageexamplepostresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/usageexamplepostresponsebody.md b/go-client-sdk/docs/models/operations/usageexamplepostresponsebody.md new file mode 100755 index 000000000..4270dc483 --- /dev/null +++ b/go-client-sdk/docs/models/operations/usageexamplepostresponsebody.md @@ -0,0 +1,10 @@ +# UsageExamplePostResponseBody + +A response body that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `JSON` | [operations.UsageExamplePostJSON](../../models/operations/usageexamplepostjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md b/go-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md index b056fa5ca..0fd47f299 100755 --- a/go-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md +++ b/go-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | -| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `Res` | [*WeaklyTypedOneOfPostRes](../../models/operations/weaklytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `ContentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `StatusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `Res` | [*operations.WeaklyTypedOneOfPostRes](../../models/operations/weaklytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/any.md b/go-client-sdk/docs/models/shared/any.md new file mode 100755 index 000000000..9c0a42445 --- /dev/null +++ b/go-client-sdk/docs/models/shared/any.md @@ -0,0 +1,17 @@ +# Any + + +## Supported Types + +### SimpleObject + +```go +any := shared.CreateAnySimpleObject(shared.SimpleObject{/* values here */}) +``` + +### + +```go +any := shared.CreateAnyStr(string{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/shared/anyval.md b/go-client-sdk/docs/models/shared/anyval.md new file mode 100755 index 000000000..381ca0df4 --- /dev/null +++ b/go-client-sdk/docs/models/shared/anyval.md @@ -0,0 +1,17 @@ +# AnyVal + + +## Supported Types + +### SimpleObjectCamelCase + +```go +anyVal := shared.CreateAnyValSimpleObjectCamelCase(shared.SimpleObjectCamelCase{/* values here */}) +``` + +### + +```go +anyVal := shared.CreateAnyValStr(string{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/shared/arraycircularreferenceobject.md b/go-client-sdk/docs/models/shared/arraycircularreferenceobject.md index 95dea8d0a..4a77fcb16 100755 --- a/go-client-sdk/docs/models/shared/arraycircularreferenceobject.md +++ b/go-client-sdk/docs/models/shared/arraycircularreferenceobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `Circular` | [][ArrayCircularReferenceObject](../../models/shared/arraycircularreferenceobject.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `Circular` | [][shared.ArrayCircularReferenceObject](../../models/shared/arraycircularreferenceobject.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/arrobjvalue.md b/go-client-sdk/docs/models/shared/arrobjvalue.md index ba4111989..6e71ce604 100755 --- a/go-client-sdk/docs/models/shared/arrobjvalue.md +++ b/go-client-sdk/docs/models/shared/arrobjvalue.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | -| `JSON` | [][SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | N/A | -| `Required` | *interface{}* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | +| `JSON` | [][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | N/A | +| `Required` | *interface{}* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/arrobjvaluecamelcase.md b/go-client-sdk/docs/models/shared/arrobjvaluecamelcase.md index 97e9aa5d2..12d75b444 100755 --- a/go-client-sdk/docs/models/shared/arrobjvaluecamelcase.md +++ b/go-client-sdk/docs/models/shared/arrobjvaluecamelcase.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | -| `JSON` | [][SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_minus_sign: | N/A | -| `Required` | *interface{}* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | +| `JSON` | [][shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_minus_sign: | N/A | +| `Required` | *interface{}* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/authservicerequestbody.md b/go-client-sdk/docs/models/shared/authservicerequestbody.md index a6942f247..4512cb05d 100755 --- a/go-client-sdk/docs/models/shared/authservicerequestbody.md +++ b/go-client-sdk/docs/models/shared/authservicerequestbody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `BasicAuth` | [*AuthServiceRequestBodyBasicAuth](../../models/shared/authservicerequestbodybasicauth.md) | :heavy_minus_sign: | N/A | -| `HeaderAuth` | [][AuthServiceRequestBodyHeaderAuth](../../models/shared/authservicerequestbodyheaderauth.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | +| `BasicAuth` | [*shared.BasicAuth](../../models/shared/basicauth.md) | :heavy_minus_sign: | N/A | +| `HeaderAuth` | [][shared.HeaderAuth](../../models/shared/headerauth.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md b/go-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md deleted file mode 100755 index b0986e606..000000000 --- a/go-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyBasicAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Password` | *string* | :heavy_check_mark: | N/A | -| `Username` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md b/go-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md deleted file mode 100755 index 1c89c798d..000000000 --- a/go-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyHeaderAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `ExpectedValue` | *string* | :heavy_check_mark: | N/A | -| `HeaderName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/basicauth.md b/go-client-sdk/docs/models/shared/basicauth.md new file mode 100755 index 000000000..853b2656d --- /dev/null +++ b/go-client-sdk/docs/models/shared/basicauth.md @@ -0,0 +1,9 @@ +# BasicAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Password` | *string* | :heavy_check_mark: | N/A | +| `Username` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/child.md b/go-client-sdk/docs/models/shared/child.md new file mode 100755 index 000000000..90b1d90d6 --- /dev/null +++ b/go-client-sdk/docs/models/shared/child.md @@ -0,0 +1,17 @@ +# Child + + +## Supported Types + +### OneOfCircularReferenceObject + +```go +child := shared.CreateChildOneOfCircularReferenceObject(shared.OneOfCircularReferenceObject{/* values here */}) +``` + +### SimpleObject + +```go +child := shared.CreateChildSimpleObject(shared.SimpleObject{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/shared/chocolates.md b/go-client-sdk/docs/models/shared/chocolates.md new file mode 100755 index 000000000..93153f236 --- /dev/null +++ b/go-client-sdk/docs/models/shared/chocolates.md @@ -0,0 +1,8 @@ +# Chocolates + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Description` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/constenumint.md b/go-client-sdk/docs/models/shared/constenumint.md new file mode 100755 index 000000000..f3adcbc37 --- /dev/null +++ b/go-client-sdk/docs/models/shared/constenumint.md @@ -0,0 +1,10 @@ +# ConstEnumInt + + +## Values + +| Name | Value | +| ------------------- | ------------------- | +| `ConstEnumIntOne` | 1 | +| `ConstEnumIntTwo` | 2 | +| `ConstEnumIntThree` | 3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/constenumstr.md b/go-client-sdk/docs/models/shared/constenumstr.md new file mode 100755 index 000000000..b9f5354ba --- /dev/null +++ b/go-client-sdk/docs/models/shared/constenumstr.md @@ -0,0 +1,10 @@ +# ConstEnumStr + + +## Values + +| Name | Value | +| ------------------- | ------------------- | +| `ConstEnumStrOne` | one | +| `ConstEnumStrTwo` | two | +| `ConstEnumStrThree` | three | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/deepobject.md b/go-client-sdk/docs/models/shared/deepobject.md index ebd0d4eec..61eeefd17 100755 --- a/go-client-sdk/docs/models/shared/deepobject.md +++ b/go-client-sdk/docs/models/shared/deepobject.md @@ -5,12 +5,12 @@ | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Any` | [DeepObjectAny](../../models/shared/deepobjectany.md) | :heavy_check_mark: | N/A | anyOf[0] | -| `Arr` | [][SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | N/A | ...,... | +| `Any` | [shared.Any](../../models/shared/any.md) | :heavy_check_mark: | N/A | anyOf[0] | +| `Arr` | [][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | N/A | ...,... | | `Bool` | *bool* | :heavy_check_mark: | N/A | true | | `Int` | *int64* | :heavy_check_mark: | N/A | 1 | -| `Map` | map[string][SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | N/A | [object Object] | +| `Map` | map[string][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | N/A | [object Object] | | `Num` | *float64* | :heavy_check_mark: | N/A | 1.1 | -| `Obj` | [SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | +| `Obj` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | | `Str` | *string* | :heavy_check_mark: | N/A | test | | `Type` | **string* | :heavy_minus_sign: | N/A | | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/deepobjectany.md b/go-client-sdk/docs/models/shared/deepobjectany.md deleted file mode 100755 index 79ba8b589..000000000 --- a/go-client-sdk/docs/models/shared/deepobjectany.md +++ /dev/null @@ -1,17 +0,0 @@ -# DeepObjectAny - - -## Supported Types - -### SimpleObject - -```go -deepObjectAny := shared.CreateDeepObjectAnySimpleObject(shared.SimpleObject{/* values here */}) -``` - -### - -```go -deepObjectAny := shared.CreateDeepObjectAnyStr(string{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/shared/deepobjectcamelcase.md b/go-client-sdk/docs/models/shared/deepobjectcamelcase.md index 8dda02029..cba5c48b9 100755 --- a/go-client-sdk/docs/models/shared/deepobjectcamelcase.md +++ b/go-client-sdk/docs/models/shared/deepobjectcamelcase.md @@ -5,12 +5,12 @@ | Field | Type | Required | Description | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `AnyVal` | [DeepObjectCamelCaseAnyVal](../../models/shared/deepobjectcamelcaseanyval.md) | :heavy_check_mark: | N/A | -| `ArrVal` | [][SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_check_mark: | N/A | +| `AnyVal` | [shared.AnyVal](../../models/shared/anyval.md) | :heavy_check_mark: | N/A | +| `ArrVal` | [][shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_check_mark: | N/A | | `BoolVal` | *bool* | :heavy_check_mark: | N/A | | `IntVal` | *int64* | :heavy_check_mark: | N/A | -| `MapVal` | map[string][SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_check_mark: | N/A | +| `MapVal` | map[string][shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_check_mark: | N/A | | `NumVal` | *float64* | :heavy_check_mark: | N/A | -| `ObjVal` | [SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | +| `ObjVal` | [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | `StrVal` | *string* | :heavy_check_mark: | N/A | | `Type` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/deepobjectcamelcaseanyval.md b/go-client-sdk/docs/models/shared/deepobjectcamelcaseanyval.md deleted file mode 100755 index 0c7eb595a..000000000 --- a/go-client-sdk/docs/models/shared/deepobjectcamelcaseanyval.md +++ /dev/null @@ -1,17 +0,0 @@ -# DeepObjectCamelCaseAnyVal - - -## Supported Types - -### SimpleObjectCamelCase - -```go -deepObjectCamelCaseAnyVal := shared.CreateDeepObjectCamelCaseAnyValSimpleObjectCamelCase(shared.SimpleObjectCamelCase{/* values here */}) -``` - -### - -```go -deepObjectCamelCaseAnyVal := shared.CreateDeepObjectCamelCaseAnyValStr(string{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/shared/deepobjectwithtype.md b/go-client-sdk/docs/models/shared/deepobjectwithtype.md index 3b88299e9..6b67866ee 100755 --- a/go-client-sdk/docs/models/shared/deepobjectwithtype.md +++ b/go-client-sdk/docs/models/shared/deepobjectwithtype.md @@ -5,12 +5,12 @@ | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `Any` | [DeepObjectWithTypeAny](../../models/shared/deepobjectwithtypeany.md) | :heavy_check_mark: | N/A | anyOf[0] | -| `Arr` | [][SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | N/A | ...,... | +| `Any` | [shared.DeepObjectWithTypeAny](../../models/shared/deepobjectwithtypeany.md) | :heavy_check_mark: | N/A | anyOf[0] | +| `Arr` | [][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | N/A | ...,... | | `Bool` | *bool* | :heavy_check_mark: | N/A | true | | `Int` | *int64* | :heavy_check_mark: | N/A | 1 | -| `Map` | map[string][SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | N/A | [object Object] | +| `Map` | map[string][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | N/A | [object Object] | | `Num` | *float64* | :heavy_check_mark: | N/A | 1.1 | -| `Obj` | [SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | +| `Obj` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | | `Str` | *string* | :heavy_check_mark: | N/A | test | | `Type` | **string* | :heavy_minus_sign: | N/A | | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/defaultenumint.md b/go-client-sdk/docs/models/shared/defaultenumint.md new file mode 100755 index 000000000..08e78c239 --- /dev/null +++ b/go-client-sdk/docs/models/shared/defaultenumint.md @@ -0,0 +1,10 @@ +# DefaultEnumInt + + +## Values + +| Name | Value | +| --------------------- | --------------------- | +| `DefaultEnumIntOne` | 1 | +| `DefaultEnumIntTwo` | 2 | +| `DefaultEnumIntThree` | 3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/defaultenumstr.md b/go-client-sdk/docs/models/shared/defaultenumstr.md new file mode 100755 index 000000000..d6b53091c --- /dev/null +++ b/go-client-sdk/docs/models/shared/defaultenumstr.md @@ -0,0 +1,10 @@ +# DefaultEnumStr + + +## Values + +| Name | Value | +| --------------------- | --------------------- | +| `DefaultEnumStrOne` | one | +| `DefaultEnumStrTwo` | two | +| `DefaultEnumStrThree` | three | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/defaultsandconsts.md b/go-client-sdk/docs/models/shared/defaultsandconsts.md index d0197811b..80784316b 100755 --- a/go-client-sdk/docs/models/shared/defaultsandconsts.md +++ b/go-client-sdk/docs/models/shared/defaultsandconsts.md @@ -3,33 +3,33 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| `ConstBigInt` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | -| `ConstBigIntStr` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | -| `ConstBool` | *bool* | :heavy_check_mark: | N/A | -| `ConstDate` | [types.Date](../../types/date.md) | :heavy_check_mark: | N/A | -| `ConstDateTime` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | -| `ConstDecimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | -| `ConstDecimalStr` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | -| `ConstEnumInt` | [DefaultsAndConstsConstEnumInt](../../models/shared/defaultsandconstsconstenumint.md) | :heavy_check_mark: | N/A | -| `ConstEnumStr` | [DefaultsAndConstsConstEnumStr](../../models/shared/defaultsandconstsconstenumstr.md) | :heavy_check_mark: | N/A | -| `ConstInt` | *int64* | :heavy_check_mark: | N/A | -| `ConstNum` | *float64* | :heavy_check_mark: | N/A | -| `ConstStr` | *string* | :heavy_check_mark: | N/A | -| `ConstStrNull` | *string* | :heavy_check_mark: | N/A | -| `DefaultBigInt` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | -| `DefaultBigIntStr` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | -| `DefaultBool` | **bool* | :heavy_minus_sign: | N/A | -| `DefaultDate` | [*types.Date](../../types/date.md) | :heavy_minus_sign: | N/A | -| `DefaultDateTime` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | -| `DefaultDecimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | -| `DefaultDecimalStr` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | -| `DefaultEnumInt` | [*DefaultsAndConstsDefaultEnumInt](../../models/shared/defaultsandconstsdefaultenumint.md) | :heavy_minus_sign: | N/A | -| `DefaultEnumStr` | [*DefaultsAndConstsDefaultEnumStr](../../models/shared/defaultsandconstsdefaultenumstr.md) | :heavy_minus_sign: | N/A | -| `DefaultInt` | **int64* | :heavy_minus_sign: | N/A | -| `DefaultNum` | **float64* | :heavy_minus_sign: | N/A | -| `DefaultStr` | **string* | :heavy_minus_sign: | N/A | -| `DefaultStrNullable` | **string* | :heavy_minus_sign: | N/A | -| `DefaultStrOptional` | **string* | :heavy_minus_sign: | N/A | -| `NormalField` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `ConstBigInt` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | +| `ConstBigIntStr` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | +| `ConstBool` | *bool* | :heavy_check_mark: | N/A | +| `ConstDate` | [types.Date](../../types/date.md) | :heavy_check_mark: | N/A | +| `ConstDateTime` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | +| `ConstDecimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | +| `ConstDecimalStr` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | +| `ConstEnumInt` | [shared.ConstEnumInt](../../models/shared/constenumint.md) | :heavy_check_mark: | N/A | +| `ConstEnumStr` | [shared.ConstEnumStr](../../models/shared/constenumstr.md) | :heavy_check_mark: | N/A | +| `ConstInt` | *int64* | :heavy_check_mark: | N/A | +| `ConstNum` | *float64* | :heavy_check_mark: | N/A | +| `ConstStr` | *string* | :heavy_check_mark: | N/A | +| `ConstStrNull` | *string* | :heavy_check_mark: | N/A | +| `DefaultBigInt` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | +| `DefaultBigIntStr` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | +| `DefaultBool` | **bool* | :heavy_minus_sign: | N/A | +| `DefaultDate` | [*types.Date](../../types/date.md) | :heavy_minus_sign: | N/A | +| `DefaultDateTime` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | +| `DefaultDecimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | +| `DefaultDecimalStr` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | +| `DefaultEnumInt` | [*shared.DefaultEnumInt](../../models/shared/defaultenumint.md) | :heavy_minus_sign: | N/A | +| `DefaultEnumStr` | [*shared.DefaultEnumStr](../../models/shared/defaultenumstr.md) | :heavy_minus_sign: | N/A | +| `DefaultInt` | **int64* | :heavy_minus_sign: | N/A | +| `DefaultNum` | **float64* | :heavy_minus_sign: | N/A | +| `DefaultStr` | **string* | :heavy_minus_sign: | N/A | +| `DefaultStrNullable` | **string* | :heavy_minus_sign: | N/A | +| `DefaultStrOptional` | **string* | :heavy_minus_sign: | N/A | +| `NormalField` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md b/go-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md deleted file mode 100755 index b4f08dc7f..000000000 --- a/go-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumInt - - -## Values - -| Name | Value | -| ------------------------------------ | ------------------------------------ | -| `DefaultsAndConstsConstEnumIntOne` | 1 | -| `DefaultsAndConstsConstEnumIntTwo` | 2 | -| `DefaultsAndConstsConstEnumIntThree` | 3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md b/go-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md deleted file mode 100755 index 25b287acd..000000000 --- a/go-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumStr - - -## Values - -| Name | Value | -| ------------------------------------ | ------------------------------------ | -| `DefaultsAndConstsConstEnumStrOne` | one | -| `DefaultsAndConstsConstEnumStrTwo` | two | -| `DefaultsAndConstsConstEnumStrThree` | three | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md b/go-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md deleted file mode 100755 index d8c95126c..000000000 --- a/go-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumInt - - -## Values - -| Name | Value | -| -------------------------------------- | -------------------------------------- | -| `DefaultsAndConstsDefaultEnumIntOne` | 1 | -| `DefaultsAndConstsDefaultEnumIntTwo` | 2 | -| `DefaultsAndConstsDefaultEnumIntThree` | 3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md b/go-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md deleted file mode 100755 index 1590d0863..000000000 --- a/go-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumStr - - -## Values - -| Name | Value | -| -------------------------------------- | -------------------------------------- | -| `DefaultsAndConstsDefaultEnumStrOne` | one | -| `DefaultsAndConstsDefaultEnumStrTwo` | two | -| `DefaultsAndConstsDefaultEnumStrThree` | three | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/defaultsandconstsoutput.md b/go-client-sdk/docs/models/shared/defaultsandconstsoutput.md index 5669c1d7c..e2ced3126 100755 --- a/go-client-sdk/docs/models/shared/defaultsandconstsoutput.md +++ b/go-client-sdk/docs/models/shared/defaultsandconstsoutput.md @@ -3,33 +3,33 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `ConstBigInt` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | -| `ConstBigIntStr` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | -| `ConstBool` | *bool* | :heavy_check_mark: | N/A | -| `ConstDate` | [types.Date](../../types/date.md) | :heavy_check_mark: | N/A | -| `ConstDateTime` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | -| `ConstDecimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | -| `ConstDecimalStr` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | -| `ConstEnumInt` | [DefaultsAndConstsOutputConstEnumInt](../../models/shared/defaultsandconstsoutputconstenumint.md) | :heavy_check_mark: | N/A | -| `ConstEnumStr` | [DefaultsAndConstsOutputConstEnumStr](../../models/shared/defaultsandconstsoutputconstenumstr.md) | :heavy_check_mark: | N/A | -| `ConstInt` | *int64* | :heavy_check_mark: | N/A | -| `ConstNum` | *float64* | :heavy_check_mark: | N/A | -| `ConstStr` | *string* | :heavy_check_mark: | N/A | -| `ConstStrNull` | *string* | :heavy_check_mark: | N/A | -| `DefaultBigInt` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | -| `DefaultBigIntStr` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | -| `DefaultBool` | *bool* | :heavy_check_mark: | N/A | -| `DefaultDate` | [types.Date](../../types/date.md) | :heavy_check_mark: | N/A | -| `DefaultDateTime` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | -| `DefaultDecimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | -| `DefaultDecimalStr` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | -| `DefaultEnumInt` | [DefaultsAndConstsOutputDefaultEnumInt](../../models/shared/defaultsandconstsoutputdefaultenumint.md) | :heavy_check_mark: | N/A | -| `DefaultEnumStr` | [DefaultsAndConstsOutputDefaultEnumStr](../../models/shared/defaultsandconstsoutputdefaultenumstr.md) | :heavy_check_mark: | N/A | -| `DefaultInt` | *int64* | :heavy_check_mark: | N/A | -| `DefaultNum` | *float64* | :heavy_check_mark: | N/A | -| `DefaultStr` | *string* | :heavy_check_mark: | N/A | -| `DefaultStrNullable` | *string* | :heavy_check_mark: | N/A | -| `DefaultStrOptional` | **string* | :heavy_minus_sign: | N/A | -| `NormalField` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `ConstBigInt` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | +| `ConstBigIntStr` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | +| `ConstBool` | *bool* | :heavy_check_mark: | N/A | +| `ConstDate` | [types.Date](../../types/date.md) | :heavy_check_mark: | N/A | +| `ConstDateTime` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | +| `ConstDecimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | +| `ConstDecimalStr` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | +| `ConstEnumInt` | [shared.DefaultsAndConstsOutputConstEnumInt](../../models/shared/defaultsandconstsoutputconstenumint.md) | :heavy_check_mark: | N/A | +| `ConstEnumStr` | [shared.DefaultsAndConstsOutputConstEnumStr](../../models/shared/defaultsandconstsoutputconstenumstr.md) | :heavy_check_mark: | N/A | +| `ConstInt` | *int64* | :heavy_check_mark: | N/A | +| `ConstNum` | *float64* | :heavy_check_mark: | N/A | +| `ConstStr` | *string* | :heavy_check_mark: | N/A | +| `ConstStrNull` | *string* | :heavy_check_mark: | N/A | +| `DefaultBigInt` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | +| `DefaultBigIntStr` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_check_mark: | N/A | +| `DefaultBool` | *bool* | :heavy_check_mark: | N/A | +| `DefaultDate` | [types.Date](../../types/date.md) | :heavy_check_mark: | N/A | +| `DefaultDateTime` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | +| `DefaultDecimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | +| `DefaultDecimalStr` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_check_mark: | N/A | +| `DefaultEnumInt` | [shared.DefaultsAndConstsOutputDefaultEnumInt](../../models/shared/defaultsandconstsoutputdefaultenumint.md) | :heavy_check_mark: | N/A | +| `DefaultEnumStr` | [shared.DefaultsAndConstsOutputDefaultEnumStr](../../models/shared/defaultsandconstsoutputdefaultenumstr.md) | :heavy_check_mark: | N/A | +| `DefaultInt` | *int64* | :heavy_check_mark: | N/A | +| `DefaultNum` | *float64* | :heavy_check_mark: | N/A | +| `DefaultStr` | *string* | :heavy_check_mark: | N/A | +| `DefaultStrNullable` | *string* | :heavy_check_mark: | N/A | +| `DefaultStrOptional` | **string* | :heavy_minus_sign: | N/A | +| `NormalField` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/deprecatedenum.md b/go-client-sdk/docs/models/shared/deprecatedenum.md new file mode 100755 index 000000000..43aaf1238 --- /dev/null +++ b/go-client-sdk/docs/models/shared/deprecatedenum.md @@ -0,0 +1,12 @@ +# ~~DeprecatedEnum~~ + +> :warning: **DEPRECATED**: This enum is deprecated. + + +## Values + +| Name | Value | +| ----------------- | ----------------- | +| `DeprecatedEnumA` | a | +| `DeprecatedEnumB` | b | +| `DeprecatedEnumC` | c | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/deprecatedfieldinobject.md b/go-client-sdk/docs/models/shared/deprecatedfieldinobject.md index 4ed8b3956..a93787f98 100755 --- a/go-client-sdk/docs/models/shared/deprecatedfieldinobject.md +++ b/go-client-sdk/docs/models/shared/deprecatedfieldinobject.md @@ -5,6 +5,6 @@ | Field | Type | Required | Description | | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| ~~`DeprecatedEnum`~~ | [*DeprecatedFieldInObjectDeprecatedEnum](../../models/shared/deprecatedfieldinobjectdeprecatedenum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | +| ~~`DeprecatedEnum`~~ | [*shared.DeprecatedEnum](../../models/shared/deprecatedenum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | | ~~`DeprecatedField`~~ | **string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. Use NewField instead. | | `NewField` | **string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md b/go-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md deleted file mode 100755 index 45324dbbf..000000000 --- a/go-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md +++ /dev/null @@ -1,12 +0,0 @@ -# ~~DeprecatedFieldInObjectDeprecatedEnum~~ - -> :warning: **DEPRECATED**: This enum is deprecated. - - -## Values - -| Name | Value | -| ---------------------------------------- | ---------------------------------------- | -| `DeprecatedFieldInObjectDeprecatedEnumA` | a | -| `DeprecatedFieldInObjectDeprecatedEnumB` | b | -| `DeprecatedFieldInObjectDeprecatedEnumC` | c | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/enumnumber.md b/go-client-sdk/docs/models/shared/enumnumber.md new file mode 100755 index 000000000..ea5dba821 --- /dev/null +++ b/go-client-sdk/docs/models/shared/enumnumber.md @@ -0,0 +1,10 @@ +# EnumNumber + + +## Values + +| Name | Value | +| ----------------- | ----------------- | +| `EnumNumberOne` | 1 | +| `EnumNumberTwo` | 2 | +| `EnumNumberThree` | 3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/enumstr.md b/go-client-sdk/docs/models/shared/enumstr.md new file mode 100755 index 000000000..fad012af9 --- /dev/null +++ b/go-client-sdk/docs/models/shared/enumstr.md @@ -0,0 +1,10 @@ +# EnumStr + + +## Values + +| Name | Value | +| -------------- | -------------- | +| `EnumStrOne` | one | +| `EnumStrTwo` | two | +| `EnumStrThree` | three | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/exampleboat.md b/go-client-sdk/docs/models/shared/exampleboat.md index 5ccc4ff26..765340ae5 100755 --- a/go-client-sdk/docs/models/shared/exampleboat.md +++ b/go-client-sdk/docs/models/shared/exampleboat.md @@ -3,10 +3,10 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | -| `CreatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | -| `Length` | *float64* | :heavy_check_mark: | N/A | -| `Name` | *string* | :heavy_check_mark: | N/A | -| `Type` | [ExampleBoatType](../../models/shared/exampleboattype.md) | :heavy_check_mark: | N/A | -| `UpdatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | +| `CreatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | +| `Length` | *float64* | :heavy_check_mark: | N/A | +| `Name` | *string* | :heavy_check_mark: | N/A | +| `Type` | [shared.Type](../../models/shared/type.md) | :heavy_check_mark: | N/A | +| `UpdatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/exampleboattype.md b/go-client-sdk/docs/models/shared/exampleboattype.md deleted file mode 100755 index 54f5838a4..000000000 --- a/go-client-sdk/docs/models/shared/exampleboattype.md +++ /dev/null @@ -1,8 +0,0 @@ -# ExampleBoatType - - -## Values - -| Name | Value | -| --------------------- | --------------------- | -| `ExampleBoatTypeBoat` | boat | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/examplecar.md b/go-client-sdk/docs/models/shared/examplecar.md index d58dd6ff4..14f316c89 100755 --- a/go-client-sdk/docs/models/shared/examplecar.md +++ b/go-client-sdk/docs/models/shared/examplecar.md @@ -3,12 +3,12 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | -| `CreatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | -| `Make` | *string* | :heavy_check_mark: | N/A | -| `Model` | *string* | :heavy_check_mark: | N/A | -| `Name` | *string* | :heavy_check_mark: | N/A | -| `Type` | [ExampleCarType](../../models/shared/examplecartype.md) | :heavy_check_mark: | N/A | -| `UpdatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | -| `Year` | *float64* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | +| `CreatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | +| `Make` | *string* | :heavy_check_mark: | N/A | +| `Model` | *string* | :heavy_check_mark: | N/A | +| `Name` | *string* | :heavy_check_mark: | N/A | +| `Type` | [shared.ExampleCarType](../../models/shared/examplecartype.md) | :heavy_check_mark: | N/A | +| `UpdatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | +| `Year` | *float64* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/exampleresource.md b/go-client-sdk/docs/models/shared/exampleresource.md index 6e221587e..b81fb3f55 100755 --- a/go-client-sdk/docs/models/shared/exampleresource.md +++ b/go-client-sdk/docs/models/shared/exampleresource.md @@ -3,17 +3,17 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | -| `ArrayOfNumber` | []*float64* | :heavy_minus_sign: | N/A | -| `ArrayOfString` | []*string* | :heavy_minus_sign: | N/A | -| `Chocolates` | [][ExampleResourceChocolates](../../models/shared/exampleresourcechocolates.md) | :heavy_check_mark: | N/A | -| `CreatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | -| `EnumNumber` | [*ExampleResourceEnumNumber](../../models/shared/exampleresourceenumnumber.md) | :heavy_minus_sign: | N/A | -| `EnumStr` | [*ExampleResourceEnumStr](../../models/shared/exampleresourceenumstr.md) | :heavy_minus_sign: | N/A | -| `ID` | *string* | :heavy_check_mark: | N/A | -| `MapOfInteger` | map[string]*int64* | :heavy_minus_sign: | N/A | -| `MapOfString` | map[string]*string* | :heavy_minus_sign: | N/A | -| `Name` | *string* | :heavy_check_mark: | N/A | -| `UpdatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | -| `Vehicle` | [ExampleVehicle](../../models/shared/examplevehicle.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | +| `ArrayOfNumber` | []*float64* | :heavy_minus_sign: | N/A | +| `ArrayOfString` | []*string* | :heavy_minus_sign: | N/A | +| `Chocolates` | [][shared.Chocolates](../../models/shared/chocolates.md) | :heavy_check_mark: | N/A | +| `CreatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | +| `EnumNumber` | [*shared.EnumNumber](../../models/shared/enumnumber.md) | :heavy_minus_sign: | N/A | +| `EnumStr` | [*shared.EnumStr](../../models/shared/enumstr.md) | :heavy_minus_sign: | N/A | +| `ID` | *string* | :heavy_check_mark: | N/A | +| `MapOfInteger` | map[string]*int64* | :heavy_minus_sign: | N/A | +| `MapOfString` | map[string]*string* | :heavy_minus_sign: | N/A | +| `Name` | *string* | :heavy_check_mark: | N/A | +| `UpdatedAt` | [*time.Time](https://pkg.go.dev/time#Time) | :heavy_minus_sign: | N/A | +| `Vehicle` | [shared.ExampleVehicle](../../models/shared/examplevehicle.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/exampleresourcechocolates.md b/go-client-sdk/docs/models/shared/exampleresourcechocolates.md deleted file mode 100755 index 434b7a90f..000000000 --- a/go-client-sdk/docs/models/shared/exampleresourcechocolates.md +++ /dev/null @@ -1,8 +0,0 @@ -# ExampleResourceChocolates - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Description` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/exampleresourceenumnumber.md b/go-client-sdk/docs/models/shared/exampleresourceenumnumber.md deleted file mode 100755 index 5a596ff84..000000000 --- a/go-client-sdk/docs/models/shared/exampleresourceenumnumber.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumNumber - - -## Values - -| Name | Value | -| -------------------------------- | -------------------------------- | -| `ExampleResourceEnumNumberOne` | 1 | -| `ExampleResourceEnumNumberTwo` | 2 | -| `ExampleResourceEnumNumberThree` | 3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/exampleresourceenumstr.md b/go-client-sdk/docs/models/shared/exampleresourceenumstr.md deleted file mode 100755 index 72e6f0926..000000000 --- a/go-client-sdk/docs/models/shared/exampleresourceenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumStr - - -## Values - -| Name | Value | -| ----------------------------- | ----------------------------- | -| `ExampleResourceEnumStrOne` | one | -| `ExampleResourceEnumStrTwo` | two | -| `ExampleResourceEnumStrThree` | three | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/headerauth.md b/go-client-sdk/docs/models/shared/headerauth.md new file mode 100755 index 000000000..f717b1256 --- /dev/null +++ b/go-client-sdk/docs/models/shared/headerauth.md @@ -0,0 +1,9 @@ +# HeaderAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `ExpectedValue` | *string* | :heavy_check_mark: | N/A | +| `HeaderName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/httpbinsimplejsonobject.md b/go-client-sdk/docs/models/shared/httpbinsimplejsonobject.md index 7e95c6f81..f68b8ba06 100755 --- a/go-client-sdk/docs/models/shared/httpbinsimplejsonobject.md +++ b/go-client-sdk/docs/models/shared/httpbinsimplejsonobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `Slideshow` | [HTTPBinSimpleJSONObjectSlideshow](../../models/shared/httpbinsimplejsonobjectslideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | +| `Slideshow` | [shared.Slideshow](../../models/shared/slideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md b/go-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md deleted file mode 100755 index 24f5604b1..000000000 --- a/go-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md +++ /dev/null @@ -1,11 +0,0 @@ -# HTTPBinSimpleJSONObjectSlideshow - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `Author` | *string* | :heavy_check_mark: | N/A | -| `Date` | *string* | :heavy_check_mark: | N/A | -| `Slides` | [][HTTPBinSimpleJSONObjectSlideshowSlides](../../models/shared/httpbinsimplejsonobjectslideshowslides.md) | :heavy_check_mark: | N/A | -| `Title` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md b/go-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md deleted file mode 100755 index bb330a267..000000000 --- a/go-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md +++ /dev/null @@ -1,10 +0,0 @@ -# HTTPBinSimpleJSONObjectSlideshowSlides - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Items` | []*string* | :heavy_minus_sign: | N/A | -| `Title` | *string* | :heavy_check_mark: | N/A | -| `Type` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/int32enum.md b/go-client-sdk/docs/models/shared/int32enum.md new file mode 100755 index 000000000..e1e802c94 --- /dev/null +++ b/go-client-sdk/docs/models/shared/int32enum.md @@ -0,0 +1,12 @@ +# Int32Enum + +An int32 enum property. + + +## Values + +| Name | Value | +| --------------------------------- | --------------------------------- | +| `Int32EnumFiftyFive` | 55 | +| `Int32EnumSixtyNine` | 69 | +| `Int32EnumOneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/int32enumval.md b/go-client-sdk/docs/models/shared/int32enumval.md new file mode 100755 index 000000000..182684433 --- /dev/null +++ b/go-client-sdk/docs/models/shared/int32enumval.md @@ -0,0 +1,12 @@ +# Int32EnumVal + +An int32 enum property. + + +## Values + +| Name | Value | +| ------------------------------------ | ------------------------------------ | +| `Int32EnumValFiftyFive` | 55 | +| `Int32EnumValSixtyNine` | 69 | +| `Int32EnumValOneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/intenum.md b/go-client-sdk/docs/models/shared/intenum.md new file mode 100755 index 000000000..5cdd5b838 --- /dev/null +++ b/go-client-sdk/docs/models/shared/intenum.md @@ -0,0 +1,12 @@ +# IntEnum + +An integer enum property. + + +## Values + +| Name | Value | +| --------------- | --------------- | +| `IntEnumFirst` | 1 | +| `IntEnumSecond` | 2 | +| `IntEnumThird` | 3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/intenumval.md b/go-client-sdk/docs/models/shared/intenumval.md new file mode 100755 index 000000000..0e4e3f0a1 --- /dev/null +++ b/go-client-sdk/docs/models/shared/intenumval.md @@ -0,0 +1,12 @@ +# IntEnumVal + +An integer enum property. + + +## Values + +| Name | Value | +| ------------------ | ------------------ | +| `IntEnumValFirst` | 1 | +| `IntEnumValSecond` | 2 | +| `IntEnumValThird` | 3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/mapobjvalue.md b/go-client-sdk/docs/models/shared/mapobjvalue.md index 01817eee8..79c6e3a77 100755 --- a/go-client-sdk/docs/models/shared/mapobjvalue.md +++ b/go-client-sdk/docs/models/shared/mapobjvalue.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -| `JSON` | map[string][SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | N/A | -| `Required` | *interface{}* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | +| `JSON` | map[string][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | N/A | +| `Required` | *interface{}* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/mapobjvaluecamelcase.md b/go-client-sdk/docs/models/shared/mapobjvaluecamelcase.md index d237b5d70..e3d45339b 100755 --- a/go-client-sdk/docs/models/shared/mapobjvaluecamelcase.md +++ b/go-client-sdk/docs/models/shared/mapobjvaluecamelcase.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -| `JSON` | map[string][SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_minus_sign: | N/A | -| `Required` | *interface{}* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `JSON` | map[string][shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_minus_sign: | N/A | +| `Required` | *interface{}* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/nullableoneofrefinobject.md b/go-client-sdk/docs/models/shared/nullableoneofrefinobject.md index 53ea4324d..3f13b8aa2 100755 --- a/go-client-sdk/docs/models/shared/nullableoneofrefinobject.md +++ b/go-client-sdk/docs/models/shared/nullableoneofrefinobject.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `NullableOneOfOne` | [TypedObject1](../../models/shared/typedobject1.md) | :heavy_check_mark: | N/A | -| `NullableOneOfTwo` | [NullableOneOfRefInObjectNullableOneOfTwo](../../models/shared/nullableoneofrefinobjectnullableoneoftwo.md) | :heavy_check_mark: | N/A | -| `OneOfOne` | [NullableOneOfRefInObjectOneOfOne](../../models/shared/nullableoneofrefinobjectoneofone.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | +| `NullableOneOfOne` | [shared.TypedObject1](../../models/shared/typedobject1.md) | :heavy_check_mark: | N/A | +| `NullableOneOfTwo` | [shared.NullableOneOfTwo](../../models/shared/nullableoneoftwo.md) | :heavy_check_mark: | N/A | +| `OneOfOne` | [shared.OneOfOne](../../models/shared/oneofone.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/nullableoneofrefinobjectnullableoneoftwo.md b/go-client-sdk/docs/models/shared/nullableoneofrefinobjectnullableoneoftwo.md deleted file mode 100755 index 286d2e6c4..000000000 --- a/go-client-sdk/docs/models/shared/nullableoneofrefinobjectnullableoneoftwo.md +++ /dev/null @@ -1,17 +0,0 @@ -# NullableOneOfRefInObjectNullableOneOfTwo - - -## Supported Types - -### TypedObject1 - -```go -nullableOneOfRefInObjectNullableOneOfTwo := shared.CreateNullableOneOfRefInObjectNullableOneOfTwoTypedObject1(shared.TypedObject1{/* values here */}) -``` - -### TypedObject2 - -```go -nullableOneOfRefInObjectNullableOneOfTwo := shared.CreateNullableOneOfRefInObjectNullableOneOfTwoTypedObject2(shared.TypedObject2{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/shared/nullableoneofrefinobjectoneofone.md b/go-client-sdk/docs/models/shared/nullableoneofrefinobjectoneofone.md deleted file mode 100755 index f35681ea3..000000000 --- a/go-client-sdk/docs/models/shared/nullableoneofrefinobjectoneofone.md +++ /dev/null @@ -1,11 +0,0 @@ -# NullableOneOfRefInObjectOneOfOne - - -## Supported Types - -### TypedObject1 - -```go -nullableOneOfRefInObjectOneOfOne := shared.CreateNullableOneOfRefInObjectOneOfOneTypedObject1(shared.TypedObject1{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/shared/nullableoneoftwo.md b/go-client-sdk/docs/models/shared/nullableoneoftwo.md new file mode 100755 index 000000000..3a665cb9c --- /dev/null +++ b/go-client-sdk/docs/models/shared/nullableoneoftwo.md @@ -0,0 +1,17 @@ +# NullableOneOfTwo + + +## Supported Types + +### TypedObject1 + +```go +nullableOneOfTwo := shared.CreateNullableOneOfTwoTypedObject1(shared.TypedObject1{/* values here */}) +``` + +### TypedObject2 + +```go +nullableOneOfTwo := shared.CreateNullableOneOfTwoTypedObject2(shared.TypedObject2{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/shared/nullableoneoftypeinobject.md b/go-client-sdk/docs/models/shared/nullableoneoftypeinobject.md index f88ca4760..958f431c4 100755 --- a/go-client-sdk/docs/models/shared/nullableoneoftypeinobject.md +++ b/go-client-sdk/docs/models/shared/nullableoneoftypeinobject.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `NullableOneOfOne` | *bool* | :heavy_check_mark: | N/A | -| `NullableOneOfTwo` | [NullableOneOfTypeInObjectNullableOneOfTwo](../../models/shared/nullableoneoftypeinobjectnullableoneoftwo.md) | :heavy_check_mark: | N/A | -| `OneOfOne` | *bool* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `NullableOneOfOne` | *bool* | :heavy_check_mark: | N/A | +| `NullableOneOfTwo` | [shared.NullableOneOfTypeInObjectNullableOneOfTwo](../../models/shared/nullableoneoftypeinobjectnullableoneoftwo.md) | :heavy_check_mark: | N/A | +| `OneOfOne` | *bool* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/objectcircularreferenceobject.md b/go-client-sdk/docs/models/shared/objectcircularreferenceobject.md index c16166866..6194a5dbd 100755 --- a/go-client-sdk/docs/models/shared/objectcircularreferenceobject.md +++ b/go-client-sdk/docs/models/shared/objectcircularreferenceobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -| `Circular` | [*ObjectCircularReferenceObject](../../models/shared/objectcircularreferenceobject.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `Circular` | [*shared.ObjectCircularReferenceObject](../../models/shared/objectcircularreferenceobject.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/objwithobjadditionalproperties.md b/go-client-sdk/docs/models/shared/objwithobjadditionalproperties.md index 2b9dd5be1..25099ca69 100755 --- a/go-client-sdk/docs/models/shared/objwithobjadditionalproperties.md +++ b/go-client-sdk/docs/models/shared/objwithobjadditionalproperties.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -| `AdditionalProperties` | []*int64* | :heavy_check_mark: | N/A | -| `AdditionalPropertiesT` | map[string][SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | N/A | -| `Datetime` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | +| `AdditionalProperties` | []*int64* | :heavy_check_mark: | N/A | +| `AdditionalPropertiesT` | map[string][shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | N/A | +| `Datetime` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/oneofcircularreferenceobject.md b/go-client-sdk/docs/models/shared/oneofcircularreferenceobject.md index 13dca0de4..3f8642546 100755 --- a/go-client-sdk/docs/models/shared/oneofcircularreferenceobject.md +++ b/go-client-sdk/docs/models/shared/oneofcircularreferenceobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `Child` | [OneOfCircularReferenceObjectChild](../../models/shared/oneofcircularreferenceobjectchild.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | +| `Child` | [shared.Child](../../models/shared/child.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/oneofcircularreferenceobjectchild.md b/go-client-sdk/docs/models/shared/oneofcircularreferenceobjectchild.md deleted file mode 100755 index 127627651..000000000 --- a/go-client-sdk/docs/models/shared/oneofcircularreferenceobjectchild.md +++ /dev/null @@ -1,17 +0,0 @@ -# OneOfCircularReferenceObjectChild - - -## Supported Types - -### OneOfCircularReferenceObject - -```go -oneOfCircularReferenceObjectChild := shared.CreateOneOfCircularReferenceObjectChildOneOfCircularReferenceObject(shared.OneOfCircularReferenceObject{/* values here */}) -``` - -### SimpleObject - -```go -oneOfCircularReferenceObjectChild := shared.CreateOneOfCircularReferenceObjectChildSimpleObject(shared.SimpleObject{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/shared/oneoffromarrayoftypes.md b/go-client-sdk/docs/models/shared/oneoffromarrayoftypes.md new file mode 100755 index 000000000..7203d1eed --- /dev/null +++ b/go-client-sdk/docs/models/shared/oneoffromarrayoftypes.md @@ -0,0 +1,17 @@ +# OneOfFromArrayOfTypes + + +## Supported Types + +### + +```go +oneOfFromArrayOfTypes := shared.CreateOneOfFromArrayOfTypesStr(string{/* values here */}) +``` + +### + +```go +oneOfFromArrayOfTypes := shared.CreateOneOfFromArrayOfTypesInteger(int64{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/shared/oneofgenerationstresstest.md b/go-client-sdk/docs/models/shared/oneofgenerationstresstest.md index 06c802a62..448e41ace 100755 --- a/go-client-sdk/docs/models/shared/oneofgenerationstresstest.md +++ b/go-client-sdk/docs/models/shared/oneofgenerationstresstest.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -| `Any` | *interface{}* | :heavy_check_mark: | N/A | -| `NullableAny` | *interface{}* | :heavy_check_mark: | N/A | -| `OneOfFromArrayOfTypes` | [OneOfGenerationStressTestOneOfFromArrayOfTypes](../../models/shared/oneofgenerationstresstestoneoffromarrayoftypes.md) | :heavy_check_mark: | N/A | -| `OneOfSameType` | [OneOfGenerationStressTestOneOfSameType](../../models/shared/oneofgenerationstresstestoneofsametype.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `Any` | *interface{}* | :heavy_check_mark: | N/A | +| `NullableAny` | *interface{}* | :heavy_check_mark: | N/A | +| `OneOfFromArrayOfTypes` | [shared.OneOfFromArrayOfTypes](../../models/shared/oneoffromarrayoftypes.md) | :heavy_check_mark: | N/A | +| `OneOfSameType` | [shared.OneOfSameType](../../models/shared/oneofsametype.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/oneofgenerationstresstestoneoffromarrayoftypes.md b/go-client-sdk/docs/models/shared/oneofgenerationstresstestoneoffromarrayoftypes.md deleted file mode 100755 index 99cb7308b..000000000 --- a/go-client-sdk/docs/models/shared/oneofgenerationstresstestoneoffromarrayoftypes.md +++ /dev/null @@ -1,17 +0,0 @@ -# OneOfGenerationStressTestOneOfFromArrayOfTypes - - -## Supported Types - -### - -```go -oneOfGenerationStressTestOneOfFromArrayOfTypes := shared.CreateOneOfGenerationStressTestOneOfFromArrayOfTypesStr(string{/* values here */}) -``` - -### - -```go -oneOfGenerationStressTestOneOfFromArrayOfTypes := shared.CreateOneOfGenerationStressTestOneOfFromArrayOfTypesInteger(int64{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype.md b/go-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype.md deleted file mode 100755 index c5f6ef168..000000000 --- a/go-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype.md +++ /dev/null @@ -1,17 +0,0 @@ -# OneOfGenerationStressTestOneOfSameType - - -## Supported Types - -### - -```go -oneOfGenerationStressTestOneOfSameType := shared.CreateOneOfGenerationStressTestOneOfSameTypeStr(string{/* values here */}) -``` - -### OneOfGenerationStressTestOneOfSameType2 - -```go -oneOfGenerationStressTestOneOfSameType := shared.CreateOneOfGenerationStressTestOneOfSameTypeOneOfGenerationStressTestOneOfSameType2(shared.OneOfGenerationStressTestOneOfSameType2{/* values here */}) -``` - diff --git a/go-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype2.md b/go-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype2.md deleted file mode 100755 index 9d90ea652..000000000 --- a/go-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype2.md +++ /dev/null @@ -1,8 +0,0 @@ -# OneOfGenerationStressTestOneOfSameType2 - - -## Values - -| Name | Value | -| ----------------------------------------------- | ----------------------------------------------- | -| `OneOfGenerationStressTestOneOfSameType2Latest` | latest | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/oneofone.md b/go-client-sdk/docs/models/shared/oneofone.md new file mode 100755 index 000000000..51b0217cc --- /dev/null +++ b/go-client-sdk/docs/models/shared/oneofone.md @@ -0,0 +1,11 @@ +# OneOfOne + + +## Supported Types + +### TypedObject1 + +```go +oneOfOne := shared.CreateOneOfOneTypedObject1(shared.TypedObject1{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/shared/oneofsametype.md b/go-client-sdk/docs/models/shared/oneofsametype.md new file mode 100755 index 000000000..67b4df388 --- /dev/null +++ b/go-client-sdk/docs/models/shared/oneofsametype.md @@ -0,0 +1,17 @@ +# OneOfSameType + + +## Supported Types + +### + +```go +oneOfSameType := shared.CreateOneOfSameTypeStr(string{/* values here */}) +``` + +### Two + +```go +oneOfSameType := shared.CreateOneOfSameTypeTwo(shared.Two{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/shared/readwriteobject.md b/go-client-sdk/docs/models/shared/readwriteobject.md new file mode 100755 index 000000000..997a0a89c --- /dev/null +++ b/go-client-sdk/docs/models/shared/readwriteobject.md @@ -0,0 +1,10 @@ +# ReadWriteObject + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Num1` | *int64* | :heavy_check_mark: | N/A | +| `Num2` | *int64* | :heavy_check_mark: | N/A | +| `Num3` | *int64* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/readwriteobjectinput.md b/go-client-sdk/docs/models/shared/readwriteobjectinput.md deleted file mode 100755 index 81f4e8203..000000000 --- a/go-client-sdk/docs/models/shared/readwriteobjectinput.md +++ /dev/null @@ -1,10 +0,0 @@ -# ReadWriteObjectInput - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `Num1` | *int64* | :heavy_check_mark: | N/A | -| `Num2` | *int64* | :heavy_check_mark: | N/A | -| `Num3` | *int64* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/simpleobject.md b/go-client-sdk/docs/models/shared/simpleobject.md index 2e4e66a48..40d25d897 100755 --- a/go-client-sdk/docs/models/shared/simpleobject.md +++ b/go-client-sdk/docs/models/shared/simpleobject.md @@ -19,12 +19,12 @@ A link to the external docs. | `DateTime` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00.000000001Z | | `Decimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | 3.141592653589793 | | `DecimalStr` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `Enum` | [Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | +| `Enum` | [shared.Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | | `Float32` | *float32* | :heavy_check_mark: | A float32 property. | 1.1 | | `Int` | *int64* | :heavy_check_mark: | An integer property. | 1 | | `Int32` | *int* | :heavy_check_mark: | An int32 property. | 1 | -| `Int32Enum` | [SimpleObjectInt32Enum](../../models/shared/simpleobjectint32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | -| `IntEnum` | [SimpleObjectIntEnum](../../models/shared/simpleobjectintenum.md) | :heavy_check_mark: | An integer enum property. | 2 | +| `Int32Enum` | [shared.Int32Enum](../../models/shared/int32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | +| `IntEnum` | [shared.IntEnum](../../models/shared/intenum.md) | :heavy_check_mark: | An integer enum property. | 2 | | `IntOptNull` | **int64* | :heavy_minus_sign: | An optional integer property will be null for tests. | | | `Num` | *float64* | :heavy_check_mark: | A number property. | 1.1 | | `NumOptNull` | **float64* | :heavy_minus_sign: | An optional number property will be null for tests. | | diff --git a/go-client-sdk/docs/models/shared/simpleobjectcamelcase.md b/go-client-sdk/docs/models/shared/simpleobjectcamelcase.md index a5b547c09..e89555d64 100755 --- a/go-client-sdk/docs/models/shared/simpleobjectcamelcase.md +++ b/go-client-sdk/docs/models/shared/simpleobjectcamelcase.md @@ -8,24 +8,24 @@ A link to the external docs. ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `AnyVal` | *interface{}* | :heavy_check_mark: | An any property. | any example | -| `BigintStrVal` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | | -| `BigintVal` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | | -| `BoolOptVal` | **bool* | :heavy_minus_sign: | An optional boolean property. | true | -| `BoolVal` | *bool* | :heavy_check_mark: | A boolean property. | true | -| `DateTimeVal` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | -| `DateVal` | [types.Date](../../types/date.md) | :heavy_check_mark: | A date property. | 2020-01-01 | -| `DecimalVal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | | -| `EnumVal` | [Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | -| `Float32Val` | *float32* | :heavy_check_mark: | A float32 property. | 2.2222222 | -| `Int32EnumVal` | [SimpleObjectCamelCaseInt32EnumVal](../../models/shared/simpleobjectcamelcaseint32enumval.md) | :heavy_check_mark: | An int32 enum property. | 69 | -| `Int32Val` | *int* | :heavy_check_mark: | An int32 property. | 1 | -| `IntEnumVal` | [SimpleObjectCamelCaseIntEnumVal](../../models/shared/simpleobjectcamelcaseintenumval.md) | :heavy_check_mark: | An integer enum property. | 3 | -| `IntOptNullVal` | **int64* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | -| `IntVal` | *int64* | :heavy_check_mark: | An integer property. | 999999 | -| `NumOptNullVal` | **float64* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | -| `NumVal` | *float64* | :heavy_check_mark: | A number property. | 1.1 | -| `StrOptVal` | **string* | :heavy_minus_sign: | An optional string property. | optional example | -| `StrVal` | *string* | :heavy_check_mark: | A string property. | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `AnyVal` | *interface{}* | :heavy_check_mark: | An any property. | any example | +| `BigintStrVal` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | | +| `BigintVal` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | | +| `BoolOptVal` | **bool* | :heavy_minus_sign: | An optional boolean property. | true | +| `BoolVal` | *bool* | :heavy_check_mark: | A boolean property. | true | +| `DateTimeVal` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | +| `DateVal` | [types.Date](../../types/date.md) | :heavy_check_mark: | A date property. | 2020-01-01 | +| `DecimalVal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | | +| `EnumVal` | [shared.Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | +| `Float32Val` | *float32* | :heavy_check_mark: | A float32 property. | 2.2222222 | +| `Int32EnumVal` | [shared.Int32EnumVal](../../models/shared/int32enumval.md) | :heavy_check_mark: | An int32 enum property. | 69 | +| `Int32Val` | *int* | :heavy_check_mark: | An int32 property. | 1 | +| `IntEnumVal` | [shared.IntEnumVal](../../models/shared/intenumval.md) | :heavy_check_mark: | An integer enum property. | 3 | +| `IntOptNullVal` | **int64* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | +| `IntVal` | *int64* | :heavy_check_mark: | An integer property. | 999999 | +| `NumOptNullVal` | **float64* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | +| `NumVal` | *float64* | :heavy_check_mark: | A number property. | 1.1 | +| `StrOptVal` | **string* | :heavy_minus_sign: | An optional string property. | optional example | +| `StrVal` | *string* | :heavy_check_mark: | A string property. | example | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md b/go-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md deleted file mode 100755 index 373364bce..000000000 --- a/go-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseInt32EnumVal - -An int32 enum property. - - -## Values - -| Name | Value | -| --------------------------------------------------------- | --------------------------------------------------------- | -| `SimpleObjectCamelCaseInt32EnumValFiftyFive` | 55 | -| `SimpleObjectCamelCaseInt32EnumValSixtyNine` | 69 | -| `SimpleObjectCamelCaseInt32EnumValOneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md b/go-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md deleted file mode 100755 index d98dcb1da..000000000 --- a/go-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseIntEnumVal - -An integer enum property. - - -## Values - -| Name | Value | -| --------------------------------------- | --------------------------------------- | -| `SimpleObjectCamelCaseIntEnumValFirst` | 1 | -| `SimpleObjectCamelCaseIntEnumValSecond` | 2 | -| `SimpleObjectCamelCaseIntEnumValThird` | 3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/simpleobjectint32enum.md b/go-client-sdk/docs/models/shared/simpleobjectint32enum.md deleted file mode 100755 index e95db94e7..000000000 --- a/go-client-sdk/docs/models/shared/simpleobjectint32enum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectInt32Enum - -An int32 enum property. - - -## Values - -| Name | Value | -| --------------------------------------------- | --------------------------------------------- | -| `SimpleObjectInt32EnumFiftyFive` | 55 | -| `SimpleObjectInt32EnumSixtyNine` | 69 | -| `SimpleObjectInt32EnumOneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/simpleobjectintenum.md b/go-client-sdk/docs/models/shared/simpleobjectintenum.md deleted file mode 100755 index 4252c1b9c..000000000 --- a/go-client-sdk/docs/models/shared/simpleobjectintenum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectIntEnum - -An integer enum property. - - -## Values - -| Name | Value | -| --------------------------- | --------------------------- | -| `SimpleObjectIntEnumFirst` | 1 | -| `SimpleObjectIntEnumSecond` | 2 | -| `SimpleObjectIntEnumThird` | 3 | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/simpleobjectwithtype.md b/go-client-sdk/docs/models/shared/simpleobjectwithtype.md index 47acc6fb8..4c950707e 100755 --- a/go-client-sdk/docs/models/shared/simpleobjectwithtype.md +++ b/go-client-sdk/docs/models/shared/simpleobjectwithtype.md @@ -8,26 +8,26 @@ A link to the external docs. ## Fields -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `Any` | *interface{}* | :heavy_check_mark: | An any property. | any | -| `Bigint` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | 8821239038968084 | -| `BigintStr` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `Bool` | *bool* | :heavy_check_mark: | A boolean property. | true | -| `BoolOpt` | **bool* | :heavy_minus_sign: | An optional boolean property. | true | -| `Date` | [types.Date](../../types/date.md) | :heavy_check_mark: | A date property. | 2020-01-01 | -| `DateTime` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00.000000001Z | -| `Decimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `DecimalStr` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `Enum` | [Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | -| `Float32` | *float32* | :heavy_check_mark: | A float32 property. | 1.1 | -| `Int` | *int64* | :heavy_check_mark: | An integer property. | 1 | -| `Int32` | *int* | :heavy_check_mark: | An int32 property. | 1 | -| `Int32Enum` | [SimpleObjectWithTypeInt32Enum](../../models/shared/simpleobjectwithtypeint32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | -| `IntEnum` | [SimpleObjectWithTypeIntEnum](../../models/shared/simpleobjectwithtypeintenum.md) | :heavy_check_mark: | An integer enum property. | 2 | -| `IntOptNull` | **int64* | :heavy_minus_sign: | An optional integer property will be null for tests. | | -| `Num` | *float64* | :heavy_check_mark: | A number property. | 1.1 | -| `NumOptNull` | **float64* | :heavy_minus_sign: | An optional number property will be null for tests. | | -| `Str` | *string* | :heavy_check_mark: | A string property. | test | -| `StrOpt` | **string* | :heavy_minus_sign: | An optional string property. | testOptional | -| `Type` | *string* | :heavy_check_mark: | N/A | | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `Any` | *interface{}* | :heavy_check_mark: | An any property. | any | +| `Bigint` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | 8821239038968084 | +| `BigintStr` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `Bool` | *bool* | :heavy_check_mark: | A boolean property. | true | +| `BoolOpt` | **bool* | :heavy_minus_sign: | An optional boolean property. | true | +| `Date` | [types.Date](../../types/date.md) | :heavy_check_mark: | A date property. | 2020-01-01 | +| `DateTime` | [time.Time](https://pkg.go.dev/time#Time) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00.000000001Z | +| `Decimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `DecimalStr` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `Enum` | [shared.Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | +| `Float32` | *float32* | :heavy_check_mark: | A float32 property. | 1.1 | +| `Int` | *int64* | :heavy_check_mark: | An integer property. | 1 | +| `Int32` | *int* | :heavy_check_mark: | An int32 property. | 1 | +| `Int32Enum` | [shared.SimpleObjectWithTypeInt32Enum](../../models/shared/simpleobjectwithtypeint32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | +| `IntEnum` | [shared.SimpleObjectWithTypeIntEnum](../../models/shared/simpleobjectwithtypeintenum.md) | :heavy_check_mark: | An integer enum property. | 2 | +| `IntOptNull` | **int64* | :heavy_minus_sign: | An optional integer property will be null for tests. | | +| `Num` | *float64* | :heavy_check_mark: | A number property. | 1.1 | +| `NumOptNull` | **float64* | :heavy_minus_sign: | An optional number property will be null for tests. | | +| `Str` | *string* | :heavy_check_mark: | A string property. | test | +| `StrOpt` | **string* | :heavy_minus_sign: | An optional string property. | testOptional | +| `Type` | *string* | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/slides.md b/go-client-sdk/docs/models/shared/slides.md new file mode 100755 index 000000000..71cd8477a --- /dev/null +++ b/go-client-sdk/docs/models/shared/slides.md @@ -0,0 +1,10 @@ +# Slides + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `Items` | []*string* | :heavy_minus_sign: | N/A | +| `Title` | *string* | :heavy_check_mark: | N/A | +| `Type` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/slideshow.md b/go-client-sdk/docs/models/shared/slideshow.md new file mode 100755 index 000000000..695fb9eb9 --- /dev/null +++ b/go-client-sdk/docs/models/shared/slideshow.md @@ -0,0 +1,11 @@ +# Slideshow + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | +| `Author` | *string* | :heavy_check_mark: | N/A | +| `Date` | *string* | :heavy_check_mark: | N/A | +| `Slides` | [][shared.Slides](../../models/shared/slides.md) | :heavy_check_mark: | N/A | +| `Title` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/two.md b/go-client-sdk/docs/models/shared/two.md new file mode 100755 index 000000000..a726ef99c --- /dev/null +++ b/go-client-sdk/docs/models/shared/two.md @@ -0,0 +1,8 @@ +# Two + + +## Values + +| Name | Value | +| ----------- | ----------- | +| `TwoLatest` | latest | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/type.md b/go-client-sdk/docs/models/shared/type.md new file mode 100755 index 000000000..224a89b28 --- /dev/null +++ b/go-client-sdk/docs/models/shared/type.md @@ -0,0 +1,8 @@ +# Type + + +## Values + +| Name | Value | +| ---------- | ---------- | +| `TypeBoat` | boat | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/typedobject1.md b/go-client-sdk/docs/models/shared/typedobject1.md index 662f7a6e5..614a405a0 100755 --- a/go-client-sdk/docs/models/shared/typedobject1.md +++ b/go-client-sdk/docs/models/shared/typedobject1.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| `Type` | [TypedObject1Type](../../models/shared/typedobject1type.md) | :heavy_check_mark: | N/A | -| `Value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | +| `Type` | [shared.TypedObject1Type](../../models/shared/typedobject1type.md) | :heavy_check_mark: | N/A | +| `Value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/typedobject2.md b/go-client-sdk/docs/models/shared/typedobject2.md index 161c660a3..8ea0a7293 100755 --- a/go-client-sdk/docs/models/shared/typedobject2.md +++ b/go-client-sdk/docs/models/shared/typedobject2.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| `Type` | [TypedObject2Type](../../models/shared/typedobject2type.md) | :heavy_check_mark: | N/A | -| `Value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | +| `Type` | [shared.TypedObject2Type](../../models/shared/typedobject2type.md) | :heavy_check_mark: | N/A | +| `Value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/typedobject3.md b/go-client-sdk/docs/models/shared/typedobject3.md index 39fa243b0..2d317338b 100755 --- a/go-client-sdk/docs/models/shared/typedobject3.md +++ b/go-client-sdk/docs/models/shared/typedobject3.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| `Type` | [TypedObject3Type](../../models/shared/typedobject3type.md) | :heavy_check_mark: | N/A | -| `Value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | +| `Type` | [shared.TypedObject3Type](../../models/shared/typedobject3type.md) | :heavy_check_mark: | N/A | +| `Value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/validcircularreferenceobject.md b/go-client-sdk/docs/models/shared/validcircularreferenceobject.md index 0eaefda29..3c0dc3ed3 100755 --- a/go-client-sdk/docs/models/shared/validcircularreferenceobject.md +++ b/go-client-sdk/docs/models/shared/validcircularreferenceobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `Circular` | [][ValidCircularReferenceObject](../../models/shared/validcircularreferenceobject.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `Circular` | [][shared.ValidCircularReferenceObject](../../models/shared/validcircularreferenceobject.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/go-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobject.md b/go-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobject.md new file mode 100755 index 000000000..f7a587f73 --- /dev/null +++ b/go-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobject.md @@ -0,0 +1,17 @@ +# WeaklyTypedOneOfReadWriteObject + + +## Supported Types + +### SimpleObject + +```go +weaklyTypedOneOfReadWriteObject := shared.CreateWeaklyTypedOneOfReadWriteObjectSimpleObject(shared.SimpleObject{/* values here */}) +``` + +### ReadWriteObject + +```go +weaklyTypedOneOfReadWriteObject := shared.CreateWeaklyTypedOneOfReadWriteObjectReadWriteObject(shared.ReadWriteObject{/* values here */}) +``` + diff --git a/go-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobjectinput.md b/go-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobjectinput.md deleted file mode 100755 index cc5e9842e..000000000 --- a/go-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobjectinput.md +++ /dev/null @@ -1,17 +0,0 @@ -# WeaklyTypedOneOfReadWriteObjectInput - - -## Supported Types - -### SimpleObject - -```go -weaklyTypedOneOfReadWriteObjectInput := shared.CreateWeaklyTypedOneOfReadWriteObjectInputSimpleObject(shared.SimpleObject{/* values here */}) -``` - -### ReadWriteObjectInput - -```go -weaklyTypedOneOfReadWriteObjectInput := shared.CreateWeaklyTypedOneOfReadWriteObjectInputReadWriteObjectInput(shared.ReadWriteObjectInput{/* values here */}) -``` - diff --git a/go-client-sdk/docs/sdks/auth/README.md b/go-client-sdk/docs/sdks/auth/README.md index 65585448c..44f08fc87 100755 --- a/go-client-sdk/docs/sdks/auth/README.md +++ b/go-client-sdk/docs/sdks/auth/README.md @@ -1,5 +1,5 @@ # Auth -(*Auth*) +(*.Auth*) ## Overview @@ -26,8 +26,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" ) func main() { @@ -37,7 +37,9 @@ func main() { ) - operationSecurity := "Token YOUR_API_KEY" + operationSecurity := operations.APIKeyAuthSecurity{ + APIKeyAuth: "Token YOUR_API_KEY", + } ctx := context.Background() res, err := s.Auth.APIKeyAuth(ctx, operationSecurity) @@ -74,8 +76,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -121,8 +123,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" ) func main() { @@ -178,8 +180,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" ) func main() { @@ -189,7 +191,9 @@ func main() { ) - operationSecurity := "YOUR_JWT" + operationSecurity := operations.BearerAuthSecurity{ + BearerAuth: "YOUR_JWT", + } ctx := context.Background() res, err := s.Auth.BearerAuth(ctx, operationSecurity) @@ -226,8 +230,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -273,8 +277,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" ) func main() { @@ -284,7 +288,9 @@ func main() { ) - operationSecurity := "Bearer YOUR_OAUTH2_TOKEN" + operationSecurity := operations.Oauth2AuthSecurity{ + Oauth2: "Bearer YOUR_OAUTH2_TOKEN", + } ctx := context.Background() res, err := s.Auth.Oauth2Auth(ctx, operationSecurity) @@ -321,8 +327,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" ) func main() { @@ -332,7 +338,9 @@ func main() { ) - operationSecurity := "Bearer YOUR_OAUTH2_TOKEN" + operationSecurity := operations.Oauth2OverrideSecurity{ + Oauth2: "Bearer YOUR_OAUTH2_TOKEN", + } ctx := context.Background() res, err := s.Auth.Oauth2Override(ctx, operationSecurity) @@ -369,8 +377,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" ) func main() { @@ -380,7 +388,9 @@ func main() { ) - operationSecurity := "Bearer YOUR_OPENID_TOKEN" + operationSecurity := operations.OpenIDConnectAuthSecurity{ + OpenIDConnect: "Bearer YOUR_OPENID_TOKEN", + } ctx := context.Background() res, err := s.Auth.OpenIDConnectAuth(ctx, operationSecurity) diff --git a/go-client-sdk/docs/sdks/authnew/README.md b/go-client-sdk/docs/sdks/authnew/README.md index af0121f96..1e0cf3cfc 100755 --- a/go-client-sdk/docs/sdks/authnew/README.md +++ b/go-client-sdk/docs/sdks/authnew/README.md @@ -1,5 +1,5 @@ # AuthNew -(*AuthNew*) +(*.AuthNew*) ## Overview @@ -29,8 +29,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -44,12 +44,12 @@ func main() { ctx := context.Background() res, err := s.AuthNew.APIKeyAuthGlobalNew(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Password: "owsGgP4_AhRPMSJ", Username: "Devonte_Bins", }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ + shared.HeaderAuth{ ExpectedValue: "string", HeaderName: "string", }, @@ -89,8 +89,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -104,12 +104,12 @@ func main() { ctx := context.Background() res, err := s.AuthNew.AuthGlobal(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Password: "xvJcf9GiJNr7T2x", Username: "Cory33", }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ + shared.HeaderAuth{ ExpectedValue: "string", HeaderName: "string", }, @@ -149,9 +149,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" ) func main() { @@ -168,12 +168,12 @@ func main() { ctx := context.Background() res, err := s.AuthNew.BasicAuthNew(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Password: "Z2OStPksFyrcGeu", Username: "Ashton.Steuber27", }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ + shared.HeaderAuth{ ExpectedValue: "string", HeaderName: "string", }, @@ -214,9 +214,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" ) func main() { @@ -232,12 +232,12 @@ func main() { ctx := context.Background() res, err := s.AuthNew.MultipleMixedOptionsAuth(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Password: "Iq1JSzG1wqLDz4v", Username: "Ismael.Emmerich", }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ + shared.HeaderAuth{ ExpectedValue: "string", HeaderName: "string", }, @@ -278,9 +278,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" ) func main() { @@ -300,12 +300,12 @@ func main() { ctx := context.Background() res, err := s.AuthNew.MultipleMixedSchemeAuth(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Password: "OcWVV5608IiaWJQ", Username: "Kameron42", }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ + shared.HeaderAuth{ ExpectedValue: "string", HeaderName: "string", }, @@ -346,9 +346,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" ) func main() { @@ -367,12 +367,12 @@ func main() { ctx := context.Background() res, err := s.AuthNew.MultipleOptionsWithMixedSchemesAuth(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Password: "fpwNE90MyqKIrXk", Username: "Caroline_Walsh", }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ + shared.HeaderAuth{ ExpectedValue: "string", HeaderName: "string", }, @@ -413,9 +413,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" ) func main() { @@ -434,12 +434,12 @@ func main() { ctx := context.Background() res, err := s.AuthNew.MultipleOptionsWithSimpleSchemesAuth(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Password: "pibxDTiJSijK04Y", Username: "Selena76", }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ + shared.HeaderAuth{ ExpectedValue: "string", HeaderName: "string", }, @@ -480,9 +480,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" ) func main() { @@ -498,12 +498,12 @@ func main() { ctx := context.Background() res, err := s.AuthNew.MultipleSimpleOptionsAuth(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Password: "pzdKQgSGZSrUGNs", Username: "Eryn51", }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ + shared.HeaderAuth{ ExpectedValue: "string", HeaderName: "string", }, @@ -544,9 +544,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" ) func main() { @@ -563,12 +563,12 @@ func main() { ctx := context.Background() res, err := s.AuthNew.MultipleSimpleSchemeAuth(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Password: "UrAsw466AAaYtr1", Username: "Kenya.Baumbach", }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ + shared.HeaderAuth{ ExpectedValue: "string", HeaderName: "string", }, @@ -609,9 +609,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" ) func main() { @@ -621,16 +621,18 @@ func main() { ) - operationSecurity := "Bearer YOUR_OAUTH2_TOKEN" + operationSecurity := operations.Oauth2AuthNewSecurity{ + Oauth2: "Bearer YOUR_OAUTH2_TOKEN", + } ctx := context.Background() res, err := s.AuthNew.Oauth2AuthNew(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Password: "V02sHy2onRTMRgS", Username: "Polly.Aufderhar78", }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ + shared.HeaderAuth{ ExpectedValue: "string", HeaderName: "string", }, @@ -671,9 +673,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" ) func main() { @@ -683,16 +685,18 @@ func main() { ) - operationSecurity := "Bearer YOUR_OPENID_TOKEN" + operationSecurity := operations.OpenIDConnectAuthNewSecurity{ + OpenIDConnect: "Bearer YOUR_OPENID_TOKEN", + } ctx := context.Background() res, err := s.AuthNew.OpenIDConnectAuthNew(ctx, shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Password: "1_B3hNdr8HC3AeS", Username: "Floy_Heller", }, - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ - shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ + shared.HeaderAuth{ ExpectedValue: "string", HeaderName: "string", }, diff --git a/go-client-sdk/docs/sdks/documentation/README.md b/go-client-sdk/docs/sdks/documentation/README.md index 7f58ecd93..1798a793e 100755 --- a/go-client-sdk/docs/sdks/documentation/README.md +++ b/go-client-sdk/docs/sdks/documentation/README.md @@ -1,5 +1,5 @@ # Documentation -(*Documentation*) +(*.Documentation*) ## Overview @@ -21,8 +21,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/errors/README.md b/go-client-sdk/docs/sdks/errors/README.md index a26e3d7b1..281f3d6f8 100755 --- a/go-client-sdk/docs/sdks/errors/README.md +++ b/go-client-sdk/docs/sdks/errors/README.md @@ -1,5 +1,5 @@ # Errors -(*Errors*) +(*.Errors*) ## Overview @@ -21,8 +21,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -69,8 +69,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -120,8 +120,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/first/README.md b/go-client-sdk/docs/sdks/first/README.md index 3aaa80e81..4abd3c8bc 100755 --- a/go-client-sdk/docs/sdks/first/README.md +++ b/go-client-sdk/docs/sdks/first/README.md @@ -1,5 +1,5 @@ # First -(*First*) +(*.First*) ### Available Operations @@ -15,8 +15,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/flattening/README.md b/go-client-sdk/docs/sdks/flattening/README.md index 2627658d5..89a8c7e89 100755 --- a/go-client-sdk/docs/sdks/flattening/README.md +++ b/go-client-sdk/docs/sdks/flattening/README.md @@ -1,5 +1,5 @@ # Flattening -(*Flattening*) +(*.Flattening*) ## Overview @@ -23,10 +23,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -53,8 +53,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -98,10 +98,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -130,8 +130,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -173,8 +173,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -227,9 +227,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -284,9 +284,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { diff --git a/go-client-sdk/docs/sdks/generation/README.md b/go-client-sdk/docs/sdks/generation/README.md index 37232fff9..44d3fea52 100755 --- a/go-client-sdk/docs/sdks/generation/README.md +++ b/go-client-sdk/docs/sdks/generation/README.md @@ -1,5 +1,5 @@ # Generation -(*Generation*) +(*.Generation*) ## Overview @@ -38,8 +38,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -85,8 +85,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -132,8 +132,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -179,8 +179,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -230,8 +230,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -281,8 +281,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -332,8 +332,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -380,8 +380,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -399,7 +399,7 @@ func main() { log.Fatal(err) } - if res.DeprecatedObjectInSchemaGet200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -429,8 +429,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -484,8 +484,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -538,8 +538,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -589,8 +589,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -636,8 +636,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -655,7 +655,7 @@ func main() { log.Fatal(err) } - if res.GetGlobalNameOverride200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -683,9 +683,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/callbacks" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/callbacks" ) func main() { @@ -703,7 +703,7 @@ func main() { log.Fatal(err) } - if res.IgnoredGenerationGet200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -731,9 +731,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -746,7 +746,7 @@ func main() { ) - requestBody := operations.IgnoresPostApplicationJSON{} + requestBody := operations.IgnoresPostRequestBody{} var testParam *string = "string" @@ -764,11 +764,11 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `requestBody` | [operations.IgnoresPostApplicationJSON](../../models/operations/ignorespostapplicationjson.md) | :heavy_check_mark: | N/A | -| `testParam` | **string* | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | +| `requestBody` | [operations.IgnoresPostRequestBody](../../models/operations/ignorespostrequestbody.md) | :heavy_check_mark: | N/A | +| `testParam` | **string* | :heavy_minus_sign: | N/A | ### Response @@ -786,9 +786,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -801,7 +801,7 @@ func main() { ) - var testEnumQueryParam operations.NameOverrideGetEnumNameOverride = operations.NameOverrideGetEnumNameOverrideValue3 + var testEnumQueryParam operations.EnumNameOverride = operations.EnumNameOverrideValue3 var testQueryParam string = "example" @@ -819,11 +819,11 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | Example | -| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | | -| `testEnumQueryParam` | [operations.NameOverrideGetEnumNameOverride](../../models/operations/nameoverridegetenumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | -| `testQueryParam` | *string* | :heavy_check_mark: | N/A | example | +| Parameter | Type | Required | Description | Example | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | | +| `testEnumQueryParam` | [operations.EnumNameOverride](../../models/operations/enumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | +| `testQueryParam` | *string* | :heavy_check_mark: | N/A | example | ### Response @@ -841,8 +841,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -888,8 +888,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -935,9 +935,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -956,7 +956,7 @@ func main() { var decimal *decimal.Big = types.MustNewDecimalFromString("3346.96") - obj := &operations.TypedParameterGenerationGetObj{ + obj := &operations.Obj{ Bool: false, Num: 4778.06, Str: "string", @@ -976,13 +976,13 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `bigint` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | -| `date` | [*types.Date](../../types/date.md) | :heavy_minus_sign: | N/A | -| `decimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | -| `obj` | [*operations.TypedParameterGenerationGetObj](../../models/operations/typedparametergenerationgetobj.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | +| `bigint` | [*big.Int](https://pkg.go.dev/math/big#Int) | :heavy_minus_sign: | N/A | +| `date` | [*types.Date](../../types/date.md) | :heavy_minus_sign: | N/A | +| `decimal` | [*decimal.Big](https://pkg.go.dev/github.com/ericlagergren/decimal#Big) | :heavy_minus_sign: | N/A | +| `obj` | [*operations.Obj](../../models/operations/obj.md) | :heavy_minus_sign: | N/A | ### Response @@ -1005,11 +1005,11 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -1043,8 +1043,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1059,20 +1059,20 @@ func main() { DecimalParameter: types.MustNewDecimalFromString("5223.72"), DecimalStrParameter: types.MustNewDecimalFromString("2911.37"), DoubleParameter: 6946.59, - EnumParameter: operations.UsageExamplePostEnumParameterValue1, + EnumParameter: operations.EnumParameterValue1, FalseyNumberParameter: 0, Float32Parameter: 1029.75, FloatParameter: 5669.99, Int64Parameter: 195232, IntParameter: 569663, - OptEnumParameter: operations.UsageExamplePostOptEnumParameterValue3.ToPointer(), + OptEnumParameter: operations.OptEnumParameterValue3.ToPointer(), StrParameter: "example 1", }, operationSecurity) if err != nil { log.Fatal(err) } - if res.UsageExamplePost200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } diff --git a/go-client-sdk/docs/sdks/globals/README.md b/go-client-sdk/docs/sdks/globals/README.md index ea3e3be9a..5acb59c0e 100755 --- a/go-client-sdk/docs/sdks/globals/README.md +++ b/go-client-sdk/docs/sdks/globals/README.md @@ -1,5 +1,5 @@ # Globals -(*Globals*) +(*.Globals*) ## Overview @@ -20,8 +20,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -71,8 +71,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/nest/README.md b/go-client-sdk/docs/sdks/nest/README.md index 2ca30dfa0..609dfaf00 100755 --- a/go-client-sdk/docs/sdks/nest/README.md +++ b/go-client-sdk/docs/sdks/nest/README.md @@ -1,5 +1,5 @@ # Nest -(*Nest*) +(*.Nest*) ### Available Operations diff --git a/go-client-sdk/docs/sdks/nested/README.md b/go-client-sdk/docs/sdks/nested/README.md index 5d8002064..78a123fb4 100755 --- a/go-client-sdk/docs/sdks/nested/README.md +++ b/go-client-sdk/docs/sdks/nested/README.md @@ -1,5 +1,5 @@ # Nested -(*Nested*) +(*.Nested*) ### Available Operations @@ -15,8 +15,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/nestedfirst/README.md b/go-client-sdk/docs/sdks/nestedfirst/README.md deleted file mode 100755 index e8ba783bb..000000000 --- a/go-client-sdk/docs/sdks/nestedfirst/README.md +++ /dev/null @@ -1,53 +0,0 @@ -# NestedFirst -(*Nested.First*) - -### Available Operations - -* [Get](#get) - -## Get - -### Example Usage - -```go -package main - -import( - "context" - "log" - "openapi" - "openapi/pkg/models/shared" -) - -func main() { - s := openapi.New( - openapi.WithSecurity(shared.Security{ - APIKeyAuth: openapi.String("Token YOUR_API_KEY"), - }), - openapi.WithGlobalPathParam(100), - openapi.WithGlobalQueryParam("some example global query param"), - ) - - ctx := context.Background() - res, err := s.Nested.First.Get(ctx) - if err != nil { - log.Fatal(err) - } - - if res.StatusCode == http.StatusOK { - // handle response - } -} -``` - -### Parameters - -| Parameter | Type | Required | Description | -| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | - - -### Response - -**[*operations.NestedFirstGetResponse](../../models/operations/nestedfirstgetresponse.md), error** - diff --git a/go-client-sdk/docs/sdks/nestedsecond/README.md b/go-client-sdk/docs/sdks/nestedsecond/README.md deleted file mode 100755 index d51535216..000000000 --- a/go-client-sdk/docs/sdks/nestedsecond/README.md +++ /dev/null @@ -1,53 +0,0 @@ -# NestedSecond -(*Nested.Second*) - -### Available Operations - -* [Get](#get) - -## Get - -### Example Usage - -```go -package main - -import( - "context" - "log" - "openapi" - "openapi/pkg/models/shared" -) - -func main() { - s := openapi.New( - openapi.WithSecurity(shared.Security{ - APIKeyAuth: openapi.String("Token YOUR_API_KEY"), - }), - openapi.WithGlobalPathParam(100), - openapi.WithGlobalQueryParam("some example global query param"), - ) - - ctx := context.Background() - res, err := s.Nested.Second.Get(ctx) - if err != nil { - log.Fatal(err) - } - - if res.StatusCode == http.StatusOK { - // handle response - } -} -``` - -### Parameters - -| Parameter | Type | Required | Description | -| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | - - -### Response - -**[*operations.NestedSecondGetResponse](../../models/operations/nestedsecondgetresponse.md), error** - diff --git a/go-client-sdk/docs/sdks/nestfirst/README.md b/go-client-sdk/docs/sdks/nestfirst/README.md deleted file mode 100755 index 602481f17..000000000 --- a/go-client-sdk/docs/sdks/nestfirst/README.md +++ /dev/null @@ -1,53 +0,0 @@ -# NestFirst -(*Nest.First*) - -### Available Operations - -* [Get](#get) - -## Get - -### Example Usage - -```go -package main - -import( - "context" - "log" - "openapi" - "openapi/pkg/models/shared" -) - -func main() { - s := openapi.New( - openapi.WithSecurity(shared.Security{ - APIKeyAuth: openapi.String("Token YOUR_API_KEY"), - }), - openapi.WithGlobalPathParam(100), - openapi.WithGlobalQueryParam("some example global query param"), - ) - - ctx := context.Background() - res, err := s.Nest.First.Get(ctx) - if err != nil { - log.Fatal(err) - } - - if res.StatusCode == http.StatusOK { - // handle response - } -} -``` - -### Parameters - -| Parameter | Type | Required | Description | -| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | - - -### Response - -**[*operations.NestFirstGetResponse](../../models/operations/nestfirstgetresponse.md), error** - diff --git a/go-client-sdk/docs/sdks/pagination/README.md b/go-client-sdk/docs/sdks/pagination/README.md index e05480681..75eedc5e1 100755 --- a/go-client-sdk/docs/sdks/pagination/README.md +++ b/go-client-sdk/docs/sdks/pagination/README.md @@ -1,5 +1,5 @@ # Pagination -(*Pagination*) +(*.Pagination*) ## Overview @@ -24,9 +24,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -84,8 +84,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -144,8 +144,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -201,8 +201,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -264,8 +264,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -321,8 +321,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/parameters/README.md b/go-client-sdk/docs/sdks/parameters/README.md index 777b0f8ba..b78d561ae 100755 --- a/go-client-sdk/docs/sdks/parameters/README.md +++ b/go-client-sdk/docs/sdks/parameters/README.md @@ -1,5 +1,5 @@ # Parameters -(*Parameters*) +(*.Parameters*) ## Overview @@ -41,8 +41,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -107,11 +107,11 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" - "openapi/pkg/models/operations" + "openapi/v2/pkg/types" + "openapi/v2/pkg/models/operations" ) func main() { @@ -138,14 +138,14 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), } - objArrParam := &operations.DeepObjectQueryParamsObjectObjArrParam{ + objArrParam := &operations.ObjArrParam{ Arr: []string{ "test", "test2", @@ -166,11 +166,11 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `objParam` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `objArrParam` | [*operations.DeepObjectQueryParamsObjectObjArrParam](../../models/operations/deepobjectqueryparamsobjectobjarrparam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | +| `objParam` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `objArrParam` | [*operations.ObjArrParam](../../models/operations/objarrparam.md) | :heavy_minus_sign: | N/A | ### Response @@ -188,8 +188,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -239,8 +239,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -299,9 +299,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -314,12 +314,12 @@ func main() { ) - objParamExploded := operations.FormQueryParamsCamelObjectObjParamExploded{ + objParamExploded := operations.ObjParamExploded{ ItemCount: openapi.String("10"), SearchTerm: openapi.String("foo"), } - objParam := &operations.FormQueryParamsCamelObjectObjParam{ + objParam := &operations.ObjParam{ EncodedCount: openapi.String("11"), EncodedTerm: openapi.String("bar"), } @@ -338,11 +338,11 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `objParamExploded` | [operations.FormQueryParamsCamelObjectObjParamExploded](../../models/operations/formqueryparamscamelobjectobjparamexploded.md) | :heavy_check_mark: | N/A | -| `objParam` | [*operations.FormQueryParamsCamelObjectObjParam](../../models/operations/formqueryparamscamelobjectobjparam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | +| `objParamExploded` | [operations.ObjParamExploded](../../models/operations/objparamexploded.md) | :heavy_check_mark: | N/A | +| `objParam` | [*operations.ObjParam](../../models/operations/objparam.md) | :heavy_minus_sign: | N/A | ### Response @@ -360,8 +360,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -420,10 +420,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -450,8 +450,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -471,8 +471,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -514,8 +514,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -574,8 +574,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -638,8 +638,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -692,8 +692,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -707,8 +707,8 @@ func main() { xHeaderMap := map[string]string{ - "key1": "value1", "key2": "value2", + "key1": "value1", } xHeaderMapExplode := map[string]string{ @@ -752,10 +752,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -782,8 +782,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -803,8 +803,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -846,8 +846,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -906,10 +906,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -923,7 +923,7 @@ func main() { deepObjParam := shared.DeepObject{ - Any: shared.CreateDeepObjectAnySimpleObject( + Any: shared.CreateAnySimpleObject( shared.SimpleObject{ Any: "any", Bigint: big.NewInt(8821239038968084), @@ -938,8 +938,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -960,8 +960,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -980,8 +980,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1004,8 +1004,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1024,8 +1024,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1046,8 +1046,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1069,8 +1069,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1112,8 +1112,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -1169,8 +1169,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -1226,10 +1226,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -1256,8 +1256,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1277,8 +1277,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1298,8 +1298,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1342,10 +1342,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -1372,8 +1372,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1414,10 +1414,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -1459,8 +1459,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1504,8 +1504,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -1558,8 +1558,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -1618,10 +1618,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -1648,8 +1648,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1669,8 +1669,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1712,8 +1712,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/requestbodies/README.md b/go-client-sdk/docs/sdks/requestbodies/README.md index b0f185830..d95788200 100755 --- a/go-client-sdk/docs/sdks/requestbodies/README.md +++ b/go-client-sdk/docs/sdks/requestbodies/README.md @@ -1,5 +1,5 @@ # RequestBodies -(*RequestBodies*) +(*.RequestBodies*) ## Overview @@ -99,8 +99,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -149,9 +149,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -165,15 +165,15 @@ func main() { ctx := context.Background() res, err := s.RequestBodies.NullableRequiredEmptyObjectPost(ctx, operations.NullableRequiredEmptyObjectPostRequestBody{ - NullableOptionalObj: &operations.NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj{}, - NullableRequiredObj: &operations.NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj{}, - RequiredObj: operations.NullableRequiredEmptyObjectPostRequestBodyRequiredObj{}, + NullableOptionalObj: &operations.NullableOptionalObj{}, + NullableRequiredObj: &operations.NullableRequiredObj{}, + RequiredObj: operations.RequiredObj{}, }) if err != nil { log.Fatal(err) } - if res.NullableRequiredEmptyObjectPost200ApplicationJSONString != nil { + if res.Res != nil { // handle response } } @@ -202,9 +202,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -221,14 +221,14 @@ func main() { NullableRequiredArray: []float64{ 2355.17, }, - NullableRequiredEnum: operations.NullableRequiredPropertyPostRequestBodyNullableRequiredEnumSecond, + NullableRequiredEnum: operations.NullableRequiredEnumSecond, NullableRequiredInt: 50266, }) if err != nil { log.Fatal(err) } - if res.NullableRequiredPropertyPost200ApplicationJSONString != nil { + if res.Res != nil { // handle response } } @@ -257,9 +257,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -284,7 +284,7 @@ func main() { log.Fatal(err) } - if res.NullableRequiredSharedObjectPost200ApplicationJSONString != nil { + if res.Res != nil { // handle response } } @@ -313,10 +313,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -344,8 +344,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -355,7 +355,7 @@ func main() { log.Fatal(err) } - if res.SimpleObjects != nil { + if res.Res != nil { // handle response } } @@ -385,9 +385,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -409,9 +409,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -424,7 +424,7 @@ func main() { log.Fatal(err) } - if res.SimpleObjectCamelCases != nil { + if res.Res != nil { // handle response } } @@ -454,10 +454,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -485,8 +485,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -525,9 +525,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -549,9 +549,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -593,10 +593,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -625,8 +625,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -637,7 +637,7 @@ func main() { log.Fatal(err) } - if res.Arrs != nil { + if res.Res != nil { // handle response } } @@ -667,9 +667,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -692,9 +692,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -708,7 +708,7 @@ func main() { log.Fatal(err) } - if res.Arrs != nil { + if res.Res != nil { // handle response } } @@ -738,8 +738,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -761,7 +761,7 @@ func main() { log.Fatal(err) } - if res.Arrs != nil { + if res.Res != nil { // handle response } } @@ -791,10 +791,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -823,8 +823,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -835,7 +835,7 @@ func main() { log.Fatal(err) } - if res.Maps != nil { + if res.Res != nil { // handle response } } @@ -865,9 +865,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -890,9 +890,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -906,7 +906,7 @@ func main() { log.Fatal(err) } - if res.Maps != nil { + if res.Res != nil { // handle response } } @@ -936,8 +936,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -957,7 +957,7 @@ func main() { log.Fatal(err) } - if res.Strings != nil { + if res.Res != nil { // handle response } } @@ -987,10 +987,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -1004,7 +1004,7 @@ func main() { ctx := context.Background() res, err := s.RequestBodies.RequestBodyPostApplicationJSONDeep(ctx, shared.DeepObject{ - Any: shared.CreateDeepObjectAnySimpleObject( + Any: shared.CreateAnySimpleObject( shared.SimpleObject{ Any: "any", Bigint: big.NewInt(8821239038968084), @@ -1019,8 +1019,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1041,8 +1041,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1061,8 +1061,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1071,7 +1071,7 @@ func main() { Bool: true, Int: 1, Map: map[string]shared.SimpleObject{ - "key": shared.SimpleObject{ + "key2": shared.SimpleObject{ Any: "any", Bigint: big.NewInt(8821239038968084), BigintStr: types.MustNewBigIntFromString("9223372036854775808"), @@ -1085,13 +1085,13 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), }, - "key2": shared.SimpleObject{ + "key": shared.SimpleObject{ Any: "any", Bigint: big.NewInt(8821239038968084), BigintStr: types.MustNewBigIntFromString("9223372036854775808"), @@ -1105,8 +1105,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1127,8 +1127,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1168,9 +1168,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -1184,7 +1184,7 @@ func main() { ctx := context.Background() res, err := s.RequestBodies.RequestBodyPostApplicationJSONDeepCamelCase(ctx, shared.DeepObjectCamelCase{ - AnyVal: shared.CreateDeepObjectCamelCaseAnyValSimpleObjectCamelCase( + AnyVal: shared.CreateAnyValSimpleObjectCamelCase( shared.SimpleObjectCamelCase{ AnyVal: "any example", BoolOptVal: openapi.Bool(true), @@ -1193,9 +1193,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -1213,9 +1213,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -1235,9 +1235,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -1255,9 +1255,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -1300,10 +1300,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -1331,8 +1331,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1372,9 +1372,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -1396,9 +1396,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -1441,10 +1441,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -1472,8 +1472,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1512,9 +1512,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -1536,9 +1536,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -1580,10 +1580,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -1612,8 +1612,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1654,9 +1654,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -1679,9 +1679,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -1725,10 +1725,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -1757,8 +1757,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1799,9 +1799,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -1824,9 +1824,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -1870,8 +1870,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -1923,8 +1923,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -1974,10 +1974,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -2004,8 +2004,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -2043,10 +2043,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -2073,8 +2073,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -2112,9 +2112,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -2135,9 +2135,9 @@ func main() { DateVal: types.MustDateFromString("2020-01-01"), EnumVal: shared.EnumOne, Float32Val: 2.2222222, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValSixtyNine, + Int32EnumVal: shared.Int32EnumValSixtyNine, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValThird, + IntEnumVal: shared.IntEnumValThird, IntOptNullVal: openapi.Int64(999999), IntVal: 999999, NumOptNullVal: openapi.Float64(1.1), @@ -2178,11 +2178,11 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -2215,7 +2215,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostComplexNumberTypes200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -2244,10 +2244,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -2268,8 +2268,8 @@ func main() { ConstDateTime: types.MustTimeFromString("2023-10-01T02:16:56.173Z"), ConstDecimal: types.MustNewDecimalFromString("1120.58"), ConstDecimalStr: types.MustNewDecimalFromString("8445.08"), - ConstEnumInt: shared.DefaultsAndConstsConstEnumIntOne, - ConstEnumStr: shared.DefaultsAndConstsConstEnumStrTwo, + ConstEnumInt: shared.ConstEnumIntOne, + ConstEnumStr: shared.ConstEnumStrTwo, ConstInt: 450379, ConstNum: 7742.71, ConstStr: "string", @@ -2280,7 +2280,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -2309,9 +2309,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -2325,14 +2325,14 @@ func main() { ctx := context.Background() res, err := s.RequestBodies.RequestBodyPostEmptyObject(ctx, operations.RequestBodyPostEmptyObjectRequestBody{ - Empty: &operations.RequestBodyPostEmptyObjectRequestBodyEmpty{}, - EmptyWithEmptyProperties: &operations.RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties{}, + Empty: &operations.Empty{}, + EmptyWithEmptyProperties: &operations.EmptyWithEmptyProperties{}, }) if err != nil { log.Fatal(err) } - if res.RequestBodyPostEmptyObject200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -2361,10 +2361,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -2378,7 +2378,7 @@ func main() { ctx := context.Background() res, err := s.RequestBodies.RequestBodyPostFormDeep(ctx, shared.DeepObject{ - Any: shared.CreateDeepObjectAnySimpleObject( + Any: shared.CreateAnySimpleObject( shared.SimpleObject{ Any: "any", Bigint: big.NewInt(8821239038968084), @@ -2393,8 +2393,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -2415,8 +2415,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -2435,8 +2435,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -2445,7 +2445,7 @@ func main() { Bool: true, Int: 1, Map: map[string]shared.SimpleObject{ - "key2": shared.SimpleObject{ + "key": shared.SimpleObject{ Any: "any", Bigint: big.NewInt(8821239038968084), BigintStr: types.MustNewBigIntFromString("9223372036854775808"), @@ -2459,13 +2459,13 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), }, - "key": shared.SimpleObject{ + "key2": shared.SimpleObject{ Any: "any", Bigint: big.NewInt(8821239038968084), BigintStr: types.MustNewBigIntFromString("9223372036854775808"), @@ -2479,8 +2479,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -2501,8 +2501,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -2542,8 +2542,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -2592,10 +2592,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -2622,8 +2622,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -2661,8 +2661,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -2682,7 +2682,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -2711,8 +2711,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -2732,7 +2732,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -2761,8 +2761,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -2782,7 +2782,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -2811,8 +2811,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -2830,7 +2830,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesBigInt200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -2859,8 +2859,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -2878,7 +2878,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -2907,8 +2907,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -2926,7 +2926,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesBoolean200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -2955,8 +2955,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -2974,7 +2974,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesDate200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3003,8 +3003,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -3022,7 +3022,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesDateTime200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3051,8 +3051,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -3070,7 +3070,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesDecimal200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3099,8 +3099,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -3118,7 +3118,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3147,8 +3147,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -3166,7 +3166,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesFloat32200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3195,8 +3195,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -3214,7 +3214,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesInt32200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3243,8 +3243,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -3262,7 +3262,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesInteger200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3291,8 +3291,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -3312,7 +3312,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3341,8 +3341,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -3362,7 +3362,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3391,8 +3391,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -3412,7 +3412,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3441,8 +3441,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -3460,7 +3460,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesNumber200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3489,8 +3489,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -3508,7 +3508,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostJSONDataTypesString200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -3537,10 +3537,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -3567,8 +3567,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -3606,9 +3606,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -3621,7 +3621,7 @@ func main() { ) ctx := context.Background() - res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesInlineFiltered(ctx, operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON{ + res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesInlineFiltered(ctx, operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody{ Bool: false, Num: 3558.41, Str: "string", @@ -3638,10 +3638,10 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `request` | [operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | +| `request` | [operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3659,9 +3659,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -3674,7 +3674,7 @@ func main() { ) - requestBody := operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded{ + requestBody := operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody{ Bool3: false, Num3: 8693.24, Str3: "string", @@ -3696,11 +3696,11 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | +| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | ### Response @@ -3718,9 +3718,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -3733,7 +3733,7 @@ func main() { ) - requestBody := operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON{ + requestBody := operations.RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody{ Bool: false, Num: 9771.91, Str: "string", @@ -3758,7 +3758,7 @@ func main() { | Parameter | Type | Required | Description | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md) | :heavy_check_mark: | N/A | +| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md) | :heavy_check_mark: | N/A | | `paramStr` | *string* | :heavy_check_mark: | N/A | @@ -3777,9 +3777,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -3792,7 +3792,7 @@ func main() { ) - requestBody := operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData{ + requestBody := operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody{ Bool2: false, Num2: 7000.76, Str2: "string", @@ -3814,11 +3814,11 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | +| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | ### Response @@ -3836,9 +3836,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -3851,7 +3851,7 @@ func main() { ) ctx := context.Background() - res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitForm(ctx, operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded{ + res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitForm(ctx, operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody{ Bool3: false, Num3: 7842.07, Str3: "string", @@ -3868,10 +3868,10 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `request` | [operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | +| `request` | [operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3889,9 +3889,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -3904,7 +3904,7 @@ func main() { ) ctx := context.Background() - res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitJSON(ctx, operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON{ + res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitJSON(ctx, operations.RequestBodyPostMultipleContentTypesSplitJSONRequestBody{ Bool: false, Num: 2445.56, Str: "string", @@ -3924,7 +3924,7 @@ func main() { | Parameter | Type | Required | Description | | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | | `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `request` | [operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md) | :heavy_check_mark: | The request object to use for the request. | +| `request` | [operations.RequestBodyPostMultipleContentTypesSplitJSONRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3942,9 +3942,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -3957,7 +3957,7 @@ func main() { ) ctx := context.Background() - res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitMultipart(ctx, operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData{ + res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitMultipart(ctx, operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody{ Bool2: false, Num2: 2079.2, Str2: "string", @@ -3974,10 +3974,10 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `request` | [operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | +| `request` | [operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3995,8 +3995,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -4014,7 +4014,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -4043,8 +4043,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -4064,7 +4064,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostNullArray200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -4093,8 +4093,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -4114,7 +4114,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostNullDictionary200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -4143,8 +4143,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -4162,7 +4162,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -4191,8 +4191,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -4210,7 +4210,7 @@ func main() { log.Fatal(err) } - if res.RequestBodyPostNullableRequiredStringBody200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -4239,8 +4239,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -4253,7 +4253,7 @@ func main() { ) ctx := context.Background() - res, err := s.RequestBodies.RequestBodyPutBytes(ctx, []byte("9sS}}O%}aJ")) + res, err := s.RequestBodies.RequestBodyPutBytes(ctx, []byte("0x5DbFFb1Ff9")) if err != nil { log.Fatal(err) } @@ -4287,8 +4287,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -4301,7 +4301,7 @@ func main() { ) - var requestBody []byte = []byte("o%jIWe4_P6") + var requestBody []byte = []byte("0xC1B9cA4eb5") var queryStringParam string = "string" @@ -4341,10 +4341,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -4358,7 +4358,7 @@ func main() { ctx := context.Background() res, err := s.RequestBodies.RequestBodyPutMultipartDeep(ctx, shared.DeepObject{ - Any: shared.CreateDeepObjectAnySimpleObject( + Any: shared.CreateAnySimpleObject( shared.SimpleObject{ Any: "any", Bigint: big.NewInt(8821239038968084), @@ -4373,8 +4373,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -4395,8 +4395,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -4415,8 +4415,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -4439,8 +4439,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -4459,8 +4459,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -4481,8 +4481,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -4522,9 +4522,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -4538,9 +4538,9 @@ func main() { ctx := context.Background() res, err := s.RequestBodies.RequestBodyPutMultipartDifferentFileName(ctx, operations.RequestBodyPutMultipartDifferentFileNameRequestBody{ - DifferentFileName: &operations.RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName{ - Content: []byte("Y}'H[5/Z[,"), - DifferentFileName: "string", + DifferentFileName: &operations.DifferentFileName{ + Content: []byte("0xdF19d43dd2"), + FileName: "west_tunisian.pdf", }, }) if err != nil { @@ -4576,9 +4576,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -4592,9 +4592,9 @@ func main() { ctx := context.Background() res, err := s.RequestBodies.RequestBodyPutMultipartFile(ctx, operations.RequestBodyPutMultipartFileRequestBody{ - File: &operations.RequestBodyPutMultipartFileRequestBodyFile{ - Content: []byte("OJa,v`.FW-"), - File: "string", + File: &operations.File{ + Content: []byte("0xa9f2Ee38c3"), + FileName: "bandwidth_sedan.pdf", }, }) if err != nil { @@ -4630,10 +4630,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -4660,8 +4660,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -4699,8 +4699,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -4747,8 +4747,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -4801,8 +4801,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -4815,7 +4815,7 @@ func main() { ) ctx := context.Background() - res, err := s.RequestBodies.RequestBodyReadAndWrite(ctx, shared.ReadWriteObjectInput{ + res, err := s.RequestBodies.RequestBodyReadAndWrite(ctx, shared.ReadWriteObject{ Num1: 797612, Num2: 89374, Num3: 459345, @@ -4832,11 +4832,11 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `request` | [shared.ReadWriteObjectInput](../../models/shared/readwriteobjectinput.md) | :heavy_check_mark: | The request object to use for the request. | -| `opts` | [][operations.Option](../../models/operations/option.md) | :heavy_minus_sign: | The options for this request. | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | +| `request` | [shared.ReadWriteObject](../../models/shared/readwriteobject.md) | :heavy_check_mark: | The request object to use for the request. | +| `opts` | [][operations.Option](../../models/operations/option.md) | :heavy_minus_sign: | The options for this request. | ### Response @@ -4854,8 +4854,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -4903,10 +4903,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -4934,8 +4934,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -4975,10 +4975,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -4991,8 +4991,8 @@ func main() { ) ctx := context.Background() - res, err := s.RequestBodies.RequestBodyReadWriteOnlyUnion(ctx, shared.CreateWeaklyTypedOneOfReadWriteObjectInputReadWriteObjectInput( - shared.ReadWriteObjectInput{ + res, err := s.RequestBodies.RequestBodyReadWriteOnlyUnion(ctx, shared.CreateWeaklyTypedOneOfReadWriteObjectReadWriteObject( + shared.ReadWriteObject{ Num1: 817251, Num2: 891192, Num3: 743101, @@ -5010,11 +5010,11 @@ func main() { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | -| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | -| `request` | [shared.WeaklyTypedOneOfReadWriteObjectInput](../../models/shared/weaklytypedoneofreadwriteobjectinput.md) | :heavy_check_mark: | The request object to use for the request. | -| `opts` | [][operations.Option](../../models/operations/option.md) | :heavy_minus_sign: | The options for this request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | +| `request` | [shared.WeaklyTypedOneOfReadWriteObject](../../models/shared/weaklytypedoneofreadwriteobject.md) | :heavy_check_mark: | The request object to use for the request. | +| `opts` | [][operations.Option](../../models/operations/option.md) | :heavy_minus_sign: | The options for this request. | ### Response @@ -5032,8 +5032,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -5085,8 +5085,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -5138,10 +5138,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { diff --git a/go-client-sdk/docs/sdks/resource/README.md b/go-client-sdk/docs/sdks/resource/README.md index f3d334455..1a8d3349a 100755 --- a/go-client-sdk/docs/sdks/resource/README.md +++ b/go-client-sdk/docs/sdks/resource/README.md @@ -1,5 +1,5 @@ # Resource -(*Resource*) +(*.Resource*) ### Available Operations @@ -19,9 +19,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -35,9 +35,9 @@ func main() { ctx := context.Background() res, err := s.Resource.CreateFile(ctx, operations.CreateFileRequestBody{ - File: &operations.CreateFileRequestBodyFile{ - Content: []byte("`'$Z`(L/RH"), - File: "string", + File: &operations.CreateFileFile{ + Content: []byte("0xf10df1a3b9"), + FileName: "rap_national.mp4v", }, }) if err != nil { @@ -73,8 +73,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -94,8 +94,8 @@ func main() { ArrayOfString: []string{ "string", }, - Chocolates: []shared.ExampleResourceChocolates{ - shared.ExampleResourceChocolates{ + Chocolates: []shared.Chocolates{ + shared.Chocolates{ Description: "Re-engineered asynchronous array", }, }, @@ -150,8 +150,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -201,8 +201,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -252,8 +252,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/responsebodies/README.md b/go-client-sdk/docs/sdks/responsebodies/README.md index a12532334..21de138a6 100755 --- a/go-client-sdk/docs/sdks/responsebodies/README.md +++ b/go-client-sdk/docs/sdks/responsebodies/README.md @@ -1,5 +1,5 @@ # ResponseBodies -(*ResponseBodies*) +(*.ResponseBodies*) ## Overview @@ -29,8 +29,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" ) @@ -54,7 +54,7 @@ func main() { log.Fatal(err) } - if res.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -83,9 +83,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -108,7 +108,7 @@ func main() { log.Fatal(err) } - if res.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -137,10 +137,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -172,8 +172,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -185,7 +185,7 @@ func main() { log.Fatal(err) } - if res.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -214,8 +214,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -238,7 +238,7 @@ func main() { log.Fatal(err) } - if res.ResponseBodyAdditionalPropertiesPost200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -267,8 +267,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -314,8 +314,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -368,8 +368,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -416,8 +416,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -464,8 +464,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -511,8 +511,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -558,9 +558,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" ) func main() { @@ -581,7 +581,7 @@ func main() { log.Fatal(err) } - if res.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } diff --git a/go-client-sdk/docs/sdks/retries/README.md b/go-client-sdk/docs/sdks/retries/README.md index f00957199..4277eb42d 100755 --- a/go-client-sdk/docs/sdks/retries/README.md +++ b/go-client-sdk/docs/sdks/retries/README.md @@ -1,5 +1,5 @@ # Retries -(*Retries*) +(*.Retries*) ## Overview @@ -19,8 +19,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/sdk/README.md b/go-client-sdk/docs/sdks/sdk/README.md index b70dfa85d..131cdc5df 100755 --- a/go-client-sdk/docs/sdks/sdk/README.md +++ b/go-client-sdk/docs/sdks/sdk/README.md @@ -23,8 +23,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -37,12 +37,12 @@ func main() { ) ctx := context.Background() - res, err := s.SDK.PutAnythingIgnoredGeneration(ctx, "string") + res, err := s.PutAnythingIgnoredGeneration(ctx, "string") if err != nil { log.Fatal(err) } - if res.PutAnythingIgnoredGeneration200ApplicationJSONObject != nil { + if res.Object != nil { // handle response } } @@ -71,8 +71,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -85,7 +85,7 @@ func main() { ) ctx := context.Background() - res, err := s.SDK.ResponseBodyJSONGet(ctx) + res, err := s.ResponseBodyJSONGet(ctx) if err != nil { log.Fatal(err) } diff --git a/go-client-sdk/docs/sdks/sdkfirst/README.md b/go-client-sdk/docs/sdks/sdkfirst/README.md new file mode 100755 index 000000000..a6480ce02 --- /dev/null +++ b/go-client-sdk/docs/sdks/sdkfirst/README.md @@ -0,0 +1,53 @@ +# SDKFirst +(*.Nest.First*) + +### Available Operations + +* [Get](#get) + +## Get + +### Example Usage + +```go +package main + +import( + "context" + "log" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" +) + +func main() { + s := openapi.New( + openapi.WithSecurity(shared.Security{ + APIKeyAuth: openapi.String("Token YOUR_API_KEY"), + }), + openapi.WithGlobalPathParam(100), + openapi.WithGlobalQueryParam("some example global query param"), + ) + + ctx := context.Background() + res, err := s.Nest.First.Get(ctx) + if err != nil { + log.Fatal(err) + } + + if res.StatusCode == http.StatusOK { + // handle response + } +} +``` + +### Parameters + +| Parameter | Type | Required | Description | +| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | + + +### Response + +**[*operations.NestFirstGetResponse](../../models/operations/nestfirstgetresponse.md), error** + diff --git a/go-client-sdk/docs/sdks/sdknestedfirst/README.md b/go-client-sdk/docs/sdks/sdknestedfirst/README.md new file mode 100755 index 000000000..7dbc944c6 --- /dev/null +++ b/go-client-sdk/docs/sdks/sdknestedfirst/README.md @@ -0,0 +1,53 @@ +# SDKNestedFirst +(*.Nested.First*) + +### Available Operations + +* [Get](#get) + +## Get + +### Example Usage + +```go +package main + +import( + "context" + "log" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" +) + +func main() { + s := openapi.New( + openapi.WithSecurity(shared.Security{ + APIKeyAuth: openapi.String("Token YOUR_API_KEY"), + }), + openapi.WithGlobalPathParam(100), + openapi.WithGlobalQueryParam("some example global query param"), + ) + + ctx := context.Background() + res, err := s.Nested.First.Get(ctx) + if err != nil { + log.Fatal(err) + } + + if res.StatusCode == http.StatusOK { + // handle response + } +} +``` + +### Parameters + +| Parameter | Type | Required | Description | +| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | + + +### Response + +**[*operations.NestedFirstGetResponse](../../models/operations/nestedfirstgetresponse.md), error** + diff --git a/go-client-sdk/docs/sdks/sdksecond/README.md b/go-client-sdk/docs/sdks/sdksecond/README.md new file mode 100755 index 000000000..e2c948258 --- /dev/null +++ b/go-client-sdk/docs/sdks/sdksecond/README.md @@ -0,0 +1,53 @@ +# SDKSecond +(*.Nested.Second*) + +### Available Operations + +* [Get](#get) + +## Get + +### Example Usage + +```go +package main + +import( + "context" + "log" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" +) + +func main() { + s := openapi.New( + openapi.WithSecurity(shared.Security{ + APIKeyAuth: openapi.String("Token YOUR_API_KEY"), + }), + openapi.WithGlobalPathParam(100), + openapi.WithGlobalQueryParam("some example global query param"), + ) + + ctx := context.Background() + res, err := s.Nested.Second.Get(ctx) + if err != nil { + log.Fatal(err) + } + + if res.StatusCode == http.StatusOK { + // handle response + } +} +``` + +### Parameters + +| Parameter | Type | Required | Description | +| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | +| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | + + +### Response + +**[*operations.NestedSecondGetResponse](../../models/operations/nestedsecondgetresponse.md), error** + diff --git a/go-client-sdk/docs/sdks/second/README.md b/go-client-sdk/docs/sdks/second/README.md index 6827bf760..c6425b39d 100755 --- a/go-client-sdk/docs/sdks/second/README.md +++ b/go-client-sdk/docs/sdks/second/README.md @@ -1,5 +1,5 @@ # Second -(*Second*) +(*.Second*) ### Available Operations @@ -15,8 +15,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/servers/README.md b/go-client-sdk/docs/sdks/servers/README.md index 7c6ef0568..c60a9d25a 100755 --- a/go-client-sdk/docs/sdks/servers/README.md +++ b/go-client-sdk/docs/sdks/servers/README.md @@ -1,5 +1,5 @@ # Servers -(*Servers*) +(*.Servers*) ## Overview @@ -24,8 +24,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -73,8 +73,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -121,8 +121,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -169,8 +169,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -217,8 +217,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -264,8 +264,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/telemetry/README.md b/go-client-sdk/docs/sdks/telemetry/README.md index 374f58523..8824fbef8 100755 --- a/go-client-sdk/docs/sdks/telemetry/README.md +++ b/go-client-sdk/docs/sdks/telemetry/README.md @@ -1,5 +1,5 @@ # Telemetry -(*Telemetry*) +(*.Telemetry*) ## Overview @@ -20,8 +20,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -71,8 +71,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { diff --git a/go-client-sdk/docs/sdks/unions/README.md b/go-client-sdk/docs/sdks/unions/README.md index bda94702c..60d3b04d9 100755 --- a/go-client-sdk/docs/sdks/unions/README.md +++ b/go-client-sdk/docs/sdks/unions/README.md @@ -1,5 +1,5 @@ # Unions -(*Unions*) +(*.Unions*) ## Overview @@ -33,8 +33,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -86,11 +86,11 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -139,8 +139,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -158,13 +158,13 @@ func main() { Type: shared.TypedObject1TypeObj1, Value: "string", }, - NullableOneOfTwo: shared.CreateNullableOneOfRefInObjectNullableOneOfTwoTypedObject2( + NullableOneOfTwo: shared.CreateNullableOneOfTwoTypedObject2( shared.TypedObject2{ Type: shared.TypedObject2TypeObj2, Value: "string", }, ), - OneOfOne: shared.CreateNullableOneOfRefInObjectOneOfOneTypedObject1( + OneOfOne: shared.CreateOneOfOneTypedObject1( shared.TypedObject1{ Type: shared.TypedObject1TypeObj1, Value: "string", @@ -204,9 +204,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -258,8 +258,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -312,8 +312,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -363,9 +363,9 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" ) func main() { @@ -414,10 +414,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -447,8 +447,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -469,8 +469,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -489,8 +489,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -513,8 +513,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -533,8 +533,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -555,8 +555,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -597,8 +597,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -650,8 +650,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -703,11 +703,11 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -756,8 +756,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -804,10 +804,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" - "openapi/pkg/models/operations" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/types" "math/big" ) @@ -857,8 +857,8 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" ) func main() { @@ -905,10 +905,10 @@ package main import( "context" "log" - "openapi" - "openapi/pkg/models/shared" + openapi "openapi/v2" + "openapi/v2/pkg/models/shared" "math/big" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func main() { @@ -936,8 +936,8 @@ func main() { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), diff --git a/go-client-sdk/documentation.go b/go-client-sdk/documentation.go index 14aac9bb7..e27f507e8 100755 --- a/go-client-sdk/documentation.go +++ b/go-client-sdk/documentation.go @@ -8,25 +8,25 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" "strings" ) -// documentation - Testing for documentation extensions in Go. -type documentation struct { +// Documentation - Testing for documentation extensions in Go. +type Documentation struct { sdkConfiguration sdkConfiguration } -func newDocumentation(sdkConfig sdkConfiguration) *documentation { - return &documentation{ +func newDocumentation(sdkConfig sdkConfiguration) *Documentation { + return &Documentation{ sdkConfiguration: sdkConfig, } } // GetDocumentationPerLanguage - Get stuff in Golang. -func (s *documentation) GetDocumentationPerLanguage(ctx context.Context, language string) (*operations.GetDocumentationPerLanguageResponse, error) { +func (s *Documentation) GetDocumentationPerLanguage(ctx context.Context, language string) (*operations.GetDocumentationPerLanguageResponse, error) { request := operations.GetDocumentationPerLanguageRequest{ Language: language, } diff --git a/go-client-sdk/errors.go b/go-client-sdk/errors.go index 2845b0207..d3c351641 100755 --- a/go-client-sdk/errors.go +++ b/go-client-sdk/errors.go @@ -8,24 +8,24 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" "strings" ) -// errors - Endpoints for testing error responses. -type errors struct { +// Errors - Endpoints for testing error responses. +type Errors struct { sdkConfiguration sdkConfiguration } -func newErrors(sdkConfig sdkConfiguration) *errors { - return &errors{ +func newErrors(sdkConfig sdkConfiguration) *Errors { + return &Errors{ sdkConfiguration: sdkConfig, } } -func (s *errors) ConnectionErrorGet(ctx context.Context, opts ...operations.Option) (*operations.ConnectionErrorGetResponse, error) { +func (s *Errors) ConnectionErrorGet(ctx context.Context, opts ...operations.Option) (*operations.ConnectionErrorGetResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -85,7 +85,7 @@ func (s *errors) ConnectionErrorGet(ctx context.Context, opts ...operations.Opti return res, nil } -func (s *errors) StatusGetError(ctx context.Context, statusCode int64) (*operations.StatusGetErrorResponse, error) { +func (s *Errors) StatusGetError(ctx context.Context, statusCode int64) (*operations.StatusGetErrorResponse, error) { request := operations.StatusGetErrorRequest{ StatusCode: statusCode, } @@ -144,7 +144,7 @@ func (s *errors) StatusGetError(ctx context.Context, statusCode int64) (*operati return res, nil } -func (s *errors) StatusGetXSpeakeasyErrors(ctx context.Context, statusCode int64, opts ...operations.Option) (*operations.StatusGetXSpeakeasyErrorsResponse, error) { +func (s *Errors) StatusGetXSpeakeasyErrors(ctx context.Context, statusCode int64, opts ...operations.Option) (*operations.StatusGetXSpeakeasyErrorsResponse, error) { request := operations.StatusGetXSpeakeasyErrorsRequest{ StatusCode: statusCode, } @@ -224,7 +224,7 @@ func (s *errors) StatusGetXSpeakeasyErrors(ctx context.Context, statusCode int64 case httpRes.StatusCode == 501: switch { case utils.MatchContentType(contentType, `application/json`): - var out sdkerrors.StatusGetXSpeakeasyErrors501ApplicationJSON + var out sdkerrors.StatusGetXSpeakeasyErrorsResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } diff --git a/go-client-sdk/files.gen b/go-client-sdk/files.gen index 44852caa9..005e617f4 100755 --- a/go-client-sdk/files.gen +++ b/go-client-sdk/files.gen @@ -1,29 +1,30 @@ -auth.go -authnew.go -documentation.go +generation.go errors.go -first.go +unions.go flattening.go -generation.go globals.go -nestfirst.go +parameters.go +sdkfirst.go nest.go -nestedfirst.go -nestedsecond.go +sdknestedfirst.go +sdksecond.go nested.go -pagination.go -parameters.go requestbodies.go -resource.go responsebodies.go -retries.go -second.go servers.go telemetry.go -unions.go +authnew.go +auth.go +documentation.go +resource.go +first.go +second.go +pagination.go +retries.go sdk.go go.mod go.sum +tests/helpers.go pkg/models/sdkerrors/sdkerror.go pkg/types/bigint.go pkg/types/date.go @@ -40,7 +41,6 @@ pkg/utils/requestbody.go pkg/utils/retries.go pkg/utils/security.go pkg/utils/utils.go -tests/helpers.go tests/common_helpers_test.go testscommon/common_helpers_test.go testsprimary/auth_test.go @@ -61,359 +61,284 @@ testssimple_security/auth_test.go ../../testprojects/go/go.mod ../../testprojects/go/go.sum tests/parameters_test.go -pkg/models/operations/apikeyauth.go -pkg/models/operations/apikeyauthglobal.go -pkg/models/operations/basicauth.go -pkg/models/operations/bearerauth.go -pkg/models/operations/globalbearerauth.go -pkg/models/operations/oauth2auth.go -pkg/models/operations/oauth2override.go -pkg/models/operations/openidconnectauth.go -pkg/models/operations/apikeyauthglobalnew.go -pkg/models/operations/authglobal.go -pkg/models/operations/basicauthnew.go -pkg/models/operations/multiplemixedoptionsauth.go -pkg/models/operations/multiplemixedschemeauth.go -pkg/models/operations/multipleoptionswithmixedschemesauth.go -pkg/models/operations/multipleoptionswithsimpleschemesauth.go -pkg/models/operations/multiplesimpleoptionsauth.go -pkg/models/operations/multiplesimpleschemeauth.go -pkg/models/operations/oauth2authnew.go -pkg/models/operations/openidconnectauthnew.go -pkg/models/operations/getdocumentationperlanguage.go -pkg/models/operations/connectionerrorget.go -pkg/models/operations/statusgeterror.go -pkg/models/operations/statusgetxspeakeasyerrors.go -pkg/models/operations/groupfirstget.go -pkg/models/operations/componentbodyandparamconflict.go -pkg/models/operations/componentbodyandparamnoconflict.go -pkg/models/operations/conflictingparams.go -pkg/models/operations/inlinebodyandparamconflict.go -pkg/models/operations/inlinebodyandparamnoconflict.go -pkg/models/operations/anchortypesget.go -pkg/models/operations/arraycircularreferenceget.go -pkg/models/operations/circularreferenceget.go -pkg/models/operations/dateparamwithdefault.go -pkg/models/operations/datetimeparamwithdefault.go -pkg/models/operations/decimalparamwithdefault.go -pkg/models/operations/deprecatedfieldinschemapost.go -pkg/models/operations/deprecatedobjectinschemaget.go -pkg/models/operations/deprecatedoperationnocommentsget.go -pkg/models/operations/deprecatedoperationwithcommentsget.go -pkg/models/operations/emptyobjectget.go -pkg/models/operations/emptyresponseobjectwithcommentget.go -pkg/models/operations/getglobalnameoverride.go -pkg/models/operations/ignoredgenerationget.go -pkg/models/operations/ignorespost.go -pkg/models/operations/nameoverrideget.go -pkg/models/operations/objectcircularreferenceget.go -pkg/models/operations/oneofcircularreferenceget.go -pkg/models/operations/typedparametergenerationget.go -pkg/models/operations/usageexamplepost.go -pkg/models/operations/globalpathparameterget.go -pkg/models/operations/globalsqueryparameterget.go -pkg/models/operations/nestfirstget.go -pkg/models/operations/nestedfirstget.go -pkg/models/operations/nestedsecondget.go -pkg/models/operations/nestedget.go -pkg/models/operations/paginationcursorbody.go -pkg/models/operations/paginationcursorparams.go -pkg/models/operations/paginationlimitoffsetoffsetbody.go -pkg/models/operations/paginationlimitoffsetoffsetparams.go -pkg/models/operations/paginationlimitoffsetpagebody.go -pkg/models/operations/paginationlimitoffsetpageparams.go -pkg/models/operations/deepobjectqueryparamsmap.go -pkg/models/operations/deepobjectqueryparamsobject.go -pkg/models/operations/duplicateparam.go -pkg/models/operations/formqueryparamsarray.go -pkg/models/operations/formqueryparamscamelobject.go -pkg/models/operations/formqueryparamsmap.go -pkg/models/operations/formqueryparamsobject.go -pkg/models/operations/formqueryparamsprimitive.go -pkg/models/operations/formqueryparamsrefparamobject.go -pkg/models/operations/headerparamsarray.go -pkg/models/operations/headerparamsmap.go -pkg/models/operations/headerparamsobject.go -pkg/models/operations/headerparamsprimitive.go -pkg/models/operations/jsonqueryparamsobject.go -pkg/models/operations/mixedparameterscamelcase.go -pkg/models/operations/mixedparametersprimitives.go -pkg/models/operations/mixedqueryparams.go -pkg/models/operations/pathparameterjson.go -pkg/models/operations/pipedelimitedqueryparamsarray.go -pkg/models/operations/simplepathparameterarrays.go -pkg/models/operations/simplepathparametermaps.go -pkg/models/operations/simplepathparameterobjects.go -pkg/models/operations/simplepathparameterprimitives.go -pkg/models/operations/nullableobjectpost.go -pkg/models/operations/nullablerequiredemptyobjectpost.go -pkg/models/operations/nullablerequiredpropertypost.go -pkg/models/operations/nullablerequiredsharedobjectpost.go -pkg/models/operations/requestbodypostapplicationjsonarray.go -pkg/models/operations/requestbodypostapplicationjsonarraycamelcase.go -pkg/models/operations/requestbodypostapplicationjsonarrayobj.go -pkg/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.go -pkg/models/operations/requestbodypostapplicationjsonarrayofarray.go -pkg/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.go -pkg/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.go -pkg/models/operations/requestbodypostapplicationjsonarrayofmap.go -pkg/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.go -pkg/models/operations/requestbodypostapplicationjsonarrayofprimitive.go -pkg/models/operations/requestbodypostapplicationjsondeep.go -pkg/models/operations/requestbodypostapplicationjsondeepcamelcase.go -pkg/models/operations/requestbodypostapplicationjsonmap.go -pkg/models/operations/requestbodypostapplicationjsonmapcamelcase.go -pkg/models/operations/requestbodypostapplicationjsonmapobj.go -pkg/models/operations/requestbodypostapplicationjsonmapobjcamelcase.go -pkg/models/operations/requestbodypostapplicationjsonmapofarray.go -pkg/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.go -pkg/models/operations/requestbodypostapplicationjsonmapofmap.go -pkg/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.go -pkg/models/operations/requestbodypostapplicationjsonmapofmapofprimitive.go -pkg/models/operations/requestbodypostapplicationjsonmapofprimitive.go -pkg/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.go -pkg/models/operations/requestbodypostapplicationjsonsimple.go -pkg/models/operations/requestbodypostapplicationjsonsimplecamelcase.go -pkg/models/operations/requestbodypostcomplexnumbertypes.go -pkg/models/operations/requestbodypostdefaultsandconsts.go -pkg/models/operations/requestbodypostemptyobject.go -pkg/models/operations/requestbodypostformdeep.go -pkg/models/operations/requestbodypostformmapprimitive.go -pkg/models/operations/requestbodypostformsimple.go -pkg/models/operations/requestbodypostjsondatatypesarraybigint.go -pkg/models/operations/requestbodypostjsondatatypesarraydate.go -pkg/models/operations/requestbodypostjsondatatypesarraydecimalstr.go -pkg/models/operations/requestbodypostjsondatatypesbigint.go -pkg/models/operations/requestbodypostjsondatatypesbigintstr.go -pkg/models/operations/requestbodypostjsondatatypesboolean.go -pkg/models/operations/requestbodypostjsondatatypesdate.go -pkg/models/operations/requestbodypostjsondatatypesdatetime.go -pkg/models/operations/requestbodypostjsondatatypesdecimal.go -pkg/models/operations/requestbodypostjsondatatypesdecimalstr.go -pkg/models/operations/requestbodypostjsondatatypesfloat32.go -pkg/models/operations/requestbodypostjsondatatypesint32.go -pkg/models/operations/requestbodypostjsondatatypesinteger.go -pkg/models/operations/requestbodypostjsondatatypesmapbigintstr.go -pkg/models/operations/requestbodypostjsondatatypesmapdatetime.go -pkg/models/operations/requestbodypostjsondatatypesmapdecimal.go -pkg/models/operations/requestbodypostjsondatatypesnumber.go -pkg/models/operations/requestbodypostjsondatatypesstring.go -pkg/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.go -pkg/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.go -pkg/models/operations/requestbodypostmultiplecontenttypessplitparamform.go -pkg/models/operations/requestbodypostmultiplecontenttypessplitparamjson.go -pkg/models/operations/requestbodypostmultiplecontenttypessplitparammultipart.go -pkg/models/operations/requestbodypostmultiplecontenttypessplitform.go -pkg/models/operations/requestbodypostmultiplecontenttypessplitjson.go -pkg/models/operations/requestbodypostmultiplecontenttypessplitmultipart.go -pkg/models/operations/requestbodypostnotnullablenotrequiredstringbody.go -pkg/models/operations/requestbodypostnullarray.go -pkg/models/operations/requestbodypostnulldictionary.go -pkg/models/operations/requestbodypostnullablenotrequiredstringbody.go -pkg/models/operations/requestbodypostnullablerequiredstringbody.go -pkg/models/operations/requestbodyputbytes.go -pkg/models/operations/requestbodyputbyteswithparams.go -pkg/models/operations/requestbodyputmultipartdeep.go -pkg/models/operations/requestbodyputmultipartdifferentfilename.go -pkg/models/operations/requestbodyputmultipartfile.go -pkg/models/operations/requestbodyputmultipartsimple.go -pkg/models/operations/requestbodyputstring.go -pkg/models/operations/requestbodyputstringwithparams.go -pkg/models/operations/requestbodyreadandwrite.go -pkg/models/operations/requestbodyreadonlyinput.go -pkg/models/operations/requestbodyreadonlyunion.go -pkg/models/operations/requestbodyreadwriteonlyunion.go -pkg/models/operations/requestbodywriteonly.go -pkg/models/operations/requestbodywriteonlyoutput.go -pkg/models/operations/requestbodywriteonlyunion.go -pkg/models/operations/createfile.go -pkg/models/operations/createresource.go -pkg/models/operations/deleteresource.go -pkg/models/operations/getresource.go -pkg/models/operations/updateresource.go -pkg/models/operations/responsebodyadditionalpropertiescomplexnumberspost.go -pkg/models/operations/responsebodyadditionalpropertiesdatepost.go -pkg/models/operations/responsebodyadditionalpropertiesobjectpost.go -pkg/models/operations/responsebodyadditionalpropertiespost.go -pkg/models/operations/responsebodybytesget.go -pkg/models/operations/responsebodyemptywithheaders.go -pkg/models/operations/responsebodyoptionalget.go -pkg/models/operations/responsebodyreadonly.go -pkg/models/operations/responsebodystringget.go -pkg/models/operations/responsebodyxmlget.go -pkg/models/operations/responsebodyzerovaluecomplextypeptrspost.go -pkg/models/operations/retriesget.go -pkg/models/operations/groupsecondget.go -pkg/models/operations/selectglobalserver.go -pkg/models/operations/selectserverwithid.go -pkg/models/operations/serverwithprotocoltemplate.go -pkg/models/operations/serverwithtemplates.go -pkg/models/operations/serverwithtemplatesglobal.go -pkg/models/operations/serversbyidwithtemplates.go -pkg/models/operations/telemetryspeakeasyuseragentget.go -pkg/models/operations/telemetryuseragentget.go -pkg/models/operations/flattenedtypedobjectpost.go -pkg/models/operations/mixedtypeoneofpost.go -pkg/models/operations/nullableoneofrefinobjectpost.go -pkg/models/operations/nullableoneofschemapost.go -pkg/models/operations/nullableoneoftypeinobjectpost.go -pkg/models/operations/nullabletypedobjectpost.go -pkg/models/operations/primitivetypeoneofpost.go -pkg/models/operations/stronglytypedoneofpost.go -pkg/models/operations/typedobjectnullableoneofpost.go -pkg/models/operations/typedobjectoneofpost.go -pkg/models/operations/unionbigintdecimal.go -pkg/models/operations/uniondatenull.go -pkg/models/operations/uniondatetimebigint.go -pkg/models/operations/uniondatetimenull.go -pkg/models/operations/weaklytypedoneofpost.go -pkg/models/operations/putanythingignoredgeneration.go -pkg/models/operations/responsebodyjsonget.go -pkg/models/shared/authservicerequestbody.go -pkg/models/shared/security.go -pkg/models/shared/simpleobject.go -pkg/models/shared/enum.go -pkg/models/shared/arraycircularreferenceobject.go -pkg/models/shared/validcircularreferenceobject.go -pkg/models/shared/deprecatedfieldinobject.go -pkg/models/shared/deprecatedobject.go -pkg/models/shared/emptyobjectparam.go -pkg/models/shared/httpbinsimplejsonobject.go -pkg/models/shared/objectcircularreferenceobject.go -pkg/models/shared/oneofcircularreferenceobject.go -pkg/models/shared/fakerstrings.go -pkg/models/shared/fakerformattedstrings.go -pkg/models/shared/limitoffsetconfig.go -pkg/models/shared/refqueryparamobjexploded.go -pkg/models/shared/refqueryparamobj.go -pkg/models/shared/deepobject.go -pkg/models/shared/nullableobject.go -pkg/models/shared/simpleobjectcamelcase.go -pkg/models/shared/arrobjvalue.go -pkg/models/shared/arrobjvaluecamelcase.go -pkg/models/shared/deepobjectcamelcase.go -pkg/models/shared/mapobjvalue.go -pkg/models/shared/mapobjvaluecamelcase.go -pkg/models/shared/complexnumbertypes.go -pkg/models/shared/defaultsandconstsoutput.go -pkg/models/shared/defaultsandconsts.go -pkg/models/shared/readwriteobject.go -pkg/models/shared/readonlyobject.go -pkg/models/shared/weaklytypedoneofreadonlyobject.go -pkg/models/shared/weaklytypedoneofreadonlyobjectinput.go -pkg/models/shared/weaklytypedoneofreadwriteobjectoutput.go -pkg/models/shared/weaklytypedoneofreadwriteobjectinput.go -pkg/models/shared/writeonlyobject.go -pkg/models/shared/weaklytypedoneofwriteonlyobjectoutput.go -pkg/models/shared/weaklytypedoneofwriteonlyobject.go -pkg/models/shared/fileresource.go -pkg/models/shared/exampleresource.go -pkg/models/shared/examplevehicle.go -pkg/models/shared/exampleboat.go -pkg/models/shared/examplecar.go -pkg/models/shared/objwithcomplexnumbersadditionalproperties.go -pkg/models/shared/objwithdateadditionalproperties.go -pkg/models/shared/objwithobjadditionalproperties.go -pkg/models/shared/objwithstringadditionalproperties.go -pkg/models/shared/typedobject1.go -pkg/models/shared/objwithzerovaluecomplextypeptrs.go -pkg/models/shared/flattenedtypedobject1.go -pkg/models/shared/nullableoneofrefinobject.go -pkg/models/shared/typedobject2.go -pkg/models/shared/nullableoneoftypeinobject.go -pkg/models/shared/stronglytypedoneofobject.go -pkg/models/shared/simpleobjectwithtype.go -pkg/models/shared/deepobjectwithtype.go -pkg/models/shared/typedobjectnullableoneof.go -pkg/models/shared/typedobjectoneof.go -pkg/models/shared/typedobject3.go -pkg/models/shared/weaklytypedoneofobject.go -pkg/models/shared/alloftoallof.go -pkg/models/shared/numericunion.go -pkg/models/shared/oneofgenerationstresstest.go -pkg/models/shared/primitivetypeunion.go -pkg/models/shared/unsupportedenums.go -pkg/models/sdkerrors/error.go -pkg/models/sdkerrors/errortype.go -pkg/models/sdkerrors/statusgetxspeakeasyerrors.go -pkg/models/callbacks/ignoredgenerationget.go +/pkg/models/operations/anchortypesget.go +/pkg/models/operations/arraycircularreferenceget.go +/pkg/models/operations/circularreferenceget.go +/pkg/models/operations/dateparamwithdefault.go +/pkg/models/operations/datetimeparamwithdefault.go +/pkg/models/operations/decimalparamwithdefault.go +/pkg/models/operations/deprecatedfieldinschemapost.go +/pkg/models/operations/deprecatedobjectinschemaget.go +/pkg/models/operations/deprecatedoperationnocommentsget.go +/pkg/models/operations/deprecatedoperationwithcommentsget.go +/pkg/models/operations/emptyobjectget.go +/pkg/models/operations/emptyresponseobjectwithcommentget.go +/pkg/models/operations/getglobalnameoverride.go +/pkg/models/operations/ignoredgenerationget.go +/pkg/models/operations/ignorespost.go +/pkg/models/operations/nameoverrideget.go +/pkg/models/operations/objectcircularreferenceget.go +/pkg/models/operations/oneofcircularreferenceget.go +/pkg/models/operations/typedparametergenerationget.go +/pkg/models/operations/usageexamplepost.go +/pkg/models/operations/connectionerrorget.go +/pkg/models/operations/statusgeterror.go +/pkg/models/operations/statusgetxspeakeasyerrors.go +/pkg/models/operations/flattenedtypedobjectpost.go +/pkg/models/operations/mixedtypeoneofpost.go +/pkg/models/operations/nullableoneofrefinobjectpost.go +/pkg/models/operations/nullableoneofschemapost.go +/pkg/models/operations/nullableoneoftypeinobjectpost.go +/pkg/models/operations/nullabletypedobjectpost.go +/pkg/models/operations/primitivetypeoneofpost.go +/pkg/models/operations/stronglytypedoneofpost.go +/pkg/models/operations/typedobjectnullableoneofpost.go +/pkg/models/operations/typedobjectoneofpost.go +/pkg/models/operations/unionbigintdecimal.go +/pkg/models/operations/uniondatenull.go +/pkg/models/operations/uniondatetimebigint.go +/pkg/models/operations/uniondatetimenull.go +/pkg/models/operations/weaklytypedoneofpost.go +/pkg/models/operations/componentbodyandparamconflict.go +/pkg/models/operations/componentbodyandparamnoconflict.go +/pkg/models/operations/conflictingparams.go +/pkg/models/operations/inlinebodyandparamconflict.go +/pkg/models/operations/inlinebodyandparamnoconflict.go +/pkg/models/operations/globalpathparameterget.go +/pkg/models/operations/globalsqueryparameterget.go +/pkg/models/operations/deepobjectqueryparamsmap.go +/pkg/models/operations/deepobjectqueryparamsobject.go +/pkg/models/operations/duplicateparam.go +/pkg/models/operations/formqueryparamsarray.go +/pkg/models/operations/formqueryparamscamelobject.go +/pkg/models/operations/formqueryparamsmap.go +/pkg/models/operations/formqueryparamsobject.go +/pkg/models/operations/formqueryparamsprimitive.go +/pkg/models/operations/formqueryparamsrefparamobject.go +/pkg/models/operations/headerparamsarray.go +/pkg/models/operations/headerparamsmap.go +/pkg/models/operations/headerparamsobject.go +/pkg/models/operations/headerparamsprimitive.go +/pkg/models/operations/jsonqueryparamsobject.go +/pkg/models/operations/mixedparameterscamelcase.go +/pkg/models/operations/mixedparametersprimitives.go +/pkg/models/operations/mixedqueryparams.go +/pkg/models/operations/pathparameterjson.go +/pkg/models/operations/pipedelimitedqueryparamsarray.go +/pkg/models/operations/simplepathparameterarrays.go +/pkg/models/operations/simplepathparametermaps.go +/pkg/models/operations/simplepathparameterobjects.go +/pkg/models/operations/simplepathparameterprimitives.go +/pkg/models/operations/nestfirstget.go +/pkg/models/operations/nestedfirstget.go +/pkg/models/operations/nestedsecondget.go +/pkg/models/operations/nestedget.go +/pkg/models/operations/nullableobjectpost.go +/pkg/models/operations/nullablerequiredemptyobjectpost.go +/pkg/models/operations/nullablerequiredpropertypost.go +/pkg/models/operations/nullablerequiredsharedobjectpost.go +/pkg/models/operations/requestbodypostapplicationjsonarray.go +/pkg/models/operations/requestbodypostapplicationjsonarraycamelcase.go +/pkg/models/operations/requestbodypostapplicationjsonarrayobj.go +/pkg/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.go +/pkg/models/operations/requestbodypostapplicationjsonarrayofarray.go +/pkg/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.go +/pkg/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.go +/pkg/models/operations/requestbodypostapplicationjsonarrayofmap.go +/pkg/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.go +/pkg/models/operations/requestbodypostapplicationjsonarrayofprimitive.go +/pkg/models/operations/requestbodypostapplicationjsondeep.go +/pkg/models/operations/requestbodypostapplicationjsondeepcamelcase.go +/pkg/models/operations/requestbodypostapplicationjsonmap.go +/pkg/models/operations/requestbodypostapplicationjsonmapcamelcase.go +/pkg/models/operations/requestbodypostapplicationjsonmapobj.go +/pkg/models/operations/requestbodypostapplicationjsonmapobjcamelcase.go +/pkg/models/operations/requestbodypostapplicationjsonmapofarray.go +/pkg/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.go +/pkg/models/operations/requestbodypostapplicationjsonmapofmap.go +/pkg/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.go +/pkg/models/operations/requestbodypostapplicationjsonmapofmapofprimitive.go +/pkg/models/operations/requestbodypostapplicationjsonmapofprimitive.go +/pkg/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.go +/pkg/models/operations/requestbodypostapplicationjsonsimple.go +/pkg/models/operations/requestbodypostapplicationjsonsimplecamelcase.go +/pkg/models/operations/requestbodypostcomplexnumbertypes.go +/pkg/models/operations/requestbodypostdefaultsandconsts.go +/pkg/models/operations/requestbodypostemptyobject.go +/pkg/models/operations/requestbodypostformdeep.go +/pkg/models/operations/requestbodypostformmapprimitive.go +/pkg/models/operations/requestbodypostformsimple.go +/pkg/models/operations/requestbodypostjsondatatypesarraybigint.go +/pkg/models/operations/requestbodypostjsondatatypesarraydate.go +/pkg/models/operations/requestbodypostjsondatatypesarraydecimalstr.go +/pkg/models/operations/requestbodypostjsondatatypesbigint.go +/pkg/models/operations/requestbodypostjsondatatypesbigintstr.go +/pkg/models/operations/requestbodypostjsondatatypesboolean.go +/pkg/models/operations/requestbodypostjsondatatypesdate.go +/pkg/models/operations/requestbodypostjsondatatypesdatetime.go +/pkg/models/operations/requestbodypostjsondatatypesdecimal.go +/pkg/models/operations/requestbodypostjsondatatypesdecimalstr.go +/pkg/models/operations/requestbodypostjsondatatypesfloat32.go +/pkg/models/operations/requestbodypostjsondatatypesint32.go +/pkg/models/operations/requestbodypostjsondatatypesinteger.go +/pkg/models/operations/requestbodypostjsondatatypesmapbigintstr.go +/pkg/models/operations/requestbodypostjsondatatypesmapdatetime.go +/pkg/models/operations/requestbodypostjsondatatypesmapdecimal.go +/pkg/models/operations/requestbodypostjsondatatypesnumber.go +/pkg/models/operations/requestbodypostjsondatatypesstring.go +/pkg/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.go +/pkg/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.go +/pkg/models/operations/requestbodypostmultiplecontenttypessplitparamform.go +/pkg/models/operations/requestbodypostmultiplecontenttypessplitparamjson.go +/pkg/models/operations/requestbodypostmultiplecontenttypessplitparammultipart.go +/pkg/models/operations/requestbodypostmultiplecontenttypessplitform.go +/pkg/models/operations/requestbodypostmultiplecontenttypessplitjson.go +/pkg/models/operations/requestbodypostmultiplecontenttypessplitmultipart.go +/pkg/models/operations/requestbodypostnotnullablenotrequiredstringbody.go +/pkg/models/operations/requestbodypostnullarray.go +/pkg/models/operations/requestbodypostnulldictionary.go +/pkg/models/operations/requestbodypostnullablenotrequiredstringbody.go +/pkg/models/operations/requestbodypostnullablerequiredstringbody.go +/pkg/models/operations/requestbodyputbytes.go +/pkg/models/operations/requestbodyputbyteswithparams.go +/pkg/models/operations/requestbodyputmultipartdeep.go +/pkg/models/operations/requestbodyputmultipartdifferentfilename.go +/pkg/models/operations/requestbodyputmultipartfile.go +/pkg/models/operations/requestbodyputmultipartsimple.go +/pkg/models/operations/requestbodyputstring.go +/pkg/models/operations/requestbodyputstringwithparams.go +/pkg/models/operations/requestbodyreadandwrite.go +/pkg/models/operations/requestbodyreadonlyinput.go +/pkg/models/operations/requestbodyreadonlyunion.go +/pkg/models/operations/requestbodyreadwriteonlyunion.go +/pkg/models/operations/requestbodywriteonly.go +/pkg/models/operations/requestbodywriteonlyoutput.go +/pkg/models/operations/requestbodywriteonlyunion.go +/pkg/models/operations/responsebodyadditionalpropertiescomplexnumberspost.go +/pkg/models/operations/responsebodyadditionalpropertiesdatepost.go +/pkg/models/operations/responsebodyadditionalpropertiesobjectpost.go +/pkg/models/operations/responsebodyadditionalpropertiespost.go +/pkg/models/operations/responsebodybytesget.go +/pkg/models/operations/responsebodyemptywithheaders.go +/pkg/models/operations/responsebodyoptionalget.go +/pkg/models/operations/responsebodyreadonly.go +/pkg/models/operations/responsebodystringget.go +/pkg/models/operations/responsebodyxmlget.go +/pkg/models/operations/responsebodyzerovaluecomplextypeptrspost.go +/pkg/models/operations/selectglobalserver.go +/pkg/models/operations/selectserverwithid.go +/pkg/models/operations/serverwithprotocoltemplate.go +/pkg/models/operations/serverwithtemplates.go +/pkg/models/operations/serverwithtemplatesglobal.go +/pkg/models/operations/serversbyidwithtemplates.go +/pkg/models/operations/telemetryspeakeasyuseragentget.go +/pkg/models/operations/telemetryuseragentget.go +/pkg/models/operations/apikeyauthglobalnew.go +/pkg/models/operations/authglobal.go +/pkg/models/operations/basicauthnew.go +/pkg/models/operations/multiplemixedoptionsauth.go +/pkg/models/operations/multiplemixedschemeauth.go +/pkg/models/operations/multipleoptionswithmixedschemesauth.go +/pkg/models/operations/multipleoptionswithsimpleschemesauth.go +/pkg/models/operations/multiplesimpleoptionsauth.go +/pkg/models/operations/multiplesimpleschemeauth.go +/pkg/models/operations/oauth2authnew.go +/pkg/models/operations/openidconnectauthnew.go +/pkg/models/operations/apikeyauth.go +/pkg/models/operations/apikeyauthglobal.go +/pkg/models/operations/basicauth.go +/pkg/models/operations/bearerauth.go +/pkg/models/operations/globalbearerauth.go +/pkg/models/operations/oauth2auth.go +/pkg/models/operations/oauth2override.go +/pkg/models/operations/openidconnectauth.go +/pkg/models/operations/getdocumentationperlanguage.go +/pkg/models/operations/createfile.go +/pkg/models/operations/createresource.go +/pkg/models/operations/deleteresource.go +/pkg/models/operations/getresource.go +/pkg/models/operations/updateresource.go +/pkg/models/operations/groupfirstget.go +/pkg/models/operations/groupsecondget.go +/pkg/models/operations/paginationcursorbody.go +/pkg/models/operations/paginationcursorparams.go +/pkg/models/operations/paginationlimitoffsetoffsetbody.go +/pkg/models/operations/paginationlimitoffsetoffsetparams.go +/pkg/models/operations/paginationlimitoffsetpagebody.go +/pkg/models/operations/paginationlimitoffsetpageparams.go +/pkg/models/operations/retriesget.go +/pkg/models/operations/putanythingignoredgeneration.go +/pkg/models/operations/responsebodyjsonget.go +/pkg/models/shared/simpleobject.go +/pkg/models/shared/enum.go +/pkg/models/shared/arraycircularreferenceobject.go +/pkg/models/shared/validcircularreferenceobject.go +/pkg/models/shared/deprecatedfieldinobject.go +/pkg/models/shared/deprecatedobject.go +/pkg/models/shared/emptyobjectparam.go +/pkg/models/shared/httpbinsimplejsonobject.go +/pkg/models/shared/objectcircularreferenceobject.go +/pkg/models/shared/oneofcircularreferenceobject.go +/pkg/models/shared/fakerstrings.go +/pkg/models/shared/fakerformattedstrings.go +/pkg/models/shared/flattenedtypedobject1.go +/pkg/models/shared/typedobject1.go +/pkg/models/shared/nullableoneofrefinobject.go +/pkg/models/shared/typedobject2.go +/pkg/models/shared/nullableoneoftypeinobject.go +/pkg/models/shared/stronglytypedoneofobject.go +/pkg/models/shared/simpleobjectwithtype.go +/pkg/models/shared/deepobjectwithtype.go +/pkg/models/shared/typedobjectnullableoneof.go +/pkg/models/shared/typedobjectoneof.go +/pkg/models/shared/typedobject3.go +/pkg/models/shared/weaklytypedoneofobject.go +/pkg/models/shared/deepobject.go +/pkg/models/shared/refqueryparamobjexploded.go +/pkg/models/shared/refqueryparamobj.go +/pkg/models/shared/nullableobject.go +/pkg/models/shared/simpleobjectcamelcase.go +/pkg/models/shared/arrobjvalue.go +/pkg/models/shared/arrobjvaluecamelcase.go +/pkg/models/shared/deepobjectcamelcase.go +/pkg/models/shared/mapobjvalue.go +/pkg/models/shared/mapobjvaluecamelcase.go +/pkg/models/shared/complexnumbertypes.go +/pkg/models/shared/defaultsandconstsoutput.go +/pkg/models/shared/defaultsandconsts.go +/pkg/models/shared/readwriteobject.go +/pkg/models/shared/readonlyobject.go +/pkg/models/shared/weaklytypedoneofreadonlyobject.go +/pkg/models/shared/weaklytypedoneofreadonlyobjectinput.go +/pkg/models/shared/weaklytypedoneofreadwriteobjectoutput.go +/pkg/models/shared/weaklytypedoneofreadwriteobject.go +/pkg/models/shared/writeonlyobject.go +/pkg/models/shared/weaklytypedoneofwriteonlyobjectoutput.go +/pkg/models/shared/weaklytypedoneofwriteonlyobject.go +/pkg/models/shared/objwithcomplexnumbersadditionalproperties.go +/pkg/models/shared/objwithdateadditionalproperties.go +/pkg/models/shared/objwithobjadditionalproperties.go +/pkg/models/shared/objwithstringadditionalproperties.go +/pkg/models/shared/objwithzerovaluecomplextypeptrs.go +/pkg/models/shared/authservicerequestbody.go +/pkg/models/shared/security.go +/pkg/models/shared/fileresource.go +/pkg/models/shared/exampleresource.go +/pkg/models/shared/examplevehicle.go +/pkg/models/shared/exampleboat.go +/pkg/models/shared/examplecar.go +/pkg/models/shared/limitoffsetconfig.go +/pkg/models/shared/alloftoallof.go +/pkg/models/shared/numericunion.go +/pkg/models/shared/oneofgenerationstresstest.go +/pkg/models/shared/primitivetypeunion.go +/pkg/models/shared/unsupportedenums.go +/pkg/models/callbacks/ignoredgenerationget.go +/pkg/models/sdkerrors/error.go +/pkg/models/sdkerrors/errortype.go +/pkg/models/sdkerrors/statusgetxspeakeasyerrors.go USAGE.md -docs/models/operations/apikeyauthsecurity.md -docs/models/operations/apikeyauthtoken.md -docs/models/operations/apikeyauthresponse.md -docs/models/operations/apikeyauthglobaltoken.md -docs/models/operations/apikeyauthglobalresponse.md -docs/models/operations/basicauthsecurity.md -docs/models/operations/basicauthrequest.md -docs/models/operations/basicauthuser.md -docs/models/operations/basicauthresponse.md -docs/models/operations/bearerauthsecurity.md -docs/models/operations/bearerauthtoken.md -docs/models/operations/bearerauthresponse.md -docs/models/operations/globalbearerauthtoken.md -docs/models/operations/globalbearerauthresponse.md -docs/models/operations/oauth2authsecurity.md -docs/models/operations/oauth2authtoken.md -docs/models/operations/oauth2authresponse.md -docs/models/operations/oauth2overridesecurity.md -docs/models/operations/oauth2overriderequest.md -docs/models/operations/oauth2overridetoken.md -docs/models/operations/oauth2overrideresponse.md -docs/models/operations/openidconnectauthsecurity.md -docs/models/operations/openidconnectauthtoken.md -docs/models/operations/openidconnectauthresponse.md -docs/models/operations/apikeyauthglobalnewresponse.md -docs/models/operations/authglobalresponse.md -docs/models/operations/basicauthnewsecurity.md -docs/models/operations/basicauthnewresponse.md -docs/models/operations/multiplemixedoptionsauthsecurity.md -docs/models/operations/multiplemixedoptionsauthresponse.md -docs/models/operations/multiplemixedschemeauthsecurity.md -docs/models/operations/multiplemixedschemeauthresponse.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md -docs/models/operations/multipleoptionswithmixedschemesauthresponse.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md -docs/models/operations/multipleoptionswithsimpleschemesauthresponse.md -docs/models/operations/multiplesimpleoptionsauthsecurity.md -docs/models/operations/multiplesimpleoptionsauthresponse.md -docs/models/operations/multiplesimpleschemeauthsecurity.md -docs/models/operations/multiplesimpleschemeauthresponse.md -docs/models/operations/oauth2authnewsecurity.md -docs/models/operations/oauth2authnewresponse.md -docs/models/operations/openidconnectauthnewsecurity.md -docs/models/operations/openidconnectauthnewresponse.md -docs/models/operations/getdocumentationperlanguagerequest.md -docs/models/operations/getdocumentationperlanguageresponse.md -docs/models/operations/connectionerrorgetresponse.md -docs/models/operations/statusgeterrorrequest.md -docs/models/operations/statusgeterrorresponse.md -docs/models/operations/statusgetxspeakeasyerrorsrequest.md -docs/models/operations/statusgetxspeakeasyerrorsresponse.md -docs/models/operations/groupfirstgetresponse.md -docs/models/operations/componentbodyandparamconflictrequest.md -docs/models/operations/componentbodyandparamconflictres.md -docs/models/operations/componentbodyandparamconflictresponse.md -docs/models/operations/componentbodyandparamnoconflictrequest.md -docs/models/operations/componentbodyandparamnoconflictres.md -docs/models/operations/componentbodyandparamnoconflictresponse.md -docs/models/operations/conflictingparamsrequest.md -docs/models/operations/conflictingparamsres.md -docs/models/operations/conflictingparamsresponse.md -docs/models/operations/inlinebodyandparamconflictrequestbody.md -docs/models/operations/inlinebodyandparamconflictrequest.md -docs/models/operations/inlinebodyandparamconflictresjson.md -docs/models/operations/inlinebodyandparamconflictres.md -docs/models/operations/inlinebodyandparamconflictresponse.md -docs/models/operations/inlinebodyandparamnoconflictrequestbody.md -docs/models/operations/inlinebodyandparamnoconflictrequest.md -docs/models/operations/inlinebodyandparamnoconflictresjson.md -docs/models/operations/inlinebodyandparamnoconflictres.md -docs/models/operations/inlinebodyandparamnoconflictresponse.md -docs/models/operations/typefromanchor.md +docs/models/operations/anchortypesgettypefromanchor.md docs/models/operations/anchortypesgetresponse.md docs/models/operations/arraycircularreferencegetresponse.md docs/models/operations/circularreferencegetresponse.md @@ -425,7 +350,7 @@ docs/models/operations/datetimeparamwithdefaultresponse.md docs/models/operations/decimalparamwithdefaultrequest.md docs/models/operations/decimalparamwithdefaultresponse.md docs/models/operations/deprecatedfieldinschemapostresponse.md -docs/models/operations/deprecatedobjectinschemaget200applicationjson.md +docs/models/operations/deprecatedobjectinschemagetresponsebody.md docs/models/operations/deprecatedobjectinschemagetresponse.md docs/models/operations/deprecatedoperationnocommentsgetrequest.md docs/models/operations/deprecatedoperationnocommentsgetresponse.md @@ -433,124 +358,168 @@ docs/models/operations/deprecatedoperationwithcommentsgetrequest.md docs/models/operations/deprecatedoperationwithcommentsgetresponse.md docs/models/operations/emptyobjectgetrequest.md docs/models/operations/emptyobjectgetresponse.md -docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md +docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md docs/models/operations/emptyresponseobjectwithcommentgetresponse.md -docs/models/operations/getglobalnameoverride200applicationjson.md +docs/models/operations/getglobalnameoverrideresponsebody.md docs/models/operations/getglobalnameoverrideresponse.md -docs/models/operations/ignoredgenerationget200applicationjson.md +docs/models/operations/ignoredgenerationgetresponsebody.md docs/models/operations/ignoredgenerationgetresponse.md -docs/models/operations/ignorespostapplicationjson.md +docs/models/operations/ignorespostrequestbody.md docs/models/operations/ignorespostrequest.md docs/models/operations/ignorespostresponse.md -docs/models/operations/nameoverridegetenumnameoverride.md +docs/models/operations/enumnameoverride.md docs/models/operations/nameoverridegetrequest.md -docs/models/operations/overriddenresponse.md +docs/models/operations/nameoverridegetoverriddenresponse.md docs/models/operations/nameoverridegetresponse.md docs/models/operations/objectcircularreferencegetresponse.md docs/models/operations/oneofcircularreferencegetresponse.md -docs/models/operations/typedparametergenerationgetobj.md +docs/models/operations/obj.md docs/models/operations/typedparametergenerationgetrequest.md docs/models/operations/typedparametergenerationgetresponse.md docs/models/operations/usageexamplepostsecurity.md docs/models/operations/usageexamplepostrequestbody.md -docs/models/operations/usageexamplepostenumparameter.md -docs/models/operations/usageexamplepostoptenumparameter.md +docs/models/operations/enumparameter.md +docs/models/operations/optenumparameter.md docs/models/operations/usageexamplepostrequest.md -docs/models/operations/usageexamplepost200applicationjsonjson.md -docs/models/operations/usageexamplepost200applicationjson.md +docs/models/operations/usageexamplepostjson.md +docs/models/operations/usageexamplepostresponsebody.md docs/models/operations/usageexamplepostresponse.md +docs/models/operations/connectionerrorgetresponse.md +docs/models/operations/statusgeterrorrequest.md +docs/models/operations/statusgeterrorresponse.md +docs/models/operations/statusgetxspeakeasyerrorsrequest.md +docs/models/operations/statusgetxspeakeasyerrorsresponse.md +docs/models/operations/flattenedtypedobjectpostres.md +docs/models/operations/flattenedtypedobjectpostresponse.md +docs/models/operations/mixedtypeoneofpostrequestbody.md +docs/models/operations/mixedtypeoneofpostjson.md +docs/models/operations/mixedtypeoneofpostres.md +docs/models/operations/mixedtypeoneofpostresponse.md +docs/models/operations/nullableoneofrefinobjectpostres.md +docs/models/operations/nullableoneofrefinobjectpostresponse.md +docs/models/operations/nullableoneofschemapostrequestbody.md +docs/models/operations/nullableoneofschemapostjson.md +docs/models/operations/nullableoneofschemapostres.md +docs/models/operations/nullableoneofschemapostresponse.md +docs/models/operations/nullableoneoftypeinobjectpostres.md +docs/models/operations/nullableoneoftypeinobjectpostresponse.md +docs/models/operations/nullabletypedobjectpostres.md +docs/models/operations/nullabletypedobjectpostresponse.md +docs/models/operations/primitivetypeoneofpostrequestbody.md +docs/models/operations/primitivetypeoneofpostjson.md +docs/models/operations/primitivetypeoneofpostres.md +docs/models/operations/primitivetypeoneofpostresponse.md +docs/models/operations/stronglytypedoneofpostres.md +docs/models/operations/stronglytypedoneofpostresponse.md +docs/models/operations/typedobjectnullableoneofpostres.md +docs/models/operations/typedobjectnullableoneofpostresponse.md +docs/models/operations/typedobjectoneofpostres.md +docs/models/operations/typedobjectoneofpostresponse.md +docs/models/operations/unionbigintdecimalrequestbody.md +docs/models/operations/unionbigintdecimaljson.md +docs/models/operations/unionbigintdecimalres.md +docs/models/operations/unionbigintdecimalresponse.md +docs/models/operations/uniondatenullres.md +docs/models/operations/uniondatenullresponse.md +docs/models/operations/uniondatetimebigintrequestbody.md +docs/models/operations/uniondatetimebigintjson.md +docs/models/operations/uniondatetimebigintres.md +docs/models/operations/uniondatetimebigintresponse.md +docs/models/operations/uniondatetimenullres.md +docs/models/operations/uniondatetimenullresponse.md +docs/models/operations/weaklytypedoneofpostres.md +docs/models/operations/weaklytypedoneofpostresponse.md +docs/models/operations/componentbodyandparamconflictrequest.md +docs/models/operations/componentbodyandparamconflictres.md +docs/models/operations/componentbodyandparamconflictresponse.md +docs/models/operations/componentbodyandparamnoconflictrequest.md +docs/models/operations/componentbodyandparamnoconflictres.md +docs/models/operations/componentbodyandparamnoconflictresponse.md +docs/models/operations/conflictingparamsrequest.md +docs/models/operations/conflictingparamsres.md +docs/models/operations/conflictingparamsresponse.md +docs/models/operations/inlinebodyandparamconflictrequestbody.md +docs/models/operations/inlinebodyandparamconflictrequest.md +docs/models/operations/json.md +docs/models/operations/inlinebodyandparamconflictres.md +docs/models/operations/inlinebodyandparamconflictresponse.md +docs/models/operations/inlinebodyandparamnoconflictrequestbody.md +docs/models/operations/inlinebodyandparamnoconflictrequest.md +docs/models/operations/inlinebodyandparamnoconflictjson.md +docs/models/operations/inlinebodyandparamnoconflictres.md +docs/models/operations/inlinebodyandparamnoconflictresponse.md docs/models/operations/globalpathparametergetrequest.md docs/models/operations/globalpathparametergetres.md docs/models/operations/globalpathparametergetresponse.md docs/models/operations/globalsqueryparametergetrequest.md -docs/models/operations/globalsqueryparametergetresargs.md +docs/models/operations/args.md docs/models/operations/globalsqueryparametergetres.md docs/models/operations/globalsqueryparametergetresponse.md -docs/models/operations/nestfirstgetresponse.md -docs/models/operations/nestedfirstgetresponse.md -docs/models/operations/nestedsecondgetresponse.md -docs/models/operations/nestedgetresponse.md -docs/models/operations/paginationcursorbodyrequestbody.md -docs/models/operations/paginationcursorbodyres.md -docs/models/operations/paginationcursorbodyresponse.md -docs/models/operations/paginationcursorparamsrequest.md -docs/models/operations/paginationcursorparamsres.md -docs/models/operations/paginationcursorparamsresponse.md -docs/models/operations/paginationlimitoffsetoffsetbodyres.md -docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md -docs/models/operations/paginationlimitoffsetoffsetparamsrequest.md -docs/models/operations/paginationlimitoffsetoffsetparamsres.md -docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md -docs/models/operations/paginationlimitoffsetpagebodyres.md -docs/models/operations/paginationlimitoffsetpagebodyresponse.md -docs/models/operations/paginationlimitoffsetpageparamsrequest.md -docs/models/operations/paginationlimitoffsetpageparamsres.md -docs/models/operations/paginationlimitoffsetpageparamsresponse.md docs/models/operations/deepobjectqueryparamsmaprequest.md -docs/models/operations/deepobjectqueryparamsmapresargs.md +docs/models/operations/deepobjectqueryparamsmapargs.md docs/models/operations/deepobjectqueryparamsmapres.md docs/models/operations/deepobjectqueryparamsmapresponse.md -docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md +docs/models/operations/objarrparam.md docs/models/operations/deepobjectqueryparamsobjectrequest.md -docs/models/operations/deepobjectqueryparamsobjectresargs.md +docs/models/operations/deepobjectqueryparamsobjectargs.md docs/models/operations/deepobjectqueryparamsobjectres.md docs/models/operations/deepobjectqueryparamsobjectresponse.md docs/models/operations/duplicateparamrequest.md docs/models/operations/duplicateparamduplicateparamresponse.md docs/models/operations/duplicateparamresponse.md docs/models/operations/formqueryparamsarrayrequest.md -docs/models/operations/formqueryparamsarrayresargs.md +docs/models/operations/formqueryparamsarrayargs.md docs/models/operations/formqueryparamsarrayres.md docs/models/operations/formqueryparamsarrayresponse.md -docs/models/operations/formqueryparamscamelobjectobjparam.md -docs/models/operations/formqueryparamscamelobjectobjparamexploded.md +docs/models/operations/objparam.md +docs/models/operations/objparamexploded.md docs/models/operations/formqueryparamscamelobjectrequest.md -docs/models/operations/formqueryparamscamelobjectresargs.md +docs/models/operations/formqueryparamscamelobjectargs.md docs/models/operations/formqueryparamscamelobjectres.md docs/models/operations/formqueryparamscamelobjectresponse.md docs/models/operations/formqueryparamsmaprequest.md docs/models/operations/formqueryparamsmapres.md docs/models/operations/formqueryparamsmapresponse.md docs/models/operations/formqueryparamsobjectrequest.md -docs/models/operations/formqueryparamsobjectresargs.md +docs/models/operations/formqueryparamsobjectargs.md docs/models/operations/formqueryparamsobjectres.md docs/models/operations/formqueryparamsobjectresponse.md docs/models/operations/formqueryparamsprimitiverequest.md -docs/models/operations/formqueryparamsprimitiveresargs.md +docs/models/operations/formqueryparamsprimitiveargs.md docs/models/operations/formqueryparamsprimitiveres.md docs/models/operations/formqueryparamsprimitiveresponse.md docs/models/operations/formqueryparamsrefparamobjectrequest.md -docs/models/operations/formqueryparamsrefparamobjectresargs.md +docs/models/operations/formqueryparamsrefparamobjectargs.md docs/models/operations/formqueryparamsrefparamobjectres.md docs/models/operations/formqueryparamsrefparamobjectresponse.md docs/models/operations/headerparamsarrayrequest.md -docs/models/operations/headerparamsarrayresheaders.md +docs/models/operations/headers.md docs/models/operations/headerparamsarrayres.md docs/models/operations/headerparamsarrayresponse.md docs/models/operations/headerparamsmaprequest.md -docs/models/operations/headerparamsmapresheaders.md +docs/models/operations/headerparamsmapheaders.md docs/models/operations/headerparamsmapres.md docs/models/operations/headerparamsmapresponse.md docs/models/operations/headerparamsobjectrequest.md -docs/models/operations/headerparamsobjectresheaders.md +docs/models/operations/headerparamsobjectheaders.md docs/models/operations/headerparamsobjectres.md docs/models/operations/headerparamsobjectresponse.md docs/models/operations/headerparamsprimitiverequest.md -docs/models/operations/headerparamsprimitiveresheaders.md +docs/models/operations/headerparamsprimitiveheaders.md docs/models/operations/headerparamsprimitiveres.md docs/models/operations/headerparamsprimitiveresponse.md docs/models/operations/jsonqueryparamsobjectrequest.md -docs/models/operations/jsonqueryparamsobjectresargs.md +docs/models/operations/jsonqueryparamsobjectargs.md docs/models/operations/jsonqueryparamsobjectres.md docs/models/operations/jsonqueryparamsobjectresponse.md docs/models/operations/mixedparameterscamelcaserequest.md -docs/models/operations/mixedparameterscamelcaseresargs.md -docs/models/operations/mixedparameterscamelcaseresheaders.md +docs/models/operations/mixedparameterscamelcaseargs.md +docs/models/operations/mixedparameterscamelcaseheaders.md docs/models/operations/mixedparameterscamelcaseres.md docs/models/operations/mixedparameterscamelcaseresponse.md docs/models/operations/mixedparametersprimitivesrequest.md -docs/models/operations/mixedparametersprimitivesresargs.md -docs/models/operations/mixedparametersprimitivesresheaders.md +docs/models/operations/mixedparametersprimitivesargs.md +docs/models/operations/mixedparametersprimitivesheaders.md docs/models/operations/mixedparametersprimitivesres.md docs/models/operations/mixedparametersprimitivesresponse.md docs/models/operations/mixedqueryparamsrequest.md @@ -560,7 +529,7 @@ docs/models/operations/pathparameterjsonrequest.md docs/models/operations/pathparameterjsonres.md docs/models/operations/pathparameterjsonresponse.md docs/models/operations/pipedelimitedqueryparamsarrayrequest.md -docs/models/operations/pipedelimitedqueryparamsarrayresargs.md +docs/models/operations/pipedelimitedqueryparamsarrayargs.md docs/models/operations/pipedelimitedqueryparamsarrayres.md docs/models/operations/pipedelimitedqueryparamsarrayresponse.md docs/models/operations/simplepathparameterarraysrequest.md @@ -575,14 +544,18 @@ docs/models/operations/simplepathparameterobjectsresponse.md docs/models/operations/simplepathparameterprimitivesrequest.md docs/models/operations/simplepathparameterprimitivesres.md docs/models/operations/simplepathparameterprimitivesresponse.md +docs/models/operations/nestfirstgetresponse.md +docs/models/operations/nestedfirstgetresponse.md +docs/models/operations/nestedsecondgetresponse.md +docs/models/operations/nestedgetresponse.md docs/models/operations/nullableobjectpostres.md docs/models/operations/nullableobjectpostresponse.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md +docs/models/operations/nullableoptionalobj.md +docs/models/operations/nullablerequiredobj.md +docs/models/operations/requiredobj.md docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md docs/models/operations/nullablerequiredemptyobjectpostresponse.md -docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md +docs/models/operations/nullablerequiredenum.md docs/models/operations/nullablerequiredpropertypostrequestbody.md docs/models/operations/nullablerequiredpropertypostresponse.md docs/models/operations/nullablerequiredsharedobjectpostrequestbody.md @@ -618,123 +591,123 @@ docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseres.md docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md docs/models/operations/requestbodypostcomplexnumbertypesrequest.md -docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md +docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md docs/models/operations/requestbodypostcomplexnumbertypesresponse.md -docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md +docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md docs/models/operations/requestbodypostdefaultsandconstsresponse.md -docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md -docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md +docs/models/operations/empty.md +docs/models/operations/emptywithemptyproperties.md docs/models/operations/requestbodypostemptyobjectrequestbody.md -docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md -docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md -docs/models/operations/requestbodypostemptyobject200applicationjson.md +docs/models/operations/requestbodypostemptyobjectempty.md +docs/models/operations/emptyrespwithemptyproperies.md +docs/models/operations/requestbodypostemptyobjectresponsebody.md docs/models/operations/requestbodypostemptyobjectresponse.md -docs/models/operations/requestbodypostformdeepresform.md +docs/models/operations/form.md docs/models/operations/requestbodypostformdeepres.md docs/models/operations/requestbodypostformdeepresponse.md docs/models/operations/requestbodypostformmapprimitiveres.md docs/models/operations/requestbodypostformmapprimitiveresponse.md -docs/models/operations/requestbodypostformsimpleresform.md -docs/models/operations/requestbodypostformsimpleresheaders.md +docs/models/operations/requestbodypostformsimpleform.md +docs/models/operations/requestbodypostformsimpleheaders.md docs/models/operations/requestbodypostformsimpleres.md docs/models/operations/requestbodypostformsimpleresponse.md -docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md -docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md -docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md -docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md docs/models/operations/requestbodypostjsondatatypesbigintresponse.md -docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md -docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md -docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md docs/models/operations/requestbodypostjsondatatypesdateresponse.md -docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md -docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md -docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md -docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md docs/models/operations/requestbodypostjsondatatypesfloat32response.md -docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesint32responsebody.md docs/models/operations/requestbodypostjsondatatypesint32response.md -docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md docs/models/operations/requestbodypostjsondatatypesintegerresponse.md -docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md -docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md -docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md -docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md docs/models/operations/requestbodypostjsondatatypesnumberresponse.md -docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md docs/models/operations/requestbodypostjsondatatypesstringresponse.md docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredres.md docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md -docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredres.md docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md +docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitformres.md docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitjsonres.md docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md +docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartres.md docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md -docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md -docs/models/operations/requestbodypostnullarray200applicationjson.md +docs/models/operations/requestbodypostnullarrayresponsebody.md docs/models/operations/requestbodypostnullarrayresponse.md -docs/models/operations/requestbodypostnulldictionary200applicationjson.md +docs/models/operations/requestbodypostnulldictionaryresponsebody.md docs/models/operations/requestbodypostnulldictionaryresponse.md -docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md -docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md docs/models/operations/requestbodyputbytesres.md docs/models/operations/requestbodyputbytesresponse.md docs/models/operations/requestbodyputbyteswithparamsrequest.md -docs/models/operations/requestbodyputbyteswithparamsresargs.md +docs/models/operations/requestbodyputbyteswithparamsargs.md docs/models/operations/requestbodyputbyteswithparamsres.md docs/models/operations/requestbodyputbyteswithparamsresponse.md -docs/models/operations/requestbodyputmultipartdeepresform.md +docs/models/operations/requestbodyputmultipartdeepform.md docs/models/operations/requestbodyputmultipartdeepres.md docs/models/operations/requestbodyputmultipartdeepresponse.md -docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md +docs/models/operations/differentfilename.md docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md docs/models/operations/requestbodyputmultipartdifferentfilenameres.md docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md -docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md +docs/models/operations/file.md docs/models/operations/requestbodyputmultipartfilerequestbody.md docs/models/operations/requestbodyputmultipartfileres.md docs/models/operations/requestbodyputmultipartfileresponse.md -docs/models/operations/requestbodyputmultipartsimpleresform.md -docs/models/operations/requestbodyputmultipartsimpleresheaders.md +docs/models/operations/requestbodyputmultipartsimpleform.md +docs/models/operations/requestbodyputmultipartsimpleheaders.md docs/models/operations/requestbodyputmultipartsimpleres.md docs/models/operations/requestbodyputmultipartsimpleresponse.md docs/models/operations/requestbodyputstringres.md docs/models/operations/requestbodyputstringresponse.md docs/models/operations/requestbodyputstringwithparamsrequest.md -docs/models/operations/requestbodyputstringwithparamsresargs.md +docs/models/operations/requestbodyputstringwithparamsargs.md docs/models/operations/requestbodyputstringwithparamsres.md docs/models/operations/requestbodyputstringwithparamsresponse.md docs/models/operations/requestbodyreadandwriteresponse.md @@ -744,23 +717,13 @@ docs/models/operations/requestbodyreadwriteonlyunionresponse.md docs/models/operations/requestbodywriteonlyresponse.md docs/models/operations/requestbodywriteonlyoutputresponse.md docs/models/operations/requestbodywriteonlyunionresponse.md -docs/models/operations/createfilerequestbodyfile.md -docs/models/operations/createfilerequestbody.md -docs/models/operations/createfileresponse.md -docs/models/operations/createresourceresponse.md -docs/models/operations/deleteresourcerequest.md -docs/models/operations/deleteresourceresponse.md -docs/models/operations/getresourcerequest.md -docs/models/operations/getresourceresponse.md -docs/models/operations/updateresourcerequest.md -docs/models/operations/updateresourceresponse.md -docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md -docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md -docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md -docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md docs/models/operations/responsebodyadditionalpropertiespostresponse.md docs/models/operations/responsebodybytesgetresponse.md docs/models/operations/responsebodyemptywithheadersrequest.md @@ -769,12 +732,8 @@ docs/models/operations/responsebodyoptionalgetresponse.md docs/models/operations/responsebodyreadonlyresponse.md docs/models/operations/responsebodystringgetresponse.md docs/models/operations/responsebodyxmlgetresponse.md -docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md +docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md -docs/models/operations/retriesgetrequest.md -docs/models/operations/retriesgetretries.md -docs/models/operations/retriesgetresponse.md -docs/models/operations/groupsecondgetresponse.md docs/models/operations/selectglobalserverresponse.md docs/models/operations/selectserverwithidresponse.md docs/models/operations/serverwithprotocoltemplateresponse.md @@ -786,84 +745,140 @@ docs/models/operations/telemetryspeakeasyuseragentgetres.md docs/models/operations/telemetryspeakeasyuseragentgetresponse.md docs/models/operations/telemetryuseragentgetres.md docs/models/operations/telemetryuseragentgetresponse.md -docs/models/operations/flattenedtypedobjectpostres.md -docs/models/operations/flattenedtypedobjectpostresponse.md -docs/models/operations/mixedtypeoneofpostrequestbody.md -docs/models/operations/mixedtypeoneofpostresjson.md -docs/models/operations/mixedtypeoneofpostres.md -docs/models/operations/mixedtypeoneofpostresponse.md -docs/models/operations/nullableoneofrefinobjectpostres.md -docs/models/operations/nullableoneofrefinobjectpostresponse.md -docs/models/operations/nullableoneofschemapostrequestbody.md -docs/models/operations/nullableoneofschemapostresjson.md -docs/models/operations/nullableoneofschemapostres.md -docs/models/operations/nullableoneofschemapostresponse.md -docs/models/operations/nullableoneoftypeinobjectpostres.md -docs/models/operations/nullableoneoftypeinobjectpostresponse.md -docs/models/operations/nullabletypedobjectpostres.md -docs/models/operations/nullabletypedobjectpostresponse.md -docs/models/operations/primitivetypeoneofpostrequestbody.md -docs/models/operations/primitivetypeoneofpostresjson.md -docs/models/operations/primitivetypeoneofpostres.md -docs/models/operations/primitivetypeoneofpostresponse.md -docs/models/operations/stronglytypedoneofpostres.md -docs/models/operations/stronglytypedoneofpostresponse.md -docs/models/operations/typedobjectnullableoneofpostres.md -docs/models/operations/typedobjectnullableoneofpostresponse.md -docs/models/operations/typedobjectoneofpostres.md -docs/models/operations/typedobjectoneofpostresponse.md -docs/models/operations/unionbigintdecimalrequestbody.md -docs/models/operations/unionbigintdecimalresjson.md -docs/models/operations/unionbigintdecimalres.md -docs/models/operations/unionbigintdecimalresponse.md -docs/models/operations/uniondatenullres.md -docs/models/operations/uniondatenullresponse.md -docs/models/operations/uniondatetimebigintrequestbody.md -docs/models/operations/uniondatetimebigintresjson.md -docs/models/operations/uniondatetimebigintres.md -docs/models/operations/uniondatetimebigintresponse.md -docs/models/operations/uniondatetimenullres.md -docs/models/operations/uniondatetimenullresponse.md -docs/models/operations/weaklytypedoneofpostres.md -docs/models/operations/weaklytypedoneofpostresponse.md -docs/models/operations/putanythingignoredgeneration200applicationjson.md +docs/models/operations/apikeyauthglobalnewresponse.md +docs/models/operations/authglobalresponse.md +docs/models/operations/basicauthnewsecurity.md +docs/models/operations/basicauthnewresponse.md +docs/models/operations/multiplemixedoptionsauthsecurity.md +docs/models/operations/multiplemixedoptionsauthresponse.md +docs/models/operations/multiplemixedschemeauthsecurity.md +docs/models/operations/multiplemixedschemeauthresponse.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md +docs/models/operations/multipleoptionswithmixedschemesauthresponse.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md +docs/models/operations/multipleoptionswithsimpleschemesauthresponse.md +docs/models/operations/multiplesimpleoptionsauthsecurity.md +docs/models/operations/multiplesimpleoptionsauthresponse.md +docs/models/operations/multiplesimpleschemeauthsecurity.md +docs/models/operations/multiplesimpleschemeauthresponse.md +docs/models/operations/oauth2authnewsecurity.md +docs/models/operations/oauth2authnewresponse.md +docs/models/operations/openidconnectauthnewsecurity.md +docs/models/operations/openidconnectauthnewresponse.md +docs/models/operations/apikeyauthsecurity.md +docs/models/operations/apikeyauthtoken.md +docs/models/operations/apikeyauthresponse.md +docs/models/operations/apikeyauthglobaltoken.md +docs/models/operations/apikeyauthglobalresponse.md +docs/models/operations/basicauthsecurity.md +docs/models/operations/basicauthrequest.md +docs/models/operations/basicauthuser.md +docs/models/operations/basicauthresponse.md +docs/models/operations/bearerauthsecurity.md +docs/models/operations/bearerauthtoken.md +docs/models/operations/bearerauthresponse.md +docs/models/operations/globalbearerauthtoken.md +docs/models/operations/globalbearerauthresponse.md +docs/models/operations/oauth2authsecurity.md +docs/models/operations/oauth2authtoken.md +docs/models/operations/oauth2authresponse.md +docs/models/operations/oauth2overridesecurity.md +docs/models/operations/oauth2overriderequest.md +docs/models/operations/oauth2overridetoken.md +docs/models/operations/oauth2overrideresponse.md +docs/models/operations/openidconnectauthsecurity.md +docs/models/operations/openidconnectauthtoken.md +docs/models/operations/openidconnectauthresponse.md +docs/models/operations/getdocumentationperlanguagerequest.md +docs/models/operations/getdocumentationperlanguageresponse.md +docs/models/operations/createfilefile.md +docs/models/operations/createfilerequestbody.md +docs/models/operations/createfileresponse.md +docs/models/operations/createresourceresponse.md +docs/models/operations/deleteresourcerequest.md +docs/models/operations/deleteresourceresponse.md +docs/models/operations/getresourcerequest.md +docs/models/operations/getresourceresponse.md +docs/models/operations/updateresourcerequest.md +docs/models/operations/updateresourceresponse.md +docs/models/operations/groupfirstgetresponse.md +docs/models/operations/groupsecondgetresponse.md +docs/models/operations/paginationcursorbodyrequestbody.md +docs/models/operations/paginationcursorbodyres.md +docs/models/operations/paginationcursorbodyresponse.md +docs/models/operations/paginationcursorparamsrequest.md +docs/models/operations/paginationcursorparamsres.md +docs/models/operations/paginationcursorparamsresponse.md +docs/models/operations/paginationlimitoffsetoffsetbodyres.md +docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md +docs/models/operations/paginationlimitoffsetoffsetparamsrequest.md +docs/models/operations/paginationlimitoffsetoffsetparamsres.md +docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md +docs/models/operations/paginationlimitoffsetpagebodyres.md +docs/models/operations/paginationlimitoffsetpagebodyresponse.md +docs/models/operations/paginationlimitoffsetpageparamsrequest.md +docs/models/operations/paginationlimitoffsetpageparamsres.md +docs/models/operations/paginationlimitoffsetpageparamsresponse.md +docs/models/operations/retriesgetrequest.md +docs/models/operations/retriesgetretries.md +docs/models/operations/retriesgetresponse.md +docs/models/operations/putanythingignoredgenerationresponsebody.md docs/models/operations/putanythingignoredgenerationresponse.md docs/models/operations/responsebodyjsongetresponse.md -docs/models/shared/authservicerequestbodybasicauth.md -docs/models/shared/authservicerequestbodyheaderauth.md -docs/models/shared/authservicerequestbody.md -docs/models/shared/schemebasicauth.md -docs/models/shared/security.md -docs/models/shared/simpleobjectint32enum.md -docs/models/shared/simpleobjectintenum.md +docs/models/shared/int32enum.md +docs/models/shared/intenum.md docs/models/shared/simpleobject.md docs/models/shared/enum.md docs/models/shared/arraycircularreferenceobject.md docs/models/shared/validcircularreferenceobject.md -docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md +docs/models/shared/deprecatedenum.md docs/models/shared/deprecatedfieldinobject.md docs/models/shared/deprecatedobject.md docs/models/shared/emptyobjectparam.md -docs/models/shared/httpbinsimplejsonobjectslideshowslides.md -docs/models/shared/httpbinsimplejsonobjectslideshow.md +docs/models/shared/slides.md +docs/models/shared/slideshow.md docs/models/shared/httpbinsimplejsonobject.md docs/models/shared/objectcircularreferenceobject.md -docs/models/shared/oneofcircularreferenceobjectchild.md +docs/models/shared/child.md docs/models/shared/oneofcircularreferenceobject.md docs/models/shared/fakerstrings.md docs/models/shared/fakerformattedstrings.md -docs/models/shared/limitoffsetconfig.md +docs/models/shared/flattenedtypedobject1.md +docs/models/shared/typedobject1type.md +docs/models/shared/typedobject1.md +docs/models/shared/nullableoneoftwo.md +docs/models/shared/oneofone.md +docs/models/shared/nullableoneofrefinobject.md +docs/models/shared/typedobject2type.md +docs/models/shared/typedobject2.md +docs/models/shared/nullableoneoftypeinobjectnullableoneoftwo.md +docs/models/shared/nullableoneoftypeinobject.md +docs/models/shared/stronglytypedoneofobject.md +docs/models/shared/simpleobjectwithtypeint32enum.md +docs/models/shared/simpleobjectwithtypeintenum.md +docs/models/shared/simpleobjectwithtype.md +docs/models/shared/deepobjectwithtypeany.md +docs/models/shared/deepobjectwithtype.md +docs/models/shared/typedobjectnullableoneof.md +docs/models/shared/typedobjectoneof.md +docs/models/shared/typedobject3type.md +docs/models/shared/typedobject3.md +docs/models/shared/weaklytypedoneofobject.md +docs/models/shared/any.md +docs/models/shared/deepobject.md docs/models/shared/refqueryparamobjexploded.md docs/models/shared/refqueryparamobj.md -docs/models/shared/deepobjectany.md -docs/models/shared/deepobject.md docs/models/shared/nullableobject.md -docs/models/shared/simpleobjectcamelcaseint32enumval.md -docs/models/shared/simpleobjectcamelcaseintenumval.md +docs/models/shared/int32enumval.md +docs/models/shared/intenumval.md docs/models/shared/simpleobjectcamelcase.md docs/models/shared/arrobjvalue.md docs/models/shared/arrobjvaluecamelcase.md -docs/models/shared/deepobjectcamelcaseanyval.md +docs/models/shared/anyval.md docs/models/shared/deepobjectcamelcase.md docs/models/shared/mapobjvalue.md docs/models/shared/mapobjvaluecamelcase.md @@ -873,98 +888,83 @@ docs/models/shared/defaultsandconstsoutputconstenumstr.md docs/models/shared/defaultsandconstsoutputdefaultenumint.md docs/models/shared/defaultsandconstsoutputdefaultenumstr.md docs/models/shared/defaultsandconstsoutput.md -docs/models/shared/defaultsandconstsconstenumint.md -docs/models/shared/defaultsandconstsconstenumstr.md -docs/models/shared/defaultsandconstsdefaultenumint.md -docs/models/shared/defaultsandconstsdefaultenumstr.md +docs/models/shared/constenumint.md +docs/models/shared/constenumstr.md +docs/models/shared/defaultenumint.md +docs/models/shared/defaultenumstr.md docs/models/shared/defaultsandconsts.md -docs/models/shared/readwriteobjectinput.md +docs/models/shared/readwriteobject.md docs/models/shared/readwriteobjectoutput.md docs/models/shared/readonlyobject.md docs/models/shared/readonlyobjectinput.md docs/models/shared/weaklytypedoneofreadonlyobject.md docs/models/shared/weaklytypedoneofreadonlyobjectinput.md docs/models/shared/weaklytypedoneofreadwriteobjectoutput.md -docs/models/shared/weaklytypedoneofreadwriteobjectinput.md +docs/models/shared/weaklytypedoneofreadwriteobject.md docs/models/shared/writeonlyobject.md docs/models/shared/writeonlyobjectoutput.md docs/models/shared/weaklytypedoneofwriteonlyobjectoutput.md docs/models/shared/weaklytypedoneofwriteonlyobject.md +docs/models/shared/objwithcomplexnumbersadditionalproperties.md +docs/models/shared/objwithdateadditionalproperties.md +docs/models/shared/objwithobjadditionalproperties.md +docs/models/shared/objwithstringadditionalproperties.md +docs/models/shared/objwithzerovaluecomplextypeptrs.md +docs/models/shared/basicauth.md +docs/models/shared/headerauth.md +docs/models/shared/authservicerequestbody.md +docs/models/shared/schemebasicauth.md +docs/models/shared/security.md docs/models/shared/fileresource.md -docs/models/shared/exampleresourcechocolates.md -docs/models/shared/exampleresourceenumnumber.md -docs/models/shared/exampleresourceenumstr.md +docs/models/shared/chocolates.md +docs/models/shared/enumnumber.md +docs/models/shared/enumstr.md docs/models/shared/exampleresource.md docs/models/shared/examplevehicle.md -docs/models/shared/exampleboattype.md +docs/models/shared/type.md docs/models/shared/exampleboat.md docs/models/shared/examplecartype.md docs/models/shared/examplecar.md -docs/models/shared/objwithcomplexnumbersadditionalproperties.md -docs/models/shared/objwithdateadditionalproperties.md -docs/models/shared/objwithobjadditionalproperties.md -docs/models/shared/objwithstringadditionalproperties.md -docs/models/shared/typedobject1type.md -docs/models/shared/typedobject1.md -docs/models/shared/objwithzerovaluecomplextypeptrs.md -docs/models/shared/flattenedtypedobject1.md -docs/models/shared/nullableoneofrefinobjectnullableoneoftwo.md -docs/models/shared/nullableoneofrefinobjectoneofone.md -docs/models/shared/nullableoneofrefinobject.md -docs/models/shared/typedobject2type.md -docs/models/shared/typedobject2.md -docs/models/shared/nullableoneoftypeinobjectnullableoneoftwo.md -docs/models/shared/nullableoneoftypeinobject.md -docs/models/shared/stronglytypedoneofobject.md -docs/models/shared/simpleobjectwithtypeint32enum.md -docs/models/shared/simpleobjectwithtypeintenum.md -docs/models/shared/simpleobjectwithtype.md -docs/models/shared/deepobjectwithtypeany.md -docs/models/shared/deepobjectwithtype.md -docs/models/shared/typedobjectnullableoneof.md -docs/models/shared/typedobjectoneof.md -docs/models/shared/typedobject3type.md -docs/models/shared/typedobject3.md -docs/models/shared/weaklytypedoneofobject.md +docs/models/shared/limitoffsetconfig.md docs/models/shared/alloftoallof.md docs/models/shared/numericunion.md -docs/models/shared/oneofgenerationstresstestoneoffromarrayoftypes.md -docs/models/shared/oneofgenerationstresstestoneofsametype2.md -docs/models/shared/oneofgenerationstresstestoneofsametype.md +docs/models/shared/oneoffromarrayoftypes.md +docs/models/shared/two.md +docs/models/shared/oneofsametype.md docs/models/shared/oneofgenerationstresstest.md docs/models/shared/primitivetypeunion.md docs/models/shared/unsupportedenums.md -docs/models/errors/error.md -docs/models/errors/errortype.md -docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md docs/models/callbacks/ignoredgenerationgetsingledignoredcallbackoperationresponse.md docs/models/callbacks/ignoredgenerationgetsingledignoredcallbackoperationrequestbody.md docs/models/callbacks/ignoredgenerationgetnotignoredcallbackresponse.md docs/models/callbacks/ignoredgenerationgetnotignoredcallbackrequestbody.md +docs/models/errors/error.md +docs/models/errors/errortype.md +docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md docs/sdks/sdk/README.md -docs/sdks/auth/README.md +docs/sdks/generation/README.md docs/models/operations/option.md -docs/sdks/authnew/README.md -docs/sdks/documentation/README.md docs/sdks/errors/README.md -docs/sdks/first/README.md +docs/sdks/unions/README.md docs/sdks/flattening/README.md -docs/sdks/generation/README.md docs/sdks/globals/README.md +docs/sdks/parameters/README.md docs/sdks/nest/README.md -docs/sdks/nestfirst/README.md +docs/sdks/sdkfirst/README.md docs/sdks/nested/README.md -docs/sdks/nestedfirst/README.md -docs/sdks/nestedsecond/README.md -docs/sdks/pagination/README.md -docs/sdks/parameters/README.md +docs/sdks/sdknestedfirst/README.md +docs/sdks/sdksecond/README.md docs/sdks/requestbodies/README.md -docs/sdks/resource/README.md docs/sdks/responsebodies/README.md -docs/sdks/retries/README.md -docs/sdks/second/README.md docs/sdks/servers/README.md docs/sdks/telemetry/README.md -docs/sdks/unions/README.md +docs/sdks/authnew/README.md +docs/sdks/auth/README.md +docs/sdks/documentation/README.md +docs/sdks/resource/README.md +docs/sdks/first/README.md +docs/sdks/second/README.md +docs/sdks/pagination/README.md +docs/sdks/retries/README.md pkg/models/operations/options.go .gitattributes \ No newline at end of file diff --git a/go-client-sdk/first.go b/go-client-sdk/first.go index da438a6f1..1b55421c7 100755 --- a/go-client-sdk/first.go +++ b/go-client-sdk/first.go @@ -8,23 +8,23 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" "strings" ) -type first struct { +type First struct { sdkConfiguration sdkConfiguration } -func newFirst(sdkConfig sdkConfiguration) *first { - return &first{ +func newFirst(sdkConfig sdkConfiguration) *First { + return &First{ sdkConfiguration: sdkConfig, } } -func (s *first) Get(ctx context.Context) (*operations.GroupFirstGetResponse, error) { +func (s *First) Get(ctx context.Context) (*operations.GroupFirstGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/group/first" diff --git a/go-client-sdk/flattening.go b/go-client-sdk/flattening.go index a538ae39d..cd1f48d75 100755 --- a/go-client-sdk/flattening.go +++ b/go-client-sdk/flattening.go @@ -8,25 +8,25 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/models/shared" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/utils" "strings" ) -// flattening - Endpoints for testing flattening through request body and parameter combinations. -type flattening struct { +// Flattening - Endpoints for testing flattening through request body and parameter combinations. +type Flattening struct { sdkConfiguration sdkConfiguration } -func newFlattening(sdkConfig sdkConfiguration) *flattening { - return &flattening{ +func newFlattening(sdkConfig sdkConfiguration) *Flattening { + return &Flattening{ sdkConfiguration: sdkConfig, } } -func (s *flattening) ComponentBodyAndParamConflict(ctx context.Context, simpleObject shared.SimpleObject, str string) (*operations.ComponentBodyAndParamConflictResponse, error) { +func (s *Flattening) ComponentBodyAndParamConflict(ctx context.Context, simpleObject shared.SimpleObject, str string) (*operations.ComponentBodyAndParamConflictResponse, error) { request := operations.ComponentBodyAndParamConflictRequest{ SimpleObject: simpleObject, Str: str, @@ -102,7 +102,7 @@ func (s *flattening) ComponentBodyAndParamConflict(ctx context.Context, simpleOb return res, nil } -func (s *flattening) ComponentBodyAndParamNoConflict(ctx context.Context, paramStr string, simpleObject shared.SimpleObject) (*operations.ComponentBodyAndParamNoConflictResponse, error) { +func (s *Flattening) ComponentBodyAndParamNoConflict(ctx context.Context, paramStr string, simpleObject shared.SimpleObject) (*operations.ComponentBodyAndParamNoConflictResponse, error) { request := operations.ComponentBodyAndParamNoConflictRequest{ ParamStr: paramStr, SimpleObject: simpleObject, @@ -178,7 +178,7 @@ func (s *flattening) ComponentBodyAndParamNoConflict(ctx context.Context, paramS return res, nil } -func (s *flattening) ConflictingParams(ctx context.Context, strPathParameter string, strQueryParameter string) (*operations.ConflictingParamsResponse, error) { +func (s *Flattening) ConflictingParams(ctx context.Context, strPathParameter string, strQueryParameter string) (*operations.ConflictingParamsResponse, error) { request := operations.ConflictingParamsRequest{ StrPathParameter: strPathParameter, StrQueryParameter: strQueryParameter, @@ -247,7 +247,7 @@ func (s *flattening) ConflictingParams(ctx context.Context, strPathParameter str return res, nil } -func (s *flattening) InlineBodyAndParamConflict(ctx context.Context, requestBody operations.InlineBodyAndParamConflictRequestBody, str string) (*operations.InlineBodyAndParamConflictResponse, error) { +func (s *Flattening) InlineBodyAndParamConflict(ctx context.Context, requestBody operations.InlineBodyAndParamConflictRequestBody, str string) (*operations.InlineBodyAndParamConflictResponse, error) { request := operations.InlineBodyAndParamConflictRequest{ RequestBody: requestBody, Str: str, @@ -323,7 +323,7 @@ func (s *flattening) InlineBodyAndParamConflict(ctx context.Context, requestBody return res, nil } -func (s *flattening) InlineBodyAndParamNoConflict(ctx context.Context, requestBody operations.InlineBodyAndParamNoConflictRequestBody, paramStr string) (*operations.InlineBodyAndParamNoConflictResponse, error) { +func (s *Flattening) InlineBodyAndParamNoConflict(ctx context.Context, requestBody operations.InlineBodyAndParamNoConflictRequestBody, paramStr string) (*operations.InlineBodyAndParamNoConflictResponse, error) { request := operations.InlineBodyAndParamNoConflictRequest{ RequestBody: requestBody, ParamStr: paramStr, diff --git a/go-client-sdk/gen.yaml b/go-client-sdk/gen.yaml index 2de70286e..5d13a0189 100755 --- a/go-client-sdk/gen.yaml +++ b/go-client-sdk/gen.yaml @@ -2,8 +2,8 @@ configVersion: 1.0.0 management: docChecksum: 0c1717dc8f9e83b99bad896fa719645c docVersion: 0.1.0 - speakeasyVersion: 1.112.1 - generationVersion: 2.173.0 + speakeasyVersion: 1.114.1 + generationVersion: 2.181.1 generation: comments: {} sdkClassName: SDK @@ -12,9 +12,9 @@ features: go: additionalProperties: 0.1.1 constsAndDefaults: 0.1.1 - core: 2.94.0 + core: 3.1.0 deprecations: 2.81.1 - docs: 0.3.7 + docs: 0.3.9 downloadStreams: 0.1.1 enums: 2.81.1 errors: 2.81.7 @@ -34,11 +34,19 @@ features: retries: 2.82.1 serverIDs: 2.81.1 tests: 0.0.0 - unions: 2.84.1 + unions: 2.85.0 go: - version: 1.39.4 + version: 2.0.0 clientServerStatusCodesAsErrors: true flattenGlobalSecurity: true + imports: + option: openapi + paths: + callbacks: pkg/models/callbacks + errors: pkg/models/sdkerrors + operations: pkg/models/operations + shared: pkg/models/shared + webhooks: pkg/models/webhooks installationURL: https://github.com/speakeasy-api/openapi-generation-tests/go-client-sdk maxMethodParams: 5 packageName: openapi diff --git a/go-client-sdk/generation.go b/go-client-sdk/generation.go index 5fe73be56..7a3ad5136 100755 --- a/go-client-sdk/generation.go +++ b/go-client-sdk/generation.go @@ -10,27 +10,27 @@ import ( "io" "math/big" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/models/shared" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" "strings" "time" ) -// generation - Endpoints for purely testing valid generation behavior. -type generation struct { +// Generation - Endpoints for purely testing valid generation behavior. +type Generation struct { sdkConfiguration sdkConfiguration } -func newGeneration(sdkConfig sdkConfiguration) *generation { - return &generation{ +func newGeneration(sdkConfig sdkConfiguration) *Generation { + return &Generation{ sdkConfiguration: sdkConfig, } } -func (s *generation) AnchorTypesGet(ctx context.Context) (*operations.AnchorTypesGetResponse, error) { +func (s *Generation) AnchorTypesGet(ctx context.Context) (*operations.AnchorTypesGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/anchorTypes" @@ -69,7 +69,7 @@ func (s *generation) AnchorTypesGet(ctx context.Context) (*operations.AnchorType case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.TypeFromAnchor + var out operations.AnchorTypesGetTypeFromAnchor if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } @@ -87,7 +87,7 @@ func (s *generation) AnchorTypesGet(ctx context.Context) (*operations.AnchorType return res, nil } -func (s *generation) ArrayCircularReferenceGet(ctx context.Context) (*operations.ArrayCircularReferenceGetResponse, error) { +func (s *Generation) ArrayCircularReferenceGet(ctx context.Context) (*operations.ArrayCircularReferenceGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/arrayCircularReference" @@ -144,7 +144,7 @@ func (s *generation) ArrayCircularReferenceGet(ctx context.Context) (*operations return res, nil } -func (s *generation) CircularReferenceGet(ctx context.Context) (*operations.CircularReferenceGetResponse, error) { +func (s *Generation) CircularReferenceGet(ctx context.Context) (*operations.CircularReferenceGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/circularReference" @@ -201,7 +201,7 @@ func (s *generation) CircularReferenceGet(ctx context.Context) (*operations.Circ return res, nil } -func (s *generation) DateParamWithDefault(ctx context.Context, dateInput types.Date) (*operations.DateParamWithDefaultResponse, error) { +func (s *Generation) DateParamWithDefault(ctx context.Context, dateInput types.Date) (*operations.DateParamWithDefaultResponse, error) { request := operations.DateParamWithDefaultRequest{ DateInput: dateInput, } @@ -255,7 +255,7 @@ func (s *generation) DateParamWithDefault(ctx context.Context, dateInput types.D return res, nil } -func (s *generation) DateTimeParamWithDefault(ctx context.Context, dateTimeInput time.Time) (*operations.DateTimeParamWithDefaultResponse, error) { +func (s *Generation) DateTimeParamWithDefault(ctx context.Context, dateTimeInput time.Time) (*operations.DateTimeParamWithDefaultResponse, error) { request := operations.DateTimeParamWithDefaultRequest{ DateTimeInput: dateTimeInput, } @@ -309,7 +309,7 @@ func (s *generation) DateTimeParamWithDefault(ctx context.Context, dateTimeInput return res, nil } -func (s *generation) DecimalParamWithDefault(ctx context.Context, decimalInput *decimal.Big) (*operations.DecimalParamWithDefaultResponse, error) { +func (s *Generation) DecimalParamWithDefault(ctx context.Context, decimalInput *decimal.Big) (*operations.DecimalParamWithDefaultResponse, error) { request := operations.DecimalParamWithDefaultRequest{ DecimalInput: decimalInput, } @@ -363,7 +363,7 @@ func (s *generation) DecimalParamWithDefault(ctx context.Context, decimalInput * return res, nil } -func (s *generation) DeprecatedFieldInSchemaPost(ctx context.Context, request shared.DeprecatedFieldInObject) (*operations.DeprecatedFieldInSchemaPostResponse, error) { +func (s *Generation) DeprecatedFieldInSchemaPost(ctx context.Context, request shared.DeprecatedFieldInObject) (*operations.DeprecatedFieldInSchemaPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/deprecatedFieldInSchema" @@ -419,7 +419,7 @@ func (s *generation) DeprecatedFieldInSchemaPost(ctx context.Context, request sh return res, nil } -func (s *generation) DeprecatedObjectInSchemaGet(ctx context.Context) (*operations.DeprecatedObjectInSchemaGetResponse, error) { +func (s *Generation) DeprecatedObjectInSchemaGet(ctx context.Context) (*operations.DeprecatedObjectInSchemaGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/deprecatedObjectInSchema" @@ -458,12 +458,12 @@ func (s *generation) DeprecatedObjectInSchemaGet(ctx context.Context) (*operatio case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.DeprecatedObjectInSchemaGet200ApplicationJSON + var out operations.DeprecatedObjectInSchemaGetResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.DeprecatedObjectInSchemaGet200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -479,7 +479,7 @@ func (s *generation) DeprecatedObjectInSchemaGet(ctx context.Context) (*operatio // DeprecatedOperationNoCommentsGet // // Deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. -func (s *generation) DeprecatedOperationNoCommentsGet(ctx context.Context, deprecatedParameter *string) (*operations.DeprecatedOperationNoCommentsGetResponse, error) { +func (s *Generation) DeprecatedOperationNoCommentsGet(ctx context.Context, deprecatedParameter *string) (*operations.DeprecatedOperationNoCommentsGetResponse, error) { request := operations.DeprecatedOperationNoCommentsGetRequest{ DeprecatedParameter: deprecatedParameter, } @@ -536,7 +536,7 @@ func (s *generation) DeprecatedOperationNoCommentsGet(ctx context.Context, depre // DeprecatedOperationWithCommentsGet - This is an endpoint setup to test deprecation with comments // // Deprecated method: This operation is deprecated. Use SimplePathParameterObjects instead. -func (s *generation) DeprecatedOperationWithCommentsGet(ctx context.Context, deprecatedParameter *string, newParameter *string) (*operations.DeprecatedOperationWithCommentsGetResponse, error) { +func (s *Generation) DeprecatedOperationWithCommentsGet(ctx context.Context, deprecatedParameter *string, newParameter *string) (*operations.DeprecatedOperationWithCommentsGetResponse, error) { request := operations.DeprecatedOperationWithCommentsGetRequest{ DeprecatedParameter: deprecatedParameter, NewParameter: newParameter, @@ -591,7 +591,7 @@ func (s *generation) DeprecatedOperationWithCommentsGet(ctx context.Context, dep return res, nil } -func (s *generation) EmptyObjectGet(ctx context.Context, emptyObject shared.EmptyObjectParam) (*operations.EmptyObjectGetResponse, error) { +func (s *Generation) EmptyObjectGet(ctx context.Context, emptyObject shared.EmptyObjectParam) (*operations.EmptyObjectGetResponse, error) { request := operations.EmptyObjectGetRequest{ EmptyObject: emptyObject, } @@ -644,7 +644,7 @@ func (s *generation) EmptyObjectGet(ctx context.Context, emptyObject shared.Empt return res, nil } -func (s *generation) EmptyResponseObjectWithCommentGet(ctx context.Context) (*operations.EmptyResponseObjectWithCommentGetResponse, error) { +func (s *Generation) EmptyResponseObjectWithCommentGet(ctx context.Context) (*operations.EmptyResponseObjectWithCommentGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/emptyResponseObjectWithComment" @@ -696,7 +696,7 @@ func (s *generation) EmptyResponseObjectWithCommentGet(ctx context.Context) (*op return res, nil } -func (s *generation) GlobalNameOverridden(ctx context.Context) (*operations.GetGlobalNameOverrideResponse, error) { +func (s *Generation) GlobalNameOverridden(ctx context.Context) (*operations.GetGlobalNameOverrideResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/globalNameOverride" @@ -735,12 +735,12 @@ func (s *generation) GlobalNameOverridden(ctx context.Context) (*operations.GetG case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.GetGlobalNameOverride200ApplicationJSON + var out operations.GetGlobalNameOverrideResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.GetGlobalNameOverride200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -753,7 +753,7 @@ func (s *generation) GlobalNameOverridden(ctx context.Context) (*operations.GetG return res, nil } -func (s *generation) IgnoredGenerationGet(ctx context.Context) (*operations.IgnoredGenerationGetResponse, error) { +func (s *Generation) IgnoredGenerationGet(ctx context.Context) (*operations.IgnoredGenerationGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/ignoredGeneration" @@ -792,12 +792,12 @@ func (s *generation) IgnoredGenerationGet(ctx context.Context) (*operations.Igno case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.IgnoredGenerationGet200ApplicationJSON + var out operations.IgnoredGenerationGetResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.IgnoredGenerationGet200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -810,7 +810,7 @@ func (s *generation) IgnoredGenerationGet(ctx context.Context) (*operations.Igno return res, nil } -func (s *generation) IgnoresPost(ctx context.Context, requestBody operations.IgnoresPostApplicationJSON, testParam *string) (*operations.IgnoresPostResponse, error) { +func (s *Generation) IgnoresPost(ctx context.Context, requestBody operations.IgnoresPostRequestBody, testParam *string) (*operations.IgnoresPostResponse, error) { request := operations.IgnoresPostRequest{ RequestBody: requestBody, TestParam: testParam, @@ -886,7 +886,7 @@ func (s *generation) IgnoresPost(ctx context.Context, requestBody operations.Ign return res, nil } -func (s *generation) NameOverride(ctx context.Context, testEnumQueryParam operations.NameOverrideGetEnumNameOverride, testQueryParam string) (*operations.NameOverrideGetResponse, error) { +func (s *Generation) NameOverride(ctx context.Context, testEnumQueryParam operations.EnumNameOverride, testQueryParam string) (*operations.NameOverrideGetResponse, error) { request := operations.NameOverrideGetRequest{ TestEnumQueryParam: testEnumQueryParam, TestQueryParam: testQueryParam, @@ -934,7 +934,7 @@ func (s *generation) NameOverride(ctx context.Context, testEnumQueryParam operat case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.OverriddenResponse + var out operations.NameOverrideGetOverriddenResponse if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } @@ -952,7 +952,7 @@ func (s *generation) NameOverride(ctx context.Context, testEnumQueryParam operat return res, nil } -func (s *generation) ObjectCircularReferenceGet(ctx context.Context) (*operations.ObjectCircularReferenceGetResponse, error) { +func (s *Generation) ObjectCircularReferenceGet(ctx context.Context) (*operations.ObjectCircularReferenceGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/objectCircularReference" @@ -1009,7 +1009,7 @@ func (s *generation) ObjectCircularReferenceGet(ctx context.Context) (*operation return res, nil } -func (s *generation) OneOfCircularReferenceGet(ctx context.Context) (*operations.OneOfCircularReferenceGetResponse, error) { +func (s *Generation) OneOfCircularReferenceGet(ctx context.Context) (*operations.OneOfCircularReferenceGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/oneOfCircularReference" @@ -1066,7 +1066,7 @@ func (s *generation) OneOfCircularReferenceGet(ctx context.Context) (*operations return res, nil } -func (s *generation) TypedParameterGenerationGet(ctx context.Context, bigint *big.Int, date *types.Date, decimal *decimal.Big, obj *operations.TypedParameterGenerationGetObj) (*operations.TypedParameterGenerationGetResponse, error) { +func (s *Generation) TypedParameterGenerationGet(ctx context.Context, bigint *big.Int, date *types.Date, decimal *decimal.Big, obj *operations.Obj) (*operations.TypedParameterGenerationGetResponse, error) { request := operations.TypedParameterGenerationGetRequest{ Bigint: bigint, Date: date, @@ -1127,7 +1127,7 @@ func (s *generation) TypedParameterGenerationGet(ctx context.Context, bigint *bi // An operation used for testing usage examples that includes a large array of parameters and input types to ensure that all are handled correctly // // https://docs.example.com - Usage example docs -func (s *generation) UsageExamplePost(ctx context.Context, request operations.UsageExamplePostRequest, security operations.UsageExamplePostSecurity) (*operations.UsageExamplePostResponse, error) { +func (s *Generation) UsageExamplePost(ctx context.Context, request operations.UsageExamplePostRequest, security operations.UsageExamplePostSecurity) (*operations.UsageExamplePostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/usageExample" @@ -1177,12 +1177,12 @@ func (s *generation) UsageExamplePost(ctx context.Context, request operations.Us case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.UsageExamplePost200ApplicationJSON + var out operations.UsageExamplePostResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.UsageExamplePost200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } diff --git a/go-client-sdk/globals.go b/go-client-sdk/globals.go index 48064d93f..110deb2fc 100755 --- a/go-client-sdk/globals.go +++ b/go-client-sdk/globals.go @@ -8,24 +8,24 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" "strings" ) -// globals - Endpoints for testing global parameters. -type globals struct { +// Globals - Endpoints for testing global parameters. +type Globals struct { sdkConfiguration sdkConfiguration } -func newGlobals(sdkConfig sdkConfiguration) *globals { - return &globals{ +func newGlobals(sdkConfig sdkConfiguration) *Globals { + return &Globals{ sdkConfiguration: sdkConfig, } } -func (s *globals) GlobalPathParameterGet(ctx context.Context, globalPathParam *int64) (*operations.GlobalPathParameterGetResponse, error) { +func (s *Globals) GlobalPathParameterGet(ctx context.Context, globalPathParam *int64) (*operations.GlobalPathParameterGetResponse, error) { request := operations.GlobalPathParameterGetRequest{ GlobalPathParam: globalPathParam, } @@ -89,7 +89,7 @@ func (s *globals) GlobalPathParameterGet(ctx context.Context, globalPathParam *i return res, nil } -func (s *globals) GlobalsQueryParameterGet(ctx context.Context, globalQueryParam *string) (*operations.GlobalsQueryParameterGetResponse, error) { +func (s *Globals) GlobalsQueryParameterGet(ctx context.Context, globalQueryParam *string) (*operations.GlobalsQueryParameterGetResponse, error) { request := operations.GlobalsQueryParameterGetRequest{ GlobalQueryParam: globalQueryParam, } diff --git a/go-client-sdk/go.mod b/go-client-sdk/go.mod index 9af8c1011..019f95884 100755 --- a/go-client-sdk/go.mod +++ b/go-client-sdk/go.mod @@ -1,4 +1,4 @@ -module openapi +module openapi/v2 go 1.14 diff --git a/go-client-sdk/nest.go b/go-client-sdk/nest.go index d04e89a5c..a15f2afa4 100755 --- a/go-client-sdk/nest.go +++ b/go-client-sdk/nest.go @@ -2,15 +2,15 @@ package openapi -type nest struct { - First *nestFirst +type Nest struct { + First *SDKFirst sdkConfiguration sdkConfiguration } -func newNest(sdkConfig sdkConfiguration) *nest { - return &nest{ +func newNest(sdkConfig sdkConfiguration) *Nest { + return &Nest{ sdkConfiguration: sdkConfig, - First: newNestFirst(sdkConfig), + First: newSDKFirst(sdkConfig), } } diff --git a/go-client-sdk/nested.go b/go-client-sdk/nested.go index fe83aa9c0..651f43d69 100755 --- a/go-client-sdk/nested.go +++ b/go-client-sdk/nested.go @@ -8,28 +8,28 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" "strings" ) -type nested struct { - First *nestedFirst - Second *nestedSecond +type Nested struct { + First *SDKNestedFirst + Second *SDKSecond sdkConfiguration sdkConfiguration } -func newNested(sdkConfig sdkConfiguration) *nested { - return &nested{ +func newNested(sdkConfig sdkConfiguration) *Nested { + return &Nested{ sdkConfiguration: sdkConfig, - First: newNestedFirst(sdkConfig), - Second: newNestedSecond(sdkConfig), + First: newSDKNestedFirst(sdkConfig), + Second: newSDKSecond(sdkConfig), } } -func (s *nested) Get(ctx context.Context) (*operations.NestedGetResponse, error) { +func (s *Nested) Get(ctx context.Context) (*operations.NestedGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/nested" diff --git a/go-client-sdk/nestedfirst.go b/go-client-sdk/nestedfirst.go deleted file mode 100755 index 391fc51d3..000000000 --- a/go-client-sdk/nestedfirst.go +++ /dev/null @@ -1,71 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -package openapi - -import ( - "bytes" - "context" - "fmt" - "io" - "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" - "strings" -) - -type nestedFirst struct { - sdkConfiguration sdkConfiguration -} - -func newNestedFirst(sdkConfig sdkConfiguration) *nestedFirst { - return &nestedFirst{ - sdkConfiguration: sdkConfig, - } -} - -func (s *nestedFirst) Get(ctx context.Context) (*operations.NestedFirstGetResponse, error) { - baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) - url := strings.TrimSuffix(baseURL, "/") + "/anything/nested/first" - - req, err := http.NewRequestWithContext(ctx, "GET", url, nil) - if err != nil { - return nil, fmt.Errorf("error creating request: %w", err) - } - req.Header.Set("Accept", "*/*") - req.Header.Set("x-speakeasy-user-agent", s.sdkConfiguration.UserAgent) - - client := s.sdkConfiguration.SecurityClient - - httpRes, err := client.Do(req) - if err != nil { - return nil, fmt.Errorf("error sending request: %w", err) - } - if httpRes == nil { - return nil, fmt.Errorf("error sending request: no response") - } - - contentType := httpRes.Header.Get("Content-Type") - - res := &operations.NestedFirstGetResponse{ - StatusCode: httpRes.StatusCode, - ContentType: contentType, - RawResponse: httpRes, - } - - rawBody, err := io.ReadAll(httpRes.Body) - if err != nil { - return nil, fmt.Errorf("error reading response body: %w", err) - } - httpRes.Body.Close() - httpRes.Body = io.NopCloser(bytes.NewBuffer(rawBody)) - switch { - case httpRes.StatusCode == 200: - case httpRes.StatusCode >= 400 && httpRes.StatusCode < 500: - fallthrough - case httpRes.StatusCode >= 500 && httpRes.StatusCode < 600: - return nil, sdkerrors.NewSDKError("API error occurred", httpRes.StatusCode, string(rawBody), httpRes) - } - - return res, nil -} diff --git a/go-client-sdk/nestedsecond.go b/go-client-sdk/nestedsecond.go deleted file mode 100755 index 8286f7c4d..000000000 --- a/go-client-sdk/nestedsecond.go +++ /dev/null @@ -1,71 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -package openapi - -import ( - "bytes" - "context" - "fmt" - "io" - "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" - "strings" -) - -type nestedSecond struct { - sdkConfiguration sdkConfiguration -} - -func newNestedSecond(sdkConfig sdkConfiguration) *nestedSecond { - return &nestedSecond{ - sdkConfiguration: sdkConfig, - } -} - -func (s *nestedSecond) Get(ctx context.Context) (*operations.NestedSecondGetResponse, error) { - baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) - url := strings.TrimSuffix(baseURL, "/") + "/anything/nested/second" - - req, err := http.NewRequestWithContext(ctx, "GET", url, nil) - if err != nil { - return nil, fmt.Errorf("error creating request: %w", err) - } - req.Header.Set("Accept", "*/*") - req.Header.Set("x-speakeasy-user-agent", s.sdkConfiguration.UserAgent) - - client := s.sdkConfiguration.SecurityClient - - httpRes, err := client.Do(req) - if err != nil { - return nil, fmt.Errorf("error sending request: %w", err) - } - if httpRes == nil { - return nil, fmt.Errorf("error sending request: no response") - } - - contentType := httpRes.Header.Get("Content-Type") - - res := &operations.NestedSecondGetResponse{ - StatusCode: httpRes.StatusCode, - ContentType: contentType, - RawResponse: httpRes, - } - - rawBody, err := io.ReadAll(httpRes.Body) - if err != nil { - return nil, fmt.Errorf("error reading response body: %w", err) - } - httpRes.Body.Close() - httpRes.Body = io.NopCloser(bytes.NewBuffer(rawBody)) - switch { - case httpRes.StatusCode == 200: - case httpRes.StatusCode >= 400 && httpRes.StatusCode < 500: - fallthrough - case httpRes.StatusCode >= 500 && httpRes.StatusCode < 600: - return nil, sdkerrors.NewSDKError("API error occurred", httpRes.StatusCode, string(rawBody), httpRes) - } - - return res, nil -} diff --git a/go-client-sdk/nestfirst.go b/go-client-sdk/nestfirst.go deleted file mode 100755 index 43d30fce0..000000000 --- a/go-client-sdk/nestfirst.go +++ /dev/null @@ -1,71 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -package openapi - -import ( - "bytes" - "context" - "fmt" - "io" - "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" - "strings" -) - -type nestFirst struct { - sdkConfiguration sdkConfiguration -} - -func newNestFirst(sdkConfig sdkConfiguration) *nestFirst { - return &nestFirst{ - sdkConfiguration: sdkConfig, - } -} - -func (s *nestFirst) Get(ctx context.Context) (*operations.NestFirstGetResponse, error) { - baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) - url := strings.TrimSuffix(baseURL, "/") + "/anything/nest/first" - - req, err := http.NewRequestWithContext(ctx, "GET", url, nil) - if err != nil { - return nil, fmt.Errorf("error creating request: %w", err) - } - req.Header.Set("Accept", "*/*") - req.Header.Set("x-speakeasy-user-agent", s.sdkConfiguration.UserAgent) - - client := s.sdkConfiguration.SecurityClient - - httpRes, err := client.Do(req) - if err != nil { - return nil, fmt.Errorf("error sending request: %w", err) - } - if httpRes == nil { - return nil, fmt.Errorf("error sending request: no response") - } - - contentType := httpRes.Header.Get("Content-Type") - - res := &operations.NestFirstGetResponse{ - StatusCode: httpRes.StatusCode, - ContentType: contentType, - RawResponse: httpRes, - } - - rawBody, err := io.ReadAll(httpRes.Body) - if err != nil { - return nil, fmt.Errorf("error reading response body: %w", err) - } - httpRes.Body.Close() - httpRes.Body = io.NopCloser(bytes.NewBuffer(rawBody)) - switch { - case httpRes.StatusCode == 200: - case httpRes.StatusCode >= 400 && httpRes.StatusCode < 500: - fallthrough - case httpRes.StatusCode >= 500 && httpRes.StatusCode < 600: - return nil, sdkerrors.NewSDKError("API error occurred", httpRes.StatusCode, string(rawBody), httpRes) - } - - return res, nil -} diff --git a/go-client-sdk/pagination.go b/go-client-sdk/pagination.go index 998989a71..c906da054 100755 --- a/go-client-sdk/pagination.go +++ b/go-client-sdk/pagination.go @@ -9,25 +9,25 @@ import ( "github.com/spyzhov/ajson" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/models/shared" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/utils" "strings" ) -// pagination - Endpoints for testing the pagination extension -type pagination struct { +// Pagination - Endpoints for testing the pagination extension +type Pagination struct { sdkConfiguration sdkConfiguration } -func newPagination(sdkConfig sdkConfiguration) *pagination { - return &pagination{ +func newPagination(sdkConfig sdkConfiguration) *Pagination { + return &Pagination{ sdkConfiguration: sdkConfig, } } -func (s *pagination) PaginationCursorBody(ctx context.Context, request operations.PaginationCursorBodyRequestBody, opts ...operations.Option) (*operations.PaginationCursorBodyResponse, error) { +func (s *Pagination) PaginationCursorBody(ctx context.Context, request operations.PaginationCursorBodyRequestBody, opts ...operations.Option) (*operations.PaginationCursorBodyResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -145,7 +145,7 @@ func (s *pagination) PaginationCursorBody(ctx context.Context, request operation return res, nil } -func (s *pagination) PaginationCursorParams(ctx context.Context, cursor int64, opts ...operations.Option) (*operations.PaginationCursorParamsResponse, error) { +func (s *Pagination) PaginationCursorParams(ctx context.Context, cursor int64, opts ...operations.Option) (*operations.PaginationCursorParamsResponse, error) { request := operations.PaginationCursorParamsRequest{ Cursor: cursor, } @@ -259,7 +259,7 @@ func (s *pagination) PaginationCursorParams(ctx context.Context, cursor int64, o return res, nil } -func (s *pagination) PaginationLimitOffsetOffsetBody(ctx context.Context, request shared.LimitOffsetConfig, opts ...operations.Option) (*operations.PaginationLimitOffsetOffsetBodyResponse, error) { +func (s *Pagination) PaginationLimitOffsetOffsetBody(ctx context.Context, request shared.LimitOffsetConfig, opts ...operations.Option) (*operations.PaginationLimitOffsetOffsetBodyResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -377,7 +377,7 @@ func (s *pagination) PaginationLimitOffsetOffsetBody(ctx context.Context, reques return res, nil } -func (s *pagination) PaginationLimitOffsetOffsetParams(ctx context.Context, limit *int64, offset *int64, opts ...operations.Option) (*operations.PaginationLimitOffsetOffsetParamsResponse, error) { +func (s *Pagination) PaginationLimitOffsetOffsetParams(ctx context.Context, limit *int64, offset *int64, opts ...operations.Option) (*operations.PaginationLimitOffsetOffsetParamsResponse, error) { request := operations.PaginationLimitOffsetOffsetParamsRequest{ Limit: limit, Offset: offset, @@ -491,7 +491,7 @@ func (s *pagination) PaginationLimitOffsetOffsetParams(ctx context.Context, limi return res, nil } -func (s *pagination) PaginationLimitOffsetPageBody(ctx context.Context, request shared.LimitOffsetConfig, opts ...operations.Option) (*operations.PaginationLimitOffsetPageBodyResponse, error) { +func (s *Pagination) PaginationLimitOffsetPageBody(ctx context.Context, request shared.LimitOffsetConfig, opts ...operations.Option) (*operations.PaginationLimitOffsetPageBodyResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -607,7 +607,7 @@ func (s *pagination) PaginationLimitOffsetPageBody(ctx context.Context, request return res, nil } -func (s *pagination) PaginationLimitOffsetPageParams(ctx context.Context, page int64, opts ...operations.Option) (*operations.PaginationLimitOffsetPageParamsResponse, error) { +func (s *Pagination) PaginationLimitOffsetPageParams(ctx context.Context, page int64, opts ...operations.Option) (*operations.PaginationLimitOffsetPageParamsResponse, error) { request := operations.PaginationLimitOffsetPageParamsRequest{ Page: page, } diff --git a/go-client-sdk/parameters.go b/go-client-sdk/parameters.go index d9974c45d..810c09ae5 100755 --- a/go-client-sdk/parameters.go +++ b/go-client-sdk/parameters.go @@ -8,25 +8,25 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/models/shared" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/utils" "strings" ) -// parameters - Endpoints for testing parameters. -type parameters struct { +// Parameters - Endpoints for testing parameters. +type Parameters struct { sdkConfiguration sdkConfiguration } -func newParameters(sdkConfig sdkConfiguration) *parameters { - return ¶meters{ +func newParameters(sdkConfig sdkConfiguration) *Parameters { + return &Parameters{ sdkConfiguration: sdkConfig, } } -func (s *parameters) DeepObjectQueryParamsMap(ctx context.Context, mapParam map[string]string, mapArrParam map[string][]string) (*operations.DeepObjectQueryParamsMapResponse, error) { +func (s *Parameters) DeepObjectQueryParamsMap(ctx context.Context, mapParam map[string]string, mapArrParam map[string][]string) (*operations.DeepObjectQueryParamsMapResponse, error) { request := operations.DeepObjectQueryParamsMapRequest{ MapParam: mapParam, MapArrParam: mapArrParam, @@ -92,7 +92,7 @@ func (s *parameters) DeepObjectQueryParamsMap(ctx context.Context, mapParam map[ return res, nil } -func (s *parameters) DeepObjectQueryParamsObject(ctx context.Context, objParam shared.SimpleObject, objArrParam *operations.DeepObjectQueryParamsObjectObjArrParam) (*operations.DeepObjectQueryParamsObjectResponse, error) { +func (s *Parameters) DeepObjectQueryParamsObject(ctx context.Context, objParam shared.SimpleObject, objArrParam *operations.ObjArrParam) (*operations.DeepObjectQueryParamsObjectResponse, error) { request := operations.DeepObjectQueryParamsObjectRequest{ ObjParam: objParam, ObjArrParam: objArrParam, @@ -158,7 +158,7 @@ func (s *parameters) DeepObjectQueryParamsObject(ctx context.Context, objParam s return res, nil } -func (s *parameters) DuplicateParam(ctx context.Context, duplicateParamRequest string) (*operations.DuplicateParamResponse, error) { +func (s *Parameters) DuplicateParam(ctx context.Context, duplicateParamRequest string) (*operations.DuplicateParamResponse, error) { request := operations.DuplicateParamRequest{ DuplicateParamRequest: duplicateParamRequest, } @@ -222,7 +222,7 @@ func (s *parameters) DuplicateParam(ctx context.Context, duplicateParamRequest s return res, nil } -func (s *parameters) FormQueryParamsArray(ctx context.Context, arrParam []string, arrParamExploded []int64) (*operations.FormQueryParamsArrayResponse, error) { +func (s *Parameters) FormQueryParamsArray(ctx context.Context, arrParam []string, arrParamExploded []int64) (*operations.FormQueryParamsArrayResponse, error) { request := operations.FormQueryParamsArrayRequest{ ArrParam: arrParam, ArrParamExploded: arrParamExploded, @@ -288,7 +288,7 @@ func (s *parameters) FormQueryParamsArray(ctx context.Context, arrParam []string return res, nil } -func (s *parameters) FormQueryParamsCamelObject(ctx context.Context, objParamExploded operations.FormQueryParamsCamelObjectObjParamExploded, objParam *operations.FormQueryParamsCamelObjectObjParam) (*operations.FormQueryParamsCamelObjectResponse, error) { +func (s *Parameters) FormQueryParamsCamelObject(ctx context.Context, objParamExploded operations.ObjParamExploded, objParam *operations.ObjParam) (*operations.FormQueryParamsCamelObjectResponse, error) { request := operations.FormQueryParamsCamelObjectRequest{ ObjParamExploded: objParamExploded, ObjParam: objParam, @@ -354,7 +354,7 @@ func (s *parameters) FormQueryParamsCamelObject(ctx context.Context, objParamExp return res, nil } -func (s *parameters) FormQueryParamsMap(ctx context.Context, mapParam map[string]string, mapParamExploded map[string]int64) (*operations.FormQueryParamsMapResponse, error) { +func (s *Parameters) FormQueryParamsMap(ctx context.Context, mapParam map[string]string, mapParamExploded map[string]int64) (*operations.FormQueryParamsMapResponse, error) { request := operations.FormQueryParamsMapRequest{ MapParam: mapParam, MapParamExploded: mapParamExploded, @@ -420,7 +420,7 @@ func (s *parameters) FormQueryParamsMap(ctx context.Context, mapParam map[string return res, nil } -func (s *parameters) FormQueryParamsObject(ctx context.Context, objParamExploded shared.SimpleObject, objParam *shared.SimpleObject) (*operations.FormQueryParamsObjectResponse, error) { +func (s *Parameters) FormQueryParamsObject(ctx context.Context, objParamExploded shared.SimpleObject, objParam *shared.SimpleObject) (*operations.FormQueryParamsObjectResponse, error) { request := operations.FormQueryParamsObjectRequest{ ObjParamExploded: objParamExploded, ObjParam: objParam, @@ -486,7 +486,7 @@ func (s *parameters) FormQueryParamsObject(ctx context.Context, objParamExploded return res, nil } -func (s *parameters) FormQueryParamsPrimitive(ctx context.Context, boolParam bool, intParam int64, numParam float64, strParam string) (*operations.FormQueryParamsPrimitiveResponse, error) { +func (s *Parameters) FormQueryParamsPrimitive(ctx context.Context, boolParam bool, intParam int64, numParam float64, strParam string) (*operations.FormQueryParamsPrimitiveResponse, error) { request := operations.FormQueryParamsPrimitiveRequest{ BoolParam: boolParam, IntParam: intParam, @@ -554,7 +554,7 @@ func (s *parameters) FormQueryParamsPrimitive(ctx context.Context, boolParam boo return res, nil } -func (s *parameters) FormQueryParamsRefParamObject(ctx context.Context, refObjParam *shared.RefQueryParamObj, refObjParamExploded *shared.RefQueryParamObjExploded) (*operations.FormQueryParamsRefParamObjectResponse, error) { +func (s *Parameters) FormQueryParamsRefParamObject(ctx context.Context, refObjParam *shared.RefQueryParamObj, refObjParamExploded *shared.RefQueryParamObjExploded) (*operations.FormQueryParamsRefParamObjectResponse, error) { request := operations.FormQueryParamsRefParamObjectRequest{ RefObjParam: refObjParam, RefObjParamExploded: refObjParamExploded, @@ -620,7 +620,7 @@ func (s *parameters) FormQueryParamsRefParamObject(ctx context.Context, refObjPa return res, nil } -func (s *parameters) HeaderParamsArray(ctx context.Context, xHeaderArray []string) (*operations.HeaderParamsArrayResponse, error) { +func (s *Parameters) HeaderParamsArray(ctx context.Context, xHeaderArray []string) (*operations.HeaderParamsArrayResponse, error) { request := operations.HeaderParamsArrayRequest{ XHeaderArray: xHeaderArray, } @@ -683,7 +683,7 @@ func (s *parameters) HeaderParamsArray(ctx context.Context, xHeaderArray []strin return res, nil } -func (s *parameters) HeaderParamsMap(ctx context.Context, xHeaderMap map[string]string, xHeaderMapExplode map[string]string) (*operations.HeaderParamsMapResponse, error) { +func (s *Parameters) HeaderParamsMap(ctx context.Context, xHeaderMap map[string]string, xHeaderMapExplode map[string]string) (*operations.HeaderParamsMapResponse, error) { request := operations.HeaderParamsMapRequest{ XHeaderMap: xHeaderMap, XHeaderMapExplode: xHeaderMapExplode, @@ -747,7 +747,7 @@ func (s *parameters) HeaderParamsMap(ctx context.Context, xHeaderMap map[string] return res, nil } -func (s *parameters) HeaderParamsObject(ctx context.Context, xHeaderObj shared.SimpleObject, xHeaderObjExplode shared.SimpleObject) (*operations.HeaderParamsObjectResponse, error) { +func (s *Parameters) HeaderParamsObject(ctx context.Context, xHeaderObj shared.SimpleObject, xHeaderObjExplode shared.SimpleObject) (*operations.HeaderParamsObjectResponse, error) { request := operations.HeaderParamsObjectRequest{ XHeaderObj: xHeaderObj, XHeaderObjExplode: xHeaderObjExplode, @@ -811,7 +811,7 @@ func (s *parameters) HeaderParamsObject(ctx context.Context, xHeaderObj shared.S return res, nil } -func (s *parameters) HeaderParamsPrimitive(ctx context.Context, xHeaderBoolean bool, xHeaderInteger int64, xHeaderNumber float64, xHeaderString string) (*operations.HeaderParamsPrimitiveResponse, error) { +func (s *Parameters) HeaderParamsPrimitive(ctx context.Context, xHeaderBoolean bool, xHeaderInteger int64, xHeaderNumber float64, xHeaderString string) (*operations.HeaderParamsPrimitiveResponse, error) { request := operations.HeaderParamsPrimitiveRequest{ XHeaderBoolean: xHeaderBoolean, XHeaderInteger: xHeaderInteger, @@ -877,7 +877,7 @@ func (s *parameters) HeaderParamsPrimitive(ctx context.Context, xHeaderBoolean b return res, nil } -func (s *parameters) JSONQueryParamsObject(ctx context.Context, deepObjParam shared.DeepObject, simpleObjParam shared.SimpleObject) (*operations.JSONQueryParamsObjectResponse, error) { +func (s *Parameters) JSONQueryParamsObject(ctx context.Context, deepObjParam shared.DeepObject, simpleObjParam shared.SimpleObject) (*operations.JSONQueryParamsObjectResponse, error) { request := operations.JSONQueryParamsObjectRequest{ DeepObjParam: deepObjParam, SimpleObjParam: simpleObjParam, @@ -943,7 +943,7 @@ func (s *parameters) JSONQueryParamsObject(ctx context.Context, deepObjParam sha return res, nil } -func (s *parameters) MixedParametersCamelCase(ctx context.Context, headerParam string, pathParam string, queryStringParam string) (*operations.MixedParametersCamelCaseResponse, error) { +func (s *Parameters) MixedParametersCamelCase(ctx context.Context, headerParam string, pathParam string, queryStringParam string) (*operations.MixedParametersCamelCaseResponse, error) { request := operations.MixedParametersCamelCaseRequest{ HeaderParam: headerParam, PathParam: pathParam, @@ -1015,7 +1015,7 @@ func (s *parameters) MixedParametersCamelCase(ctx context.Context, headerParam s return res, nil } -func (s *parameters) MixedParametersPrimitives(ctx context.Context, headerParam string, pathParam string, queryStringParam string) (*operations.MixedParametersPrimitivesResponse, error) { +func (s *Parameters) MixedParametersPrimitives(ctx context.Context, headerParam string, pathParam string, queryStringParam string) (*operations.MixedParametersPrimitivesResponse, error) { request := operations.MixedParametersPrimitivesRequest{ HeaderParam: headerParam, PathParam: pathParam, @@ -1087,7 +1087,7 @@ func (s *parameters) MixedParametersPrimitives(ctx context.Context, headerParam return res, nil } -func (s *parameters) MixedQueryParams(ctx context.Context, deepObjectParam shared.SimpleObject, formParam shared.SimpleObject, jsonParam shared.SimpleObject) (*operations.MixedQueryParamsResponse, error) { +func (s *Parameters) MixedQueryParams(ctx context.Context, deepObjectParam shared.SimpleObject, formParam shared.SimpleObject, jsonParam shared.SimpleObject) (*operations.MixedQueryParamsResponse, error) { request := operations.MixedQueryParamsRequest{ DeepObjectParam: deepObjectParam, FormParam: formParam, @@ -1154,7 +1154,7 @@ func (s *parameters) MixedQueryParams(ctx context.Context, deepObjectParam share return res, nil } -func (s *parameters) PathParameterJSON(ctx context.Context, jsonObj shared.SimpleObject) (*operations.PathParameterJSONResponse, error) { +func (s *Parameters) PathParameterJSON(ctx context.Context, jsonObj shared.SimpleObject) (*operations.PathParameterJSONResponse, error) { request := operations.PathParameterJSONRequest{ JSONObj: jsonObj, } @@ -1218,7 +1218,7 @@ func (s *parameters) PathParameterJSON(ctx context.Context, jsonObj shared.Simpl return res, nil } -func (s *parameters) PipeDelimitedQueryParamsArray(ctx context.Context, arrParam []string, arrParamExploded []int64, mapParam map[string]string, objParam *shared.SimpleObject) (*operations.PipeDelimitedQueryParamsArrayResponse, error) { +func (s *Parameters) PipeDelimitedQueryParamsArray(ctx context.Context, arrParam []string, arrParamExploded []int64, mapParam map[string]string, objParam *shared.SimpleObject) (*operations.PipeDelimitedQueryParamsArrayResponse, error) { request := operations.PipeDelimitedQueryParamsArrayRequest{ ArrParam: arrParam, ArrParamExploded: arrParamExploded, @@ -1286,7 +1286,7 @@ func (s *parameters) PipeDelimitedQueryParamsArray(ctx context.Context, arrParam return res, nil } -func (s *parameters) SimplePathParameterArrays(ctx context.Context, arrParam []string) (*operations.SimplePathParameterArraysResponse, error) { +func (s *Parameters) SimplePathParameterArrays(ctx context.Context, arrParam []string) (*operations.SimplePathParameterArraysResponse, error) { request := operations.SimplePathParameterArraysRequest{ ArrParam: arrParam, } @@ -1350,7 +1350,7 @@ func (s *parameters) SimplePathParameterArrays(ctx context.Context, arrParam []s return res, nil } -func (s *parameters) SimplePathParameterMaps(ctx context.Context, mapParam map[string]string, mapParamExploded map[string]int64) (*operations.SimplePathParameterMapsResponse, error) { +func (s *Parameters) SimplePathParameterMaps(ctx context.Context, mapParam map[string]string, mapParamExploded map[string]int64) (*operations.SimplePathParameterMapsResponse, error) { request := operations.SimplePathParameterMapsRequest{ MapParam: mapParam, MapParamExploded: mapParamExploded, @@ -1415,7 +1415,7 @@ func (s *parameters) SimplePathParameterMaps(ctx context.Context, mapParam map[s return res, nil } -func (s *parameters) SimplePathParameterObjects(ctx context.Context, objParam shared.SimpleObject, objParamExploded shared.SimpleObject) (*operations.SimplePathParameterObjectsResponse, error) { +func (s *Parameters) SimplePathParameterObjects(ctx context.Context, objParam shared.SimpleObject, objParamExploded shared.SimpleObject) (*operations.SimplePathParameterObjectsResponse, error) { request := operations.SimplePathParameterObjectsRequest{ ObjParam: objParam, ObjParamExploded: objParamExploded, @@ -1480,7 +1480,7 @@ func (s *parameters) SimplePathParameterObjects(ctx context.Context, objParam sh return res, nil } -func (s *parameters) SimplePathParameterPrimitives(ctx context.Context, boolParam bool, intParam int64, numParam float64, strParam string) (*operations.SimplePathParameterPrimitivesResponse, error) { +func (s *Parameters) SimplePathParameterPrimitives(ctx context.Context, boolParam bool, intParam int64, numParam float64, strParam string) (*operations.SimplePathParameterPrimitivesResponse, error) { request := operations.SimplePathParameterPrimitivesRequest{ BoolParam: boolParam, IntParam: intParam, diff --git a/go-client-sdk/pkg/models/operations/anchortypesget.go b/go-client-sdk/pkg/models/operations/anchortypesget.go index 5853f42a8..7e63107e8 100755 --- a/go-client-sdk/pkg/models/operations/anchortypesget.go +++ b/go-client-sdk/pkg/models/operations/anchortypesget.go @@ -4,16 +4,16 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -// TypeFromAnchor - A successful response that contains the simpleObject sent in the request body -type TypeFromAnchor struct { +// AnchorTypesGetTypeFromAnchor - A successful response that contains the simpleObject sent in the request body +type AnchorTypesGetTypeFromAnchor struct { // A simple object that uses all our supported primitive types and enums and has optional properties. JSON *shared.SimpleObject `json:"json,omitempty"` } -func (o *TypeFromAnchor) GetJSON() *shared.SimpleObject { +func (o *AnchorTypesGetTypeFromAnchor) GetJSON() *shared.SimpleObject { if o == nil { return nil } @@ -28,7 +28,7 @@ type AnchorTypesGetResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // A successful response that contains the simpleObject sent in the request body - TypeFromAnchor *TypeFromAnchor + TypeFromAnchor *AnchorTypesGetTypeFromAnchor } func (o *AnchorTypesGetResponse) GetContentType() string { @@ -52,7 +52,7 @@ func (o *AnchorTypesGetResponse) GetRawResponse() *http.Response { return o.RawResponse } -func (o *AnchorTypesGetResponse) GetTypeFromAnchor() *TypeFromAnchor { +func (o *AnchorTypesGetResponse) GetTypeFromAnchor() *AnchorTypesGetTypeFromAnchor { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/operations/arraycircularreferenceget.go b/go-client-sdk/pkg/models/operations/arraycircularreferenceget.go index e20170e43..d7c3c7107 100755 --- a/go-client-sdk/pkg/models/operations/arraycircularreferenceget.go +++ b/go-client-sdk/pkg/models/operations/arraycircularreferenceget.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type ArrayCircularReferenceGetResponse struct { diff --git a/go-client-sdk/pkg/models/operations/circularreferenceget.go b/go-client-sdk/pkg/models/operations/circularreferenceget.go index d00e5abf6..c5d421088 100755 --- a/go-client-sdk/pkg/models/operations/circularreferenceget.go +++ b/go-client-sdk/pkg/models/operations/circularreferenceget.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type CircularReferenceGetResponse struct { diff --git a/go-client-sdk/pkg/models/operations/componentbodyandparamconflict.go b/go-client-sdk/pkg/models/operations/componentbodyandparamconflict.go index e16702767..6fdaa9209 100755 --- a/go-client-sdk/pkg/models/operations/componentbodyandparamconflict.go +++ b/go-client-sdk/pkg/models/operations/componentbodyandparamconflict.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type ComponentBodyAndParamConflictRequest struct { diff --git a/go-client-sdk/pkg/models/operations/componentbodyandparamnoconflict.go b/go-client-sdk/pkg/models/operations/componentbodyandparamnoconflict.go index e04143ef4..84b81af9a 100755 --- a/go-client-sdk/pkg/models/operations/componentbodyandparamnoconflict.go +++ b/go-client-sdk/pkg/models/operations/componentbodyandparamnoconflict.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type ComponentBodyAndParamNoConflictRequest struct { diff --git a/go-client-sdk/pkg/models/operations/createfile.go b/go-client-sdk/pkg/models/operations/createfile.go index 9e3aed168..c83685d04 100755 --- a/go-client-sdk/pkg/models/operations/createfile.go +++ b/go-client-sdk/pkg/models/operations/createfile.go @@ -4,33 +4,33 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -type CreateFileRequestBodyFile struct { - Content []byte `multipartForm:"content"` - File string `multipartForm:"name=file"` +type CreateFileFile struct { + Content []byte `multipartForm:"content"` + FileName string `multipartForm:"name=file"` } -func (o *CreateFileRequestBodyFile) GetContent() []byte { +func (o *CreateFileFile) GetContent() []byte { if o == nil { return []byte{} } return o.Content } -func (o *CreateFileRequestBodyFile) GetFile() string { +func (o *CreateFileFile) GetFileName() string { if o == nil { return "" } - return o.File + return o.FileName } type CreateFileRequestBody struct { - File *CreateFileRequestBodyFile `multipartForm:"file"` + File *CreateFileFile `multipartForm:"file"` } -func (o *CreateFileRequestBody) GetFile() *CreateFileRequestBodyFile { +func (o *CreateFileRequestBody) GetFile() *CreateFileFile { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/operations/createresource.go b/go-client-sdk/pkg/models/operations/createresource.go index 78424c085..9b27590d6 100755 --- a/go-client-sdk/pkg/models/operations/createresource.go +++ b/go-client-sdk/pkg/models/operations/createresource.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type CreateResourceResponse struct { diff --git a/go-client-sdk/pkg/models/operations/dateparamwithdefault.go b/go-client-sdk/pkg/models/operations/dateparamwithdefault.go index 1e1c8cd7e..a0819441b 100755 --- a/go-client-sdk/pkg/models/operations/dateparamwithdefault.go +++ b/go-client-sdk/pkg/models/operations/dateparamwithdefault.go @@ -4,8 +4,8 @@ package operations import ( "net/http" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" ) type DateParamWithDefaultRequest struct { diff --git a/go-client-sdk/pkg/models/operations/datetimeparamwithdefault.go b/go-client-sdk/pkg/models/operations/datetimeparamwithdefault.go index bc4eb129d..9375ab1f6 100755 --- a/go-client-sdk/pkg/models/operations/datetimeparamwithdefault.go +++ b/go-client-sdk/pkg/models/operations/datetimeparamwithdefault.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" "time" ) diff --git a/go-client-sdk/pkg/models/operations/decimalparamwithdefault.go b/go-client-sdk/pkg/models/operations/decimalparamwithdefault.go index aa0e99710..3bebc3cbe 100755 --- a/go-client-sdk/pkg/models/operations/decimalparamwithdefault.go +++ b/go-client-sdk/pkg/models/operations/decimalparamwithdefault.go @@ -5,7 +5,7 @@ package operations import ( "github.com/ericlagergren/decimal" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type DecimalParamWithDefaultRequest struct { diff --git a/go-client-sdk/pkg/models/operations/deepobjectqueryparamsmap.go b/go-client-sdk/pkg/models/operations/deepobjectqueryparamsmap.go index 74c1aee3a..1445d42f0 100755 --- a/go-client-sdk/pkg/models/operations/deepobjectqueryparamsmap.go +++ b/go-client-sdk/pkg/models/operations/deepobjectqueryparamsmap.go @@ -5,7 +5,7 @@ package operations import ( "errors" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type DeepObjectQueryParamsMapRequest struct { @@ -27,58 +27,58 @@ func (o *DeepObjectQueryParamsMapRequest) GetMapArrParam() map[string][]string { return o.MapArrParam } -type DeepObjectQueryParamsMapResArgsType string +type DeepObjectQueryParamsMapArgsType string const ( - DeepObjectQueryParamsMapResArgsTypeStr DeepObjectQueryParamsMapResArgsType = "str" - DeepObjectQueryParamsMapResArgsTypeArrayOfstr DeepObjectQueryParamsMapResArgsType = "arrayOfstr" + DeepObjectQueryParamsMapArgsTypeStr DeepObjectQueryParamsMapArgsType = "str" + DeepObjectQueryParamsMapArgsTypeArrayOfstr DeepObjectQueryParamsMapArgsType = "arrayOfstr" ) -type DeepObjectQueryParamsMapResArgs struct { +type DeepObjectQueryParamsMapArgs struct { Str *string ArrayOfstr []string - Type DeepObjectQueryParamsMapResArgsType + Type DeepObjectQueryParamsMapArgsType } -func CreateDeepObjectQueryParamsMapResArgsStr(str string) DeepObjectQueryParamsMapResArgs { - typ := DeepObjectQueryParamsMapResArgsTypeStr +func CreateDeepObjectQueryParamsMapArgsStr(str string) DeepObjectQueryParamsMapArgs { + typ := DeepObjectQueryParamsMapArgsTypeStr - return DeepObjectQueryParamsMapResArgs{ + return DeepObjectQueryParamsMapArgs{ Str: &str, Type: typ, } } -func CreateDeepObjectQueryParamsMapResArgsArrayOfstr(arrayOfstr []string) DeepObjectQueryParamsMapResArgs { - typ := DeepObjectQueryParamsMapResArgsTypeArrayOfstr +func CreateDeepObjectQueryParamsMapArgsArrayOfstr(arrayOfstr []string) DeepObjectQueryParamsMapArgs { + typ := DeepObjectQueryParamsMapArgsTypeArrayOfstr - return DeepObjectQueryParamsMapResArgs{ + return DeepObjectQueryParamsMapArgs{ ArrayOfstr: arrayOfstr, Type: typ, } } -func (u *DeepObjectQueryParamsMapResArgs) UnmarshalJSON(data []byte) error { +func (u *DeepObjectQueryParamsMapArgs) UnmarshalJSON(data []byte) error { str := "" if err := utils.UnmarshalJSON(data, &str, "", true, true); err == nil { u.Str = &str - u.Type = DeepObjectQueryParamsMapResArgsTypeStr + u.Type = DeepObjectQueryParamsMapArgsTypeStr return nil } arrayOfstr := []string{} if err := utils.UnmarshalJSON(data, &arrayOfstr, "", true, true); err == nil { u.ArrayOfstr = arrayOfstr - u.Type = DeepObjectQueryParamsMapResArgsTypeArrayOfstr + u.Type = DeepObjectQueryParamsMapArgsTypeArrayOfstr return nil } return errors.New("could not unmarshal into supported union types") } -func (u DeepObjectQueryParamsMapResArgs) MarshalJSON() ([]byte, error) { +func (u DeepObjectQueryParamsMapArgs) MarshalJSON() ([]byte, error) { if u.Str != nil { return utils.MarshalJSON(u.Str, "", true) } @@ -92,13 +92,13 @@ func (u DeepObjectQueryParamsMapResArgs) MarshalJSON() ([]byte, error) { // DeepObjectQueryParamsMapRes - OK type DeepObjectQueryParamsMapRes struct { - Args map[string]DeepObjectQueryParamsMapResArgs `json:"args"` - URL string `json:"url"` + Args map[string]DeepObjectQueryParamsMapArgs `json:"args"` + URL string `json:"url"` } -func (o *DeepObjectQueryParamsMapRes) GetArgs() map[string]DeepObjectQueryParamsMapResArgs { +func (o *DeepObjectQueryParamsMapRes) GetArgs() map[string]DeepObjectQueryParamsMapArgs { if o == nil { - return map[string]DeepObjectQueryParamsMapResArgs{} + return map[string]DeepObjectQueryParamsMapArgs{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/deepobjectqueryparamsobject.go b/go-client-sdk/pkg/models/operations/deepobjectqueryparamsobject.go index ef76e383e..ca8c1d786 100755 --- a/go-client-sdk/pkg/models/operations/deepobjectqueryparamsobject.go +++ b/go-client-sdk/pkg/models/operations/deepobjectqueryparamsobject.go @@ -4,14 +4,14 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -type DeepObjectQueryParamsObjectObjArrParam struct { +type ObjArrParam struct { Arr []string `queryParam:"name=arr"` } -func (o *DeepObjectQueryParamsObjectObjArrParam) GetArr() []string { +func (o *ObjArrParam) GetArr() []string { if o == nil { return nil } @@ -20,8 +20,8 @@ func (o *DeepObjectQueryParamsObjectObjArrParam) GetArr() []string { type DeepObjectQueryParamsObjectRequest struct { // A simple object that uses all our supported primitive types and enums and has optional properties. - ObjParam shared.SimpleObject `queryParam:"style=deepObject,explode=true,name=objParam"` - ObjArrParam *DeepObjectQueryParamsObjectObjArrParam `queryParam:"style=deepObject,explode=true,name=objArrParam"` + ObjParam shared.SimpleObject `queryParam:"style=deepObject,explode=true,name=objParam"` + ObjArrParam *ObjArrParam `queryParam:"style=deepObject,explode=true,name=objArrParam"` } func (o *DeepObjectQueryParamsObjectRequest) GetObjParam() shared.SimpleObject { @@ -31,14 +31,14 @@ func (o *DeepObjectQueryParamsObjectRequest) GetObjParam() shared.SimpleObject { return o.ObjParam } -func (o *DeepObjectQueryParamsObjectRequest) GetObjArrParam() *DeepObjectQueryParamsObjectObjArrParam { +func (o *DeepObjectQueryParamsObjectRequest) GetObjArrParam() *ObjArrParam { if o == nil { return nil } return o.ObjArrParam } -type DeepObjectQueryParamsObjectResArgs struct { +type DeepObjectQueryParamsObjectArgs struct { ObjArrParamArr []string `json:"objArrParam[arr]"` ObjParamAny string `json:"objParam[any]"` ObjParamBigintStr *string `json:"objParam[bigintStr],omitempty"` @@ -60,133 +60,133 @@ type DeepObjectQueryParamsObjectResArgs struct { ObjParamStr string `json:"objParam[str]"` } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjArrParamArr() []string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjArrParamArr() []string { if o == nil { return []string{} } return o.ObjArrParamArr } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamAny() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamAny() string { if o == nil { return "" } return o.ObjParamAny } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamBigintStr() *string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamBigintStr() *string { if o == nil { return nil } return o.ObjParamBigintStr } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamBigint() *string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamBigint() *string { if o == nil { return nil } return o.ObjParamBigint } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamBoolOpt() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamBoolOpt() string { if o == nil { return "" } return o.ObjParamBoolOpt } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamBool() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamBool() string { if o == nil { return "" } return o.ObjParamBool } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamDateTime() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamDateTime() string { if o == nil { return "" } return o.ObjParamDateTime } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamDate() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamDate() string { if o == nil { return "" } return o.ObjParamDate } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamDecimalStr() *string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamDecimalStr() *string { if o == nil { return nil } return o.ObjParamDecimalStr } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamDecimal() *string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamDecimal() *string { if o == nil { return nil } return o.ObjParamDecimal } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamEnum() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamEnum() string { if o == nil { return "" } return o.ObjParamEnum } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamFloat32() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamFloat32() string { if o == nil { return "" } return o.ObjParamFloat32 } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamInt32Enum() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamInt32Enum() string { if o == nil { return "" } return o.ObjParamInt32Enum } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamInt32() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamInt32() string { if o == nil { return "" } return o.ObjParamInt32 } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamIntEnum() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamIntEnum() string { if o == nil { return "" } return o.ObjParamIntEnum } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamInt() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamInt() string { if o == nil { return "" } return o.ObjParamInt } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamNum() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamNum() string { if o == nil { return "" } return o.ObjParamNum } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamStrOpt() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamStrOpt() string { if o == nil { return "" } return o.ObjParamStrOpt } -func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamStr() string { +func (o *DeepObjectQueryParamsObjectArgs) GetObjParamStr() string { if o == nil { return "" } @@ -195,13 +195,13 @@ func (o *DeepObjectQueryParamsObjectResArgs) GetObjParamStr() string { // DeepObjectQueryParamsObjectRes - OK type DeepObjectQueryParamsObjectRes struct { - Args DeepObjectQueryParamsObjectResArgs `json:"args"` - URL string `json:"url"` + Args DeepObjectQueryParamsObjectArgs `json:"args"` + URL string `json:"url"` } -func (o *DeepObjectQueryParamsObjectRes) GetArgs() DeepObjectQueryParamsObjectResArgs { +func (o *DeepObjectQueryParamsObjectRes) GetArgs() DeepObjectQueryParamsObjectArgs { if o == nil { - return DeepObjectQueryParamsObjectResArgs{} + return DeepObjectQueryParamsObjectArgs{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/deprecatedobjectinschemaget.go b/go-client-sdk/pkg/models/operations/deprecatedobjectinschemaget.go index 4a5c11387..00a5f5451 100755 --- a/go-client-sdk/pkg/models/operations/deprecatedobjectinschemaget.go +++ b/go-client-sdk/pkg/models/operations/deprecatedobjectinschemaget.go @@ -4,16 +4,16 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -// DeprecatedObjectInSchemaGet200ApplicationJSON - A successful response that contains a deprecatedObject sent in the request body -type DeprecatedObjectInSchemaGet200ApplicationJSON struct { +// DeprecatedObjectInSchemaGetResponseBody - A successful response that contains a deprecatedObject sent in the request body +type DeprecatedObjectInSchemaGetResponseBody struct { // Deprecated field: This object is deprecated. JSON *shared.DeprecatedObject `json:"json,omitempty"` } -func (o *DeprecatedObjectInSchemaGet200ApplicationJSON) GetJSON() *shared.DeprecatedObject { +func (o *DeprecatedObjectInSchemaGetResponseBody) GetJSON() *shared.DeprecatedObject { if o == nil { return nil } @@ -28,7 +28,7 @@ type DeprecatedObjectInSchemaGetResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // A successful response that contains a deprecatedObject sent in the request body - DeprecatedObjectInSchemaGet200ApplicationJSONObject *DeprecatedObjectInSchemaGet200ApplicationJSON + Object *DeprecatedObjectInSchemaGetResponseBody } func (o *DeprecatedObjectInSchemaGetResponse) GetContentType() string { @@ -52,9 +52,9 @@ func (o *DeprecatedObjectInSchemaGetResponse) GetRawResponse() *http.Response { return o.RawResponse } -func (o *DeprecatedObjectInSchemaGetResponse) GetDeprecatedObjectInSchemaGet200ApplicationJSONObject() *DeprecatedObjectInSchemaGet200ApplicationJSON { +func (o *DeprecatedObjectInSchemaGetResponse) GetObject() *DeprecatedObjectInSchemaGetResponseBody { if o == nil { return nil } - return o.DeprecatedObjectInSchemaGet200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/emptyobjectget.go b/go-client-sdk/pkg/models/operations/emptyobjectget.go index 766a88b8f..f0f1235d1 100755 --- a/go-client-sdk/pkg/models/operations/emptyobjectget.go +++ b/go-client-sdk/pkg/models/operations/emptyobjectget.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type EmptyObjectGetRequest struct { diff --git a/go-client-sdk/pkg/models/operations/emptyresponseobjectwithcommentget.go b/go-client-sdk/pkg/models/operations/emptyresponseobjectwithcommentget.go index bed8b76ad..1a67c0cd8 100755 --- a/go-client-sdk/pkg/models/operations/emptyresponseobjectwithcommentget.go +++ b/go-client-sdk/pkg/models/operations/emptyresponseobjectwithcommentget.go @@ -6,8 +6,8 @@ import ( "net/http" ) -// EmptyResponseObjectWithCommentGet200ApplicationOctetStream - OK -type EmptyResponseObjectWithCommentGet200ApplicationOctetStream struct { +// EmptyResponseObjectWithCommentGetResponseBody - OK +type EmptyResponseObjectWithCommentGetResponseBody struct { } type EmptyResponseObjectWithCommentGetResponse struct { diff --git a/go-client-sdk/pkg/models/operations/flattenedtypedobjectpost.go b/go-client-sdk/pkg/models/operations/flattenedtypedobjectpost.go index ba0265cb9..a67ddfb64 100755 --- a/go-client-sdk/pkg/models/operations/flattenedtypedobjectpost.go +++ b/go-client-sdk/pkg/models/operations/flattenedtypedobjectpost.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // FlattenedTypedObjectPostRes - OK diff --git a/go-client-sdk/pkg/models/operations/formqueryparamsarray.go b/go-client-sdk/pkg/models/operations/formqueryparamsarray.go index fff36a735..b88393938 100755 --- a/go-client-sdk/pkg/models/operations/formqueryparamsarray.go +++ b/go-client-sdk/pkg/models/operations/formqueryparamsarray.go @@ -25,19 +25,19 @@ func (o *FormQueryParamsArrayRequest) GetArrParamExploded() []int64 { return o.ArrParamExploded } -type FormQueryParamsArrayResArgs struct { +type FormQueryParamsArrayArgs struct { ArrParam string `json:"arrParam"` ArrParamExploded []string `json:"arrParamExploded"` } -func (o *FormQueryParamsArrayResArgs) GetArrParam() string { +func (o *FormQueryParamsArrayArgs) GetArrParam() string { if o == nil { return "" } return o.ArrParam } -func (o *FormQueryParamsArrayResArgs) GetArrParamExploded() []string { +func (o *FormQueryParamsArrayArgs) GetArrParamExploded() []string { if o == nil { return []string{} } @@ -46,13 +46,13 @@ func (o *FormQueryParamsArrayResArgs) GetArrParamExploded() []string { // FormQueryParamsArrayRes - OK type FormQueryParamsArrayRes struct { - Args FormQueryParamsArrayResArgs `json:"args"` - URL string `json:"url"` + Args FormQueryParamsArrayArgs `json:"args"` + URL string `json:"url"` } -func (o *FormQueryParamsArrayRes) GetArgs() FormQueryParamsArrayResArgs { +func (o *FormQueryParamsArrayRes) GetArgs() FormQueryParamsArrayArgs { if o == nil { - return FormQueryParamsArrayResArgs{} + return FormQueryParamsArrayArgs{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/formqueryparamscamelobject.go b/go-client-sdk/pkg/models/operations/formqueryparamscamelobject.go index 01b639dc4..2b0c8acd2 100755 --- a/go-client-sdk/pkg/models/operations/formqueryparamscamelobject.go +++ b/go-client-sdk/pkg/models/operations/formqueryparamscamelobject.go @@ -6,38 +6,38 @@ import ( "net/http" ) -type FormQueryParamsCamelObjectObjParam struct { +type ObjParam struct { EncodedCount *string `queryParam:"name=encoded_count"` EncodedTerm *string `queryParam:"name=encoded_term"` } -func (o *FormQueryParamsCamelObjectObjParam) GetEncodedCount() *string { +func (o *ObjParam) GetEncodedCount() *string { if o == nil { return nil } return o.EncodedCount } -func (o *FormQueryParamsCamelObjectObjParam) GetEncodedTerm() *string { +func (o *ObjParam) GetEncodedTerm() *string { if o == nil { return nil } return o.EncodedTerm } -type FormQueryParamsCamelObjectObjParamExploded struct { +type ObjParamExploded struct { ItemCount *string `queryParam:"name=item_count"` SearchTerm *string `queryParam:"name=search_term"` } -func (o *FormQueryParamsCamelObjectObjParamExploded) GetItemCount() *string { +func (o *ObjParamExploded) GetItemCount() *string { if o == nil { return nil } return o.ItemCount } -func (o *FormQueryParamsCamelObjectObjParamExploded) GetSearchTerm() *string { +func (o *ObjParamExploded) GetSearchTerm() *string { if o == nil { return nil } @@ -45,37 +45,37 @@ func (o *FormQueryParamsCamelObjectObjParamExploded) GetSearchTerm() *string { } type FormQueryParamsCamelObjectRequest struct { - ObjParamExploded FormQueryParamsCamelObjectObjParamExploded `queryParam:"style=form,explode=true,name=obj_param_exploded"` - ObjParam *FormQueryParamsCamelObjectObjParam `queryParam:"style=form,explode=false,name=obj_param"` + ObjParamExploded ObjParamExploded `queryParam:"style=form,explode=true,name=obj_param_exploded"` + ObjParam *ObjParam `queryParam:"style=form,explode=false,name=obj_param"` } -func (o *FormQueryParamsCamelObjectRequest) GetObjParamExploded() FormQueryParamsCamelObjectObjParamExploded { +func (o *FormQueryParamsCamelObjectRequest) GetObjParamExploded() ObjParamExploded { if o == nil { - return FormQueryParamsCamelObjectObjParamExploded{} + return ObjParamExploded{} } return o.ObjParamExploded } -func (o *FormQueryParamsCamelObjectRequest) GetObjParam() *FormQueryParamsCamelObjectObjParam { +func (o *FormQueryParamsCamelObjectRequest) GetObjParam() *ObjParam { if o == nil { return nil } return o.ObjParam } -type FormQueryParamsCamelObjectResArgs struct { +type FormQueryParamsCamelObjectArgs struct { ItemCount string `json:"item_count"` SearchTerm string `json:"search_term"` } -func (o *FormQueryParamsCamelObjectResArgs) GetItemCount() string { +func (o *FormQueryParamsCamelObjectArgs) GetItemCount() string { if o == nil { return "" } return o.ItemCount } -func (o *FormQueryParamsCamelObjectResArgs) GetSearchTerm() string { +func (o *FormQueryParamsCamelObjectArgs) GetSearchTerm() string { if o == nil { return "" } @@ -84,13 +84,13 @@ func (o *FormQueryParamsCamelObjectResArgs) GetSearchTerm() string { // FormQueryParamsCamelObjectRes - OK type FormQueryParamsCamelObjectRes struct { - Args FormQueryParamsCamelObjectResArgs `json:"args"` - URL string `json:"url"` + Args FormQueryParamsCamelObjectArgs `json:"args"` + URL string `json:"url"` } -func (o *FormQueryParamsCamelObjectRes) GetArgs() FormQueryParamsCamelObjectResArgs { +func (o *FormQueryParamsCamelObjectRes) GetArgs() FormQueryParamsCamelObjectArgs { if o == nil { - return FormQueryParamsCamelObjectResArgs{} + return FormQueryParamsCamelObjectArgs{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/formqueryparamsobject.go b/go-client-sdk/pkg/models/operations/formqueryparamsobject.go index 5c88686fe..23fadba09 100755 --- a/go-client-sdk/pkg/models/operations/formqueryparamsobject.go +++ b/go-client-sdk/pkg/models/operations/formqueryparamsobject.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type FormQueryParamsObjectRequest struct { @@ -28,7 +28,7 @@ func (o *FormQueryParamsObjectRequest) GetObjParam() *shared.SimpleObject { return o.ObjParam } -type FormQueryParamsObjectResArgs struct { +type FormQueryParamsObjectArgs struct { Any string `json:"any"` Bigint *string `json:"bigint,omitempty"` BigintStr *string `json:"bigintStr,omitempty"` @@ -52,147 +52,147 @@ type FormQueryParamsObjectResArgs struct { StrOpt *string `json:"strOpt,omitempty"` } -func (o *FormQueryParamsObjectResArgs) GetAny() string { +func (o *FormQueryParamsObjectArgs) GetAny() string { if o == nil { return "" } return o.Any } -func (o *FormQueryParamsObjectResArgs) GetBigint() *string { +func (o *FormQueryParamsObjectArgs) GetBigint() *string { if o == nil { return nil } return o.Bigint } -func (o *FormQueryParamsObjectResArgs) GetBigintStr() *string { +func (o *FormQueryParamsObjectArgs) GetBigintStr() *string { if o == nil { return nil } return o.BigintStr } -func (o *FormQueryParamsObjectResArgs) GetBool() string { +func (o *FormQueryParamsObjectArgs) GetBool() string { if o == nil { return "" } return o.Bool } -func (o *FormQueryParamsObjectResArgs) GetBoolOpt() *string { +func (o *FormQueryParamsObjectArgs) GetBoolOpt() *string { if o == nil { return nil } return o.BoolOpt } -func (o *FormQueryParamsObjectResArgs) GetDate() string { +func (o *FormQueryParamsObjectArgs) GetDate() string { if o == nil { return "" } return o.Date } -func (o *FormQueryParamsObjectResArgs) GetDateTime() string { +func (o *FormQueryParamsObjectArgs) GetDateTime() string { if o == nil { return "" } return o.DateTime } -func (o *FormQueryParamsObjectResArgs) GetDecimal() *string { +func (o *FormQueryParamsObjectArgs) GetDecimal() *string { if o == nil { return nil } return o.Decimal } -func (o *FormQueryParamsObjectResArgs) GetDecimalStr() *string { +func (o *FormQueryParamsObjectArgs) GetDecimalStr() *string { if o == nil { return nil } return o.DecimalStr } -func (o *FormQueryParamsObjectResArgs) GetEnum() string { +func (o *FormQueryParamsObjectArgs) GetEnum() string { if o == nil { return "" } return o.Enum } -func (o *FormQueryParamsObjectResArgs) GetFloat32() string { +func (o *FormQueryParamsObjectArgs) GetFloat32() string { if o == nil { return "" } return o.Float32 } -func (o *FormQueryParamsObjectResArgs) GetInt() string { +func (o *FormQueryParamsObjectArgs) GetInt() string { if o == nil { return "" } return o.Int } -func (o *FormQueryParamsObjectResArgs) GetInt32() string { +func (o *FormQueryParamsObjectArgs) GetInt32() string { if o == nil { return "" } return o.Int32 } -func (o *FormQueryParamsObjectResArgs) GetInt32Enum() string { +func (o *FormQueryParamsObjectArgs) GetInt32Enum() string { if o == nil { return "" } return o.Int32Enum } -func (o *FormQueryParamsObjectResArgs) GetIntEnum() string { +func (o *FormQueryParamsObjectArgs) GetIntEnum() string { if o == nil { return "" } return o.IntEnum } -func (o *FormQueryParamsObjectResArgs) GetIntOptNull() *string { +func (o *FormQueryParamsObjectArgs) GetIntOptNull() *string { if o == nil { return nil } return o.IntOptNull } -func (o *FormQueryParamsObjectResArgs) GetNum() string { +func (o *FormQueryParamsObjectArgs) GetNum() string { if o == nil { return "" } return o.Num } -func (o *FormQueryParamsObjectResArgs) GetNumOptNull() *string { +func (o *FormQueryParamsObjectArgs) GetNumOptNull() *string { if o == nil { return nil } return o.NumOptNull } -func (o *FormQueryParamsObjectResArgs) GetObjParam() string { +func (o *FormQueryParamsObjectArgs) GetObjParam() string { if o == nil { return "" } return o.ObjParam } -func (o *FormQueryParamsObjectResArgs) GetStr() string { +func (o *FormQueryParamsObjectArgs) GetStr() string { if o == nil { return "" } return o.Str } -func (o *FormQueryParamsObjectResArgs) GetStrOpt() *string { +func (o *FormQueryParamsObjectArgs) GetStrOpt() *string { if o == nil { return nil } @@ -201,13 +201,13 @@ func (o *FormQueryParamsObjectResArgs) GetStrOpt() *string { // FormQueryParamsObjectRes - OK type FormQueryParamsObjectRes struct { - Args FormQueryParamsObjectResArgs `json:"args"` - URL string `json:"url"` + Args FormQueryParamsObjectArgs `json:"args"` + URL string `json:"url"` } -func (o *FormQueryParamsObjectRes) GetArgs() FormQueryParamsObjectResArgs { +func (o *FormQueryParamsObjectRes) GetArgs() FormQueryParamsObjectArgs { if o == nil { - return FormQueryParamsObjectResArgs{} + return FormQueryParamsObjectArgs{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/formqueryparamsprimitive.go b/go-client-sdk/pkg/models/operations/formqueryparamsprimitive.go index 403861d47..52e7cca64 100755 --- a/go-client-sdk/pkg/models/operations/formqueryparamsprimitive.go +++ b/go-client-sdk/pkg/models/operations/formqueryparamsprimitive.go @@ -41,35 +41,35 @@ func (o *FormQueryParamsPrimitiveRequest) GetStrParam() string { return o.StrParam } -type FormQueryParamsPrimitiveResArgs struct { +type FormQueryParamsPrimitiveArgs struct { BoolParam string `json:"boolParam"` IntParam string `json:"intParam"` NumParam string `json:"numParam"` StrParam string `json:"strParam"` } -func (o *FormQueryParamsPrimitiveResArgs) GetBoolParam() string { +func (o *FormQueryParamsPrimitiveArgs) GetBoolParam() string { if o == nil { return "" } return o.BoolParam } -func (o *FormQueryParamsPrimitiveResArgs) GetIntParam() string { +func (o *FormQueryParamsPrimitiveArgs) GetIntParam() string { if o == nil { return "" } return o.IntParam } -func (o *FormQueryParamsPrimitiveResArgs) GetNumParam() string { +func (o *FormQueryParamsPrimitiveArgs) GetNumParam() string { if o == nil { return "" } return o.NumParam } -func (o *FormQueryParamsPrimitiveResArgs) GetStrParam() string { +func (o *FormQueryParamsPrimitiveArgs) GetStrParam() string { if o == nil { return "" } @@ -78,13 +78,13 @@ func (o *FormQueryParamsPrimitiveResArgs) GetStrParam() string { // FormQueryParamsPrimitiveRes - OK type FormQueryParamsPrimitiveRes struct { - Args FormQueryParamsPrimitiveResArgs `json:"args"` - URL string `json:"url"` + Args FormQueryParamsPrimitiveArgs `json:"args"` + URL string `json:"url"` } -func (o *FormQueryParamsPrimitiveRes) GetArgs() FormQueryParamsPrimitiveResArgs { +func (o *FormQueryParamsPrimitiveRes) GetArgs() FormQueryParamsPrimitiveArgs { if o == nil { - return FormQueryParamsPrimitiveResArgs{} + return FormQueryParamsPrimitiveArgs{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/formqueryparamsrefparamobject.go b/go-client-sdk/pkg/models/operations/formqueryparamsrefparamobject.go index ab3a0296f..8dba57d2d 100755 --- a/go-client-sdk/pkg/models/operations/formqueryparamsrefparamobject.go +++ b/go-client-sdk/pkg/models/operations/formqueryparamsrefparamobject.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type FormQueryParamsRefParamObjectRequest struct { @@ -26,7 +26,7 @@ func (o *FormQueryParamsRefParamObjectRequest) GetRefObjParamExploded() *shared. return o.RefObjParamExploded } -type FormQueryParamsRefParamObjectResArgs struct { +type FormQueryParamsRefParamObjectArgs struct { Bool string `json:"bool"` Int string `json:"int"` Num string `json:"num"` @@ -34,35 +34,35 @@ type FormQueryParamsRefParamObjectResArgs struct { Str string `json:"str"` } -func (o *FormQueryParamsRefParamObjectResArgs) GetBool() string { +func (o *FormQueryParamsRefParamObjectArgs) GetBool() string { if o == nil { return "" } return o.Bool } -func (o *FormQueryParamsRefParamObjectResArgs) GetInt() string { +func (o *FormQueryParamsRefParamObjectArgs) GetInt() string { if o == nil { return "" } return o.Int } -func (o *FormQueryParamsRefParamObjectResArgs) GetNum() string { +func (o *FormQueryParamsRefParamObjectArgs) GetNum() string { if o == nil { return "" } return o.Num } -func (o *FormQueryParamsRefParamObjectResArgs) GetRefObjParam() string { +func (o *FormQueryParamsRefParamObjectArgs) GetRefObjParam() string { if o == nil { return "" } return o.RefObjParam } -func (o *FormQueryParamsRefParamObjectResArgs) GetStr() string { +func (o *FormQueryParamsRefParamObjectArgs) GetStr() string { if o == nil { return "" } @@ -71,13 +71,13 @@ func (o *FormQueryParamsRefParamObjectResArgs) GetStr() string { // FormQueryParamsRefParamObjectRes - OK type FormQueryParamsRefParamObjectRes struct { - Args FormQueryParamsRefParamObjectResArgs `json:"args"` - URL string `json:"url"` + Args FormQueryParamsRefParamObjectArgs `json:"args"` + URL string `json:"url"` } -func (o *FormQueryParamsRefParamObjectRes) GetArgs() FormQueryParamsRefParamObjectResArgs { +func (o *FormQueryParamsRefParamObjectRes) GetArgs() FormQueryParamsRefParamObjectArgs { if o == nil { - return FormQueryParamsRefParamObjectResArgs{} + return FormQueryParamsRefParamObjectArgs{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/getglobalnameoverride.go b/go-client-sdk/pkg/models/operations/getglobalnameoverride.go index 7b58af0e5..19d54da71 100755 --- a/go-client-sdk/pkg/models/operations/getglobalnameoverride.go +++ b/go-client-sdk/pkg/models/operations/getglobalnameoverride.go @@ -4,16 +4,16 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -// GetGlobalNameOverride200ApplicationJSON - A successful response that contains the simpleObject sent in the request body -type GetGlobalNameOverride200ApplicationJSON struct { +// GetGlobalNameOverrideResponseBody - A successful response that contains the simpleObject sent in the request body +type GetGlobalNameOverrideResponseBody struct { // A simple object that uses all our supported primitive types and enums and has optional properties. JSON *shared.SimpleObject `json:"json,omitempty"` } -func (o *GetGlobalNameOverride200ApplicationJSON) GetJSON() *shared.SimpleObject { +func (o *GetGlobalNameOverrideResponseBody) GetJSON() *shared.SimpleObject { if o == nil { return nil } @@ -28,7 +28,7 @@ type GetGlobalNameOverrideResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // A successful response that contains the simpleObject sent in the request body - GetGlobalNameOverride200ApplicationJSONObject *GetGlobalNameOverride200ApplicationJSON + Object *GetGlobalNameOverrideResponseBody } func (o *GetGlobalNameOverrideResponse) GetContentType() string { @@ -52,9 +52,9 @@ func (o *GetGlobalNameOverrideResponse) GetRawResponse() *http.Response { return o.RawResponse } -func (o *GetGlobalNameOverrideResponse) GetGetGlobalNameOverride200ApplicationJSONObject() *GetGlobalNameOverride200ApplicationJSON { +func (o *GetGlobalNameOverrideResponse) GetObject() *GetGlobalNameOverrideResponseBody { if o == nil { return nil } - return o.GetGlobalNameOverride200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/getresource.go b/go-client-sdk/pkg/models/operations/getresource.go index 1e033af01..4e68d5299 100755 --- a/go-client-sdk/pkg/models/operations/getresource.go +++ b/go-client-sdk/pkg/models/operations/getresource.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type GetResourceRequest struct { diff --git a/go-client-sdk/pkg/models/operations/globalsqueryparameterget.go b/go-client-sdk/pkg/models/operations/globalsqueryparameterget.go index 54080cc9e..6a784cde6 100755 --- a/go-client-sdk/pkg/models/operations/globalsqueryparameterget.go +++ b/go-client-sdk/pkg/models/operations/globalsqueryparameterget.go @@ -17,11 +17,11 @@ func (o *GlobalsQueryParameterGetRequest) GetGlobalQueryParam() *string { return o.GlobalQueryParam } -type GlobalsQueryParameterGetResArgs struct { +type Args struct { GlobalQueryParam string `json:"globalQueryParam"` } -func (o *GlobalsQueryParameterGetResArgs) GetGlobalQueryParam() string { +func (o *Args) GetGlobalQueryParam() string { if o == nil { return "" } @@ -30,12 +30,12 @@ func (o *GlobalsQueryParameterGetResArgs) GetGlobalQueryParam() string { // GlobalsQueryParameterGetRes - OK type GlobalsQueryParameterGetRes struct { - Args GlobalsQueryParameterGetResArgs `json:"args"` + Args Args `json:"args"` } -func (o *GlobalsQueryParameterGetRes) GetArgs() GlobalsQueryParameterGetResArgs { +func (o *GlobalsQueryParameterGetRes) GetArgs() Args { if o == nil { - return GlobalsQueryParameterGetResArgs{} + return Args{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/headerparamsarray.go b/go-client-sdk/pkg/models/operations/headerparamsarray.go index ede1e05ca..b65ed02c0 100755 --- a/go-client-sdk/pkg/models/operations/headerparamsarray.go +++ b/go-client-sdk/pkg/models/operations/headerparamsarray.go @@ -17,11 +17,11 @@ func (o *HeaderParamsArrayRequest) GetXHeaderArray() []string { return o.XHeaderArray } -type HeaderParamsArrayResHeaders struct { +type Headers struct { XHeaderArray string `json:"X-Header-Array"` } -func (o *HeaderParamsArrayResHeaders) GetXHeaderArray() string { +func (o *Headers) GetXHeaderArray() string { if o == nil { return "" } @@ -30,12 +30,12 @@ func (o *HeaderParamsArrayResHeaders) GetXHeaderArray() string { // HeaderParamsArrayRes - OK type HeaderParamsArrayRes struct { - Headers HeaderParamsArrayResHeaders `json:"headers"` + Headers Headers `json:"headers"` } -func (o *HeaderParamsArrayRes) GetHeaders() HeaderParamsArrayResHeaders { +func (o *HeaderParamsArrayRes) GetHeaders() Headers { if o == nil { - return HeaderParamsArrayResHeaders{} + return Headers{} } return o.Headers } diff --git a/go-client-sdk/pkg/models/operations/headerparamsmap.go b/go-client-sdk/pkg/models/operations/headerparamsmap.go index 124debd19..d6325677f 100755 --- a/go-client-sdk/pkg/models/operations/headerparamsmap.go +++ b/go-client-sdk/pkg/models/operations/headerparamsmap.go @@ -25,19 +25,19 @@ func (o *HeaderParamsMapRequest) GetXHeaderMapExplode() map[string]string { return o.XHeaderMapExplode } -type HeaderParamsMapResHeaders struct { +type HeaderParamsMapHeaders struct { XHeaderMap string `json:"X-Header-Map"` XHeaderMapExplode string `json:"X-Header-Map-Explode"` } -func (o *HeaderParamsMapResHeaders) GetXHeaderMap() string { +func (o *HeaderParamsMapHeaders) GetXHeaderMap() string { if o == nil { return "" } return o.XHeaderMap } -func (o *HeaderParamsMapResHeaders) GetXHeaderMapExplode() string { +func (o *HeaderParamsMapHeaders) GetXHeaderMapExplode() string { if o == nil { return "" } @@ -46,12 +46,12 @@ func (o *HeaderParamsMapResHeaders) GetXHeaderMapExplode() string { // HeaderParamsMapRes - OK type HeaderParamsMapRes struct { - Headers HeaderParamsMapResHeaders `json:"headers"` + Headers HeaderParamsMapHeaders `json:"headers"` } -func (o *HeaderParamsMapRes) GetHeaders() HeaderParamsMapResHeaders { +func (o *HeaderParamsMapRes) GetHeaders() HeaderParamsMapHeaders { if o == nil { - return HeaderParamsMapResHeaders{} + return HeaderParamsMapHeaders{} } return o.Headers } diff --git a/go-client-sdk/pkg/models/operations/headerparamsobject.go b/go-client-sdk/pkg/models/operations/headerparamsobject.go index 6f84f895c..b415ca962 100755 --- a/go-client-sdk/pkg/models/operations/headerparamsobject.go +++ b/go-client-sdk/pkg/models/operations/headerparamsobject.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type HeaderParamsObjectRequest struct { @@ -28,19 +28,19 @@ func (o *HeaderParamsObjectRequest) GetXHeaderObjExplode() shared.SimpleObject { return o.XHeaderObjExplode } -type HeaderParamsObjectResHeaders struct { +type HeaderParamsObjectHeaders struct { XHeaderObj string `json:"X-Header-Obj"` XHeaderObjExplode string `json:"X-Header-Obj-Explode"` } -func (o *HeaderParamsObjectResHeaders) GetXHeaderObj() string { +func (o *HeaderParamsObjectHeaders) GetXHeaderObj() string { if o == nil { return "" } return o.XHeaderObj } -func (o *HeaderParamsObjectResHeaders) GetXHeaderObjExplode() string { +func (o *HeaderParamsObjectHeaders) GetXHeaderObjExplode() string { if o == nil { return "" } @@ -49,12 +49,12 @@ func (o *HeaderParamsObjectResHeaders) GetXHeaderObjExplode() string { // HeaderParamsObjectRes - OK type HeaderParamsObjectRes struct { - Headers HeaderParamsObjectResHeaders `json:"headers"` + Headers HeaderParamsObjectHeaders `json:"headers"` } -func (o *HeaderParamsObjectRes) GetHeaders() HeaderParamsObjectResHeaders { +func (o *HeaderParamsObjectRes) GetHeaders() HeaderParamsObjectHeaders { if o == nil { - return HeaderParamsObjectResHeaders{} + return HeaderParamsObjectHeaders{} } return o.Headers } diff --git a/go-client-sdk/pkg/models/operations/headerparamsprimitive.go b/go-client-sdk/pkg/models/operations/headerparamsprimitive.go index a5751e9b8..22cebd076 100755 --- a/go-client-sdk/pkg/models/operations/headerparamsprimitive.go +++ b/go-client-sdk/pkg/models/operations/headerparamsprimitive.go @@ -41,35 +41,35 @@ func (o *HeaderParamsPrimitiveRequest) GetXHeaderString() string { return o.XHeaderString } -type HeaderParamsPrimitiveResHeaders struct { +type HeaderParamsPrimitiveHeaders struct { XHeaderBoolean string `json:"X-Header-Boolean"` XHeaderInteger string `json:"X-Header-Integer"` XHeaderNumber string `json:"X-Header-Number"` XHeaderString string `json:"X-Header-String"` } -func (o *HeaderParamsPrimitiveResHeaders) GetXHeaderBoolean() string { +func (o *HeaderParamsPrimitiveHeaders) GetXHeaderBoolean() string { if o == nil { return "" } return o.XHeaderBoolean } -func (o *HeaderParamsPrimitiveResHeaders) GetXHeaderInteger() string { +func (o *HeaderParamsPrimitiveHeaders) GetXHeaderInteger() string { if o == nil { return "" } return o.XHeaderInteger } -func (o *HeaderParamsPrimitiveResHeaders) GetXHeaderNumber() string { +func (o *HeaderParamsPrimitiveHeaders) GetXHeaderNumber() string { if o == nil { return "" } return o.XHeaderNumber } -func (o *HeaderParamsPrimitiveResHeaders) GetXHeaderString() string { +func (o *HeaderParamsPrimitiveHeaders) GetXHeaderString() string { if o == nil { return "" } @@ -78,12 +78,12 @@ func (o *HeaderParamsPrimitiveResHeaders) GetXHeaderString() string { // HeaderParamsPrimitiveRes - OK type HeaderParamsPrimitiveRes struct { - Headers HeaderParamsPrimitiveResHeaders `json:"headers"` + Headers HeaderParamsPrimitiveHeaders `json:"headers"` } -func (o *HeaderParamsPrimitiveRes) GetHeaders() HeaderParamsPrimitiveResHeaders { +func (o *HeaderParamsPrimitiveRes) GetHeaders() HeaderParamsPrimitiveHeaders { if o == nil { - return HeaderParamsPrimitiveResHeaders{} + return HeaderParamsPrimitiveHeaders{} } return o.Headers } diff --git a/go-client-sdk/pkg/models/operations/ignoredgenerationget.go b/go-client-sdk/pkg/models/operations/ignoredgenerationget.go index e2de38ff3..77560a8cf 100755 --- a/go-client-sdk/pkg/models/operations/ignoredgenerationget.go +++ b/go-client-sdk/pkg/models/operations/ignoredgenerationget.go @@ -4,16 +4,16 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -// IgnoredGenerationGet200ApplicationJSON - A successful response that contains the simpleObject sent in the request body -type IgnoredGenerationGet200ApplicationJSON struct { +// IgnoredGenerationGetResponseBody - A successful response that contains the simpleObject sent in the request body +type IgnoredGenerationGetResponseBody struct { // A simple object that uses all our supported primitive types and enums and has optional properties. JSON *shared.SimpleObject `json:"json,omitempty"` } -func (o *IgnoredGenerationGet200ApplicationJSON) GetJSON() *shared.SimpleObject { +func (o *IgnoredGenerationGetResponseBody) GetJSON() *shared.SimpleObject { if o == nil { return nil } @@ -28,7 +28,7 @@ type IgnoredGenerationGetResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // A successful response that contains the simpleObject sent in the request body - IgnoredGenerationGet200ApplicationJSONObject *IgnoredGenerationGet200ApplicationJSON + Object *IgnoredGenerationGetResponseBody } func (o *IgnoredGenerationGetResponse) GetContentType() string { @@ -52,9 +52,9 @@ func (o *IgnoredGenerationGetResponse) GetRawResponse() *http.Response { return o.RawResponse } -func (o *IgnoredGenerationGetResponse) GetIgnoredGenerationGet200ApplicationJSONObject() *IgnoredGenerationGet200ApplicationJSON { +func (o *IgnoredGenerationGetResponse) GetObject() *IgnoredGenerationGetResponseBody { if o == nil { return nil } - return o.IgnoredGenerationGet200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/ignorespost.go b/go-client-sdk/pkg/models/operations/ignorespost.go index f0dbaf543..b7ecb9b02 100755 --- a/go-client-sdk/pkg/models/operations/ignorespost.go +++ b/go-client-sdk/pkg/models/operations/ignorespost.go @@ -4,22 +4,22 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -type IgnoresPostApplicationJSON struct { +type IgnoresPostRequestBody struct { CallbackURL *string `json:"callbackUrl,omitempty"` TestProp *string `json:"testProp,omitempty"` } -func (o *IgnoresPostApplicationJSON) GetCallbackURL() *string { +func (o *IgnoresPostRequestBody) GetCallbackURL() *string { if o == nil { return nil } return o.CallbackURL } -func (o *IgnoresPostApplicationJSON) GetTestProp() *string { +func (o *IgnoresPostRequestBody) GetTestProp() *string { if o == nil { return nil } @@ -27,13 +27,13 @@ func (o *IgnoresPostApplicationJSON) GetTestProp() *string { } type IgnoresPostRequest struct { - RequestBody IgnoresPostApplicationJSON `request:"mediaType=application/json"` - TestParam *string `queryParam:"style=form,explode=true,name=testParam"` + RequestBody IgnoresPostRequestBody `request:"mediaType=application/json"` + TestParam *string `queryParam:"style=form,explode=true,name=testParam"` } -func (o *IgnoresPostRequest) GetRequestBody() IgnoresPostApplicationJSON { +func (o *IgnoresPostRequest) GetRequestBody() IgnoresPostRequestBody { if o == nil { - return IgnoresPostApplicationJSON{} + return IgnoresPostRequestBody{} } return o.RequestBody } diff --git a/go-client-sdk/pkg/models/operations/inlinebodyandparamconflict.go b/go-client-sdk/pkg/models/operations/inlinebodyandparamconflict.go index 7afb611f2..ea098083b 100755 --- a/go-client-sdk/pkg/models/operations/inlinebodyandparamconflict.go +++ b/go-client-sdk/pkg/models/operations/inlinebodyandparamconflict.go @@ -36,11 +36,11 @@ func (o *InlineBodyAndParamConflictRequest) GetStr() string { return o.Str } -type InlineBodyAndParamConflictResJSON struct { +type JSON struct { Str string `json:"str"` } -func (o *InlineBodyAndParamConflictResJSON) GetStr() string { +func (o *JSON) GetStr() string { if o == nil { return "" } @@ -49,8 +49,8 @@ func (o *InlineBodyAndParamConflictResJSON) GetStr() string { // InlineBodyAndParamConflictRes - OK type InlineBodyAndParamConflictRes struct { - Args map[string]string `json:"args"` - JSON InlineBodyAndParamConflictResJSON `json:"json"` + Args map[string]string `json:"args"` + JSON JSON `json:"json"` } func (o *InlineBodyAndParamConflictRes) GetArgs() map[string]string { @@ -60,9 +60,9 @@ func (o *InlineBodyAndParamConflictRes) GetArgs() map[string]string { return o.Args } -func (o *InlineBodyAndParamConflictRes) GetJSON() InlineBodyAndParamConflictResJSON { +func (o *InlineBodyAndParamConflictRes) GetJSON() JSON { if o == nil { - return InlineBodyAndParamConflictResJSON{} + return JSON{} } return o.JSON } diff --git a/go-client-sdk/pkg/models/operations/inlinebodyandparamnoconflict.go b/go-client-sdk/pkg/models/operations/inlinebodyandparamnoconflict.go index df589eca4..49aa599cd 100755 --- a/go-client-sdk/pkg/models/operations/inlinebodyandparamnoconflict.go +++ b/go-client-sdk/pkg/models/operations/inlinebodyandparamnoconflict.go @@ -36,11 +36,11 @@ func (o *InlineBodyAndParamNoConflictRequest) GetParamStr() string { return o.ParamStr } -type InlineBodyAndParamNoConflictResJSON struct { +type InlineBodyAndParamNoConflictJSON struct { BodyStr string `json:"bodyStr"` } -func (o *InlineBodyAndParamNoConflictResJSON) GetBodyStr() string { +func (o *InlineBodyAndParamNoConflictJSON) GetBodyStr() string { if o == nil { return "" } @@ -49,8 +49,8 @@ func (o *InlineBodyAndParamNoConflictResJSON) GetBodyStr() string { // InlineBodyAndParamNoConflictRes - OK type InlineBodyAndParamNoConflictRes struct { - Args map[string]string `json:"args"` - JSON InlineBodyAndParamNoConflictResJSON `json:"json"` + Args map[string]string `json:"args"` + JSON InlineBodyAndParamNoConflictJSON `json:"json"` } func (o *InlineBodyAndParamNoConflictRes) GetArgs() map[string]string { @@ -60,9 +60,9 @@ func (o *InlineBodyAndParamNoConflictRes) GetArgs() map[string]string { return o.Args } -func (o *InlineBodyAndParamNoConflictRes) GetJSON() InlineBodyAndParamNoConflictResJSON { +func (o *InlineBodyAndParamNoConflictRes) GetJSON() InlineBodyAndParamNoConflictJSON { if o == nil { - return InlineBodyAndParamNoConflictResJSON{} + return InlineBodyAndParamNoConflictJSON{} } return o.JSON } diff --git a/go-client-sdk/pkg/models/operations/jsonqueryparamsobject.go b/go-client-sdk/pkg/models/operations/jsonqueryparamsobject.go index 4723dec8b..fb63d194c 100755 --- a/go-client-sdk/pkg/models/operations/jsonqueryparamsobject.go +++ b/go-client-sdk/pkg/models/operations/jsonqueryparamsobject.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type JSONQueryParamsObjectRequest struct { @@ -27,19 +27,19 @@ func (o *JSONQueryParamsObjectRequest) GetSimpleObjParam() shared.SimpleObject { return o.SimpleObjParam } -type JSONQueryParamsObjectResArgs struct { +type JSONQueryParamsObjectArgs struct { DeepObjParam string `json:"deepObjParam"` SimpleObjParam string `json:"simpleObjParam"` } -func (o *JSONQueryParamsObjectResArgs) GetDeepObjParam() string { +func (o *JSONQueryParamsObjectArgs) GetDeepObjParam() string { if o == nil { return "" } return o.DeepObjParam } -func (o *JSONQueryParamsObjectResArgs) GetSimpleObjParam() string { +func (o *JSONQueryParamsObjectArgs) GetSimpleObjParam() string { if o == nil { return "" } @@ -48,13 +48,13 @@ func (o *JSONQueryParamsObjectResArgs) GetSimpleObjParam() string { // JSONQueryParamsObjectRes - OK type JSONQueryParamsObjectRes struct { - Args JSONQueryParamsObjectResArgs `json:"args"` - URL string `json:"url"` + Args JSONQueryParamsObjectArgs `json:"args"` + URL string `json:"url"` } -func (o *JSONQueryParamsObjectRes) GetArgs() JSONQueryParamsObjectResArgs { +func (o *JSONQueryParamsObjectRes) GetArgs() JSONQueryParamsObjectArgs { if o == nil { - return JSONQueryParamsObjectResArgs{} + return JSONQueryParamsObjectArgs{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/mixedparameterscamelcase.go b/go-client-sdk/pkg/models/operations/mixedparameterscamelcase.go index dc3f2563a..d44f8d6d2 100755 --- a/go-client-sdk/pkg/models/operations/mixedparameterscamelcase.go +++ b/go-client-sdk/pkg/models/operations/mixedparameterscamelcase.go @@ -33,22 +33,22 @@ func (o *MixedParametersCamelCaseRequest) GetQueryStringParam() string { return o.QueryStringParam } -type MixedParametersCamelCaseResArgs struct { +type MixedParametersCamelCaseArgs struct { QueryStringParam string `json:"query_string_param"` } -func (o *MixedParametersCamelCaseResArgs) GetQueryStringParam() string { +func (o *MixedParametersCamelCaseArgs) GetQueryStringParam() string { if o == nil { return "" } return o.QueryStringParam } -type MixedParametersCamelCaseResHeaders struct { +type MixedParametersCamelCaseHeaders struct { HeaderParam string `json:"Header-Param"` } -func (o *MixedParametersCamelCaseResHeaders) GetHeaderParam() string { +func (o *MixedParametersCamelCaseHeaders) GetHeaderParam() string { if o == nil { return "" } @@ -57,21 +57,21 @@ func (o *MixedParametersCamelCaseResHeaders) GetHeaderParam() string { // MixedParametersCamelCaseRes - OK type MixedParametersCamelCaseRes struct { - Args MixedParametersCamelCaseResArgs `json:"args"` - Headers MixedParametersCamelCaseResHeaders `json:"headers"` - URL string `json:"url"` + Args MixedParametersCamelCaseArgs `json:"args"` + Headers MixedParametersCamelCaseHeaders `json:"headers"` + URL string `json:"url"` } -func (o *MixedParametersCamelCaseRes) GetArgs() MixedParametersCamelCaseResArgs { +func (o *MixedParametersCamelCaseRes) GetArgs() MixedParametersCamelCaseArgs { if o == nil { - return MixedParametersCamelCaseResArgs{} + return MixedParametersCamelCaseArgs{} } return o.Args } -func (o *MixedParametersCamelCaseRes) GetHeaders() MixedParametersCamelCaseResHeaders { +func (o *MixedParametersCamelCaseRes) GetHeaders() MixedParametersCamelCaseHeaders { if o == nil { - return MixedParametersCamelCaseResHeaders{} + return MixedParametersCamelCaseHeaders{} } return o.Headers } diff --git a/go-client-sdk/pkg/models/operations/mixedparametersprimitives.go b/go-client-sdk/pkg/models/operations/mixedparametersprimitives.go index f00028f18..b3395f99e 100755 --- a/go-client-sdk/pkg/models/operations/mixedparametersprimitives.go +++ b/go-client-sdk/pkg/models/operations/mixedparametersprimitives.go @@ -33,22 +33,22 @@ func (o *MixedParametersPrimitivesRequest) GetQueryStringParam() string { return o.QueryStringParam } -type MixedParametersPrimitivesResArgs struct { +type MixedParametersPrimitivesArgs struct { QueryStringParam string `json:"queryStringParam"` } -func (o *MixedParametersPrimitivesResArgs) GetQueryStringParam() string { +func (o *MixedParametersPrimitivesArgs) GetQueryStringParam() string { if o == nil { return "" } return o.QueryStringParam } -type MixedParametersPrimitivesResHeaders struct { +type MixedParametersPrimitivesHeaders struct { Headerparam string `json:"Headerparam"` } -func (o *MixedParametersPrimitivesResHeaders) GetHeaderparam() string { +func (o *MixedParametersPrimitivesHeaders) GetHeaderparam() string { if o == nil { return "" } @@ -57,21 +57,21 @@ func (o *MixedParametersPrimitivesResHeaders) GetHeaderparam() string { // MixedParametersPrimitivesRes - OK type MixedParametersPrimitivesRes struct { - Args MixedParametersPrimitivesResArgs `json:"args"` - Headers MixedParametersPrimitivesResHeaders `json:"headers"` - URL string `json:"url"` + Args MixedParametersPrimitivesArgs `json:"args"` + Headers MixedParametersPrimitivesHeaders `json:"headers"` + URL string `json:"url"` } -func (o *MixedParametersPrimitivesRes) GetArgs() MixedParametersPrimitivesResArgs { +func (o *MixedParametersPrimitivesRes) GetArgs() MixedParametersPrimitivesArgs { if o == nil { - return MixedParametersPrimitivesResArgs{} + return MixedParametersPrimitivesArgs{} } return o.Args } -func (o *MixedParametersPrimitivesRes) GetHeaders() MixedParametersPrimitivesResHeaders { +func (o *MixedParametersPrimitivesRes) GetHeaders() MixedParametersPrimitivesHeaders { if o == nil { - return MixedParametersPrimitivesResHeaders{} + return MixedParametersPrimitivesHeaders{} } return o.Headers } diff --git a/go-client-sdk/pkg/models/operations/mixedqueryparams.go b/go-client-sdk/pkg/models/operations/mixedqueryparams.go index d801fc6ed..41fd52171 100755 --- a/go-client-sdk/pkg/models/operations/mixedqueryparams.go +++ b/go-client-sdk/pkg/models/operations/mixedqueryparams.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type MixedQueryParamsRequest struct { diff --git a/go-client-sdk/pkg/models/operations/mixedtypeoneofpost.go b/go-client-sdk/pkg/models/operations/mixedtypeoneofpost.go index cf756a6a2..db4f01d30 100755 --- a/go-client-sdk/pkg/models/operations/mixedtypeoneofpost.go +++ b/go-client-sdk/pkg/models/operations/mixedtypeoneofpost.go @@ -5,8 +5,8 @@ package operations import ( "errors" "net/http" - "openapi/pkg/models/shared" - "openapi/pkg/utils" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/utils" ) type MixedTypeOneOfPostRequestBodyType string @@ -94,76 +94,76 @@ func (u MixedTypeOneOfPostRequestBody) MarshalJSON() ([]byte, error) { return nil, errors.New("could not marshal union type: all fields are null") } -type MixedTypeOneOfPostResJSONType string +type MixedTypeOneOfPostJSONType string const ( - MixedTypeOneOfPostResJSONTypeStr MixedTypeOneOfPostResJSONType = "str" - MixedTypeOneOfPostResJSONTypeInteger MixedTypeOneOfPostResJSONType = "integer" - MixedTypeOneOfPostResJSONTypeSimpleObject MixedTypeOneOfPostResJSONType = "simpleObject" + MixedTypeOneOfPostJSONTypeStr MixedTypeOneOfPostJSONType = "str" + MixedTypeOneOfPostJSONTypeInteger MixedTypeOneOfPostJSONType = "integer" + MixedTypeOneOfPostJSONTypeSimpleObject MixedTypeOneOfPostJSONType = "simpleObject" ) -type MixedTypeOneOfPostResJSON struct { +type MixedTypeOneOfPostJSON struct { Str *string Integer *int64 SimpleObject *shared.SimpleObject - Type MixedTypeOneOfPostResJSONType + Type MixedTypeOneOfPostJSONType } -func CreateMixedTypeOneOfPostResJSONStr(str string) MixedTypeOneOfPostResJSON { - typ := MixedTypeOneOfPostResJSONTypeStr +func CreateMixedTypeOneOfPostJSONStr(str string) MixedTypeOneOfPostJSON { + typ := MixedTypeOneOfPostJSONTypeStr - return MixedTypeOneOfPostResJSON{ + return MixedTypeOneOfPostJSON{ Str: &str, Type: typ, } } -func CreateMixedTypeOneOfPostResJSONInteger(integer int64) MixedTypeOneOfPostResJSON { - typ := MixedTypeOneOfPostResJSONTypeInteger +func CreateMixedTypeOneOfPostJSONInteger(integer int64) MixedTypeOneOfPostJSON { + typ := MixedTypeOneOfPostJSONTypeInteger - return MixedTypeOneOfPostResJSON{ + return MixedTypeOneOfPostJSON{ Integer: &integer, Type: typ, } } -func CreateMixedTypeOneOfPostResJSONSimpleObject(simpleObject shared.SimpleObject) MixedTypeOneOfPostResJSON { - typ := MixedTypeOneOfPostResJSONTypeSimpleObject +func CreateMixedTypeOneOfPostJSONSimpleObject(simpleObject shared.SimpleObject) MixedTypeOneOfPostJSON { + typ := MixedTypeOneOfPostJSONTypeSimpleObject - return MixedTypeOneOfPostResJSON{ + return MixedTypeOneOfPostJSON{ SimpleObject: &simpleObject, Type: typ, } } -func (u *MixedTypeOneOfPostResJSON) UnmarshalJSON(data []byte) error { +func (u *MixedTypeOneOfPostJSON) UnmarshalJSON(data []byte) error { simpleObject := shared.SimpleObject{} if err := utils.UnmarshalJSON(data, &simpleObject, "", true, true); err == nil { u.SimpleObject = &simpleObject - u.Type = MixedTypeOneOfPostResJSONTypeSimpleObject + u.Type = MixedTypeOneOfPostJSONTypeSimpleObject return nil } str := "" if err := utils.UnmarshalJSON(data, &str, "", true, true); err == nil { u.Str = &str - u.Type = MixedTypeOneOfPostResJSONTypeStr + u.Type = MixedTypeOneOfPostJSONTypeStr return nil } integer := int64(0) if err := utils.UnmarshalJSON(data, &integer, "", true, true); err == nil { u.Integer = &integer - u.Type = MixedTypeOneOfPostResJSONTypeInteger + u.Type = MixedTypeOneOfPostJSONTypeInteger return nil } return errors.New("could not unmarshal into supported union types") } -func (u MixedTypeOneOfPostResJSON) MarshalJSON() ([]byte, error) { +func (u MixedTypeOneOfPostJSON) MarshalJSON() ([]byte, error) { if u.Str != nil { return utils.MarshalJSON(u.Str, "", true) } @@ -181,12 +181,12 @@ func (u MixedTypeOneOfPostResJSON) MarshalJSON() ([]byte, error) { // MixedTypeOneOfPostRes - OK type MixedTypeOneOfPostRes struct { - JSON MixedTypeOneOfPostResJSON `json:"json"` + JSON MixedTypeOneOfPostJSON `json:"json"` } -func (o *MixedTypeOneOfPostRes) GetJSON() MixedTypeOneOfPostResJSON { +func (o *MixedTypeOneOfPostRes) GetJSON() MixedTypeOneOfPostJSON { if o == nil { - return MixedTypeOneOfPostResJSON{} + return MixedTypeOneOfPostJSON{} } return o.JSON } diff --git a/go-client-sdk/pkg/models/operations/multiplemixedoptionsauth.go b/go-client-sdk/pkg/models/operations/multiplemixedoptionsauth.go index 87a675156..fd510bea1 100755 --- a/go-client-sdk/pkg/models/operations/multiplemixedoptionsauth.go +++ b/go-client-sdk/pkg/models/operations/multiplemixedoptionsauth.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var MultipleMixedOptionsAuthServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/multiplemixedschemeauth.go b/go-client-sdk/pkg/models/operations/multiplemixedschemeauth.go index 8bae6fc0c..13e7e17cf 100755 --- a/go-client-sdk/pkg/models/operations/multiplemixedschemeauth.go +++ b/go-client-sdk/pkg/models/operations/multiplemixedschemeauth.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var MultipleMixedSchemeAuthServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/multipleoptionswithmixedschemesauth.go b/go-client-sdk/pkg/models/operations/multipleoptionswithmixedschemesauth.go index 250364577..233cbbad0 100755 --- a/go-client-sdk/pkg/models/operations/multipleoptionswithmixedschemesauth.go +++ b/go-client-sdk/pkg/models/operations/multipleoptionswithmixedschemesauth.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var MultipleOptionsWithMixedSchemesAuthServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/nameoverrideget.go b/go-client-sdk/pkg/models/operations/nameoverrideget.go index ee288d527..6f3efc2a1 100755 --- a/go-client-sdk/pkg/models/operations/nameoverrideget.go +++ b/go-client-sdk/pkg/models/operations/nameoverrideget.go @@ -6,23 +6,23 @@ import ( "encoding/json" "fmt" "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -// NameOverrideGetEnumNameOverride - An enum type -type NameOverrideGetEnumNameOverride string +// EnumNameOverride - An enum type +type EnumNameOverride string const ( - NameOverrideGetEnumNameOverrideValue1 NameOverrideGetEnumNameOverride = "value1" - NameOverrideGetEnumNameOverrideValue2 NameOverrideGetEnumNameOverride = "value2" - NameOverrideGetEnumNameOverrideValue3 NameOverrideGetEnumNameOverride = "value3" + EnumNameOverrideValue1 EnumNameOverride = "value1" + EnumNameOverrideValue2 EnumNameOverride = "value2" + EnumNameOverrideValue3 EnumNameOverride = "value3" ) -func (e NameOverrideGetEnumNameOverride) ToPointer() *NameOverrideGetEnumNameOverride { +func (e EnumNameOverride) ToPointer() *EnumNameOverride { return &e } -func (e *NameOverrideGetEnumNameOverride) UnmarshalJSON(data []byte) error { +func (e *EnumNameOverride) UnmarshalJSON(data []byte) error { var v string if err := json.Unmarshal(data, &v); err != nil { return err @@ -33,22 +33,22 @@ func (e *NameOverrideGetEnumNameOverride) UnmarshalJSON(data []byte) error { case "value2": fallthrough case "value3": - *e = NameOverrideGetEnumNameOverride(v) + *e = EnumNameOverride(v) return nil default: - return fmt.Errorf("invalid value for NameOverrideGetEnumNameOverride: %v", v) + return fmt.Errorf("invalid value for EnumNameOverride: %v", v) } } type NameOverrideGetRequest struct { // An enum type - TestEnumQueryParam NameOverrideGetEnumNameOverride `queryParam:"style=form,explode=true,name=enumNameOverride"` - TestQueryParam string `queryParam:"style=form,explode=true,name=nameOverride"` + TestEnumQueryParam EnumNameOverride `queryParam:"style=form,explode=true,name=enumNameOverride"` + TestQueryParam string `queryParam:"style=form,explode=true,name=nameOverride"` } -func (o *NameOverrideGetRequest) GetTestEnumQueryParam() NameOverrideGetEnumNameOverride { +func (o *NameOverrideGetRequest) GetTestEnumQueryParam() EnumNameOverride { if o == nil { - return NameOverrideGetEnumNameOverride("") + return EnumNameOverride("") } return o.TestEnumQueryParam } @@ -60,13 +60,13 @@ func (o *NameOverrideGetRequest) GetTestQueryParam() string { return o.TestQueryParam } -// OverriddenResponse - A successful response that contains the simpleObject sent in the request body -type OverriddenResponse struct { +// NameOverrideGetOverriddenResponse - A successful response that contains the simpleObject sent in the request body +type NameOverrideGetOverriddenResponse struct { // A simple object that uses all our supported primitive types and enums and has optional properties. JSON *shared.SimpleObject `json:"json,omitempty"` } -func (o *OverriddenResponse) GetJSON() *shared.SimpleObject { +func (o *NameOverrideGetOverriddenResponse) GetJSON() *shared.SimpleObject { if o == nil { return nil } @@ -81,7 +81,7 @@ type NameOverrideGetResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // A successful response that contains the simpleObject sent in the request body - OverriddenResponse *OverriddenResponse + OverriddenResponse *NameOverrideGetOverriddenResponse } func (o *NameOverrideGetResponse) GetContentType() string { @@ -105,7 +105,7 @@ func (o *NameOverrideGetResponse) GetRawResponse() *http.Response { return o.RawResponse } -func (o *NameOverrideGetResponse) GetOverriddenResponse() *OverriddenResponse { +func (o *NameOverrideGetResponse) GetOverriddenResponse() *NameOverrideGetOverriddenResponse { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/operations/nullableobjectpost.go b/go-client-sdk/pkg/models/operations/nullableobjectpost.go index bd6448a63..7b483fcb0 100755 --- a/go-client-sdk/pkg/models/operations/nullableobjectpost.go +++ b/go-client-sdk/pkg/models/operations/nullableobjectpost.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // NullableObjectPostRes - OK diff --git a/go-client-sdk/pkg/models/operations/nullableoneofrefinobjectpost.go b/go-client-sdk/pkg/models/operations/nullableoneofrefinobjectpost.go index 3071622a1..a98503273 100755 --- a/go-client-sdk/pkg/models/operations/nullableoneofrefinobjectpost.go +++ b/go-client-sdk/pkg/models/operations/nullableoneofrefinobjectpost.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // NullableOneOfRefInObjectPostRes - OK diff --git a/go-client-sdk/pkg/models/operations/nullableoneofschemapost.go b/go-client-sdk/pkg/models/operations/nullableoneofschemapost.go index 47686db33..ff1ae66a6 100755 --- a/go-client-sdk/pkg/models/operations/nullableoneofschemapost.go +++ b/go-client-sdk/pkg/models/operations/nullableoneofschemapost.go @@ -5,8 +5,8 @@ package operations import ( "errors" "net/http" - "openapi/pkg/models/shared" - "openapi/pkg/utils" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/utils" ) type NullableOneOfSchemaPostRequestBodyType string @@ -72,58 +72,58 @@ func (u NullableOneOfSchemaPostRequestBody) MarshalJSON() ([]byte, error) { return nil, errors.New("could not marshal union type: all fields are null") } -type NullableOneOfSchemaPostResJSONType string +type NullableOneOfSchemaPostJSONType string const ( - NullableOneOfSchemaPostResJSONTypeTypedObject1 NullableOneOfSchemaPostResJSONType = "typedObject1" - NullableOneOfSchemaPostResJSONTypeTypedObject2 NullableOneOfSchemaPostResJSONType = "typedObject2" + NullableOneOfSchemaPostJSONTypeTypedObject1 NullableOneOfSchemaPostJSONType = "typedObject1" + NullableOneOfSchemaPostJSONTypeTypedObject2 NullableOneOfSchemaPostJSONType = "typedObject2" ) -type NullableOneOfSchemaPostResJSON struct { +type NullableOneOfSchemaPostJSON struct { TypedObject1 *shared.TypedObject1 TypedObject2 *shared.TypedObject2 - Type NullableOneOfSchemaPostResJSONType + Type NullableOneOfSchemaPostJSONType } -func CreateNullableOneOfSchemaPostResJSONTypedObject1(typedObject1 shared.TypedObject1) NullableOneOfSchemaPostResJSON { - typ := NullableOneOfSchemaPostResJSONTypeTypedObject1 +func CreateNullableOneOfSchemaPostJSONTypedObject1(typedObject1 shared.TypedObject1) NullableOneOfSchemaPostJSON { + typ := NullableOneOfSchemaPostJSONTypeTypedObject1 - return NullableOneOfSchemaPostResJSON{ + return NullableOneOfSchemaPostJSON{ TypedObject1: &typedObject1, Type: typ, } } -func CreateNullableOneOfSchemaPostResJSONTypedObject2(typedObject2 shared.TypedObject2) NullableOneOfSchemaPostResJSON { - typ := NullableOneOfSchemaPostResJSONTypeTypedObject2 +func CreateNullableOneOfSchemaPostJSONTypedObject2(typedObject2 shared.TypedObject2) NullableOneOfSchemaPostJSON { + typ := NullableOneOfSchemaPostJSONTypeTypedObject2 - return NullableOneOfSchemaPostResJSON{ + return NullableOneOfSchemaPostJSON{ TypedObject2: &typedObject2, Type: typ, } } -func (u *NullableOneOfSchemaPostResJSON) UnmarshalJSON(data []byte) error { +func (u *NullableOneOfSchemaPostJSON) UnmarshalJSON(data []byte) error { typedObject1 := shared.TypedObject1{} if err := utils.UnmarshalJSON(data, &typedObject1, "", true, true); err == nil { u.TypedObject1 = &typedObject1 - u.Type = NullableOneOfSchemaPostResJSONTypeTypedObject1 + u.Type = NullableOneOfSchemaPostJSONTypeTypedObject1 return nil } typedObject2 := shared.TypedObject2{} if err := utils.UnmarshalJSON(data, &typedObject2, "", true, true); err == nil { u.TypedObject2 = &typedObject2 - u.Type = NullableOneOfSchemaPostResJSONTypeTypedObject2 + u.Type = NullableOneOfSchemaPostJSONTypeTypedObject2 return nil } return errors.New("could not unmarshal into supported union types") } -func (u NullableOneOfSchemaPostResJSON) MarshalJSON() ([]byte, error) { +func (u NullableOneOfSchemaPostJSON) MarshalJSON() ([]byte, error) { if u.TypedObject1 != nil { return utils.MarshalJSON(u.TypedObject1, "", true) } @@ -137,10 +137,10 @@ func (u NullableOneOfSchemaPostResJSON) MarshalJSON() ([]byte, error) { // NullableOneOfSchemaPostRes - OK type NullableOneOfSchemaPostRes struct { - JSON *NullableOneOfSchemaPostResJSON `json:"json"` + JSON *NullableOneOfSchemaPostJSON `json:"json"` } -func (o *NullableOneOfSchemaPostRes) GetJSON() *NullableOneOfSchemaPostResJSON { +func (o *NullableOneOfSchemaPostRes) GetJSON() *NullableOneOfSchemaPostJSON { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/operations/nullableoneoftypeinobjectpost.go b/go-client-sdk/pkg/models/operations/nullableoneoftypeinobjectpost.go index f1a6dfbdb..caf943282 100755 --- a/go-client-sdk/pkg/models/operations/nullableoneoftypeinobjectpost.go +++ b/go-client-sdk/pkg/models/operations/nullableoneoftypeinobjectpost.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // NullableOneOfTypeInObjectPostRes - OK diff --git a/go-client-sdk/pkg/models/operations/nullablerequiredemptyobjectpost.go b/go-client-sdk/pkg/models/operations/nullablerequiredemptyobjectpost.go index e7025735a..46d867239 100755 --- a/go-client-sdk/pkg/models/operations/nullablerequiredemptyobjectpost.go +++ b/go-client-sdk/pkg/models/operations/nullablerequiredemptyobjectpost.go @@ -6,38 +6,38 @@ import ( "net/http" ) -type NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj struct { +type NullableOptionalObj struct { } -type NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj struct { +type NullableRequiredObj struct { } -type NullableRequiredEmptyObjectPostRequestBodyRequiredObj struct { +type RequiredObj struct { } type NullableRequiredEmptyObjectPostRequestBody struct { - NullableOptionalObj *NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj `json:"NullableOptionalObj,omitempty"` - NullableRequiredObj *NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj `json:"NullableRequiredObj"` - RequiredObj NullableRequiredEmptyObjectPostRequestBodyRequiredObj `json:"RequiredObj"` + NullableOptionalObj *NullableOptionalObj `json:"NullableOptionalObj,omitempty"` + NullableRequiredObj *NullableRequiredObj `json:"NullableRequiredObj"` + RequiredObj RequiredObj `json:"RequiredObj"` } -func (o *NullableRequiredEmptyObjectPostRequestBody) GetNullableOptionalObj() *NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj { +func (o *NullableRequiredEmptyObjectPostRequestBody) GetNullableOptionalObj() *NullableOptionalObj { if o == nil { return nil } return o.NullableOptionalObj } -func (o *NullableRequiredEmptyObjectPostRequestBody) GetNullableRequiredObj() *NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj { +func (o *NullableRequiredEmptyObjectPostRequestBody) GetNullableRequiredObj() *NullableRequiredObj { if o == nil { return nil } return o.NullableRequiredObj } -func (o *NullableRequiredEmptyObjectPostRequestBody) GetRequiredObj() NullableRequiredEmptyObjectPostRequestBodyRequiredObj { +func (o *NullableRequiredEmptyObjectPostRequestBody) GetRequiredObj() RequiredObj { if o == nil { - return NullableRequiredEmptyObjectPostRequestBodyRequiredObj{} + return RequiredObj{} } return o.RequiredObj } @@ -50,7 +50,7 @@ type NullableRequiredEmptyObjectPostResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - NullableRequiredEmptyObjectPost200ApplicationJSONString *string + Res *string } func (o *NullableRequiredEmptyObjectPostResponse) GetContentType() string { @@ -74,9 +74,9 @@ func (o *NullableRequiredEmptyObjectPostResponse) GetRawResponse() *http.Respons return o.RawResponse } -func (o *NullableRequiredEmptyObjectPostResponse) GetNullableRequiredEmptyObjectPost200ApplicationJSONString() *string { +func (o *NullableRequiredEmptyObjectPostResponse) GetRes() *string { if o == nil { return nil } - return o.NullableRequiredEmptyObjectPost200ApplicationJSONString + return o.Res } diff --git a/go-client-sdk/pkg/models/operations/nullablerequiredpropertypost.go b/go-client-sdk/pkg/models/operations/nullablerequiredpropertypost.go index 4621bc929..a8831cd9f 100755 --- a/go-client-sdk/pkg/models/operations/nullablerequiredpropertypost.go +++ b/go-client-sdk/pkg/models/operations/nullablerequiredpropertypost.go @@ -8,18 +8,18 @@ import ( "net/http" ) -type NullableRequiredPropertyPostRequestBodyNullableRequiredEnum string +type NullableRequiredEnum string const ( - NullableRequiredPropertyPostRequestBodyNullableRequiredEnumFirst NullableRequiredPropertyPostRequestBodyNullableRequiredEnum = "first" - NullableRequiredPropertyPostRequestBodyNullableRequiredEnumSecond NullableRequiredPropertyPostRequestBodyNullableRequiredEnum = "second" + NullableRequiredEnumFirst NullableRequiredEnum = "first" + NullableRequiredEnumSecond NullableRequiredEnum = "second" ) -func (e NullableRequiredPropertyPostRequestBodyNullableRequiredEnum) ToPointer() *NullableRequiredPropertyPostRequestBodyNullableRequiredEnum { +func (e NullableRequiredEnum) ToPointer() *NullableRequiredEnum { return &e } -func (e *NullableRequiredPropertyPostRequestBodyNullableRequiredEnum) UnmarshalJSON(data []byte) error { +func (e *NullableRequiredEnum) UnmarshalJSON(data []byte) error { var v string if err := json.Unmarshal(data, &v); err != nil { return err @@ -28,18 +28,18 @@ func (e *NullableRequiredPropertyPostRequestBodyNullableRequiredEnum) UnmarshalJ case "first": fallthrough case "second": - *e = NullableRequiredPropertyPostRequestBodyNullableRequiredEnum(v) + *e = NullableRequiredEnum(v) return nil default: - return fmt.Errorf("invalid value for NullableRequiredPropertyPostRequestBodyNullableRequiredEnum: %v", v) + return fmt.Errorf("invalid value for NullableRequiredEnum: %v", v) } } type NullableRequiredPropertyPostRequestBody struct { - NullableOptionalInt *int64 `json:"NullableOptionalInt,omitempty"` - NullableRequiredArray []float64 `json:"NullableRequiredArray"` - NullableRequiredEnum *NullableRequiredPropertyPostRequestBodyNullableRequiredEnum `json:"NullableRequiredEnum"` - NullableRequiredInt *int64 `json:"NullableRequiredInt"` + NullableOptionalInt *int64 `json:"NullableOptionalInt,omitempty"` + NullableRequiredArray []float64 `json:"NullableRequiredArray"` + NullableRequiredEnum *NullableRequiredEnum `json:"NullableRequiredEnum"` + NullableRequiredInt *int64 `json:"NullableRequiredInt"` } func (o *NullableRequiredPropertyPostRequestBody) GetNullableOptionalInt() *int64 { @@ -56,7 +56,7 @@ func (o *NullableRequiredPropertyPostRequestBody) GetNullableRequiredArray() []f return o.NullableRequiredArray } -func (o *NullableRequiredPropertyPostRequestBody) GetNullableRequiredEnum() *NullableRequiredPropertyPostRequestBodyNullableRequiredEnum { +func (o *NullableRequiredPropertyPostRequestBody) GetNullableRequiredEnum() *NullableRequiredEnum { if o == nil { return nil } @@ -78,7 +78,7 @@ type NullableRequiredPropertyPostResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - NullableRequiredPropertyPost200ApplicationJSONString *string + Res *string } func (o *NullableRequiredPropertyPostResponse) GetContentType() string { @@ -102,9 +102,9 @@ func (o *NullableRequiredPropertyPostResponse) GetRawResponse() *http.Response { return o.RawResponse } -func (o *NullableRequiredPropertyPostResponse) GetNullableRequiredPropertyPost200ApplicationJSONString() *string { +func (o *NullableRequiredPropertyPostResponse) GetRes() *string { if o == nil { return nil } - return o.NullableRequiredPropertyPost200ApplicationJSONString + return o.Res } diff --git a/go-client-sdk/pkg/models/operations/nullablerequiredsharedobjectpost.go b/go-client-sdk/pkg/models/operations/nullablerequiredsharedobjectpost.go index ca026bebb..f30fe9ab0 100755 --- a/go-client-sdk/pkg/models/operations/nullablerequiredsharedobjectpost.go +++ b/go-client-sdk/pkg/models/operations/nullablerequiredsharedobjectpost.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type NullableRequiredSharedObjectPostRequestBody struct { @@ -34,7 +34,7 @@ type NullableRequiredSharedObjectPostResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - NullableRequiredSharedObjectPost200ApplicationJSONString *string + Res *string } func (o *NullableRequiredSharedObjectPostResponse) GetContentType() string { @@ -58,9 +58,9 @@ func (o *NullableRequiredSharedObjectPostResponse) GetRawResponse() *http.Respon return o.RawResponse } -func (o *NullableRequiredSharedObjectPostResponse) GetNullableRequiredSharedObjectPost200ApplicationJSONString() *string { +func (o *NullableRequiredSharedObjectPostResponse) GetRes() *string { if o == nil { return nil } - return o.NullableRequiredSharedObjectPost200ApplicationJSONString + return o.Res } diff --git a/go-client-sdk/pkg/models/operations/nullabletypedobjectpost.go b/go-client-sdk/pkg/models/operations/nullabletypedobjectpost.go index fd628f559..9f2dbfa9f 100755 --- a/go-client-sdk/pkg/models/operations/nullabletypedobjectpost.go +++ b/go-client-sdk/pkg/models/operations/nullabletypedobjectpost.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // NullableTypedObjectPostRes - OK diff --git a/go-client-sdk/pkg/models/operations/objectcircularreferenceget.go b/go-client-sdk/pkg/models/operations/objectcircularreferenceget.go index 2aad1b6ea..dee8524b7 100755 --- a/go-client-sdk/pkg/models/operations/objectcircularreferenceget.go +++ b/go-client-sdk/pkg/models/operations/objectcircularreferenceget.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type ObjectCircularReferenceGetResponse struct { diff --git a/go-client-sdk/pkg/models/operations/oneofcircularreferenceget.go b/go-client-sdk/pkg/models/operations/oneofcircularreferenceget.go index 758fa6f4f..de51f6917 100755 --- a/go-client-sdk/pkg/models/operations/oneofcircularreferenceget.go +++ b/go-client-sdk/pkg/models/operations/oneofcircularreferenceget.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type OneOfCircularReferenceGetResponse struct { diff --git a/go-client-sdk/pkg/models/operations/options.go b/go-client-sdk/pkg/models/operations/options.go index 4d64d0245..2ac8268ae 100755 --- a/go-client-sdk/pkg/models/operations/options.go +++ b/go-client-sdk/pkg/models/operations/options.go @@ -4,7 +4,7 @@ package operations import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) var ErrUnsupportedOption = errors.New("unsupported option") diff --git a/go-client-sdk/pkg/models/operations/pathparameterjson.go b/go-client-sdk/pkg/models/operations/pathparameterjson.go index a5df792c5..5ab25a155 100755 --- a/go-client-sdk/pkg/models/operations/pathparameterjson.go +++ b/go-client-sdk/pkg/models/operations/pathparameterjson.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type PathParameterJSONRequest struct { diff --git a/go-client-sdk/pkg/models/operations/pipedelimitedqueryparamsarray.go b/go-client-sdk/pkg/models/operations/pipedelimitedqueryparamsarray.go index 2f12ba2a0..46b47887f 100755 --- a/go-client-sdk/pkg/models/operations/pipedelimitedqueryparamsarray.go +++ b/go-client-sdk/pkg/models/operations/pipedelimitedqueryparamsarray.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type PipeDelimitedQueryParamsArrayRequest struct { @@ -43,19 +43,19 @@ func (o *PipeDelimitedQueryParamsArrayRequest) GetObjParam() *shared.SimpleObjec return o.ObjParam } -type PipeDelimitedQueryParamsArrayResArgs struct { +type PipeDelimitedQueryParamsArrayArgs struct { ArrParam string `json:"arrParam"` ArrParamExploded []string `json:"arrParamExploded"` } -func (o *PipeDelimitedQueryParamsArrayResArgs) GetArrParam() string { +func (o *PipeDelimitedQueryParamsArrayArgs) GetArrParam() string { if o == nil { return "" } return o.ArrParam } -func (o *PipeDelimitedQueryParamsArrayResArgs) GetArrParamExploded() []string { +func (o *PipeDelimitedQueryParamsArrayArgs) GetArrParamExploded() []string { if o == nil { return []string{} } @@ -64,13 +64,13 @@ func (o *PipeDelimitedQueryParamsArrayResArgs) GetArrParamExploded() []string { // PipeDelimitedQueryParamsArrayRes - OK type PipeDelimitedQueryParamsArrayRes struct { - Args PipeDelimitedQueryParamsArrayResArgs `json:"args"` - URL string `json:"url"` + Args PipeDelimitedQueryParamsArrayArgs `json:"args"` + URL string `json:"url"` } -func (o *PipeDelimitedQueryParamsArrayRes) GetArgs() PipeDelimitedQueryParamsArrayResArgs { +func (o *PipeDelimitedQueryParamsArrayRes) GetArgs() PipeDelimitedQueryParamsArrayArgs { if o == nil { - return PipeDelimitedQueryParamsArrayResArgs{} + return PipeDelimitedQueryParamsArrayArgs{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/primitivetypeoneofpost.go b/go-client-sdk/pkg/models/operations/primitivetypeoneofpost.go index 91a40b255..de5f30326 100755 --- a/go-client-sdk/pkg/models/operations/primitivetypeoneofpost.go +++ b/go-client-sdk/pkg/models/operations/primitivetypeoneofpost.go @@ -5,7 +5,7 @@ package operations import ( "errors" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type PrimitiveTypeOneOfPostRequestBodyType string @@ -115,94 +115,94 @@ func (u PrimitiveTypeOneOfPostRequestBody) MarshalJSON() ([]byte, error) { return nil, errors.New("could not marshal union type: all fields are null") } -type PrimitiveTypeOneOfPostResJSONType string +type PrimitiveTypeOneOfPostJSONType string const ( - PrimitiveTypeOneOfPostResJSONTypeStr PrimitiveTypeOneOfPostResJSONType = "str" - PrimitiveTypeOneOfPostResJSONTypeInteger PrimitiveTypeOneOfPostResJSONType = "integer" - PrimitiveTypeOneOfPostResJSONTypeNumber PrimitiveTypeOneOfPostResJSONType = "number" - PrimitiveTypeOneOfPostResJSONTypeBoolean PrimitiveTypeOneOfPostResJSONType = "boolean" + PrimitiveTypeOneOfPostJSONTypeStr PrimitiveTypeOneOfPostJSONType = "str" + PrimitiveTypeOneOfPostJSONTypeInteger PrimitiveTypeOneOfPostJSONType = "integer" + PrimitiveTypeOneOfPostJSONTypeNumber PrimitiveTypeOneOfPostJSONType = "number" + PrimitiveTypeOneOfPostJSONTypeBoolean PrimitiveTypeOneOfPostJSONType = "boolean" ) -type PrimitiveTypeOneOfPostResJSON struct { +type PrimitiveTypeOneOfPostJSON struct { Str *string Integer *int64 Number *float64 Boolean *bool - Type PrimitiveTypeOneOfPostResJSONType + Type PrimitiveTypeOneOfPostJSONType } -func CreatePrimitiveTypeOneOfPostResJSONStr(str string) PrimitiveTypeOneOfPostResJSON { - typ := PrimitiveTypeOneOfPostResJSONTypeStr +func CreatePrimitiveTypeOneOfPostJSONStr(str string) PrimitiveTypeOneOfPostJSON { + typ := PrimitiveTypeOneOfPostJSONTypeStr - return PrimitiveTypeOneOfPostResJSON{ + return PrimitiveTypeOneOfPostJSON{ Str: &str, Type: typ, } } -func CreatePrimitiveTypeOneOfPostResJSONInteger(integer int64) PrimitiveTypeOneOfPostResJSON { - typ := PrimitiveTypeOneOfPostResJSONTypeInteger +func CreatePrimitiveTypeOneOfPostJSONInteger(integer int64) PrimitiveTypeOneOfPostJSON { + typ := PrimitiveTypeOneOfPostJSONTypeInteger - return PrimitiveTypeOneOfPostResJSON{ + return PrimitiveTypeOneOfPostJSON{ Integer: &integer, Type: typ, } } -func CreatePrimitiveTypeOneOfPostResJSONNumber(number float64) PrimitiveTypeOneOfPostResJSON { - typ := PrimitiveTypeOneOfPostResJSONTypeNumber +func CreatePrimitiveTypeOneOfPostJSONNumber(number float64) PrimitiveTypeOneOfPostJSON { + typ := PrimitiveTypeOneOfPostJSONTypeNumber - return PrimitiveTypeOneOfPostResJSON{ + return PrimitiveTypeOneOfPostJSON{ Number: &number, Type: typ, } } -func CreatePrimitiveTypeOneOfPostResJSONBoolean(boolean bool) PrimitiveTypeOneOfPostResJSON { - typ := PrimitiveTypeOneOfPostResJSONTypeBoolean +func CreatePrimitiveTypeOneOfPostJSONBoolean(boolean bool) PrimitiveTypeOneOfPostJSON { + typ := PrimitiveTypeOneOfPostJSONTypeBoolean - return PrimitiveTypeOneOfPostResJSON{ + return PrimitiveTypeOneOfPostJSON{ Boolean: &boolean, Type: typ, } } -func (u *PrimitiveTypeOneOfPostResJSON) UnmarshalJSON(data []byte) error { +func (u *PrimitiveTypeOneOfPostJSON) UnmarshalJSON(data []byte) error { str := "" if err := utils.UnmarshalJSON(data, &str, "", true, true); err == nil { u.Str = &str - u.Type = PrimitiveTypeOneOfPostResJSONTypeStr + u.Type = PrimitiveTypeOneOfPostJSONTypeStr return nil } integer := int64(0) if err := utils.UnmarshalJSON(data, &integer, "", true, true); err == nil { u.Integer = &integer - u.Type = PrimitiveTypeOneOfPostResJSONTypeInteger + u.Type = PrimitiveTypeOneOfPostJSONTypeInteger return nil } number := float64(0) if err := utils.UnmarshalJSON(data, &number, "", true, true); err == nil { u.Number = &number - u.Type = PrimitiveTypeOneOfPostResJSONTypeNumber + u.Type = PrimitiveTypeOneOfPostJSONTypeNumber return nil } boolean := false if err := utils.UnmarshalJSON(data, &boolean, "", true, true); err == nil { u.Boolean = &boolean - u.Type = PrimitiveTypeOneOfPostResJSONTypeBoolean + u.Type = PrimitiveTypeOneOfPostJSONTypeBoolean return nil } return errors.New("could not unmarshal into supported union types") } -func (u PrimitiveTypeOneOfPostResJSON) MarshalJSON() ([]byte, error) { +func (u PrimitiveTypeOneOfPostJSON) MarshalJSON() ([]byte, error) { if u.Str != nil { return utils.MarshalJSON(u.Str, "", true) } @@ -224,12 +224,12 @@ func (u PrimitiveTypeOneOfPostResJSON) MarshalJSON() ([]byte, error) { // PrimitiveTypeOneOfPostRes - OK type PrimitiveTypeOneOfPostRes struct { - JSON PrimitiveTypeOneOfPostResJSON `json:"json"` + JSON PrimitiveTypeOneOfPostJSON `json:"json"` } -func (o *PrimitiveTypeOneOfPostRes) GetJSON() PrimitiveTypeOneOfPostResJSON { +func (o *PrimitiveTypeOneOfPostRes) GetJSON() PrimitiveTypeOneOfPostJSON { if o == nil { - return PrimitiveTypeOneOfPostResJSON{} + return PrimitiveTypeOneOfPostJSON{} } return o.JSON } diff --git a/go-client-sdk/pkg/models/operations/putanythingignoredgeneration.go b/go-client-sdk/pkg/models/operations/putanythingignoredgeneration.go index e48bdfeb0..d870081e4 100755 --- a/go-client-sdk/pkg/models/operations/putanythingignoredgeneration.go +++ b/go-client-sdk/pkg/models/operations/putanythingignoredgeneration.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// PutAnythingIgnoredGeneration200ApplicationJSON - OK -type PutAnythingIgnoredGeneration200ApplicationJSON struct { +// PutAnythingIgnoredGenerationResponseBody - OK +type PutAnythingIgnoredGenerationResponseBody struct { JSON *string `json:"json,omitempty"` } -func (o *PutAnythingIgnoredGeneration200ApplicationJSON) GetJSON() *string { +func (o *PutAnythingIgnoredGenerationResponseBody) GetJSON() *string { if o == nil { return nil } @@ -26,7 +26,7 @@ type PutAnythingIgnoredGenerationResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - PutAnythingIgnoredGeneration200ApplicationJSONObject *PutAnythingIgnoredGeneration200ApplicationJSON + Object *PutAnythingIgnoredGenerationResponseBody } func (o *PutAnythingIgnoredGenerationResponse) GetContentType() string { @@ -50,9 +50,9 @@ func (o *PutAnythingIgnoredGenerationResponse) GetRawResponse() *http.Response { return o.RawResponse } -func (o *PutAnythingIgnoredGenerationResponse) GetPutAnythingIgnoredGeneration200ApplicationJSONObject() *PutAnythingIgnoredGeneration200ApplicationJSON { +func (o *PutAnythingIgnoredGenerationResponse) GetObject() *PutAnythingIgnoredGenerationResponseBody { if o == nil { return nil } - return o.PutAnythingIgnoredGeneration200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarray.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarray.go index 2b21e5669..c04d9ba84 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarray.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarray.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONArrayServerList = []string{ @@ -19,7 +19,7 @@ type RequestBodyPostApplicationJSONArrayResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - SimpleObjects []shared.SimpleObject + Res []shared.SimpleObject } func (o *RequestBodyPostApplicationJSONArrayResponse) GetContentType() string { @@ -43,9 +43,9 @@ func (o *RequestBodyPostApplicationJSONArrayResponse) GetRawResponse() *http.Res return o.RawResponse } -func (o *RequestBodyPostApplicationJSONArrayResponse) GetSimpleObjects() []shared.SimpleObject { +func (o *RequestBodyPostApplicationJSONArrayResponse) GetRes() []shared.SimpleObject { if o == nil { return nil } - return o.SimpleObjects + return o.Res } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarraycamelcase.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarraycamelcase.go index 9831b5f66..0532b1009 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarraycamelcase.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarraycamelcase.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONArrayCamelCaseServerList = []string{ @@ -19,7 +19,7 @@ type RequestBodyPostApplicationJSONArrayCamelCaseResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - SimpleObjectCamelCases []shared.SimpleObjectCamelCase + Res []shared.SimpleObjectCamelCase } func (o *RequestBodyPostApplicationJSONArrayCamelCaseResponse) GetContentType() string { @@ -43,9 +43,9 @@ func (o *RequestBodyPostApplicationJSONArrayCamelCaseResponse) GetRawResponse() return o.RawResponse } -func (o *RequestBodyPostApplicationJSONArrayCamelCaseResponse) GetSimpleObjectCamelCases() []shared.SimpleObjectCamelCase { +func (o *RequestBodyPostApplicationJSONArrayCamelCaseResponse) GetRes() []shared.SimpleObjectCamelCase { if o == nil { return nil } - return o.SimpleObjectCamelCases + return o.Res } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayobj.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayobj.go index d2b18438a..278ed08b5 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayobj.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayobj.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type RequestBodyPostApplicationJSONArrayObjResponse struct { diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.go index 0ef2ce1b0..44fbb6a9b 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type RequestBodyPostApplicationJSONArrayObjCamelCaseResponse struct { diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarray.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarray.go index e1ded3df8..bf1b1cf2e 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarray.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarray.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONArrayOfArrayServerList = []string{ @@ -19,7 +19,7 @@ type RequestBodyPostApplicationJSONArrayOfArrayResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - Arrs [][]shared.SimpleObject + Res [][]shared.SimpleObject } func (o *RequestBodyPostApplicationJSONArrayOfArrayResponse) GetContentType() string { @@ -43,9 +43,9 @@ func (o *RequestBodyPostApplicationJSONArrayOfArrayResponse) GetRawResponse() *h return o.RawResponse } -func (o *RequestBodyPostApplicationJSONArrayOfArrayResponse) GetArrs() [][]shared.SimpleObject { +func (o *RequestBodyPostApplicationJSONArrayOfArrayResponse) GetRes() [][]shared.SimpleObject { if o == nil { return nil } - return o.Arrs + return o.Res } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.go index a19c91bfd..94148d800 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONArrayOfArrayCamelCaseServerList = []string{ @@ -19,7 +19,7 @@ type RequestBodyPostApplicationJSONArrayOfArrayCamelCaseResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - Arrs [][]shared.SimpleObjectCamelCase + Res [][]shared.SimpleObjectCamelCase } func (o *RequestBodyPostApplicationJSONArrayOfArrayCamelCaseResponse) GetContentType() string { @@ -43,9 +43,9 @@ func (o *RequestBodyPostApplicationJSONArrayOfArrayCamelCaseResponse) GetRawResp return o.RawResponse } -func (o *RequestBodyPostApplicationJSONArrayOfArrayCamelCaseResponse) GetArrs() [][]shared.SimpleObjectCamelCase { +func (o *RequestBodyPostApplicationJSONArrayOfArrayCamelCaseResponse) GetRes() [][]shared.SimpleObjectCamelCase { if o == nil { return nil } - return o.Arrs + return o.Res } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.go index 3adb2dd49..4d6c8863c 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.go @@ -18,7 +18,7 @@ type RequestBodyPostApplicationJSONArrayOfArrayOfPrimitiveResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - Arrs [][]string + Res [][]string } func (o *RequestBodyPostApplicationJSONArrayOfArrayOfPrimitiveResponse) GetContentType() string { @@ -42,9 +42,9 @@ func (o *RequestBodyPostApplicationJSONArrayOfArrayOfPrimitiveResponse) GetRawRe return o.RawResponse } -func (o *RequestBodyPostApplicationJSONArrayOfArrayOfPrimitiveResponse) GetArrs() [][]string { +func (o *RequestBodyPostApplicationJSONArrayOfArrayOfPrimitiveResponse) GetRes() [][]string { if o == nil { return nil } - return o.Arrs + return o.Res } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofmap.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofmap.go index a67c84eb6..85b884bef 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofmap.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofmap.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONArrayOfMapServerList = []string{ @@ -19,7 +19,7 @@ type RequestBodyPostApplicationJSONArrayOfMapResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - Maps []map[string]shared.SimpleObject + Res []map[string]shared.SimpleObject } func (o *RequestBodyPostApplicationJSONArrayOfMapResponse) GetContentType() string { @@ -43,9 +43,9 @@ func (o *RequestBodyPostApplicationJSONArrayOfMapResponse) GetRawResponse() *htt return o.RawResponse } -func (o *RequestBodyPostApplicationJSONArrayOfMapResponse) GetMaps() []map[string]shared.SimpleObject { +func (o *RequestBodyPostApplicationJSONArrayOfMapResponse) GetRes() []map[string]shared.SimpleObject { if o == nil { return nil } - return o.Maps + return o.Res } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.go index 7f6c8f216..29ee085e6 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONArrayOfMapCamelCaseServerList = []string{ @@ -19,7 +19,7 @@ type RequestBodyPostApplicationJSONArrayOfMapCamelCaseResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - Maps []map[string]shared.SimpleObjectCamelCase + Res []map[string]shared.SimpleObjectCamelCase } func (o *RequestBodyPostApplicationJSONArrayOfMapCamelCaseResponse) GetContentType() string { @@ -43,9 +43,9 @@ func (o *RequestBodyPostApplicationJSONArrayOfMapCamelCaseResponse) GetRawRespon return o.RawResponse } -func (o *RequestBodyPostApplicationJSONArrayOfMapCamelCaseResponse) GetMaps() []map[string]shared.SimpleObjectCamelCase { +func (o *RequestBodyPostApplicationJSONArrayOfMapCamelCaseResponse) GetRes() []map[string]shared.SimpleObjectCamelCase { if o == nil { return nil } - return o.Maps + return o.Res } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofprimitive.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofprimitive.go index beae699ea..5f6e8da7c 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofprimitive.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonarrayofprimitive.go @@ -18,7 +18,7 @@ type RequestBodyPostApplicationJSONArrayOfPrimitiveResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - Strings []string + Res []string } func (o *RequestBodyPostApplicationJSONArrayOfPrimitiveResponse) GetContentType() string { @@ -42,9 +42,9 @@ func (o *RequestBodyPostApplicationJSONArrayOfPrimitiveResponse) GetRawResponse( return o.RawResponse } -func (o *RequestBodyPostApplicationJSONArrayOfPrimitiveResponse) GetStrings() []string { +func (o *RequestBodyPostApplicationJSONArrayOfPrimitiveResponse) GetRes() []string { if o == nil { return nil } - return o.Strings + return o.Res } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsondeep.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsondeep.go index e4f725d5b..5e90da8f5 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsondeep.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsondeep.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // RequestBodyPostApplicationJSONDeepRes - OK diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsondeepcamelcase.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsondeepcamelcase.go index 120945173..aef5322db 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsondeepcamelcase.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsondeepcamelcase.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // RequestBodyPostApplicationJSONDeepCamelCaseRes - OK diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmap.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmap.go index 0db3427d1..edaec5da5 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmap.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmap.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONMapServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapcamelcase.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapcamelcase.go index 8173331de..84b6933a4 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapcamelcase.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapcamelcase.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONMapCamelCaseServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapobj.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapobj.go index 28f7f780e..eb2e85fc2 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapobj.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapobj.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type RequestBodyPostApplicationJSONMapObjResponse struct { diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapobjcamelcase.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapobjcamelcase.go index 685b5054f..09cfe4e46 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapobjcamelcase.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapobjcamelcase.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type RequestBodyPostApplicationJSONMapObjCamelCaseResponse struct { diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofarray.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofarray.go index 0f7c9f996..24c10834c 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofarray.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofarray.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONMapOfArrayServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.go index 8b0a03212..17aea2c24 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONMapOfArrayCamelCaseServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofmap.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofmap.go index 19d361b6d..c2542547e 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofmap.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofmap.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONMapOfMapServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.go index 33cdb4706..77078b23a 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyPostApplicationJSONMapOfMapCamelCaseServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.go index 3e6286269..5aa00e64a 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // RequestBodyPostApplicationJSONMultipleJSONFilteredRes - OK diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonsimple.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonsimple.go index 2b611d920..64640bf16 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonsimple.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonsimple.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // RequestBodyPostApplicationJSONSimpleRes - OK diff --git a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonsimplecamelcase.go b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonsimplecamelcase.go index ab56ccdd1..bb6999201 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonsimplecamelcase.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostapplicationjsonsimplecamelcase.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // RequestBodyPostApplicationJSONSimpleCamelCaseRes - OK diff --git a/go-client-sdk/pkg/models/operations/requestbodypostcomplexnumbertypes.go b/go-client-sdk/pkg/models/operations/requestbodypostcomplexnumbertypes.go index f381ccc18..95da1e017 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostcomplexnumbertypes.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostcomplexnumbertypes.go @@ -6,8 +6,8 @@ import ( "github.com/ericlagergren/decimal" "math/big" "net/http" - "openapi/pkg/models/shared" - "openapi/pkg/utils" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/utils" ) type RequestBodyPostComplexNumberTypesRequest struct { @@ -96,20 +96,20 @@ func (o *RequestBodyPostComplexNumberTypesRequest) GetQueryDecimalStr() *decimal return o.QueryDecimalStr } -// RequestBodyPostComplexNumberTypes200ApplicationJSON - OK -type RequestBodyPostComplexNumberTypes200ApplicationJSON struct { +// RequestBodyPostComplexNumberTypesResponseBody - OK +type RequestBodyPostComplexNumberTypesResponseBody struct { JSON shared.ComplexNumberTypes `json:"json"` URL string `json:"url"` } -func (o *RequestBodyPostComplexNumberTypes200ApplicationJSON) GetJSON() shared.ComplexNumberTypes { +func (o *RequestBodyPostComplexNumberTypesResponseBody) GetJSON() shared.ComplexNumberTypes { if o == nil { return shared.ComplexNumberTypes{} } return o.JSON } -func (o *RequestBodyPostComplexNumberTypes200ApplicationJSON) GetURL() string { +func (o *RequestBodyPostComplexNumberTypesResponseBody) GetURL() string { if o == nil { return "" } @@ -124,7 +124,7 @@ type RequestBodyPostComplexNumberTypesResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostComplexNumberTypes200ApplicationJSONObject *RequestBodyPostComplexNumberTypes200ApplicationJSON + Object *RequestBodyPostComplexNumberTypesResponseBody } func (o *RequestBodyPostComplexNumberTypesResponse) GetContentType() string { @@ -148,9 +148,9 @@ func (o *RequestBodyPostComplexNumberTypesResponse) GetRawResponse() *http.Respo return o.RawResponse } -func (o *RequestBodyPostComplexNumberTypesResponse) GetRequestBodyPostComplexNumberTypes200ApplicationJSONObject() *RequestBodyPostComplexNumberTypes200ApplicationJSON { +func (o *RequestBodyPostComplexNumberTypesResponse) GetObject() *RequestBodyPostComplexNumberTypesResponseBody { if o == nil { return nil } - return o.RequestBodyPostComplexNumberTypes200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostdefaultsandconsts.go b/go-client-sdk/pkg/models/operations/requestbodypostdefaultsandconsts.go index ca8f98f94..208aa87cb 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostdefaultsandconsts.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostdefaultsandconsts.go @@ -4,15 +4,15 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -// RequestBodyPostDefaultsAndConsts200ApplicationJSON - OK -type RequestBodyPostDefaultsAndConsts200ApplicationJSON struct { +// RequestBodyPostDefaultsAndConstsResponseBody - OK +type RequestBodyPostDefaultsAndConstsResponseBody struct { JSON shared.DefaultsAndConstsOutput `json:"json"` } -func (o *RequestBodyPostDefaultsAndConsts200ApplicationJSON) GetJSON() shared.DefaultsAndConstsOutput { +func (o *RequestBodyPostDefaultsAndConstsResponseBody) GetJSON() shared.DefaultsAndConstsOutput { if o == nil { return shared.DefaultsAndConstsOutput{} } @@ -27,7 +27,7 @@ type RequestBodyPostDefaultsAndConstsResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostDefaultsAndConsts200ApplicationJSONObject *RequestBodyPostDefaultsAndConsts200ApplicationJSON + Object *RequestBodyPostDefaultsAndConstsResponseBody } func (o *RequestBodyPostDefaultsAndConstsResponse) GetContentType() string { @@ -51,9 +51,9 @@ func (o *RequestBodyPostDefaultsAndConstsResponse) GetRawResponse() *http.Respon return o.RawResponse } -func (o *RequestBodyPostDefaultsAndConstsResponse) GetRequestBodyPostDefaultsAndConsts200ApplicationJSONObject() *RequestBodyPostDefaultsAndConsts200ApplicationJSON { +func (o *RequestBodyPostDefaultsAndConstsResponse) GetObject() *RequestBodyPostDefaultsAndConstsResponseBody { if o == nil { return nil } - return o.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostemptyobject.go b/go-client-sdk/pkg/models/operations/requestbodypostemptyobject.go index fac2fd0c4..b9ca4b3a9 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostemptyobject.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostemptyobject.go @@ -6,51 +6,51 @@ import ( "net/http" ) -type RequestBodyPostEmptyObjectRequestBodyEmpty struct { +type Empty struct { } -type RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties struct { +type EmptyWithEmptyProperties struct { } type RequestBodyPostEmptyObjectRequestBody struct { - Empty *RequestBodyPostEmptyObjectRequestBodyEmpty `json:"empty,omitempty"` - EmptyWithEmptyProperties *RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties `json:"emptyWithEmptyProperties,omitempty"` + Empty *Empty `json:"empty,omitempty"` + EmptyWithEmptyProperties *EmptyWithEmptyProperties `json:"emptyWithEmptyProperties,omitempty"` } -func (o *RequestBodyPostEmptyObjectRequestBody) GetEmpty() *RequestBodyPostEmptyObjectRequestBodyEmpty { +func (o *RequestBodyPostEmptyObjectRequestBody) GetEmpty() *Empty { if o == nil { return nil } return o.Empty } -func (o *RequestBodyPostEmptyObjectRequestBody) GetEmptyWithEmptyProperties() *RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties { +func (o *RequestBodyPostEmptyObjectRequestBody) GetEmptyWithEmptyProperties() *EmptyWithEmptyProperties { if o == nil { return nil } return o.EmptyWithEmptyProperties } -type RequestBodyPostEmptyObject200ApplicationJSONEmpty struct { +type RequestBodyPostEmptyObjectEmpty struct { } -type RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies struct { +type EmptyRespWithEmptyProperies struct { } -// RequestBodyPostEmptyObject200ApplicationJSON - OK -type RequestBodyPostEmptyObject200ApplicationJSON struct { - Empty *RequestBodyPostEmptyObject200ApplicationJSONEmpty `json:"empty,omitempty"` - EmptyRespWithEmptyProperies *RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies `json:"emptyRespWithEmptyProperies,omitempty"` +// RequestBodyPostEmptyObjectResponseBody - OK +type RequestBodyPostEmptyObjectResponseBody struct { + Empty *RequestBodyPostEmptyObjectEmpty `json:"empty,omitempty"` + EmptyRespWithEmptyProperies *EmptyRespWithEmptyProperies `json:"emptyRespWithEmptyProperies,omitempty"` } -func (o *RequestBodyPostEmptyObject200ApplicationJSON) GetEmpty() *RequestBodyPostEmptyObject200ApplicationJSONEmpty { +func (o *RequestBodyPostEmptyObjectResponseBody) GetEmpty() *RequestBodyPostEmptyObjectEmpty { if o == nil { return nil } return o.Empty } -func (o *RequestBodyPostEmptyObject200ApplicationJSON) GetEmptyRespWithEmptyProperies() *RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies { +func (o *RequestBodyPostEmptyObjectResponseBody) GetEmptyRespWithEmptyProperies() *EmptyRespWithEmptyProperies { if o == nil { return nil } @@ -65,7 +65,7 @@ type RequestBodyPostEmptyObjectResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostEmptyObject200ApplicationJSONObject *RequestBodyPostEmptyObject200ApplicationJSON + Object *RequestBodyPostEmptyObjectResponseBody } func (o *RequestBodyPostEmptyObjectResponse) GetContentType() string { @@ -89,9 +89,9 @@ func (o *RequestBodyPostEmptyObjectResponse) GetRawResponse() *http.Response { return o.RawResponse } -func (o *RequestBodyPostEmptyObjectResponse) GetRequestBodyPostEmptyObject200ApplicationJSONObject() *RequestBodyPostEmptyObject200ApplicationJSON { +func (o *RequestBodyPostEmptyObjectResponse) GetObject() *RequestBodyPostEmptyObjectResponseBody { if o == nil { return nil } - return o.RequestBodyPostEmptyObject200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostformdeep.go b/go-client-sdk/pkg/models/operations/requestbodypostformdeep.go index de84d0f09..b69a695d6 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostformdeep.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostformdeep.go @@ -6,7 +6,7 @@ import ( "net/http" ) -type RequestBodyPostFormDeepResForm struct { +type Form struct { Arr string `json:"arr"` Bool string `json:"bool"` Int string `json:"int"` @@ -16,49 +16,49 @@ type RequestBodyPostFormDeepResForm struct { Str string `json:"str"` } -func (o *RequestBodyPostFormDeepResForm) GetArr() string { +func (o *Form) GetArr() string { if o == nil { return "" } return o.Arr } -func (o *RequestBodyPostFormDeepResForm) GetBool() string { +func (o *Form) GetBool() string { if o == nil { return "" } return o.Bool } -func (o *RequestBodyPostFormDeepResForm) GetInt() string { +func (o *Form) GetInt() string { if o == nil { return "" } return o.Int } -func (o *RequestBodyPostFormDeepResForm) GetMap() string { +func (o *Form) GetMap() string { if o == nil { return "" } return o.Map } -func (o *RequestBodyPostFormDeepResForm) GetNum() string { +func (o *Form) GetNum() string { if o == nil { return "" } return o.Num } -func (o *RequestBodyPostFormDeepResForm) GetObj() string { +func (o *Form) GetObj() string { if o == nil { return "" } return o.Obj } -func (o *RequestBodyPostFormDeepResForm) GetStr() string { +func (o *Form) GetStr() string { if o == nil { return "" } @@ -67,12 +67,12 @@ func (o *RequestBodyPostFormDeepResForm) GetStr() string { // RequestBodyPostFormDeepRes - OK type RequestBodyPostFormDeepRes struct { - Form RequestBodyPostFormDeepResForm `json:"form"` + Form Form `json:"form"` } -func (o *RequestBodyPostFormDeepRes) GetForm() RequestBodyPostFormDeepResForm { +func (o *RequestBodyPostFormDeepRes) GetForm() Form { if o == nil { - return RequestBodyPostFormDeepResForm{} + return Form{} } return o.Form } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostformsimple.go b/go-client-sdk/pkg/models/operations/requestbodypostformsimple.go index 48ed96056..c68e70e08 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostformsimple.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostformsimple.go @@ -6,7 +6,7 @@ import ( "net/http" ) -type RequestBodyPostFormSimpleResForm struct { +type RequestBodyPostFormSimpleForm struct { Any string `json:"any"` Bool string `json:"bool"` BoolOpt *string `json:"boolOpt,omitempty"` @@ -23,109 +23,109 @@ type RequestBodyPostFormSimpleResForm struct { StrOpt *string `json:"strOpt,omitempty"` } -func (o *RequestBodyPostFormSimpleResForm) GetAny() string { +func (o *RequestBodyPostFormSimpleForm) GetAny() string { if o == nil { return "" } return o.Any } -func (o *RequestBodyPostFormSimpleResForm) GetBool() string { +func (o *RequestBodyPostFormSimpleForm) GetBool() string { if o == nil { return "" } return o.Bool } -func (o *RequestBodyPostFormSimpleResForm) GetBoolOpt() *string { +func (o *RequestBodyPostFormSimpleForm) GetBoolOpt() *string { if o == nil { return nil } return o.BoolOpt } -func (o *RequestBodyPostFormSimpleResForm) GetDate() string { +func (o *RequestBodyPostFormSimpleForm) GetDate() string { if o == nil { return "" } return o.Date } -func (o *RequestBodyPostFormSimpleResForm) GetDateTime() string { +func (o *RequestBodyPostFormSimpleForm) GetDateTime() string { if o == nil { return "" } return o.DateTime } -func (o *RequestBodyPostFormSimpleResForm) GetEnum() string { +func (o *RequestBodyPostFormSimpleForm) GetEnum() string { if o == nil { return "" } return o.Enum } -func (o *RequestBodyPostFormSimpleResForm) GetFloat32() string { +func (o *RequestBodyPostFormSimpleForm) GetFloat32() string { if o == nil { return "" } return o.Float32 } -func (o *RequestBodyPostFormSimpleResForm) GetInt() string { +func (o *RequestBodyPostFormSimpleForm) GetInt() string { if o == nil { return "" } return o.Int } -func (o *RequestBodyPostFormSimpleResForm) GetInt32() string { +func (o *RequestBodyPostFormSimpleForm) GetInt32() string { if o == nil { return "" } return o.Int32 } -func (o *RequestBodyPostFormSimpleResForm) GetIntOptNull() *string { +func (o *RequestBodyPostFormSimpleForm) GetIntOptNull() *string { if o == nil { return nil } return o.IntOptNull } -func (o *RequestBodyPostFormSimpleResForm) GetNum() string { +func (o *RequestBodyPostFormSimpleForm) GetNum() string { if o == nil { return "" } return o.Num } -func (o *RequestBodyPostFormSimpleResForm) GetNumOptNull() *string { +func (o *RequestBodyPostFormSimpleForm) GetNumOptNull() *string { if o == nil { return nil } return o.NumOptNull } -func (o *RequestBodyPostFormSimpleResForm) GetStr() string { +func (o *RequestBodyPostFormSimpleForm) GetStr() string { if o == nil { return "" } return o.Str } -func (o *RequestBodyPostFormSimpleResForm) GetStrOpt() *string { +func (o *RequestBodyPostFormSimpleForm) GetStrOpt() *string { if o == nil { return nil } return o.StrOpt } -type RequestBodyPostFormSimpleResHeaders struct { +type RequestBodyPostFormSimpleHeaders struct { ContentType string `json:"Content-Type"` } -func (o *RequestBodyPostFormSimpleResHeaders) GetContentType() string { +func (o *RequestBodyPostFormSimpleHeaders) GetContentType() string { if o == nil { return "" } @@ -134,20 +134,20 @@ func (o *RequestBodyPostFormSimpleResHeaders) GetContentType() string { // RequestBodyPostFormSimpleRes - OK type RequestBodyPostFormSimpleRes struct { - Form RequestBodyPostFormSimpleResForm `json:"form"` - Headers RequestBodyPostFormSimpleResHeaders `json:"headers"` + Form RequestBodyPostFormSimpleForm `json:"form"` + Headers RequestBodyPostFormSimpleHeaders `json:"headers"` } -func (o *RequestBodyPostFormSimpleRes) GetForm() RequestBodyPostFormSimpleResForm { +func (o *RequestBodyPostFormSimpleRes) GetForm() RequestBodyPostFormSimpleForm { if o == nil { - return RequestBodyPostFormSimpleResForm{} + return RequestBodyPostFormSimpleForm{} } return o.Form } -func (o *RequestBodyPostFormSimpleRes) GetHeaders() RequestBodyPostFormSimpleResHeaders { +func (o *RequestBodyPostFormSimpleRes) GetHeaders() RequestBodyPostFormSimpleHeaders { if o == nil { - return RequestBodyPostFormSimpleResHeaders{} + return RequestBodyPostFormSimpleHeaders{} } return o.Headers } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraybigint.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraybigint.go index 2e3a2fbfb..d6faa3c1d 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraybigint.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraybigint.go @@ -5,34 +5,34 @@ package operations import ( "math/big" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -// RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesArrayBigIntResponseBody - OK +type RequestBodyPostJSONDataTypesArrayBigIntResponseBody struct { Data string `json:"data"` JSON []*big.Int `json:"json"` } -func (r RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesArrayBigIntResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesArrayBigIntResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesArrayBigIntResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON) GetJSON() []*big.Int { +func (o *RequestBodyPostJSONDataTypesArrayBigIntResponseBody) GetJSON() []*big.Int { if o == nil { return []*big.Int{} } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesArrayBigIntResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject *RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON + Object *RequestBodyPostJSONDataTypesArrayBigIntResponseBody } func (o *RequestBodyPostJSONDataTypesArrayBigIntResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesArrayBigIntResponse) GetRawResponse() *http return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesArrayBigIntResponse) GetRequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject() *RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesArrayBigIntResponse) GetObject() *RequestBodyPostJSONDataTypesArrayBigIntResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraydate.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraydate.go index a931b045e..5e1185839 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraydate.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraydate.go @@ -4,35 +4,35 @@ package operations import ( "net/http" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" ) -// RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesArrayDateResponseBody - OK +type RequestBodyPostJSONDataTypesArrayDateResponseBody struct { Data string `json:"data"` JSON []types.Date `json:"json"` } -func (r RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesArrayDateResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesArrayDateResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesArrayDateResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON) GetJSON() []types.Date { +func (o *RequestBodyPostJSONDataTypesArrayDateResponseBody) GetJSON() []types.Date { if o == nil { return []types.Date{} } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesArrayDateResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject *RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON + Object *RequestBodyPostJSONDataTypesArrayDateResponseBody } func (o *RequestBodyPostJSONDataTypesArrayDateResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesArrayDateResponse) GetRawResponse() *http.R return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesArrayDateResponse) GetRequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject() *RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesArrayDateResponse) GetObject() *RequestBodyPostJSONDataTypesArrayDateResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraydecimalstr.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraydecimalstr.go index f8519b168..5436ad133 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraydecimalstr.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesarraydecimalstr.go @@ -5,34 +5,34 @@ package operations import ( "github.com/ericlagergren/decimal" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -// RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody - OK +type RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody struct { Data string `json:"data"` JSON []*decimal.Big `json:"json"` } -func (r RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON) GetJSON() []*decimal.Big { +func (o *RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody) GetJSON() []*decimal.Big { if o == nil { return []*decimal.Big{} } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesArrayDecimalStrResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject *RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON + Object *RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody } func (o *RequestBodyPostJSONDataTypesArrayDecimalStrResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesArrayDecimalStrResponse) GetRawResponse() * return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesArrayDecimalStrResponse) GetRequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject() *RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesArrayDecimalStrResponse) GetObject() *RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesbigint.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesbigint.go index acc88584b..98b6b824a 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesbigint.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesbigint.go @@ -5,34 +5,34 @@ package operations import ( "math/big" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -// RequestBodyPostJSONDataTypesBigInt200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesBigInt200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesBigIntResponseBody - OK +type RequestBodyPostJSONDataTypesBigIntResponseBody struct { Data string `json:"data"` JSON *big.Int `json:"json"` } -func (r RequestBodyPostJSONDataTypesBigInt200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesBigIntResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesBigInt200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesBigIntResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesBigInt200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesBigIntResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesBigInt200ApplicationJSON) GetJSON() *big.Int { +func (o *RequestBodyPostJSONDataTypesBigIntResponseBody) GetJSON() *big.Int { if o == nil { return big.NewInt(0) } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesBigIntResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesBigInt200ApplicationJSONObject *RequestBodyPostJSONDataTypesBigInt200ApplicationJSON + Object *RequestBodyPostJSONDataTypesBigIntResponseBody } func (o *RequestBodyPostJSONDataTypesBigIntResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesBigIntResponse) GetRawResponse() *http.Resp return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesBigIntResponse) GetRequestBodyPostJSONDataTypesBigInt200ApplicationJSONObject() *RequestBodyPostJSONDataTypesBigInt200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesBigIntResponse) GetObject() *RequestBodyPostJSONDataTypesBigIntResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesBigInt200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesbigintstr.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesbigintstr.go index f3a0b6f04..0b8d3fbb0 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesbigintstr.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesbigintstr.go @@ -5,34 +5,34 @@ package operations import ( "math/big" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -// RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesBigIntStrResponseBody - OK +type RequestBodyPostJSONDataTypesBigIntStrResponseBody struct { Data string `json:"data"` JSON *big.Int `bigint:"string" json:"json"` } -func (r RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesBigIntStrResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesBigIntStrResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesBigIntStrResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON) GetJSON() *big.Int { +func (o *RequestBodyPostJSONDataTypesBigIntStrResponseBody) GetJSON() *big.Int { if o == nil { return big.NewInt(0) } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesBigIntStrResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject *RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON + Object *RequestBodyPostJSONDataTypesBigIntStrResponseBody } func (o *RequestBodyPostJSONDataTypesBigIntStrResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesBigIntStrResponse) GetRawResponse() *http.R return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesBigIntStrResponse) GetRequestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject() *RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesBigIntStrResponse) GetObject() *RequestBodyPostJSONDataTypesBigIntStrResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesboolean.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesboolean.go index 6090ac22e..87c4af3e0 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesboolean.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesboolean.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// RequestBodyPostJSONDataTypesBoolean200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesBoolean200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesBooleanResponseBody - OK +type RequestBodyPostJSONDataTypesBooleanResponseBody struct { JSON bool `json:"json"` } -func (o *RequestBodyPostJSONDataTypesBoolean200ApplicationJSON) GetJSON() bool { +func (o *RequestBodyPostJSONDataTypesBooleanResponseBody) GetJSON() bool { if o == nil { return false } @@ -26,7 +26,7 @@ type RequestBodyPostJSONDataTypesBooleanResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesBoolean200ApplicationJSONObject *RequestBodyPostJSONDataTypesBoolean200ApplicationJSON + Object *RequestBodyPostJSONDataTypesBooleanResponseBody } func (o *RequestBodyPostJSONDataTypesBooleanResponse) GetContentType() string { @@ -50,9 +50,9 @@ func (o *RequestBodyPostJSONDataTypesBooleanResponse) GetRawResponse() *http.Res return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesBooleanResponse) GetRequestBodyPostJSONDataTypesBoolean200ApplicationJSONObject() *RequestBodyPostJSONDataTypesBoolean200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesBooleanResponse) GetObject() *RequestBodyPostJSONDataTypesBooleanResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesBoolean200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdate.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdate.go index e7cf7a5ec..b56606163 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdate.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdate.go @@ -4,35 +4,35 @@ package operations import ( "net/http" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" ) -// RequestBodyPostJSONDataTypesDate200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesDate200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesDateResponseBody - OK +type RequestBodyPostJSONDataTypesDateResponseBody struct { Data string `json:"data"` JSON types.Date `json:"json"` } -func (r RequestBodyPostJSONDataTypesDate200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesDateResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesDate200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesDateResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesDate200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesDateResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesDate200ApplicationJSON) GetJSON() types.Date { +func (o *RequestBodyPostJSONDataTypesDateResponseBody) GetJSON() types.Date { if o == nil { return types.Date{} } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesDateResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesDate200ApplicationJSONObject *RequestBodyPostJSONDataTypesDate200ApplicationJSON + Object *RequestBodyPostJSONDataTypesDateResponseBody } func (o *RequestBodyPostJSONDataTypesDateResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesDateResponse) GetRawResponse() *http.Respon return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesDateResponse) GetRequestBodyPostJSONDataTypesDate200ApplicationJSONObject() *RequestBodyPostJSONDataTypesDate200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesDateResponse) GetObject() *RequestBodyPostJSONDataTypesDateResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesDate200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdatetime.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdatetime.go index a4273b9a3..663641bc1 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdatetime.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdatetime.go @@ -4,35 +4,35 @@ package operations import ( "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" "time" ) -// RequestBodyPostJSONDataTypesDateTime200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesDateTime200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesDateTimeResponseBody - OK +type RequestBodyPostJSONDataTypesDateTimeResponseBody struct { Data string `json:"data"` JSON time.Time `json:"json"` } -func (r RequestBodyPostJSONDataTypesDateTime200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesDateTimeResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesDateTime200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesDateTimeResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesDateTime200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesDateTimeResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesDateTime200ApplicationJSON) GetJSON() time.Time { +func (o *RequestBodyPostJSONDataTypesDateTimeResponseBody) GetJSON() time.Time { if o == nil { return time.Time{} } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesDateTimeResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesDateTime200ApplicationJSONObject *RequestBodyPostJSONDataTypesDateTime200ApplicationJSON + Object *RequestBodyPostJSONDataTypesDateTimeResponseBody } func (o *RequestBodyPostJSONDataTypesDateTimeResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesDateTimeResponse) GetRawResponse() *http.Re return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesDateTimeResponse) GetRequestBodyPostJSONDataTypesDateTime200ApplicationJSONObject() *RequestBodyPostJSONDataTypesDateTime200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesDateTimeResponse) GetObject() *RequestBodyPostJSONDataTypesDateTimeResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesDateTime200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdecimal.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdecimal.go index 0a658bcc6..2db38b6d2 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdecimal.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdecimal.go @@ -5,34 +5,34 @@ package operations import ( "github.com/ericlagergren/decimal" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -// RequestBodyPostJSONDataTypesDecimal200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesDecimal200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesDecimalResponseBody - OK +type RequestBodyPostJSONDataTypesDecimalResponseBody struct { Data string `json:"data"` JSON *decimal.Big `decimal:"number" json:"json"` } -func (r RequestBodyPostJSONDataTypesDecimal200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesDecimalResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesDecimal200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesDecimalResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesDecimal200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesDecimalResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesDecimal200ApplicationJSON) GetJSON() *decimal.Big { +func (o *RequestBodyPostJSONDataTypesDecimalResponseBody) GetJSON() *decimal.Big { if o == nil { return new(decimal.Big).SetFloat64(0.0) } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesDecimalResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesDecimal200ApplicationJSONObject *RequestBodyPostJSONDataTypesDecimal200ApplicationJSON + Object *RequestBodyPostJSONDataTypesDecimalResponseBody } func (o *RequestBodyPostJSONDataTypesDecimalResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesDecimalResponse) GetRawResponse() *http.Res return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesDecimalResponse) GetRequestBodyPostJSONDataTypesDecimal200ApplicationJSONObject() *RequestBodyPostJSONDataTypesDecimal200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesDecimalResponse) GetObject() *RequestBodyPostJSONDataTypesDecimalResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesDecimal200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdecimalstr.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdecimalstr.go index bf8420d4a..28c7c706f 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdecimalstr.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesdecimalstr.go @@ -5,34 +5,34 @@ package operations import ( "github.com/ericlagergren/decimal" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -// RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesDecimalStrResponseBody - OK +type RequestBodyPostJSONDataTypesDecimalStrResponseBody struct { Data string `json:"data"` JSON *decimal.Big `json:"json"` } -func (r RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesDecimalStrResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesDecimalStrResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesDecimalStrResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON) GetJSON() *decimal.Big { +func (o *RequestBodyPostJSONDataTypesDecimalStrResponseBody) GetJSON() *decimal.Big { if o == nil { return new(decimal.Big).SetFloat64(0.0) } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesDecimalStrResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject *RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON + Object *RequestBodyPostJSONDataTypesDecimalStrResponseBody } func (o *RequestBodyPostJSONDataTypesDecimalStrResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesDecimalStrResponse) GetRawResponse() *http. return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesDecimalStrResponse) GetRequestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject() *RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesDecimalStrResponse) GetObject() *RequestBodyPostJSONDataTypesDecimalStrResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesfloat32.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesfloat32.go index 194f00a94..f7aad6ca5 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesfloat32.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesfloat32.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// RequestBodyPostJSONDataTypesFloat32200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesFloat32200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesFloat32ResponseBody - OK +type RequestBodyPostJSONDataTypesFloat32ResponseBody struct { JSON float64 `json:"json"` } -func (o *RequestBodyPostJSONDataTypesFloat32200ApplicationJSON) GetJSON() float64 { +func (o *RequestBodyPostJSONDataTypesFloat32ResponseBody) GetJSON() float64 { if o == nil { return 0.0 } @@ -26,7 +26,7 @@ type RequestBodyPostJSONDataTypesFloat32Response struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesFloat32200ApplicationJSONObject *RequestBodyPostJSONDataTypesFloat32200ApplicationJSON + Object *RequestBodyPostJSONDataTypesFloat32ResponseBody } func (o *RequestBodyPostJSONDataTypesFloat32Response) GetContentType() string { @@ -50,9 +50,9 @@ func (o *RequestBodyPostJSONDataTypesFloat32Response) GetRawResponse() *http.Res return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesFloat32Response) GetRequestBodyPostJSONDataTypesFloat32200ApplicationJSONObject() *RequestBodyPostJSONDataTypesFloat32200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesFloat32Response) GetObject() *RequestBodyPostJSONDataTypesFloat32ResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesFloat32200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesint32.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesint32.go index 1b590ae29..1d3beccdf 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesint32.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesint32.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// RequestBodyPostJSONDataTypesInt32200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesInt32200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesInt32ResponseBody - OK +type RequestBodyPostJSONDataTypesInt32ResponseBody struct { JSON int `json:"json"` } -func (o *RequestBodyPostJSONDataTypesInt32200ApplicationJSON) GetJSON() int { +func (o *RequestBodyPostJSONDataTypesInt32ResponseBody) GetJSON() int { if o == nil { return 0 } @@ -26,7 +26,7 @@ type RequestBodyPostJSONDataTypesInt32Response struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesInt32200ApplicationJSONObject *RequestBodyPostJSONDataTypesInt32200ApplicationJSON + Object *RequestBodyPostJSONDataTypesInt32ResponseBody } func (o *RequestBodyPostJSONDataTypesInt32Response) GetContentType() string { @@ -50,9 +50,9 @@ func (o *RequestBodyPostJSONDataTypesInt32Response) GetRawResponse() *http.Respo return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesInt32Response) GetRequestBodyPostJSONDataTypesInt32200ApplicationJSONObject() *RequestBodyPostJSONDataTypesInt32200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesInt32Response) GetObject() *RequestBodyPostJSONDataTypesInt32ResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesInt32200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesinteger.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesinteger.go index a57713267..6a17a661a 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesinteger.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesinteger.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// RequestBodyPostJSONDataTypesInteger200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesInteger200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesIntegerResponseBody - OK +type RequestBodyPostJSONDataTypesIntegerResponseBody struct { JSON int64 `json:"json"` } -func (o *RequestBodyPostJSONDataTypesInteger200ApplicationJSON) GetJSON() int64 { +func (o *RequestBodyPostJSONDataTypesIntegerResponseBody) GetJSON() int64 { if o == nil { return 0 } @@ -26,7 +26,7 @@ type RequestBodyPostJSONDataTypesIntegerResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesInteger200ApplicationJSONObject *RequestBodyPostJSONDataTypesInteger200ApplicationJSON + Object *RequestBodyPostJSONDataTypesIntegerResponseBody } func (o *RequestBodyPostJSONDataTypesIntegerResponse) GetContentType() string { @@ -50,9 +50,9 @@ func (o *RequestBodyPostJSONDataTypesIntegerResponse) GetRawResponse() *http.Res return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesIntegerResponse) GetRequestBodyPostJSONDataTypesInteger200ApplicationJSONObject() *RequestBodyPostJSONDataTypesInteger200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesIntegerResponse) GetObject() *RequestBodyPostJSONDataTypesIntegerResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesInteger200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapbigintstr.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapbigintstr.go index f6868839f..9fb8829c5 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapbigintstr.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapbigintstr.go @@ -5,34 +5,34 @@ package operations import ( "math/big" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -// RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesMapBigIntStrResponseBody - OK +type RequestBodyPostJSONDataTypesMapBigIntStrResponseBody struct { Data string `json:"data"` JSON map[string]*big.Int `bigint:"string" json:"json"` } -func (r RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesMapBigIntStrResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesMapBigIntStrResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesMapBigIntStrResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON) GetJSON() map[string]*big.Int { +func (o *RequestBodyPostJSONDataTypesMapBigIntStrResponseBody) GetJSON() map[string]*big.Int { if o == nil { return map[string]*big.Int{} } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesMapBigIntStrResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject *RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON + Object *RequestBodyPostJSONDataTypesMapBigIntStrResponseBody } func (o *RequestBodyPostJSONDataTypesMapBigIntStrResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesMapBigIntStrResponse) GetRawResponse() *htt return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesMapBigIntStrResponse) GetRequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject() *RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesMapBigIntStrResponse) GetObject() *RequestBodyPostJSONDataTypesMapBigIntStrResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapdatetime.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapdatetime.go index 3556a18e5..cabb9541b 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapdatetime.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapdatetime.go @@ -4,35 +4,35 @@ package operations import ( "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" "time" ) -// RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesMapDateTimeResponseBody - OK +type RequestBodyPostJSONDataTypesMapDateTimeResponseBody struct { Data string `json:"data"` JSON map[string]time.Time `json:"json"` } -func (r RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesMapDateTimeResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesMapDateTimeResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesMapDateTimeResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON) GetJSON() map[string]time.Time { +func (o *RequestBodyPostJSONDataTypesMapDateTimeResponseBody) GetJSON() map[string]time.Time { if o == nil { return map[string]time.Time{} } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesMapDateTimeResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject *RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON + Object *RequestBodyPostJSONDataTypesMapDateTimeResponseBody } func (o *RequestBodyPostJSONDataTypesMapDateTimeResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesMapDateTimeResponse) GetRawResponse() *http return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesMapDateTimeResponse) GetRequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject() *RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesMapDateTimeResponse) GetObject() *RequestBodyPostJSONDataTypesMapDateTimeResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapdecimal.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapdecimal.go index 424730ed8..f0b58d4c4 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapdecimal.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesmapdecimal.go @@ -5,34 +5,34 @@ package operations import ( "github.com/ericlagergren/decimal" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -// RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesMapDecimalResponseBody - OK +type RequestBodyPostJSONDataTypesMapDecimalResponseBody struct { Data string `json:"data"` JSON map[string]*decimal.Big `decimal:"number" json:"json"` } -func (r RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON) MarshalJSON() ([]byte, error) { +func (r RequestBodyPostJSONDataTypesMapDecimalResponseBody) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } -func (r *RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON) UnmarshalJSON(data []byte) error { +func (r *RequestBodyPostJSONDataTypesMapDecimalResponseBody) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, false); err != nil { return err } return nil } -func (o *RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON) GetData() string { +func (o *RequestBodyPostJSONDataTypesMapDecimalResponseBody) GetData() string { if o == nil { return "" } return o.Data } -func (o *RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON) GetJSON() map[string]*decimal.Big { +func (o *RequestBodyPostJSONDataTypesMapDecimalResponseBody) GetJSON() map[string]*decimal.Big { if o == nil { return map[string]*decimal.Big{} } @@ -47,7 +47,7 @@ type RequestBodyPostJSONDataTypesMapDecimalResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject *RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON + Object *RequestBodyPostJSONDataTypesMapDecimalResponseBody } func (o *RequestBodyPostJSONDataTypesMapDecimalResponse) GetContentType() string { @@ -71,9 +71,9 @@ func (o *RequestBodyPostJSONDataTypesMapDecimalResponse) GetRawResponse() *http. return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesMapDecimalResponse) GetRequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject() *RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesMapDecimalResponse) GetObject() *RequestBodyPostJSONDataTypesMapDecimalResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesnumber.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesnumber.go index 6e92b154e..c4b17bd68 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesnumber.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesnumber.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// RequestBodyPostJSONDataTypesNumber200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesNumber200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesNumberResponseBody - OK +type RequestBodyPostJSONDataTypesNumberResponseBody struct { JSON float64 `json:"json"` } -func (o *RequestBodyPostJSONDataTypesNumber200ApplicationJSON) GetJSON() float64 { +func (o *RequestBodyPostJSONDataTypesNumberResponseBody) GetJSON() float64 { if o == nil { return 0.0 } @@ -26,7 +26,7 @@ type RequestBodyPostJSONDataTypesNumberResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesNumber200ApplicationJSONObject *RequestBodyPostJSONDataTypesNumber200ApplicationJSON + Object *RequestBodyPostJSONDataTypesNumberResponseBody } func (o *RequestBodyPostJSONDataTypesNumberResponse) GetContentType() string { @@ -50,9 +50,9 @@ func (o *RequestBodyPostJSONDataTypesNumberResponse) GetRawResponse() *http.Resp return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesNumberResponse) GetRequestBodyPostJSONDataTypesNumber200ApplicationJSONObject() *RequestBodyPostJSONDataTypesNumber200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesNumberResponse) GetObject() *RequestBodyPostJSONDataTypesNumberResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesNumber200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesstring.go b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesstring.go index 48d0db89e..4f3b56a2f 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesstring.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostjsondatatypesstring.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// RequestBodyPostJSONDataTypesString200ApplicationJSON - OK -type RequestBodyPostJSONDataTypesString200ApplicationJSON struct { +// RequestBodyPostJSONDataTypesStringResponseBody - OK +type RequestBodyPostJSONDataTypesStringResponseBody struct { JSON string `json:"json"` } -func (o *RequestBodyPostJSONDataTypesString200ApplicationJSON) GetJSON() string { +func (o *RequestBodyPostJSONDataTypesStringResponseBody) GetJSON() string { if o == nil { return "" } @@ -26,7 +26,7 @@ type RequestBodyPostJSONDataTypesStringResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostJSONDataTypesString200ApplicationJSONObject *RequestBodyPostJSONDataTypesString200ApplicationJSON + Object *RequestBodyPostJSONDataTypesStringResponseBody } func (o *RequestBodyPostJSONDataTypesStringResponse) GetContentType() string { @@ -50,9 +50,9 @@ func (o *RequestBodyPostJSONDataTypesStringResponse) GetRawResponse() *http.Resp return o.RawResponse } -func (o *RequestBodyPostJSONDataTypesStringResponse) GetRequestBodyPostJSONDataTypesString200ApplicationJSONObject() *RequestBodyPostJSONDataTypesString200ApplicationJSON { +func (o *RequestBodyPostJSONDataTypesStringResponse) GetObject() *RequestBodyPostJSONDataTypesStringResponseBody { if o == nil { return nil } - return o.RequestBodyPostJSONDataTypesString200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.go b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.go index 1c96e08b8..1bf92b084 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // RequestBodyPostMultipleContentTypesComponentFilteredRes - OK diff --git a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.go b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.go index ef333d792..d7d295b59 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.go @@ -6,27 +6,27 @@ import ( "net/http" ) -type RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON struct { +type RequestBodyPostMultipleContentTypesInlineFilteredRequestBody struct { Bool bool `json:"bool"` Num float64 `json:"num"` Str string `json:"str"` } -func (o *RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON) GetBool() bool { +func (o *RequestBodyPostMultipleContentTypesInlineFilteredRequestBody) GetBool() bool { if o == nil { return false } return o.Bool } -func (o *RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON) GetNum() float64 { +func (o *RequestBodyPostMultipleContentTypesInlineFilteredRequestBody) GetNum() float64 { if o == nil { return 0.0 } return o.Num } -func (o *RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON) GetStr() string { +func (o *RequestBodyPostMultipleContentTypesInlineFilteredRequestBody) GetStr() string { if o == nil { return "" } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitform.go b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitform.go index 7d8a2b09a..def06710d 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitform.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitform.go @@ -6,27 +6,27 @@ import ( "net/http" ) -type RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded struct { +type RequestBodyPostMultipleContentTypesSplitFormRequestBody struct { Bool3 bool `form:"name=bool3"` Num3 float64 `form:"name=num3"` Str3 string `form:"name=str3"` } -func (o *RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded) GetBool3() bool { +func (o *RequestBodyPostMultipleContentTypesSplitFormRequestBody) GetBool3() bool { if o == nil { return false } return o.Bool3 } -func (o *RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded) GetNum3() float64 { +func (o *RequestBodyPostMultipleContentTypesSplitFormRequestBody) GetNum3() float64 { if o == nil { return 0.0 } return o.Num3 } -func (o *RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded) GetStr3() string { +func (o *RequestBodyPostMultipleContentTypesSplitFormRequestBody) GetStr3() string { if o == nil { return "" } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitjson.go b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitjson.go index 4d0553600..a56301070 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitjson.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitjson.go @@ -6,27 +6,27 @@ import ( "net/http" ) -type RequestBodyPostMultipleContentTypesSplitApplicationJSON struct { +type RequestBodyPostMultipleContentTypesSplitJSONRequestBody struct { Bool bool `json:"bool"` Num float64 `json:"num"` Str string `json:"str"` } -func (o *RequestBodyPostMultipleContentTypesSplitApplicationJSON) GetBool() bool { +func (o *RequestBodyPostMultipleContentTypesSplitJSONRequestBody) GetBool() bool { if o == nil { return false } return o.Bool } -func (o *RequestBodyPostMultipleContentTypesSplitApplicationJSON) GetNum() float64 { +func (o *RequestBodyPostMultipleContentTypesSplitJSONRequestBody) GetNum() float64 { if o == nil { return 0.0 } return o.Num } -func (o *RequestBodyPostMultipleContentTypesSplitApplicationJSON) GetStr() string { +func (o *RequestBodyPostMultipleContentTypesSplitJSONRequestBody) GetStr() string { if o == nil { return "" } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitmultipart.go b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitmultipart.go index 627bd7545..8a837b50c 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitmultipart.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitmultipart.go @@ -6,27 +6,27 @@ import ( "net/http" ) -type RequestBodyPostMultipleContentTypesSplitMultipartFormData struct { +type RequestBodyPostMultipleContentTypesSplitMultipartRequestBody struct { Bool2 bool `multipartForm:"name=bool2"` Num2 float64 `multipartForm:"name=num2"` Str2 string `multipartForm:"name=str2"` } -func (o *RequestBodyPostMultipleContentTypesSplitMultipartFormData) GetBool2() bool { +func (o *RequestBodyPostMultipleContentTypesSplitMultipartRequestBody) GetBool2() bool { if o == nil { return false } return o.Bool2 } -func (o *RequestBodyPostMultipleContentTypesSplitMultipartFormData) GetNum2() float64 { +func (o *RequestBodyPostMultipleContentTypesSplitMultipartRequestBody) GetNum2() float64 { if o == nil { return 0.0 } return o.Num2 } -func (o *RequestBodyPostMultipleContentTypesSplitMultipartFormData) GetStr2() string { +func (o *RequestBodyPostMultipleContentTypesSplitMultipartRequestBody) GetStr2() string { if o == nil { return "" } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparamform.go b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparamform.go index 08079a7c8..743db5a8c 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparamform.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparamform.go @@ -6,27 +6,27 @@ import ( "net/http" ) -type RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded struct { +type RequestBodyPostMultipleContentTypesSplitParamFormRequestBody struct { Bool3 bool `form:"name=bool3"` Num3 float64 `form:"name=num3"` Str3 string `form:"name=str3"` } -func (o *RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded) GetBool3() bool { +func (o *RequestBodyPostMultipleContentTypesSplitParamFormRequestBody) GetBool3() bool { if o == nil { return false } return o.Bool3 } -func (o *RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded) GetNum3() float64 { +func (o *RequestBodyPostMultipleContentTypesSplitParamFormRequestBody) GetNum3() float64 { if o == nil { return 0.0 } return o.Num3 } -func (o *RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded) GetStr3() string { +func (o *RequestBodyPostMultipleContentTypesSplitParamFormRequestBody) GetStr3() string { if o == nil { return "" } @@ -34,13 +34,13 @@ func (o *RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlenco } type RequestBodyPostMultipleContentTypesSplitParamFormRequest struct { - RequestBody RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded `request:"mediaType=application/x-www-form-urlencoded"` - ParamStr string `queryParam:"style=form,explode=true,name=paramStr"` + RequestBody RequestBodyPostMultipleContentTypesSplitParamFormRequestBody `request:"mediaType=application/x-www-form-urlencoded"` + ParamStr string `queryParam:"style=form,explode=true,name=paramStr"` } -func (o *RequestBodyPostMultipleContentTypesSplitParamFormRequest) GetRequestBody() RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded { +func (o *RequestBodyPostMultipleContentTypesSplitParamFormRequest) GetRequestBody() RequestBodyPostMultipleContentTypesSplitParamFormRequestBody { if o == nil { - return RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded{} + return RequestBodyPostMultipleContentTypesSplitParamFormRequestBody{} } return o.RequestBody } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparamjson.go b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparamjson.go index af41a8a48..960ab6a75 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparamjson.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparamjson.go @@ -6,27 +6,27 @@ import ( "net/http" ) -type RequestBodyPostMultipleContentTypesSplitParamApplicationJSON struct { +type RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody struct { Bool bool `json:"bool"` Num float64 `json:"num"` Str string `json:"str"` } -func (o *RequestBodyPostMultipleContentTypesSplitParamApplicationJSON) GetBool() bool { +func (o *RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody) GetBool() bool { if o == nil { return false } return o.Bool } -func (o *RequestBodyPostMultipleContentTypesSplitParamApplicationJSON) GetNum() float64 { +func (o *RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody) GetNum() float64 { if o == nil { return 0.0 } return o.Num } -func (o *RequestBodyPostMultipleContentTypesSplitParamApplicationJSON) GetStr() string { +func (o *RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody) GetStr() string { if o == nil { return "" } @@ -34,13 +34,13 @@ func (o *RequestBodyPostMultipleContentTypesSplitParamApplicationJSON) GetStr() } type RequestBodyPostMultipleContentTypesSplitParamJSONRequest struct { - RequestBody RequestBodyPostMultipleContentTypesSplitParamApplicationJSON `request:"mediaType=application/json"` + RequestBody RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody `request:"mediaType=application/json"` ParamStr string `queryParam:"style=form,explode=true,name=paramStr"` } -func (o *RequestBodyPostMultipleContentTypesSplitParamJSONRequest) GetRequestBody() RequestBodyPostMultipleContentTypesSplitParamApplicationJSON { +func (o *RequestBodyPostMultipleContentTypesSplitParamJSONRequest) GetRequestBody() RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody { if o == nil { - return RequestBodyPostMultipleContentTypesSplitParamApplicationJSON{} + return RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody{} } return o.RequestBody } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparammultipart.go b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparammultipart.go index 4b8c71a6c..a49b8a90d 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparammultipart.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostmultiplecontenttypessplitparammultipart.go @@ -6,27 +6,27 @@ import ( "net/http" ) -type RequestBodyPostMultipleContentTypesSplitParamMultipartFormData struct { +type RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody struct { Bool2 bool `multipartForm:"name=bool2"` Num2 float64 `multipartForm:"name=num2"` Str2 string `multipartForm:"name=str2"` } -func (o *RequestBodyPostMultipleContentTypesSplitParamMultipartFormData) GetBool2() bool { +func (o *RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody) GetBool2() bool { if o == nil { return false } return o.Bool2 } -func (o *RequestBodyPostMultipleContentTypesSplitParamMultipartFormData) GetNum2() float64 { +func (o *RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody) GetNum2() float64 { if o == nil { return 0.0 } return o.Num2 } -func (o *RequestBodyPostMultipleContentTypesSplitParamMultipartFormData) GetStr2() string { +func (o *RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody) GetStr2() string { if o == nil { return "" } @@ -34,13 +34,13 @@ func (o *RequestBodyPostMultipleContentTypesSplitParamMultipartFormData) GetStr2 } type RequestBodyPostMultipleContentTypesSplitParamMultipartRequest struct { - RequestBody RequestBodyPostMultipleContentTypesSplitParamMultipartFormData `request:"mediaType=multipart/form-data"` - ParamStr string `queryParam:"style=form,explode=true,name=paramStr"` + RequestBody RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody `request:"mediaType=multipart/form-data"` + ParamStr string `queryParam:"style=form,explode=true,name=paramStr"` } -func (o *RequestBodyPostMultipleContentTypesSplitParamMultipartRequest) GetRequestBody() RequestBodyPostMultipleContentTypesSplitParamMultipartFormData { +func (o *RequestBodyPostMultipleContentTypesSplitParamMultipartRequest) GetRequestBody() RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody { if o == nil { - return RequestBodyPostMultipleContentTypesSplitParamMultipartFormData{} + return RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody{} } return o.RequestBody } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostnotnullablenotrequiredstringbody.go b/go-client-sdk/pkg/models/operations/requestbodypostnotnullablenotrequiredstringbody.go index 5c2b18b62..6e2324724 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostnotnullablenotrequiredstringbody.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostnotnullablenotrequiredstringbody.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON - OK -type RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON struct { +// RequestBodyPostNotNullableNotRequiredStringBodyResponseBody - OK +type RequestBodyPostNotNullableNotRequiredStringBodyResponseBody struct { Data string `json:"data"` } -func (o *RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON) GetData() string { +func (o *RequestBodyPostNotNullableNotRequiredStringBodyResponseBody) GetData() string { if o == nil { return "" } @@ -26,7 +26,7 @@ type RequestBodyPostNotNullableNotRequiredStringBodyResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject *RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON + Object *RequestBodyPostNotNullableNotRequiredStringBodyResponseBody } func (o *RequestBodyPostNotNullableNotRequiredStringBodyResponse) GetContentType() string { @@ -50,9 +50,9 @@ func (o *RequestBodyPostNotNullableNotRequiredStringBodyResponse) GetRawResponse return o.RawResponse } -func (o *RequestBodyPostNotNullableNotRequiredStringBodyResponse) GetRequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject() *RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON { +func (o *RequestBodyPostNotNullableNotRequiredStringBodyResponse) GetObject() *RequestBodyPostNotNullableNotRequiredStringBodyResponseBody { if o == nil { return nil } - return o.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostnullablenotrequiredstringbody.go b/go-client-sdk/pkg/models/operations/requestbodypostnullablenotrequiredstringbody.go index 663831725..1e99ec100 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostnullablenotrequiredstringbody.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostnullablenotrequiredstringbody.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON - OK -type RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON struct { +// RequestBodyPostNullableNotRequiredStringBodyResponseBody - OK +type RequestBodyPostNullableNotRequiredStringBodyResponseBody struct { Data string `json:"data"` } -func (o *RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON) GetData() string { +func (o *RequestBodyPostNullableNotRequiredStringBodyResponseBody) GetData() string { if o == nil { return "" } @@ -26,7 +26,7 @@ type RequestBodyPostNullableNotRequiredStringBodyResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject *RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON + Object *RequestBodyPostNullableNotRequiredStringBodyResponseBody } func (o *RequestBodyPostNullableNotRequiredStringBodyResponse) GetContentType() string { @@ -50,9 +50,9 @@ func (o *RequestBodyPostNullableNotRequiredStringBodyResponse) GetRawResponse() return o.RawResponse } -func (o *RequestBodyPostNullableNotRequiredStringBodyResponse) GetRequestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject() *RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON { +func (o *RequestBodyPostNullableNotRequiredStringBodyResponse) GetObject() *RequestBodyPostNullableNotRequiredStringBodyResponseBody { if o == nil { return nil } - return o.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostnullablerequiredstringbody.go b/go-client-sdk/pkg/models/operations/requestbodypostnullablerequiredstringbody.go index f9934ca61..ad170eb53 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostnullablerequiredstringbody.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostnullablerequiredstringbody.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// RequestBodyPostNullableRequiredStringBody200ApplicationJSON - OK -type RequestBodyPostNullableRequiredStringBody200ApplicationJSON struct { +// RequestBodyPostNullableRequiredStringBodyResponseBody - OK +type RequestBodyPostNullableRequiredStringBodyResponseBody struct { Data string `json:"data"` } -func (o *RequestBodyPostNullableRequiredStringBody200ApplicationJSON) GetData() string { +func (o *RequestBodyPostNullableRequiredStringBodyResponseBody) GetData() string { if o == nil { return "" } @@ -26,7 +26,7 @@ type RequestBodyPostNullableRequiredStringBodyResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostNullableRequiredStringBody200ApplicationJSONObject *RequestBodyPostNullableRequiredStringBody200ApplicationJSON + Object *RequestBodyPostNullableRequiredStringBodyResponseBody } func (o *RequestBodyPostNullableRequiredStringBodyResponse) GetContentType() string { @@ -50,9 +50,9 @@ func (o *RequestBodyPostNullableRequiredStringBodyResponse) GetRawResponse() *ht return o.RawResponse } -func (o *RequestBodyPostNullableRequiredStringBodyResponse) GetRequestBodyPostNullableRequiredStringBody200ApplicationJSONObject() *RequestBodyPostNullableRequiredStringBody200ApplicationJSON { +func (o *RequestBodyPostNullableRequiredStringBodyResponse) GetObject() *RequestBodyPostNullableRequiredStringBodyResponseBody { if o == nil { return nil } - return o.RequestBodyPostNullableRequiredStringBody200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostnullarray.go b/go-client-sdk/pkg/models/operations/requestbodypostnullarray.go index 3cb027b17..6a1a0db1f 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostnullarray.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostnullarray.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// RequestBodyPostNullArray200ApplicationJSON - OK -type RequestBodyPostNullArray200ApplicationJSON struct { +// RequestBodyPostNullArrayResponseBody - OK +type RequestBodyPostNullArrayResponseBody struct { Data string `json:"data"` } -func (o *RequestBodyPostNullArray200ApplicationJSON) GetData() string { +func (o *RequestBodyPostNullArrayResponseBody) GetData() string { if o == nil { return "" } @@ -26,7 +26,7 @@ type RequestBodyPostNullArrayResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostNullArray200ApplicationJSONObject *RequestBodyPostNullArray200ApplicationJSON + Object *RequestBodyPostNullArrayResponseBody } func (o *RequestBodyPostNullArrayResponse) GetContentType() string { @@ -50,9 +50,9 @@ func (o *RequestBodyPostNullArrayResponse) GetRawResponse() *http.Response { return o.RawResponse } -func (o *RequestBodyPostNullArrayResponse) GetRequestBodyPostNullArray200ApplicationJSONObject() *RequestBodyPostNullArray200ApplicationJSON { +func (o *RequestBodyPostNullArrayResponse) GetObject() *RequestBodyPostNullArrayResponseBody { if o == nil { return nil } - return o.RequestBodyPostNullArray200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodypostnulldictionary.go b/go-client-sdk/pkg/models/operations/requestbodypostnulldictionary.go index 074172de5..5ad66131b 100755 --- a/go-client-sdk/pkg/models/operations/requestbodypostnulldictionary.go +++ b/go-client-sdk/pkg/models/operations/requestbodypostnulldictionary.go @@ -6,12 +6,12 @@ import ( "net/http" ) -// RequestBodyPostNullDictionary200ApplicationJSON - OK -type RequestBodyPostNullDictionary200ApplicationJSON struct { +// RequestBodyPostNullDictionaryResponseBody - OK +type RequestBodyPostNullDictionaryResponseBody struct { Data string `json:"data"` } -func (o *RequestBodyPostNullDictionary200ApplicationJSON) GetData() string { +func (o *RequestBodyPostNullDictionaryResponseBody) GetData() string { if o == nil { return "" } @@ -26,7 +26,7 @@ type RequestBodyPostNullDictionaryResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - RequestBodyPostNullDictionary200ApplicationJSONObject *RequestBodyPostNullDictionary200ApplicationJSON + Object *RequestBodyPostNullDictionaryResponseBody } func (o *RequestBodyPostNullDictionaryResponse) GetContentType() string { @@ -50,9 +50,9 @@ func (o *RequestBodyPostNullDictionaryResponse) GetRawResponse() *http.Response return o.RawResponse } -func (o *RequestBodyPostNullDictionaryResponse) GetRequestBodyPostNullDictionary200ApplicationJSONObject() *RequestBodyPostNullDictionary200ApplicationJSON { +func (o *RequestBodyPostNullDictionaryResponse) GetObject() *RequestBodyPostNullDictionaryResponseBody { if o == nil { return nil } - return o.RequestBodyPostNullDictionary200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/requestbodyputbyteswithparams.go b/go-client-sdk/pkg/models/operations/requestbodyputbyteswithparams.go index 53812f4d8..ffefaeba1 100755 --- a/go-client-sdk/pkg/models/operations/requestbodyputbyteswithparams.go +++ b/go-client-sdk/pkg/models/operations/requestbodyputbyteswithparams.go @@ -25,11 +25,11 @@ func (o *RequestBodyPutBytesWithParamsRequest) GetQueryStringParam() string { return o.QueryStringParam } -type RequestBodyPutBytesWithParamsResArgs struct { +type RequestBodyPutBytesWithParamsArgs struct { QueryStringParam string `json:"queryStringParam"` } -func (o *RequestBodyPutBytesWithParamsResArgs) GetQueryStringParam() string { +func (o *RequestBodyPutBytesWithParamsArgs) GetQueryStringParam() string { if o == nil { return "" } @@ -38,13 +38,13 @@ func (o *RequestBodyPutBytesWithParamsResArgs) GetQueryStringParam() string { // RequestBodyPutBytesWithParamsRes - OK type RequestBodyPutBytesWithParamsRes struct { - Args RequestBodyPutBytesWithParamsResArgs `json:"args"` - Data string `json:"data"` + Args RequestBodyPutBytesWithParamsArgs `json:"args"` + Data string `json:"data"` } -func (o *RequestBodyPutBytesWithParamsRes) GetArgs() RequestBodyPutBytesWithParamsResArgs { +func (o *RequestBodyPutBytesWithParamsRes) GetArgs() RequestBodyPutBytesWithParamsArgs { if o == nil { - return RequestBodyPutBytesWithParamsResArgs{} + return RequestBodyPutBytesWithParamsArgs{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/requestbodyputmultipartdeep.go b/go-client-sdk/pkg/models/operations/requestbodyputmultipartdeep.go index 2617a6c58..115f0598d 100755 --- a/go-client-sdk/pkg/models/operations/requestbodyputmultipartdeep.go +++ b/go-client-sdk/pkg/models/operations/requestbodyputmultipartdeep.go @@ -6,7 +6,7 @@ import ( "net/http" ) -type RequestBodyPutMultipartDeepResForm struct { +type RequestBodyPutMultipartDeepForm struct { Arr string `json:"arr"` Bool string `json:"bool"` Int string `json:"int"` @@ -16,49 +16,49 @@ type RequestBodyPutMultipartDeepResForm struct { Str string `json:"str"` } -func (o *RequestBodyPutMultipartDeepResForm) GetArr() string { +func (o *RequestBodyPutMultipartDeepForm) GetArr() string { if o == nil { return "" } return o.Arr } -func (o *RequestBodyPutMultipartDeepResForm) GetBool() string { +func (o *RequestBodyPutMultipartDeepForm) GetBool() string { if o == nil { return "" } return o.Bool } -func (o *RequestBodyPutMultipartDeepResForm) GetInt() string { +func (o *RequestBodyPutMultipartDeepForm) GetInt() string { if o == nil { return "" } return o.Int } -func (o *RequestBodyPutMultipartDeepResForm) GetMap() string { +func (o *RequestBodyPutMultipartDeepForm) GetMap() string { if o == nil { return "" } return o.Map } -func (o *RequestBodyPutMultipartDeepResForm) GetNum() string { +func (o *RequestBodyPutMultipartDeepForm) GetNum() string { if o == nil { return "" } return o.Num } -func (o *RequestBodyPutMultipartDeepResForm) GetObj() string { +func (o *RequestBodyPutMultipartDeepForm) GetObj() string { if o == nil { return "" } return o.Obj } -func (o *RequestBodyPutMultipartDeepResForm) GetStr() string { +func (o *RequestBodyPutMultipartDeepForm) GetStr() string { if o == nil { return "" } @@ -67,12 +67,12 @@ func (o *RequestBodyPutMultipartDeepResForm) GetStr() string { // RequestBodyPutMultipartDeepRes - OK type RequestBodyPutMultipartDeepRes struct { - Form RequestBodyPutMultipartDeepResForm `json:"form"` + Form RequestBodyPutMultipartDeepForm `json:"form"` } -func (o *RequestBodyPutMultipartDeepRes) GetForm() RequestBodyPutMultipartDeepResForm { +func (o *RequestBodyPutMultipartDeepRes) GetForm() RequestBodyPutMultipartDeepForm { if o == nil { - return RequestBodyPutMultipartDeepResForm{} + return RequestBodyPutMultipartDeepForm{} } return o.Form } diff --git a/go-client-sdk/pkg/models/operations/requestbodyputmultipartdifferentfilename.go b/go-client-sdk/pkg/models/operations/requestbodyputmultipartdifferentfilename.go index ca3dafe5e..d64a00a32 100755 --- a/go-client-sdk/pkg/models/operations/requestbodyputmultipartdifferentfilename.go +++ b/go-client-sdk/pkg/models/operations/requestbodyputmultipartdifferentfilename.go @@ -6,30 +6,30 @@ import ( "net/http" ) -type RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName struct { - Content []byte `multipartForm:"content"` - DifferentFileName string `multipartForm:"name=differentFileName"` +type DifferentFileName struct { + Content []byte `multipartForm:"content"` + FileName string `multipartForm:"name=differentFileName"` } -func (o *RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName) GetContent() []byte { +func (o *DifferentFileName) GetContent() []byte { if o == nil { return []byte{} } return o.Content } -func (o *RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName) GetDifferentFileName() string { +func (o *DifferentFileName) GetFileName() string { if o == nil { return "" } - return o.DifferentFileName + return o.FileName } type RequestBodyPutMultipartDifferentFileNameRequestBody struct { - DifferentFileName *RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName `multipartForm:"file"` + DifferentFileName *DifferentFileName `multipartForm:"file"` } -func (o *RequestBodyPutMultipartDifferentFileNameRequestBody) GetDifferentFileName() *RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName { +func (o *RequestBodyPutMultipartDifferentFileNameRequestBody) GetDifferentFileName() *DifferentFileName { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/operations/requestbodyputmultipartfile.go b/go-client-sdk/pkg/models/operations/requestbodyputmultipartfile.go index 354712b17..358343d36 100755 --- a/go-client-sdk/pkg/models/operations/requestbodyputmultipartfile.go +++ b/go-client-sdk/pkg/models/operations/requestbodyputmultipartfile.go @@ -6,30 +6,30 @@ import ( "net/http" ) -type RequestBodyPutMultipartFileRequestBodyFile struct { - Content []byte `multipartForm:"content"` - File string `multipartForm:"name=file"` +type File struct { + Content []byte `multipartForm:"content"` + FileName string `multipartForm:"name=file"` } -func (o *RequestBodyPutMultipartFileRequestBodyFile) GetContent() []byte { +func (o *File) GetContent() []byte { if o == nil { return []byte{} } return o.Content } -func (o *RequestBodyPutMultipartFileRequestBodyFile) GetFile() string { +func (o *File) GetFileName() string { if o == nil { return "" } - return o.File + return o.FileName } type RequestBodyPutMultipartFileRequestBody struct { - File *RequestBodyPutMultipartFileRequestBodyFile `multipartForm:"file"` + File *File `multipartForm:"file"` } -func (o *RequestBodyPutMultipartFileRequestBody) GetFile() *RequestBodyPutMultipartFileRequestBodyFile { +func (o *RequestBodyPutMultipartFileRequestBody) GetFile() *File { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/operations/requestbodyputmultipartsimple.go b/go-client-sdk/pkg/models/operations/requestbodyputmultipartsimple.go index 6ef762ded..b59a036cc 100755 --- a/go-client-sdk/pkg/models/operations/requestbodyputmultipartsimple.go +++ b/go-client-sdk/pkg/models/operations/requestbodyputmultipartsimple.go @@ -6,7 +6,7 @@ import ( "net/http" ) -type RequestBodyPutMultipartSimpleResForm struct { +type RequestBodyPutMultipartSimpleForm struct { Any string `json:"any"` Bool string `json:"bool"` BoolOpt *string `json:"boolOpt,omitempty"` @@ -23,109 +23,109 @@ type RequestBodyPutMultipartSimpleResForm struct { StrOpt *string `json:"strOpt,omitempty"` } -func (o *RequestBodyPutMultipartSimpleResForm) GetAny() string { +func (o *RequestBodyPutMultipartSimpleForm) GetAny() string { if o == nil { return "" } return o.Any } -func (o *RequestBodyPutMultipartSimpleResForm) GetBool() string { +func (o *RequestBodyPutMultipartSimpleForm) GetBool() string { if o == nil { return "" } return o.Bool } -func (o *RequestBodyPutMultipartSimpleResForm) GetBoolOpt() *string { +func (o *RequestBodyPutMultipartSimpleForm) GetBoolOpt() *string { if o == nil { return nil } return o.BoolOpt } -func (o *RequestBodyPutMultipartSimpleResForm) GetDate() string { +func (o *RequestBodyPutMultipartSimpleForm) GetDate() string { if o == nil { return "" } return o.Date } -func (o *RequestBodyPutMultipartSimpleResForm) GetDateTime() string { +func (o *RequestBodyPutMultipartSimpleForm) GetDateTime() string { if o == nil { return "" } return o.DateTime } -func (o *RequestBodyPutMultipartSimpleResForm) GetEnum() string { +func (o *RequestBodyPutMultipartSimpleForm) GetEnum() string { if o == nil { return "" } return o.Enum } -func (o *RequestBodyPutMultipartSimpleResForm) GetFloat32() string { +func (o *RequestBodyPutMultipartSimpleForm) GetFloat32() string { if o == nil { return "" } return o.Float32 } -func (o *RequestBodyPutMultipartSimpleResForm) GetInt() string { +func (o *RequestBodyPutMultipartSimpleForm) GetInt() string { if o == nil { return "" } return o.Int } -func (o *RequestBodyPutMultipartSimpleResForm) GetInt32() string { +func (o *RequestBodyPutMultipartSimpleForm) GetInt32() string { if o == nil { return "" } return o.Int32 } -func (o *RequestBodyPutMultipartSimpleResForm) GetIntOptNull() *string { +func (o *RequestBodyPutMultipartSimpleForm) GetIntOptNull() *string { if o == nil { return nil } return o.IntOptNull } -func (o *RequestBodyPutMultipartSimpleResForm) GetNum() string { +func (o *RequestBodyPutMultipartSimpleForm) GetNum() string { if o == nil { return "" } return o.Num } -func (o *RequestBodyPutMultipartSimpleResForm) GetNumOptNull() *string { +func (o *RequestBodyPutMultipartSimpleForm) GetNumOptNull() *string { if o == nil { return nil } return o.NumOptNull } -func (o *RequestBodyPutMultipartSimpleResForm) GetStr() string { +func (o *RequestBodyPutMultipartSimpleForm) GetStr() string { if o == nil { return "" } return o.Str } -func (o *RequestBodyPutMultipartSimpleResForm) GetStrOpt() *string { +func (o *RequestBodyPutMultipartSimpleForm) GetStrOpt() *string { if o == nil { return nil } return o.StrOpt } -type RequestBodyPutMultipartSimpleResHeaders struct { +type RequestBodyPutMultipartSimpleHeaders struct { ContentType string `json:"Content-Type"` } -func (o *RequestBodyPutMultipartSimpleResHeaders) GetContentType() string { +func (o *RequestBodyPutMultipartSimpleHeaders) GetContentType() string { if o == nil { return "" } @@ -134,20 +134,20 @@ func (o *RequestBodyPutMultipartSimpleResHeaders) GetContentType() string { // RequestBodyPutMultipartSimpleRes - OK type RequestBodyPutMultipartSimpleRes struct { - Form RequestBodyPutMultipartSimpleResForm `json:"form"` - Headers RequestBodyPutMultipartSimpleResHeaders `json:"headers"` + Form RequestBodyPutMultipartSimpleForm `json:"form"` + Headers RequestBodyPutMultipartSimpleHeaders `json:"headers"` } -func (o *RequestBodyPutMultipartSimpleRes) GetForm() RequestBodyPutMultipartSimpleResForm { +func (o *RequestBodyPutMultipartSimpleRes) GetForm() RequestBodyPutMultipartSimpleForm { if o == nil { - return RequestBodyPutMultipartSimpleResForm{} + return RequestBodyPutMultipartSimpleForm{} } return o.Form } -func (o *RequestBodyPutMultipartSimpleRes) GetHeaders() RequestBodyPutMultipartSimpleResHeaders { +func (o *RequestBodyPutMultipartSimpleRes) GetHeaders() RequestBodyPutMultipartSimpleHeaders { if o == nil { - return RequestBodyPutMultipartSimpleResHeaders{} + return RequestBodyPutMultipartSimpleHeaders{} } return o.Headers } diff --git a/go-client-sdk/pkg/models/operations/requestbodyputstringwithparams.go b/go-client-sdk/pkg/models/operations/requestbodyputstringwithparams.go index 293bf0be5..7162cc2f4 100755 --- a/go-client-sdk/pkg/models/operations/requestbodyputstringwithparams.go +++ b/go-client-sdk/pkg/models/operations/requestbodyputstringwithparams.go @@ -25,11 +25,11 @@ func (o *RequestBodyPutStringWithParamsRequest) GetQueryStringParam() string { return o.QueryStringParam } -type RequestBodyPutStringWithParamsResArgs struct { +type RequestBodyPutStringWithParamsArgs struct { QueryStringParam string `json:"queryStringParam"` } -func (o *RequestBodyPutStringWithParamsResArgs) GetQueryStringParam() string { +func (o *RequestBodyPutStringWithParamsArgs) GetQueryStringParam() string { if o == nil { return "" } @@ -38,13 +38,13 @@ func (o *RequestBodyPutStringWithParamsResArgs) GetQueryStringParam() string { // RequestBodyPutStringWithParamsRes - OK type RequestBodyPutStringWithParamsRes struct { - Args RequestBodyPutStringWithParamsResArgs `json:"args"` - Data string `json:"data"` + Args RequestBodyPutStringWithParamsArgs `json:"args"` + Data string `json:"data"` } -func (o *RequestBodyPutStringWithParamsRes) GetArgs() RequestBodyPutStringWithParamsResArgs { +func (o *RequestBodyPutStringWithParamsRes) GetArgs() RequestBodyPutStringWithParamsArgs { if o == nil { - return RequestBodyPutStringWithParamsResArgs{} + return RequestBodyPutStringWithParamsArgs{} } return o.Args } diff --git a/go-client-sdk/pkg/models/operations/requestbodyreadandwrite.go b/go-client-sdk/pkg/models/operations/requestbodyreadandwrite.go index dd6215a96..859d24d2b 100755 --- a/go-client-sdk/pkg/models/operations/requestbodyreadandwrite.go +++ b/go-client-sdk/pkg/models/operations/requestbodyreadandwrite.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyReadAndWriteServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodyreadonlyinput.go b/go-client-sdk/pkg/models/operations/requestbodyreadonlyinput.go index 016b7d3e2..fca4e7a19 100755 --- a/go-client-sdk/pkg/models/operations/requestbodyreadonlyinput.go +++ b/go-client-sdk/pkg/models/operations/requestbodyreadonlyinput.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyReadOnlyInputServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodyreadonlyunion.go b/go-client-sdk/pkg/models/operations/requestbodyreadonlyunion.go index a8b46e334..180d02f66 100755 --- a/go-client-sdk/pkg/models/operations/requestbodyreadonlyunion.go +++ b/go-client-sdk/pkg/models/operations/requestbodyreadonlyunion.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyReadOnlyUnionServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodyreadwriteonlyunion.go b/go-client-sdk/pkg/models/operations/requestbodyreadwriteonlyunion.go index aca4400cc..8cd121848 100755 --- a/go-client-sdk/pkg/models/operations/requestbodyreadwriteonlyunion.go +++ b/go-client-sdk/pkg/models/operations/requestbodyreadwriteonlyunion.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyReadWriteOnlyUnionServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodywriteonly.go b/go-client-sdk/pkg/models/operations/requestbodywriteonly.go index 71e724b2f..3b38658e2 100755 --- a/go-client-sdk/pkg/models/operations/requestbodywriteonly.go +++ b/go-client-sdk/pkg/models/operations/requestbodywriteonly.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyWriteOnlyServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodywriteonlyoutput.go b/go-client-sdk/pkg/models/operations/requestbodywriteonlyoutput.go index b85e7d785..b3636d150 100755 --- a/go-client-sdk/pkg/models/operations/requestbodywriteonlyoutput.go +++ b/go-client-sdk/pkg/models/operations/requestbodywriteonlyoutput.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyWriteOnlyOutputServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/requestbodywriteonlyunion.go b/go-client-sdk/pkg/models/operations/requestbodywriteonlyunion.go index d3630fdae..2e7ee864d 100755 --- a/go-client-sdk/pkg/models/operations/requestbodywriteonlyunion.go +++ b/go-client-sdk/pkg/models/operations/requestbodywriteonlyunion.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var RequestBodyWriteOnlyUnionServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiescomplexnumberspost.go b/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiescomplexnumberspost.go index 0dec0fb78..46476aec3 100755 --- a/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiescomplexnumberspost.go +++ b/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiescomplexnumberspost.go @@ -4,15 +4,15 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -// ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON - OK -type ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON struct { +// ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody - OK +type ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody struct { JSON shared.ObjWithComplexNumbersAdditionalProperties `json:"json"` } -func (o *ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON) GetJSON() shared.ObjWithComplexNumbersAdditionalProperties { +func (o *ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody) GetJSON() shared.ObjWithComplexNumbersAdditionalProperties { if o == nil { return shared.ObjWithComplexNumbersAdditionalProperties{} } @@ -27,7 +27,7 @@ type ResponseBodyAdditionalPropertiesComplexNumbersPostResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject *ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON + Object *ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody } func (o *ResponseBodyAdditionalPropertiesComplexNumbersPostResponse) GetContentType() string { @@ -51,9 +51,9 @@ func (o *ResponseBodyAdditionalPropertiesComplexNumbersPostResponse) GetRawRespo return o.RawResponse } -func (o *ResponseBodyAdditionalPropertiesComplexNumbersPostResponse) GetResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject() *ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON { +func (o *ResponseBodyAdditionalPropertiesComplexNumbersPostResponse) GetObject() *ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody { if o == nil { return nil } - return o.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiesdatepost.go b/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiesdatepost.go index dae9d91d9..871938eff 100755 --- a/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiesdatepost.go +++ b/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiesdatepost.go @@ -4,15 +4,15 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -// ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON - OK -type ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON struct { +// ResponseBodyAdditionalPropertiesDatePostResponseBody - OK +type ResponseBodyAdditionalPropertiesDatePostResponseBody struct { JSON shared.ObjWithDateAdditionalProperties `json:"json"` } -func (o *ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON) GetJSON() shared.ObjWithDateAdditionalProperties { +func (o *ResponseBodyAdditionalPropertiesDatePostResponseBody) GetJSON() shared.ObjWithDateAdditionalProperties { if o == nil { return shared.ObjWithDateAdditionalProperties{} } @@ -27,7 +27,7 @@ type ResponseBodyAdditionalPropertiesDatePostResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - ResponseBodyAdditionalPropertiesDatePost200ApplicationJSONObject *ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON + Object *ResponseBodyAdditionalPropertiesDatePostResponseBody } func (o *ResponseBodyAdditionalPropertiesDatePostResponse) GetContentType() string { @@ -51,9 +51,9 @@ func (o *ResponseBodyAdditionalPropertiesDatePostResponse) GetRawResponse() *htt return o.RawResponse } -func (o *ResponseBodyAdditionalPropertiesDatePostResponse) GetResponseBodyAdditionalPropertiesDatePost200ApplicationJSONObject() *ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON { +func (o *ResponseBodyAdditionalPropertiesDatePostResponse) GetObject() *ResponseBodyAdditionalPropertiesDatePostResponseBody { if o == nil { return nil } - return o.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiesobjectpost.go b/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiesobjectpost.go index 45d0740a6..1873f216d 100755 --- a/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiesobjectpost.go +++ b/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiesobjectpost.go @@ -4,15 +4,15 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -// ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON - OK -type ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON struct { +// ResponseBodyAdditionalPropertiesObjectPostResponseBody - OK +type ResponseBodyAdditionalPropertiesObjectPostResponseBody struct { JSON shared.ObjWithObjAdditionalProperties `json:"json"` } -func (o *ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON) GetJSON() shared.ObjWithObjAdditionalProperties { +func (o *ResponseBodyAdditionalPropertiesObjectPostResponseBody) GetJSON() shared.ObjWithObjAdditionalProperties { if o == nil { return shared.ObjWithObjAdditionalProperties{} } @@ -27,7 +27,7 @@ type ResponseBodyAdditionalPropertiesObjectPostResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject *ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON + Object *ResponseBodyAdditionalPropertiesObjectPostResponseBody } func (o *ResponseBodyAdditionalPropertiesObjectPostResponse) GetContentType() string { @@ -51,9 +51,9 @@ func (o *ResponseBodyAdditionalPropertiesObjectPostResponse) GetRawResponse() *h return o.RawResponse } -func (o *ResponseBodyAdditionalPropertiesObjectPostResponse) GetResponseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject() *ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON { +func (o *ResponseBodyAdditionalPropertiesObjectPostResponse) GetObject() *ResponseBodyAdditionalPropertiesObjectPostResponseBody { if o == nil { return nil } - return o.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiespost.go b/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiespost.go index 236399b61..09d278935 100755 --- a/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiespost.go +++ b/go-client-sdk/pkg/models/operations/responsebodyadditionalpropertiespost.go @@ -4,15 +4,15 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -// ResponseBodyAdditionalPropertiesPost200ApplicationJSON - OK -type ResponseBodyAdditionalPropertiesPost200ApplicationJSON struct { +// ResponseBodyAdditionalPropertiesPostResponseBody - OK +type ResponseBodyAdditionalPropertiesPostResponseBody struct { JSON shared.ObjWithStringAdditionalProperties `json:"json"` } -func (o *ResponseBodyAdditionalPropertiesPost200ApplicationJSON) GetJSON() shared.ObjWithStringAdditionalProperties { +func (o *ResponseBodyAdditionalPropertiesPostResponseBody) GetJSON() shared.ObjWithStringAdditionalProperties { if o == nil { return shared.ObjWithStringAdditionalProperties{} } @@ -27,7 +27,7 @@ type ResponseBodyAdditionalPropertiesPostResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - ResponseBodyAdditionalPropertiesPost200ApplicationJSONObject *ResponseBodyAdditionalPropertiesPost200ApplicationJSON + Object *ResponseBodyAdditionalPropertiesPostResponseBody } func (o *ResponseBodyAdditionalPropertiesPostResponse) GetContentType() string { @@ -51,9 +51,9 @@ func (o *ResponseBodyAdditionalPropertiesPostResponse) GetRawResponse() *http.Re return o.RawResponse } -func (o *ResponseBodyAdditionalPropertiesPostResponse) GetResponseBodyAdditionalPropertiesPost200ApplicationJSONObject() *ResponseBodyAdditionalPropertiesPost200ApplicationJSON { +func (o *ResponseBodyAdditionalPropertiesPostResponse) GetObject() *ResponseBodyAdditionalPropertiesPostResponseBody { if o == nil { return nil } - return o.ResponseBodyAdditionalPropertiesPost200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/responsebodyjsonget.go b/go-client-sdk/pkg/models/operations/responsebodyjsonget.go index b409809c7..073623c2d 100755 --- a/go-client-sdk/pkg/models/operations/responsebodyjsonget.go +++ b/go-client-sdk/pkg/models/operations/responsebodyjsonget.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type ResponseBodyJSONGetResponse struct { diff --git a/go-client-sdk/pkg/models/operations/responsebodyoptionalget.go b/go-client-sdk/pkg/models/operations/responsebodyoptionalget.go index 6c547ec4c..a9ee8e5d3 100755 --- a/go-client-sdk/pkg/models/operations/responsebodyoptionalget.go +++ b/go-client-sdk/pkg/models/operations/responsebodyoptionalget.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var ResponseBodyOptionalGetServerList = []string{ @@ -19,7 +19,7 @@ type ResponseBodyOptionalGetResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - ResponseBodyOptionalGet200TextPlainString *string + Res *string // OK TypedObject1 *shared.TypedObject1 } @@ -45,11 +45,11 @@ func (o *ResponseBodyOptionalGetResponse) GetRawResponse() *http.Response { return o.RawResponse } -func (o *ResponseBodyOptionalGetResponse) GetResponseBodyOptionalGet200TextPlainString() *string { +func (o *ResponseBodyOptionalGetResponse) GetRes() *string { if o == nil { return nil } - return o.ResponseBodyOptionalGet200TextPlainString + return o.Res } func (o *ResponseBodyOptionalGetResponse) GetTypedObject1() *shared.TypedObject1 { diff --git a/go-client-sdk/pkg/models/operations/responsebodyreadonly.go b/go-client-sdk/pkg/models/operations/responsebodyreadonly.go index 0178b1449..03223ef6e 100755 --- a/go-client-sdk/pkg/models/operations/responsebodyreadonly.go +++ b/go-client-sdk/pkg/models/operations/responsebodyreadonly.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) var ResponseBodyReadOnlyServerList = []string{ diff --git a/go-client-sdk/pkg/models/operations/responsebodyzerovaluecomplextypeptrspost.go b/go-client-sdk/pkg/models/operations/responsebodyzerovaluecomplextypeptrspost.go index fdfc61d97..75b76a410 100755 --- a/go-client-sdk/pkg/models/operations/responsebodyzerovaluecomplextypeptrspost.go +++ b/go-client-sdk/pkg/models/operations/responsebodyzerovaluecomplextypeptrspost.go @@ -4,15 +4,15 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) -// ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON - OK -type ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON struct { +// ResponseBodyZeroValueComplexTypePtrsPostResponseBody - OK +type ResponseBodyZeroValueComplexTypePtrsPostResponseBody struct { JSON shared.ObjWithZeroValueComplexTypePtrs `json:"json"` } -func (o *ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON) GetJSON() shared.ObjWithZeroValueComplexTypePtrs { +func (o *ResponseBodyZeroValueComplexTypePtrsPostResponseBody) GetJSON() shared.ObjWithZeroValueComplexTypePtrs { if o == nil { return shared.ObjWithZeroValueComplexTypePtrs{} } @@ -27,7 +27,7 @@ type ResponseBodyZeroValueComplexTypePtrsPostResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK - ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject *ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON + Object *ResponseBodyZeroValueComplexTypePtrsPostResponseBody } func (o *ResponseBodyZeroValueComplexTypePtrsPostResponse) GetContentType() string { @@ -51,9 +51,9 @@ func (o *ResponseBodyZeroValueComplexTypePtrsPostResponse) GetRawResponse() *htt return o.RawResponse } -func (o *ResponseBodyZeroValueComplexTypePtrsPostResponse) GetResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject() *ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON { +func (o *ResponseBodyZeroValueComplexTypePtrsPostResponse) GetObject() *ResponseBodyZeroValueComplexTypePtrsPostResponseBody { if o == nil { return nil } - return o.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/simplepathparameterobjects.go b/go-client-sdk/pkg/models/operations/simplepathparameterobjects.go index 8e27e243e..e8301d71c 100755 --- a/go-client-sdk/pkg/models/operations/simplepathparameterobjects.go +++ b/go-client-sdk/pkg/models/operations/simplepathparameterobjects.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) type SimplePathParameterObjectsRequest struct { diff --git a/go-client-sdk/pkg/models/operations/stronglytypedoneofpost.go b/go-client-sdk/pkg/models/operations/stronglytypedoneofpost.go index 1b3fe8951..572808474 100755 --- a/go-client-sdk/pkg/models/operations/stronglytypedoneofpost.go +++ b/go-client-sdk/pkg/models/operations/stronglytypedoneofpost.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // StronglyTypedOneOfPostRes - OK diff --git a/go-client-sdk/pkg/models/operations/typedobjectnullableoneofpost.go b/go-client-sdk/pkg/models/operations/typedobjectnullableoneofpost.go index 4bd8187bd..fb136d5d8 100755 --- a/go-client-sdk/pkg/models/operations/typedobjectnullableoneofpost.go +++ b/go-client-sdk/pkg/models/operations/typedobjectnullableoneofpost.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // TypedObjectNullableOneOfPostRes - OK diff --git a/go-client-sdk/pkg/models/operations/typedobjectoneofpost.go b/go-client-sdk/pkg/models/operations/typedobjectoneofpost.go index fca711a73..a0ac0e6c6 100755 --- a/go-client-sdk/pkg/models/operations/typedobjectoneofpost.go +++ b/go-client-sdk/pkg/models/operations/typedobjectoneofpost.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // TypedObjectOneOfPostRes - OK diff --git a/go-client-sdk/pkg/models/operations/typedparametergenerationget.go b/go-client-sdk/pkg/models/operations/typedparametergenerationget.go index 5ebfa3637..b203038e5 100755 --- a/go-client-sdk/pkg/models/operations/typedparametergenerationget.go +++ b/go-client-sdk/pkg/models/operations/typedparametergenerationget.go @@ -6,31 +6,31 @@ import ( "github.com/ericlagergren/decimal" "math/big" "net/http" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" ) -type TypedParameterGenerationGetObj struct { +type Obj struct { Bool bool `queryParam:"name=bool"` Num float64 `queryParam:"name=num"` Str string `queryParam:"name=str"` } -func (o *TypedParameterGenerationGetObj) GetBool() bool { +func (o *Obj) GetBool() bool { if o == nil { return false } return o.Bool } -func (o *TypedParameterGenerationGetObj) GetNum() float64 { +func (o *Obj) GetNum() float64 { if o == nil { return 0.0 } return o.Num } -func (o *TypedParameterGenerationGetObj) GetStr() string { +func (o *Obj) GetStr() string { if o == nil { return "" } @@ -38,10 +38,10 @@ func (o *TypedParameterGenerationGetObj) GetStr() string { } type TypedParameterGenerationGetRequest struct { - Bigint *big.Int `queryParam:"style=form,explode=true,name=bigint"` - Date *types.Date `queryParam:"style=form,explode=true,name=date"` - Decimal *decimal.Big `decimal:"number" queryParam:"style=form,explode=true,name=decimal"` - Obj *TypedParameterGenerationGetObj `queryParam:"style=form,explode=true,name=obj"` + Bigint *big.Int `queryParam:"style=form,explode=true,name=bigint"` + Date *types.Date `queryParam:"style=form,explode=true,name=date"` + Decimal *decimal.Big `decimal:"number" queryParam:"style=form,explode=true,name=decimal"` + Obj *Obj `queryParam:"style=form,explode=true,name=obj"` } func (t TypedParameterGenerationGetRequest) MarshalJSON() ([]byte, error) { @@ -76,7 +76,7 @@ func (o *TypedParameterGenerationGetRequest) GetDecimal() *decimal.Big { return o.Decimal } -func (o *TypedParameterGenerationGetRequest) GetObj() *TypedParameterGenerationGetObj { +func (o *TypedParameterGenerationGetRequest) GetObj() *Obj { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/operations/unionbigintdecimal.go b/go-client-sdk/pkg/models/operations/unionbigintdecimal.go index d60befd6a..a08b5dcd8 100755 --- a/go-client-sdk/pkg/models/operations/unionbigintdecimal.go +++ b/go-client-sdk/pkg/models/operations/unionbigintdecimal.go @@ -7,7 +7,7 @@ import ( "github.com/ericlagergren/decimal" "math/big" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type UnionBigIntDecimalRequestBodyType string @@ -73,58 +73,58 @@ func (u UnionBigIntDecimalRequestBody) MarshalJSON() ([]byte, error) { return nil, errors.New("could not marshal union type: all fields are null") } -type UnionBigIntDecimalResJSONType string +type UnionBigIntDecimalJSONType string const ( - UnionBigIntDecimalResJSONTypeBigint UnionBigIntDecimalResJSONType = "bigint" - UnionBigIntDecimalResJSONTypeDecimal UnionBigIntDecimalResJSONType = "decimal" + UnionBigIntDecimalJSONTypeBigint UnionBigIntDecimalJSONType = "bigint" + UnionBigIntDecimalJSONTypeDecimal UnionBigIntDecimalJSONType = "decimal" ) -type UnionBigIntDecimalResJSON struct { +type UnionBigIntDecimalJSON struct { Bigint *big.Int Decimal *decimal.Big - Type UnionBigIntDecimalResJSONType + Type UnionBigIntDecimalJSONType } -func CreateUnionBigIntDecimalResJSONBigint(bigint *big.Int) UnionBigIntDecimalResJSON { - typ := UnionBigIntDecimalResJSONTypeBigint +func CreateUnionBigIntDecimalJSONBigint(bigint *big.Int) UnionBigIntDecimalJSON { + typ := UnionBigIntDecimalJSONTypeBigint - return UnionBigIntDecimalResJSON{ + return UnionBigIntDecimalJSON{ Bigint: bigint, Type: typ, } } -func CreateUnionBigIntDecimalResJSONDecimal(decimal *decimal.Big) UnionBigIntDecimalResJSON { - typ := UnionBigIntDecimalResJSONTypeDecimal +func CreateUnionBigIntDecimalJSONDecimal(decimal *decimal.Big) UnionBigIntDecimalJSON { + typ := UnionBigIntDecimalJSONTypeDecimal - return UnionBigIntDecimalResJSON{ + return UnionBigIntDecimalJSON{ Decimal: decimal, Type: typ, } } -func (u *UnionBigIntDecimalResJSON) UnmarshalJSON(data []byte) error { +func (u *UnionBigIntDecimalJSON) UnmarshalJSON(data []byte) error { bigint := big.NewInt(0) if err := utils.UnmarshalJSON(data, &bigint, `bigint:"string"`, true, true); err == nil { u.Bigint = bigint - u.Type = UnionBigIntDecimalResJSONTypeBigint + u.Type = UnionBigIntDecimalJSONTypeBigint return nil } decimal := new(decimal.Big).SetFloat64(0.0) if err := utils.UnmarshalJSON(data, &decimal, `decimal:"number"`, true, true); err == nil { u.Decimal = decimal - u.Type = UnionBigIntDecimalResJSONTypeDecimal + u.Type = UnionBigIntDecimalJSONTypeDecimal return nil } return errors.New("could not unmarshal into supported union types") } -func (u UnionBigIntDecimalResJSON) MarshalJSON() ([]byte, error) { +func (u UnionBigIntDecimalJSON) MarshalJSON() ([]byte, error) { if u.Bigint != nil { return utils.MarshalJSON(u.Bigint, `bigint:"string"`, true) } @@ -138,12 +138,12 @@ func (u UnionBigIntDecimalResJSON) MarshalJSON() ([]byte, error) { // UnionBigIntDecimalRes - OK type UnionBigIntDecimalRes struct { - JSON UnionBigIntDecimalResJSON `json:"json"` + JSON UnionBigIntDecimalJSON `json:"json"` } -func (o *UnionBigIntDecimalRes) GetJSON() UnionBigIntDecimalResJSON { +func (o *UnionBigIntDecimalRes) GetJSON() UnionBigIntDecimalJSON { if o == nil { - return UnionBigIntDecimalResJSON{} + return UnionBigIntDecimalJSON{} } return o.JSON } diff --git a/go-client-sdk/pkg/models/operations/uniondatenull.go b/go-client-sdk/pkg/models/operations/uniondatenull.go index 35f5b2638..ac798332f 100755 --- a/go-client-sdk/pkg/models/operations/uniondatenull.go +++ b/go-client-sdk/pkg/models/operations/uniondatenull.go @@ -4,8 +4,8 @@ package operations import ( "net/http" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" ) // UnionDateNullRes - OK diff --git a/go-client-sdk/pkg/models/operations/uniondatetimebigint.go b/go-client-sdk/pkg/models/operations/uniondatetimebigint.go index 97ce367c7..4bd3b0a9c 100755 --- a/go-client-sdk/pkg/models/operations/uniondatetimebigint.go +++ b/go-client-sdk/pkg/models/operations/uniondatetimebigint.go @@ -6,7 +6,7 @@ import ( "errors" "math/big" "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" "time" ) @@ -73,58 +73,58 @@ func (u UnionDateTimeBigIntRequestBody) MarshalJSON() ([]byte, error) { return nil, errors.New("could not marshal union type: all fields are null") } -type UnionDateTimeBigIntResJSONType string +type UnionDateTimeBigIntJSONType string const ( - UnionDateTimeBigIntResJSONTypeDateTime UnionDateTimeBigIntResJSONType = "date-time" - UnionDateTimeBigIntResJSONTypeBigint UnionDateTimeBigIntResJSONType = "bigint" + UnionDateTimeBigIntJSONTypeDateTime UnionDateTimeBigIntJSONType = "date-time" + UnionDateTimeBigIntJSONTypeBigint UnionDateTimeBigIntJSONType = "bigint" ) -type UnionDateTimeBigIntResJSON struct { +type UnionDateTimeBigIntJSON struct { DateTime *time.Time Bigint *big.Int - Type UnionDateTimeBigIntResJSONType + Type UnionDateTimeBigIntJSONType } -func CreateUnionDateTimeBigIntResJSONDateTime(dateTime time.Time) UnionDateTimeBigIntResJSON { - typ := UnionDateTimeBigIntResJSONTypeDateTime +func CreateUnionDateTimeBigIntJSONDateTime(dateTime time.Time) UnionDateTimeBigIntJSON { + typ := UnionDateTimeBigIntJSONTypeDateTime - return UnionDateTimeBigIntResJSON{ + return UnionDateTimeBigIntJSON{ DateTime: &dateTime, Type: typ, } } -func CreateUnionDateTimeBigIntResJSONBigint(bigint *big.Int) UnionDateTimeBigIntResJSON { - typ := UnionDateTimeBigIntResJSONTypeBigint +func CreateUnionDateTimeBigIntJSONBigint(bigint *big.Int) UnionDateTimeBigIntJSON { + typ := UnionDateTimeBigIntJSONTypeBigint - return UnionDateTimeBigIntResJSON{ + return UnionDateTimeBigIntJSON{ Bigint: bigint, Type: typ, } } -func (u *UnionDateTimeBigIntResJSON) UnmarshalJSON(data []byte) error { +func (u *UnionDateTimeBigIntJSON) UnmarshalJSON(data []byte) error { dateTime := time.Time{} if err := utils.UnmarshalJSON(data, &dateTime, "", true, true); err == nil { u.DateTime = &dateTime - u.Type = UnionDateTimeBigIntResJSONTypeDateTime + u.Type = UnionDateTimeBigIntJSONTypeDateTime return nil } bigint := big.NewInt(0) if err := utils.UnmarshalJSON(data, &bigint, "", true, true); err == nil { u.Bigint = bigint - u.Type = UnionDateTimeBigIntResJSONTypeBigint + u.Type = UnionDateTimeBigIntJSONTypeBigint return nil } return errors.New("could not unmarshal into supported union types") } -func (u UnionDateTimeBigIntResJSON) MarshalJSON() ([]byte, error) { +func (u UnionDateTimeBigIntJSON) MarshalJSON() ([]byte, error) { if u.DateTime != nil { return utils.MarshalJSON(u.DateTime, "", true) } @@ -138,12 +138,12 @@ func (u UnionDateTimeBigIntResJSON) MarshalJSON() ([]byte, error) { // UnionDateTimeBigIntRes - OK type UnionDateTimeBigIntRes struct { - JSON UnionDateTimeBigIntResJSON `json:"json"` + JSON UnionDateTimeBigIntJSON `json:"json"` } -func (o *UnionDateTimeBigIntRes) GetJSON() UnionDateTimeBigIntResJSON { +func (o *UnionDateTimeBigIntRes) GetJSON() UnionDateTimeBigIntJSON { if o == nil { - return UnionDateTimeBigIntResJSON{} + return UnionDateTimeBigIntJSON{} } return o.JSON } diff --git a/go-client-sdk/pkg/models/operations/uniondatetimenull.go b/go-client-sdk/pkg/models/operations/uniondatetimenull.go index 8667f25dd..6d7f8638b 100755 --- a/go-client-sdk/pkg/models/operations/uniondatetimenull.go +++ b/go-client-sdk/pkg/models/operations/uniondatetimenull.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" "time" ) diff --git a/go-client-sdk/pkg/models/operations/usageexamplepost.go b/go-client-sdk/pkg/models/operations/usageexamplepost.go index 28ebbd5ea..b168c801f 100755 --- a/go-client-sdk/pkg/models/operations/usageexamplepost.go +++ b/go-client-sdk/pkg/models/operations/usageexamplepost.go @@ -8,9 +8,9 @@ import ( "github.com/ericlagergren/decimal" "math/big" "net/http" - "openapi/pkg/models/shared" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" "time" ) @@ -64,20 +64,20 @@ func (o *UsageExamplePostRequestBody) GetSimpleObject() *shared.SimpleObject { return o.SimpleObject } -// UsageExamplePostEnumParameter - An enum type -type UsageExamplePostEnumParameter string +// EnumParameter - An enum type +type EnumParameter string const ( - UsageExamplePostEnumParameterValue1 UsageExamplePostEnumParameter = "value1" - UsageExamplePostEnumParameterValue2 UsageExamplePostEnumParameter = "value2" - UsageExamplePostEnumParameterValue3 UsageExamplePostEnumParameter = "value3" + EnumParameterValue1 EnumParameter = "value1" + EnumParameterValue2 EnumParameter = "value2" + EnumParameterValue3 EnumParameter = "value3" ) -func (e UsageExamplePostEnumParameter) ToPointer() *UsageExamplePostEnumParameter { +func (e EnumParameter) ToPointer() *EnumParameter { return &e } -func (e *UsageExamplePostEnumParameter) UnmarshalJSON(data []byte) error { +func (e *EnumParameter) UnmarshalJSON(data []byte) error { var v string if err := json.Unmarshal(data, &v); err != nil { return err @@ -88,27 +88,27 @@ func (e *UsageExamplePostEnumParameter) UnmarshalJSON(data []byte) error { case "value2": fallthrough case "value3": - *e = UsageExamplePostEnumParameter(v) + *e = EnumParameter(v) return nil default: - return fmt.Errorf("invalid value for UsageExamplePostEnumParameter: %v", v) + return fmt.Errorf("invalid value for EnumParameter: %v", v) } } -// UsageExamplePostOptEnumParameter - An enum type -type UsageExamplePostOptEnumParameter string +// OptEnumParameter - An enum type +type OptEnumParameter string const ( - UsageExamplePostOptEnumParameterValue1 UsageExamplePostOptEnumParameter = "value1" - UsageExamplePostOptEnumParameterValue2 UsageExamplePostOptEnumParameter = "value2" - UsageExamplePostOptEnumParameterValue3 UsageExamplePostOptEnumParameter = "value3" + OptEnumParameterValue1 OptEnumParameter = "value1" + OptEnumParameterValue2 OptEnumParameter = "value2" + OptEnumParameterValue3 OptEnumParameter = "value3" ) -func (e UsageExamplePostOptEnumParameter) ToPointer() *UsageExamplePostOptEnumParameter { +func (e OptEnumParameter) ToPointer() *OptEnumParameter { return &e } -func (e *UsageExamplePostOptEnumParameter) UnmarshalJSON(data []byte) error { +func (e *OptEnumParameter) UnmarshalJSON(data []byte) error { var v string if err := json.Unmarshal(data, &v); err != nil { return err @@ -119,10 +119,10 @@ func (e *UsageExamplePostOptEnumParameter) UnmarshalJSON(data []byte) error { case "value2": fallthrough case "value3": - *e = UsageExamplePostOptEnumParameter(v) + *e = OptEnumParameter(v) return nil default: - return fmt.Errorf("invalid value for UsageExamplePostOptEnumParameter: %v", v) + return fmt.Errorf("invalid value for OptEnumParameter: %v", v) } } @@ -156,7 +156,7 @@ type UsageExamplePostRequest struct { // A double parameter DoubleParameter float64 `queryParam:"style=form,explode=true,name=doubleParameter"` // An enum parameter - EnumParameter UsageExamplePostEnumParameter `queryParam:"style=form,explode=true,name=enumParameter"` + EnumParameter EnumParameter `queryParam:"style=form,explode=true,name=enumParameter"` // A number parameter that contains a falsey example value FalseyNumberParameter float64 `queryParam:"style=form,explode=true,name=falseyNumberParameter"` // A float32 parameter @@ -168,7 +168,7 @@ type UsageExamplePostRequest struct { // An integer parameter IntParameter int `queryParam:"style=form,explode=true,name=intParameter"` // An enum parameter - OptEnumParameter *UsageExamplePostOptEnumParameter `queryParam:"style=form,explode=true,name=optEnumParameter"` + OptEnumParameter *OptEnumParameter `queryParam:"style=form,explode=true,name=optEnumParameter"` // A string parameter StrParameter string `queryParam:"style=form,explode=true,name=strParameter"` } @@ -282,9 +282,9 @@ func (o *UsageExamplePostRequest) GetDoubleParameter() float64 { return o.DoubleParameter } -func (o *UsageExamplePostRequest) GetEnumParameter() UsageExamplePostEnumParameter { +func (o *UsageExamplePostRequest) GetEnumParameter() EnumParameter { if o == nil { - return UsageExamplePostEnumParameter("") + return EnumParameter("") } return o.EnumParameter } @@ -324,7 +324,7 @@ func (o *UsageExamplePostRequest) GetIntParameter() int { return o.IntParameter } -func (o *UsageExamplePostRequest) GetOptEnumParameter() *UsageExamplePostOptEnumParameter { +func (o *UsageExamplePostRequest) GetOptEnumParameter() *OptEnumParameter { if o == nil { return nil } @@ -338,7 +338,7 @@ func (o *UsageExamplePostRequest) GetStrParameter() string { return o.StrParameter } -type UsageExamplePost200ApplicationJSONJSON struct { +type UsageExamplePostJSON struct { // A set of strings with format values that lead to relevant examples being generated for them FakerFormattedStrings *shared.FakerFormattedStrings `json:"fakerFormattedStrings,omitempty"` // A set of strings with fieldnames that lead to relevant examples being generated for them @@ -347,35 +347,35 @@ type UsageExamplePost200ApplicationJSONJSON struct { SimpleObject *shared.SimpleObject `json:"simpleObject,omitempty"` } -func (o *UsageExamplePost200ApplicationJSONJSON) GetFakerFormattedStrings() *shared.FakerFormattedStrings { +func (o *UsageExamplePostJSON) GetFakerFormattedStrings() *shared.FakerFormattedStrings { if o == nil { return nil } return o.FakerFormattedStrings } -func (o *UsageExamplePost200ApplicationJSONJSON) GetFakerStrings() *shared.FakerStrings { +func (o *UsageExamplePostJSON) GetFakerStrings() *shared.FakerStrings { if o == nil { return nil } return o.FakerStrings } -func (o *UsageExamplePost200ApplicationJSONJSON) GetSimpleObject() *shared.SimpleObject { +func (o *UsageExamplePostJSON) GetSimpleObject() *shared.SimpleObject { if o == nil { return nil } return o.SimpleObject } -// UsageExamplePost200ApplicationJSON - A response body that contains the simpleObject sent in the request body -type UsageExamplePost200ApplicationJSON struct { - JSON UsageExamplePost200ApplicationJSONJSON `json:"json"` +// UsageExamplePostResponseBody - A response body that contains the simpleObject sent in the request body +type UsageExamplePostResponseBody struct { + JSON UsageExamplePostJSON `json:"json"` } -func (o *UsageExamplePost200ApplicationJSON) GetJSON() UsageExamplePost200ApplicationJSONJSON { +func (o *UsageExamplePostResponseBody) GetJSON() UsageExamplePostJSON { if o == nil { - return UsageExamplePost200ApplicationJSONJSON{} + return UsageExamplePostJSON{} } return o.JSON } @@ -388,7 +388,7 @@ type UsageExamplePostResponse struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // A successful response that contains the simpleObject sent in the request body - UsageExamplePost200ApplicationJSONObject *UsageExamplePost200ApplicationJSON + Object *UsageExamplePostResponseBody } func (o *UsageExamplePostResponse) GetContentType() string { @@ -412,9 +412,9 @@ func (o *UsageExamplePostResponse) GetRawResponse() *http.Response { return o.RawResponse } -func (o *UsageExamplePostResponse) GetUsageExamplePost200ApplicationJSONObject() *UsageExamplePost200ApplicationJSON { +func (o *UsageExamplePostResponse) GetObject() *UsageExamplePostResponseBody { if o == nil { return nil } - return o.UsageExamplePost200ApplicationJSONObject + return o.Object } diff --git a/go-client-sdk/pkg/models/operations/weaklytypedoneofpost.go b/go-client-sdk/pkg/models/operations/weaklytypedoneofpost.go index f3c566572..3fd6cdfca 100755 --- a/go-client-sdk/pkg/models/operations/weaklytypedoneofpost.go +++ b/go-client-sdk/pkg/models/operations/weaklytypedoneofpost.go @@ -4,7 +4,7 @@ package operations import ( "net/http" - "openapi/pkg/models/shared" + "openapi/v2/pkg/models/shared" ) // WeaklyTypedOneOfPostRes - OK diff --git a/go-client-sdk/pkg/models/sdkerrors/statusgetxspeakeasyerrors.go b/go-client-sdk/pkg/models/sdkerrors/statusgetxspeakeasyerrors.go index 6d1745600..6e9d9e324 100755 --- a/go-client-sdk/pkg/models/sdkerrors/statusgetxspeakeasyerrors.go +++ b/go-client-sdk/pkg/models/sdkerrors/statusgetxspeakeasyerrors.go @@ -7,8 +7,8 @@ import ( "net/http" ) -// StatusGetXSpeakeasyErrors501ApplicationJSON - Not Implemented -type StatusGetXSpeakeasyErrors501ApplicationJSON struct { +// StatusGetXSpeakeasyErrorsResponseBody - Not Implemented +type StatusGetXSpeakeasyErrorsResponseBody struct { // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response `json:"-"` Code *string `json:"code,omitempty"` @@ -16,9 +16,9 @@ type StatusGetXSpeakeasyErrors501ApplicationJSON struct { Type *ErrorType `json:"type,omitempty"` } -var _ error = &StatusGetXSpeakeasyErrors501ApplicationJSON{} +var _ error = &StatusGetXSpeakeasyErrorsResponseBody{} -func (e *StatusGetXSpeakeasyErrors501ApplicationJSON) Error() string { +func (e *StatusGetXSpeakeasyErrorsResponseBody) Error() string { data, _ := json.Marshal(e) return string(data) } diff --git a/go-client-sdk/pkg/models/shared/authservicerequestbody.go b/go-client-sdk/pkg/models/shared/authservicerequestbody.go index 67c2f8476..e1eda6fed 100755 --- a/go-client-sdk/pkg/models/shared/authservicerequestbody.go +++ b/go-client-sdk/pkg/models/shared/authservicerequestbody.go @@ -2,38 +2,38 @@ package shared -type AuthServiceRequestBodyBasicAuth struct { +type BasicAuth struct { Password string `json:"password"` Username string `json:"username"` } -func (o *AuthServiceRequestBodyBasicAuth) GetPassword() string { +func (o *BasicAuth) GetPassword() string { if o == nil { return "" } return o.Password } -func (o *AuthServiceRequestBodyBasicAuth) GetUsername() string { +func (o *BasicAuth) GetUsername() string { if o == nil { return "" } return o.Username } -type AuthServiceRequestBodyHeaderAuth struct { +type HeaderAuth struct { ExpectedValue string `json:"expectedValue"` HeaderName string `json:"headerName"` } -func (o *AuthServiceRequestBodyHeaderAuth) GetExpectedValue() string { +func (o *HeaderAuth) GetExpectedValue() string { if o == nil { return "" } return o.ExpectedValue } -func (o *AuthServiceRequestBodyHeaderAuth) GetHeaderName() string { +func (o *HeaderAuth) GetHeaderName() string { if o == nil { return "" } @@ -41,18 +41,18 @@ func (o *AuthServiceRequestBodyHeaderAuth) GetHeaderName() string { } type AuthServiceRequestBody struct { - BasicAuth *AuthServiceRequestBodyBasicAuth `json:"basicAuth,omitempty"` - HeaderAuth []AuthServiceRequestBodyHeaderAuth `json:"headerAuth,omitempty"` + BasicAuth *BasicAuth `json:"basicAuth,omitempty"` + HeaderAuth []HeaderAuth `json:"headerAuth,omitempty"` } -func (o *AuthServiceRequestBody) GetBasicAuth() *AuthServiceRequestBodyBasicAuth { +func (o *AuthServiceRequestBody) GetBasicAuth() *BasicAuth { if o == nil { return nil } return o.BasicAuth } -func (o *AuthServiceRequestBody) GetHeaderAuth() []AuthServiceRequestBodyHeaderAuth { +func (o *AuthServiceRequestBody) GetHeaderAuth() []HeaderAuth { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/shared/complexnumbertypes.go b/go-client-sdk/pkg/models/shared/complexnumbertypes.go index 0a161534a..0b44b1e2a 100755 --- a/go-client-sdk/pkg/models/shared/complexnumbertypes.go +++ b/go-client-sdk/pkg/models/shared/complexnumbertypes.go @@ -5,7 +5,7 @@ package shared import ( "github.com/ericlagergren/decimal" "math/big" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type ComplexNumberTypes struct { diff --git a/go-client-sdk/pkg/models/shared/deepobject.go b/go-client-sdk/pkg/models/shared/deepobject.go index 854808cff..2a2620b8f 100755 --- a/go-client-sdk/pkg/models/shared/deepobject.go +++ b/go-client-sdk/pkg/models/shared/deepobject.go @@ -4,61 +4,61 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -type DeepObjectAnyType string +type AnyType string const ( - DeepObjectAnyTypeSimpleObject DeepObjectAnyType = "simpleObject" - DeepObjectAnyTypeStr DeepObjectAnyType = "str" + AnyTypeSimpleObject AnyType = "simpleObject" + AnyTypeStr AnyType = "str" ) -type DeepObjectAny struct { +type Any struct { SimpleObject *SimpleObject Str *string - Type DeepObjectAnyType + Type AnyType } -func CreateDeepObjectAnySimpleObject(simpleObject SimpleObject) DeepObjectAny { - typ := DeepObjectAnyTypeSimpleObject +func CreateAnySimpleObject(simpleObject SimpleObject) Any { + typ := AnyTypeSimpleObject - return DeepObjectAny{ + return Any{ SimpleObject: &simpleObject, Type: typ, } } -func CreateDeepObjectAnyStr(str string) DeepObjectAny { - typ := DeepObjectAnyTypeStr +func CreateAnyStr(str string) Any { + typ := AnyTypeStr - return DeepObjectAny{ + return Any{ Str: &str, Type: typ, } } -func (u *DeepObjectAny) UnmarshalJSON(data []byte) error { +func (u *Any) UnmarshalJSON(data []byte) error { simpleObject := SimpleObject{} if err := utils.UnmarshalJSON(data, &simpleObject, "", true, true); err == nil { u.SimpleObject = &simpleObject - u.Type = DeepObjectAnyTypeSimpleObject + u.Type = AnyTypeSimpleObject return nil } str := "" if err := utils.UnmarshalJSON(data, &str, "", true, true); err == nil { u.Str = &str - u.Type = DeepObjectAnyTypeStr + u.Type = AnyTypeStr return nil } return errors.New("could not unmarshal into supported union types") } -func (u DeepObjectAny) MarshalJSON() ([]byte, error) { +func (u Any) MarshalJSON() ([]byte, error) { if u.SimpleObject != nil { return utils.MarshalJSON(u.SimpleObject, "", true) } @@ -71,7 +71,7 @@ func (u DeepObjectAny) MarshalJSON() ([]byte, error) { } type DeepObject struct { - Any DeepObjectAny `json:"any" form:"name=any,json" multipartForm:"name=any,json"` + Any Any `json:"any" form:"name=any,json" multipartForm:"name=any,json"` Arr []SimpleObject `json:"arr" form:"name=arr,json" multipartForm:"name=arr,json"` Bool bool `json:"bool" form:"name=bool" multipartForm:"name=bool"` Int int64 `json:"int" form:"name=int" multipartForm:"name=int"` @@ -83,9 +83,9 @@ type DeepObject struct { Type *string `json:"type,omitempty" form:"name=type" multipartForm:"name=type"` } -func (o *DeepObject) GetAny() DeepObjectAny { +func (o *DeepObject) GetAny() Any { if o == nil { - return DeepObjectAny{} + return Any{} } return o.Any } diff --git a/go-client-sdk/pkg/models/shared/deepobjectcamelcase.go b/go-client-sdk/pkg/models/shared/deepobjectcamelcase.go index 3a66b2cc4..fe54a60d9 100755 --- a/go-client-sdk/pkg/models/shared/deepobjectcamelcase.go +++ b/go-client-sdk/pkg/models/shared/deepobjectcamelcase.go @@ -4,61 +4,61 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -type DeepObjectCamelCaseAnyValType string +type AnyValType string const ( - DeepObjectCamelCaseAnyValTypeSimpleObjectCamelCase DeepObjectCamelCaseAnyValType = "simpleObjectCamelCase" - DeepObjectCamelCaseAnyValTypeStr DeepObjectCamelCaseAnyValType = "str" + AnyValTypeSimpleObjectCamelCase AnyValType = "simpleObjectCamelCase" + AnyValTypeStr AnyValType = "str" ) -type DeepObjectCamelCaseAnyVal struct { +type AnyVal struct { SimpleObjectCamelCase *SimpleObjectCamelCase Str *string - Type DeepObjectCamelCaseAnyValType + Type AnyValType } -func CreateDeepObjectCamelCaseAnyValSimpleObjectCamelCase(simpleObjectCamelCase SimpleObjectCamelCase) DeepObjectCamelCaseAnyVal { - typ := DeepObjectCamelCaseAnyValTypeSimpleObjectCamelCase +func CreateAnyValSimpleObjectCamelCase(simpleObjectCamelCase SimpleObjectCamelCase) AnyVal { + typ := AnyValTypeSimpleObjectCamelCase - return DeepObjectCamelCaseAnyVal{ + return AnyVal{ SimpleObjectCamelCase: &simpleObjectCamelCase, Type: typ, } } -func CreateDeepObjectCamelCaseAnyValStr(str string) DeepObjectCamelCaseAnyVal { - typ := DeepObjectCamelCaseAnyValTypeStr +func CreateAnyValStr(str string) AnyVal { + typ := AnyValTypeStr - return DeepObjectCamelCaseAnyVal{ + return AnyVal{ Str: &str, Type: typ, } } -func (u *DeepObjectCamelCaseAnyVal) UnmarshalJSON(data []byte) error { +func (u *AnyVal) UnmarshalJSON(data []byte) error { simpleObjectCamelCase := SimpleObjectCamelCase{} if err := utils.UnmarshalJSON(data, &simpleObjectCamelCase, "", true, true); err == nil { u.SimpleObjectCamelCase = &simpleObjectCamelCase - u.Type = DeepObjectCamelCaseAnyValTypeSimpleObjectCamelCase + u.Type = AnyValTypeSimpleObjectCamelCase return nil } str := "" if err := utils.UnmarshalJSON(data, &str, "", true, true); err == nil { u.Str = &str - u.Type = DeepObjectCamelCaseAnyValTypeStr + u.Type = AnyValTypeStr return nil } return errors.New("could not unmarshal into supported union types") } -func (u DeepObjectCamelCaseAnyVal) MarshalJSON() ([]byte, error) { +func (u AnyVal) MarshalJSON() ([]byte, error) { if u.SimpleObjectCamelCase != nil { return utils.MarshalJSON(u.SimpleObjectCamelCase, "", true) } @@ -71,7 +71,7 @@ func (u DeepObjectCamelCaseAnyVal) MarshalJSON() ([]byte, error) { } type DeepObjectCamelCase struct { - AnyVal DeepObjectCamelCaseAnyVal `json:"any_val"` + AnyVal AnyVal `json:"any_val"` ArrVal []SimpleObjectCamelCase `json:"arr_val"` BoolVal bool `json:"bool_val"` IntVal int64 `json:"int_val"` @@ -83,9 +83,9 @@ type DeepObjectCamelCase struct { Type *string `json:"type,omitempty"` } -func (o *DeepObjectCamelCase) GetAnyVal() DeepObjectCamelCaseAnyVal { +func (o *DeepObjectCamelCase) GetAnyVal() AnyVal { if o == nil { - return DeepObjectCamelCaseAnyVal{} + return AnyVal{} } return o.AnyVal } diff --git a/go-client-sdk/pkg/models/shared/deepobjectwithtype.go b/go-client-sdk/pkg/models/shared/deepobjectwithtype.go index 297184c6b..d78d888a7 100755 --- a/go-client-sdk/pkg/models/shared/deepobjectwithtype.go +++ b/go-client-sdk/pkg/models/shared/deepobjectwithtype.go @@ -4,7 +4,7 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type DeepObjectWithTypeAnyType string diff --git a/go-client-sdk/pkg/models/shared/defaultsandconsts.go b/go-client-sdk/pkg/models/shared/defaultsandconsts.go index e6da42fdc..092417ed2 100755 --- a/go-client-sdk/pkg/models/shared/defaultsandconsts.go +++ b/go-client-sdk/pkg/models/shared/defaultsandconsts.go @@ -7,24 +7,24 @@ import ( "fmt" "github.com/ericlagergren/decimal" "math/big" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" "time" ) -type DefaultsAndConstsConstEnumInt int64 +type ConstEnumInt int64 const ( - DefaultsAndConstsConstEnumIntOne DefaultsAndConstsConstEnumInt = 1 - DefaultsAndConstsConstEnumIntTwo DefaultsAndConstsConstEnumInt = 2 - DefaultsAndConstsConstEnumIntThree DefaultsAndConstsConstEnumInt = 3 + ConstEnumIntOne ConstEnumInt = 1 + ConstEnumIntTwo ConstEnumInt = 2 + ConstEnumIntThree ConstEnumInt = 3 ) -func (e DefaultsAndConstsConstEnumInt) ToPointer() *DefaultsAndConstsConstEnumInt { +func (e ConstEnumInt) ToPointer() *ConstEnumInt { return &e } -func (e *DefaultsAndConstsConstEnumInt) UnmarshalJSON(data []byte) error { +func (e *ConstEnumInt) UnmarshalJSON(data []byte) error { var v int64 if err := json.Unmarshal(data, &v); err != nil { return err @@ -35,26 +35,26 @@ func (e *DefaultsAndConstsConstEnumInt) UnmarshalJSON(data []byte) error { case 2: fallthrough case 3: - *e = DefaultsAndConstsConstEnumInt(v) + *e = ConstEnumInt(v) return nil default: - return fmt.Errorf("invalid value for DefaultsAndConstsConstEnumInt: %v", v) + return fmt.Errorf("invalid value for ConstEnumInt: %v", v) } } -type DefaultsAndConstsConstEnumStr string +type ConstEnumStr string const ( - DefaultsAndConstsConstEnumStrOne DefaultsAndConstsConstEnumStr = "one" - DefaultsAndConstsConstEnumStrTwo DefaultsAndConstsConstEnumStr = "two" - DefaultsAndConstsConstEnumStrThree DefaultsAndConstsConstEnumStr = "three" + ConstEnumStrOne ConstEnumStr = "one" + ConstEnumStrTwo ConstEnumStr = "two" + ConstEnumStrThree ConstEnumStr = "three" ) -func (e DefaultsAndConstsConstEnumStr) ToPointer() *DefaultsAndConstsConstEnumStr { +func (e ConstEnumStr) ToPointer() *ConstEnumStr { return &e } -func (e *DefaultsAndConstsConstEnumStr) UnmarshalJSON(data []byte) error { +func (e *ConstEnumStr) UnmarshalJSON(data []byte) error { var v string if err := json.Unmarshal(data, &v); err != nil { return err @@ -65,26 +65,26 @@ func (e *DefaultsAndConstsConstEnumStr) UnmarshalJSON(data []byte) error { case "two": fallthrough case "three": - *e = DefaultsAndConstsConstEnumStr(v) + *e = ConstEnumStr(v) return nil default: - return fmt.Errorf("invalid value for DefaultsAndConstsConstEnumStr: %v", v) + return fmt.Errorf("invalid value for ConstEnumStr: %v", v) } } -type DefaultsAndConstsDefaultEnumInt int64 +type DefaultEnumInt int64 const ( - DefaultsAndConstsDefaultEnumIntOne DefaultsAndConstsDefaultEnumInt = 1 - DefaultsAndConstsDefaultEnumIntTwo DefaultsAndConstsDefaultEnumInt = 2 - DefaultsAndConstsDefaultEnumIntThree DefaultsAndConstsDefaultEnumInt = 3 + DefaultEnumIntOne DefaultEnumInt = 1 + DefaultEnumIntTwo DefaultEnumInt = 2 + DefaultEnumIntThree DefaultEnumInt = 3 ) -func (e DefaultsAndConstsDefaultEnumInt) ToPointer() *DefaultsAndConstsDefaultEnumInt { +func (e DefaultEnumInt) ToPointer() *DefaultEnumInt { return &e } -func (e *DefaultsAndConstsDefaultEnumInt) UnmarshalJSON(data []byte) error { +func (e *DefaultEnumInt) UnmarshalJSON(data []byte) error { var v int64 if err := json.Unmarshal(data, &v); err != nil { return err @@ -95,26 +95,26 @@ func (e *DefaultsAndConstsDefaultEnumInt) UnmarshalJSON(data []byte) error { case 2: fallthrough case 3: - *e = DefaultsAndConstsDefaultEnumInt(v) + *e = DefaultEnumInt(v) return nil default: - return fmt.Errorf("invalid value for DefaultsAndConstsDefaultEnumInt: %v", v) + return fmt.Errorf("invalid value for DefaultEnumInt: %v", v) } } -type DefaultsAndConstsDefaultEnumStr string +type DefaultEnumStr string const ( - DefaultsAndConstsDefaultEnumStrOne DefaultsAndConstsDefaultEnumStr = "one" - DefaultsAndConstsDefaultEnumStrTwo DefaultsAndConstsDefaultEnumStr = "two" - DefaultsAndConstsDefaultEnumStrThree DefaultsAndConstsDefaultEnumStr = "three" + DefaultEnumStrOne DefaultEnumStr = "one" + DefaultEnumStrTwo DefaultEnumStr = "two" + DefaultEnumStrThree DefaultEnumStr = "three" ) -func (e DefaultsAndConstsDefaultEnumStr) ToPointer() *DefaultsAndConstsDefaultEnumStr { +func (e DefaultEnumStr) ToPointer() *DefaultEnumStr { return &e } -func (e *DefaultsAndConstsDefaultEnumStr) UnmarshalJSON(data []byte) error { +func (e *DefaultEnumStr) UnmarshalJSON(data []byte) error { var v string if err := json.Unmarshal(data, &v); err != nil { return err @@ -125,42 +125,42 @@ func (e *DefaultsAndConstsDefaultEnumStr) UnmarshalJSON(data []byte) error { case "two": fallthrough case "three": - *e = DefaultsAndConstsDefaultEnumStr(v) + *e = DefaultEnumStr(v) return nil default: - return fmt.Errorf("invalid value for DefaultsAndConstsDefaultEnumStr: %v", v) + return fmt.Errorf("invalid value for DefaultEnumStr: %v", v) } } type DefaultsAndConsts struct { - constBigInt *big.Int `const:"9007199254740991" json:"constBigInt"` - constBigIntStr *big.Int `const:"9223372036854775807" bigint:"string" json:"constBigIntStr"` - constBool bool `const:"true" json:"constBool"` - constDate types.Date `const:"2020-01-01" json:"constDate"` - constDateTime time.Time `const:"2020-01-01T00:00:00Z" json:"constDateTime"` - constDecimal *decimal.Big `const:"3.141592653589793" decimal:"number" json:"constDecimal"` - constDecimalStr *decimal.Big `const:"3.141592653589793238462643383279" json:"constDecimalStr"` - constEnumInt DefaultsAndConstsConstEnumInt `const:"2" json:"constEnumInt"` - constEnumStr DefaultsAndConstsConstEnumStr `const:"two" json:"constEnumStr"` - constInt int64 `const:"123" json:"constInt"` - constNum float64 `const:"123.456" json:"constNum"` - constStr string `const:"const" json:"constStr"` - constStrNull *string `const:"null" json:"constStrNull"` - DefaultBigInt *big.Int `default:"9007199254740991" json:"defaultBigInt"` - DefaultBigIntStr *big.Int `default:"9223372036854775807" bigint:"string" json:"defaultBigIntStr"` - DefaultBool *bool `default:"true" json:"defaultBool"` - DefaultDate *types.Date `default:"2020-01-01" json:"defaultDate"` - DefaultDateTime *time.Time `default:"2020-01-01T00:00:00Z" json:"defaultDateTime"` - DefaultDecimal *decimal.Big `default:"3.141592653589793" decimal:"number" json:"defaultDecimal"` - DefaultDecimalStr *decimal.Big `default:"3.141592653589793238462643383279" json:"defaultDecimalStr"` - DefaultEnumInt *DefaultsAndConstsDefaultEnumInt `default:"2" json:"defaultEnumInt"` - DefaultEnumStr *DefaultsAndConstsDefaultEnumStr `default:"two" json:"defaultEnumStr"` - DefaultInt *int64 `default:"123" json:"defaultInt"` - DefaultNum *float64 `default:"123.456" json:"defaultNum"` - DefaultStr *string `default:"default" json:"defaultStr"` - DefaultStrNullable *string `default:"null" json:"defaultStrNullable"` - DefaultStrOptional *string `default:"default" json:"defaultStrOptional"` - NormalField string `json:"normalField"` + constBigInt *big.Int `const:"9007199254740991" json:"constBigInt"` + constBigIntStr *big.Int `const:"9223372036854775807" bigint:"string" json:"constBigIntStr"` + constBool bool `const:"true" json:"constBool"` + constDate types.Date `const:"2020-01-01" json:"constDate"` + constDateTime time.Time `const:"2020-01-01T00:00:00Z" json:"constDateTime"` + constDecimal *decimal.Big `const:"3.141592653589793" decimal:"number" json:"constDecimal"` + constDecimalStr *decimal.Big `const:"3.141592653589793238462643383279" json:"constDecimalStr"` + constEnumInt ConstEnumInt `const:"2" json:"constEnumInt"` + constEnumStr ConstEnumStr `const:"two" json:"constEnumStr"` + constInt int64 `const:"123" json:"constInt"` + constNum float64 `const:"123.456" json:"constNum"` + constStr string `const:"const" json:"constStr"` + constStrNull *string `const:"null" json:"constStrNull"` + DefaultBigInt *big.Int `default:"9007199254740991" json:"defaultBigInt"` + DefaultBigIntStr *big.Int `default:"9223372036854775807" bigint:"string" json:"defaultBigIntStr"` + DefaultBool *bool `default:"true" json:"defaultBool"` + DefaultDate *types.Date `default:"2020-01-01" json:"defaultDate"` + DefaultDateTime *time.Time `default:"2020-01-01T00:00:00Z" json:"defaultDateTime"` + DefaultDecimal *decimal.Big `default:"3.141592653589793" decimal:"number" json:"defaultDecimal"` + DefaultDecimalStr *decimal.Big `default:"3.141592653589793238462643383279" json:"defaultDecimalStr"` + DefaultEnumInt *DefaultEnumInt `default:"2" json:"defaultEnumInt"` + DefaultEnumStr *DefaultEnumStr `default:"two" json:"defaultEnumStr"` + DefaultInt *int64 `default:"123" json:"defaultInt"` + DefaultNum *float64 `default:"123.456" json:"defaultNum"` + DefaultStr *string `default:"default" json:"defaultStr"` + DefaultStrNullable *string `default:"null" json:"defaultStrNullable"` + DefaultStrOptional *string `default:"default" json:"defaultStrOptional"` + NormalField string `json:"normalField"` } func (d DefaultsAndConsts) MarshalJSON() ([]byte, error) { @@ -202,12 +202,12 @@ func (o *DefaultsAndConsts) GetConstDecimalStr() *decimal.Big { return types.MustNewDecimalFromString("3.141592653589793238462643383279") } -func (o *DefaultsAndConsts) GetConstEnumInt() DefaultsAndConstsConstEnumInt { - return DefaultsAndConstsConstEnumIntTwo +func (o *DefaultsAndConsts) GetConstEnumInt() ConstEnumInt { + return ConstEnumIntTwo } -func (o *DefaultsAndConsts) GetConstEnumStr() DefaultsAndConstsConstEnumStr { - return DefaultsAndConstsConstEnumStrTwo +func (o *DefaultsAndConsts) GetConstEnumStr() ConstEnumStr { + return ConstEnumStrTwo } func (o *DefaultsAndConsts) GetConstInt() int64 { @@ -275,14 +275,14 @@ func (o *DefaultsAndConsts) GetDefaultDecimalStr() *decimal.Big { return o.DefaultDecimalStr } -func (o *DefaultsAndConsts) GetDefaultEnumInt() *DefaultsAndConstsDefaultEnumInt { +func (o *DefaultsAndConsts) GetDefaultEnumInt() *DefaultEnumInt { if o == nil { return nil } return o.DefaultEnumInt } -func (o *DefaultsAndConsts) GetDefaultEnumStr() *DefaultsAndConstsDefaultEnumStr { +func (o *DefaultsAndConsts) GetDefaultEnumStr() *DefaultEnumStr { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/shared/defaultsandconstsoutput.go b/go-client-sdk/pkg/models/shared/defaultsandconstsoutput.go index 31df991d2..233dd2b7e 100755 --- a/go-client-sdk/pkg/models/shared/defaultsandconstsoutput.go +++ b/go-client-sdk/pkg/models/shared/defaultsandconstsoutput.go @@ -7,8 +7,8 @@ import ( "fmt" "github.com/ericlagergren/decimal" "math/big" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" "time" ) diff --git a/go-client-sdk/pkg/models/shared/deprecatedfieldinobject.go b/go-client-sdk/pkg/models/shared/deprecatedfieldinobject.go index 968a9edf6..5ab878021 100755 --- a/go-client-sdk/pkg/models/shared/deprecatedfieldinobject.go +++ b/go-client-sdk/pkg/models/shared/deprecatedfieldinobject.go @@ -7,22 +7,22 @@ import ( "fmt" ) -// DeprecatedFieldInObjectDeprecatedEnum +// DeprecatedEnum // // Deprecated type: This enum is deprecated. -type DeprecatedFieldInObjectDeprecatedEnum string +type DeprecatedEnum string const ( - DeprecatedFieldInObjectDeprecatedEnumA DeprecatedFieldInObjectDeprecatedEnum = "a" - DeprecatedFieldInObjectDeprecatedEnumB DeprecatedFieldInObjectDeprecatedEnum = "b" - DeprecatedFieldInObjectDeprecatedEnumC DeprecatedFieldInObjectDeprecatedEnum = "c" + DeprecatedEnumA DeprecatedEnum = "a" + DeprecatedEnumB DeprecatedEnum = "b" + DeprecatedEnumC DeprecatedEnum = "c" ) -func (e DeprecatedFieldInObjectDeprecatedEnum) ToPointer() *DeprecatedFieldInObjectDeprecatedEnum { +func (e DeprecatedEnum) ToPointer() *DeprecatedEnum { return &e } -func (e *DeprecatedFieldInObjectDeprecatedEnum) UnmarshalJSON(data []byte) error { +func (e *DeprecatedEnum) UnmarshalJSON(data []byte) error { var v string if err := json.Unmarshal(data, &v); err != nil { return err @@ -33,22 +33,22 @@ func (e *DeprecatedFieldInObjectDeprecatedEnum) UnmarshalJSON(data []byte) error case "b": fallthrough case "c": - *e = DeprecatedFieldInObjectDeprecatedEnum(v) + *e = DeprecatedEnum(v) return nil default: - return fmt.Errorf("invalid value for DeprecatedFieldInObjectDeprecatedEnum: %v", v) + return fmt.Errorf("invalid value for DeprecatedEnum: %v", v) } } type DeprecatedFieldInObject struct { // Deprecated field: This enum is deprecated. - DeprecatedEnum *DeprecatedFieldInObjectDeprecatedEnum `json:"deprecatedEnum,omitempty"` + DeprecatedEnum *DeprecatedEnum `json:"deprecatedEnum,omitempty"` // Deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. Use NewField instead. DeprecatedField *string `json:"deprecatedField,omitempty"` NewField *string `json:"newField,omitempty"` } -func (o *DeprecatedFieldInObject) GetDeprecatedEnum() *DeprecatedFieldInObjectDeprecatedEnum { +func (o *DeprecatedFieldInObject) GetDeprecatedEnum() *DeprecatedEnum { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/shared/exampleboat.go b/go-client-sdk/pkg/models/shared/exampleboat.go index 1b256c3bb..67fad5d7b 100755 --- a/go-client-sdk/pkg/models/shared/exampleboat.go +++ b/go-client-sdk/pkg/models/shared/exampleboat.go @@ -5,40 +5,40 @@ package shared import ( "encoding/json" "fmt" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" "time" ) -type ExampleBoatType string +type Type string const ( - ExampleBoatTypeBoat ExampleBoatType = "boat" + TypeBoat Type = "boat" ) -func (e ExampleBoatType) ToPointer() *ExampleBoatType { +func (e Type) ToPointer() *Type { return &e } -func (e *ExampleBoatType) UnmarshalJSON(data []byte) error { +func (e *Type) UnmarshalJSON(data []byte) error { var v string if err := json.Unmarshal(data, &v); err != nil { return err } switch v { case "boat": - *e = ExampleBoatType(v) + *e = Type(v) return nil default: - return fmt.Errorf("invalid value for ExampleBoatType: %v", v) + return fmt.Errorf("invalid value for Type: %v", v) } } type ExampleBoat struct { - CreatedAt *time.Time `json:"createdAt,omitempty"` - Length float64 `json:"length"` - Name string `json:"name"` - Type ExampleBoatType `json:"type"` - UpdatedAt *time.Time `json:"updatedAt,omitempty"` + CreatedAt *time.Time `json:"createdAt,omitempty"` + Length float64 `json:"length"` + Name string `json:"name"` + Type Type `json:"type"` + UpdatedAt *time.Time `json:"updatedAt,omitempty"` } func (e ExampleBoat) MarshalJSON() ([]byte, error) { @@ -73,9 +73,9 @@ func (o *ExampleBoat) GetName() string { return o.Name } -func (o *ExampleBoat) GetType() ExampleBoatType { +func (o *ExampleBoat) GetType() Type { if o == nil { - return ExampleBoatType("") + return Type("") } return o.Type } diff --git a/go-client-sdk/pkg/models/shared/examplecar.go b/go-client-sdk/pkg/models/shared/examplecar.go index f4682c420..85780988a 100755 --- a/go-client-sdk/pkg/models/shared/examplecar.go +++ b/go-client-sdk/pkg/models/shared/examplecar.go @@ -5,7 +5,7 @@ package shared import ( "encoding/json" "fmt" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" "time" ) diff --git a/go-client-sdk/pkg/models/shared/exampleresource.go b/go-client-sdk/pkg/models/shared/exampleresource.go index b78597fa9..ee17dced2 100755 --- a/go-client-sdk/pkg/models/shared/exampleresource.go +++ b/go-client-sdk/pkg/models/shared/exampleresource.go @@ -5,34 +5,34 @@ package shared import ( "encoding/json" "fmt" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" "time" ) -type ExampleResourceChocolates struct { +type Chocolates struct { Description string `json:"description"` } -func (o *ExampleResourceChocolates) GetDescription() string { +func (o *Chocolates) GetDescription() string { if o == nil { return "" } return o.Description } -type ExampleResourceEnumNumber int64 +type EnumNumber int64 const ( - ExampleResourceEnumNumberOne ExampleResourceEnumNumber = 1 - ExampleResourceEnumNumberTwo ExampleResourceEnumNumber = 2 - ExampleResourceEnumNumberThree ExampleResourceEnumNumber = 3 + EnumNumberOne EnumNumber = 1 + EnumNumberTwo EnumNumber = 2 + EnumNumberThree EnumNumber = 3 ) -func (e ExampleResourceEnumNumber) ToPointer() *ExampleResourceEnumNumber { +func (e EnumNumber) ToPointer() *EnumNumber { return &e } -func (e *ExampleResourceEnumNumber) UnmarshalJSON(data []byte) error { +func (e *EnumNumber) UnmarshalJSON(data []byte) error { var v int64 if err := json.Unmarshal(data, &v); err != nil { return err @@ -43,26 +43,26 @@ func (e *ExampleResourceEnumNumber) UnmarshalJSON(data []byte) error { case 2: fallthrough case 3: - *e = ExampleResourceEnumNumber(v) + *e = EnumNumber(v) return nil default: - return fmt.Errorf("invalid value for ExampleResourceEnumNumber: %v", v) + return fmt.Errorf("invalid value for EnumNumber: %v", v) } } -type ExampleResourceEnumStr string +type EnumStr string const ( - ExampleResourceEnumStrOne ExampleResourceEnumStr = "one" - ExampleResourceEnumStrTwo ExampleResourceEnumStr = "two" - ExampleResourceEnumStrThree ExampleResourceEnumStr = "three" + EnumStrOne EnumStr = "one" + EnumStrTwo EnumStr = "two" + EnumStrThree EnumStr = "three" ) -func (e ExampleResourceEnumStr) ToPointer() *ExampleResourceEnumStr { +func (e EnumStr) ToPointer() *EnumStr { return &e } -func (e *ExampleResourceEnumStr) UnmarshalJSON(data []byte) error { +func (e *EnumStr) UnmarshalJSON(data []byte) error { var v string if err := json.Unmarshal(data, &v); err != nil { return err @@ -73,26 +73,26 @@ func (e *ExampleResourceEnumStr) UnmarshalJSON(data []byte) error { case "two": fallthrough case "three": - *e = ExampleResourceEnumStr(v) + *e = EnumStr(v) return nil default: - return fmt.Errorf("invalid value for ExampleResourceEnumStr: %v", v) + return fmt.Errorf("invalid value for EnumStr: %v", v) } } type ExampleResource struct { - ArrayOfNumber []float64 `json:"arrayOfNumber,omitempty"` - ArrayOfString []string `json:"arrayOfString,omitempty"` - Chocolates []ExampleResourceChocolates `json:"chocolates"` - CreatedAt *time.Time `json:"createdAt,omitempty"` - EnumNumber *ExampleResourceEnumNumber `json:"enumNumber,omitempty"` - EnumStr *ExampleResourceEnumStr `json:"enumStr,omitempty"` - ID string `json:"id"` - MapOfInteger map[string]int64 `json:"mapOfInteger,omitempty"` - MapOfString map[string]string `json:"mapOfString,omitempty"` - Name string `json:"name"` - UpdatedAt *time.Time `json:"updatedAt,omitempty"` - Vehicle ExampleVehicle `json:"vehicle"` + ArrayOfNumber []float64 `json:"arrayOfNumber,omitempty"` + ArrayOfString []string `json:"arrayOfString,omitempty"` + Chocolates []Chocolates `json:"chocolates"` + CreatedAt *time.Time `json:"createdAt,omitempty"` + EnumNumber *EnumNumber `json:"enumNumber,omitempty"` + EnumStr *EnumStr `json:"enumStr,omitempty"` + ID string `json:"id"` + MapOfInteger map[string]int64 `json:"mapOfInteger,omitempty"` + MapOfString map[string]string `json:"mapOfString,omitempty"` + Name string `json:"name"` + UpdatedAt *time.Time `json:"updatedAt,omitempty"` + Vehicle ExampleVehicle `json:"vehicle"` } func (e ExampleResource) MarshalJSON() ([]byte, error) { @@ -120,9 +120,9 @@ func (o *ExampleResource) GetArrayOfString() []string { return o.ArrayOfString } -func (o *ExampleResource) GetChocolates() []ExampleResourceChocolates { +func (o *ExampleResource) GetChocolates() []Chocolates { if o == nil { - return []ExampleResourceChocolates{} + return []Chocolates{} } return o.Chocolates } @@ -134,14 +134,14 @@ func (o *ExampleResource) GetCreatedAt() *time.Time { return o.CreatedAt } -func (o *ExampleResource) GetEnumNumber() *ExampleResourceEnumNumber { +func (o *ExampleResource) GetEnumNumber() *EnumNumber { if o == nil { return nil } return o.EnumNumber } -func (o *ExampleResource) GetEnumStr() *ExampleResourceEnumStr { +func (o *ExampleResource) GetEnumStr() *EnumStr { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/shared/examplevehicle.go b/go-client-sdk/pkg/models/shared/examplevehicle.go index 613a9e0f7..fe4f9a09d 100755 --- a/go-client-sdk/pkg/models/shared/examplevehicle.go +++ b/go-client-sdk/pkg/models/shared/examplevehicle.go @@ -4,7 +4,7 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type ExampleVehicleType string diff --git a/go-client-sdk/pkg/models/shared/flattenedtypedobject1.go b/go-client-sdk/pkg/models/shared/flattenedtypedobject1.go index 3e88aa05d..bae0be82e 100755 --- a/go-client-sdk/pkg/models/shared/flattenedtypedobject1.go +++ b/go-client-sdk/pkg/models/shared/flattenedtypedobject1.go @@ -4,7 +4,7 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type FlattenedTypedObject1Type string diff --git a/go-client-sdk/pkg/models/shared/httpbinsimplejsonobject.go b/go-client-sdk/pkg/models/shared/httpbinsimplejsonobject.go index d9f76d2bd..ad65eb9ad 100755 --- a/go-client-sdk/pkg/models/shared/httpbinsimplejsonobject.go +++ b/go-client-sdk/pkg/models/shared/httpbinsimplejsonobject.go @@ -2,62 +2,62 @@ package shared -type HTTPBinSimpleJSONObjectSlideshowSlides struct { +type Slides struct { Items []string `json:"items,omitempty"` Title string `json:"title"` Type string `json:"type"` } -func (o *HTTPBinSimpleJSONObjectSlideshowSlides) GetItems() []string { +func (o *Slides) GetItems() []string { if o == nil { return nil } return o.Items } -func (o *HTTPBinSimpleJSONObjectSlideshowSlides) GetTitle() string { +func (o *Slides) GetTitle() string { if o == nil { return "" } return o.Title } -func (o *HTTPBinSimpleJSONObjectSlideshowSlides) GetType() string { +func (o *Slides) GetType() string { if o == nil { return "" } return o.Type } -type HTTPBinSimpleJSONObjectSlideshow struct { - Author string `json:"author"` - Date string `json:"date"` - Slides []HTTPBinSimpleJSONObjectSlideshowSlides `json:"slides"` - Title string `json:"title"` +type Slideshow struct { + Author string `json:"author"` + Date string `json:"date"` + Slides []Slides `json:"slides"` + Title string `json:"title"` } -func (o *HTTPBinSimpleJSONObjectSlideshow) GetAuthor() string { +func (o *Slideshow) GetAuthor() string { if o == nil { return "" } return o.Author } -func (o *HTTPBinSimpleJSONObjectSlideshow) GetDate() string { +func (o *Slideshow) GetDate() string { if o == nil { return "" } return o.Date } -func (o *HTTPBinSimpleJSONObjectSlideshow) GetSlides() []HTTPBinSimpleJSONObjectSlideshowSlides { +func (o *Slideshow) GetSlides() []Slides { if o == nil { - return []HTTPBinSimpleJSONObjectSlideshowSlides{} + return []Slides{} } return o.Slides } -func (o *HTTPBinSimpleJSONObjectSlideshow) GetTitle() string { +func (o *Slideshow) GetTitle() string { if o == nil { return "" } @@ -65,12 +65,12 @@ func (o *HTTPBinSimpleJSONObjectSlideshow) GetTitle() string { } type HTTPBinSimpleJSONObject struct { - Slideshow HTTPBinSimpleJSONObjectSlideshow `json:"slideshow"` + Slideshow Slideshow `json:"slideshow"` } -func (o *HTTPBinSimpleJSONObject) GetSlideshow() HTTPBinSimpleJSONObjectSlideshow { +func (o *HTTPBinSimpleJSONObject) GetSlideshow() Slideshow { if o == nil { - return HTTPBinSimpleJSONObjectSlideshow{} + return Slideshow{} } return o.Slideshow } diff --git a/go-client-sdk/pkg/models/shared/nullableoneofrefinobject.go b/go-client-sdk/pkg/models/shared/nullableoneofrefinobject.go index 098acfacc..37a78083c 100755 --- a/go-client-sdk/pkg/models/shared/nullableoneofrefinobject.go +++ b/go-client-sdk/pkg/models/shared/nullableoneofrefinobject.go @@ -4,61 +4,61 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -type NullableOneOfRefInObjectNullableOneOfTwoType string +type NullableOneOfTwoType string const ( - NullableOneOfRefInObjectNullableOneOfTwoTypeTypedObject1 NullableOneOfRefInObjectNullableOneOfTwoType = "typedObject1" - NullableOneOfRefInObjectNullableOneOfTwoTypeTypedObject2 NullableOneOfRefInObjectNullableOneOfTwoType = "typedObject2" + NullableOneOfTwoTypeTypedObject1 NullableOneOfTwoType = "typedObject1" + NullableOneOfTwoTypeTypedObject2 NullableOneOfTwoType = "typedObject2" ) -type NullableOneOfRefInObjectNullableOneOfTwo struct { +type NullableOneOfTwo struct { TypedObject1 *TypedObject1 TypedObject2 *TypedObject2 - Type NullableOneOfRefInObjectNullableOneOfTwoType + Type NullableOneOfTwoType } -func CreateNullableOneOfRefInObjectNullableOneOfTwoTypedObject1(typedObject1 TypedObject1) NullableOneOfRefInObjectNullableOneOfTwo { - typ := NullableOneOfRefInObjectNullableOneOfTwoTypeTypedObject1 +func CreateNullableOneOfTwoTypedObject1(typedObject1 TypedObject1) NullableOneOfTwo { + typ := NullableOneOfTwoTypeTypedObject1 - return NullableOneOfRefInObjectNullableOneOfTwo{ + return NullableOneOfTwo{ TypedObject1: &typedObject1, Type: typ, } } -func CreateNullableOneOfRefInObjectNullableOneOfTwoTypedObject2(typedObject2 TypedObject2) NullableOneOfRefInObjectNullableOneOfTwo { - typ := NullableOneOfRefInObjectNullableOneOfTwoTypeTypedObject2 +func CreateNullableOneOfTwoTypedObject2(typedObject2 TypedObject2) NullableOneOfTwo { + typ := NullableOneOfTwoTypeTypedObject2 - return NullableOneOfRefInObjectNullableOneOfTwo{ + return NullableOneOfTwo{ TypedObject2: &typedObject2, Type: typ, } } -func (u *NullableOneOfRefInObjectNullableOneOfTwo) UnmarshalJSON(data []byte) error { +func (u *NullableOneOfTwo) UnmarshalJSON(data []byte) error { typedObject1 := TypedObject1{} if err := utils.UnmarshalJSON(data, &typedObject1, "", true, true); err == nil { u.TypedObject1 = &typedObject1 - u.Type = NullableOneOfRefInObjectNullableOneOfTwoTypeTypedObject1 + u.Type = NullableOneOfTwoTypeTypedObject1 return nil } typedObject2 := TypedObject2{} if err := utils.UnmarshalJSON(data, &typedObject2, "", true, true); err == nil { u.TypedObject2 = &typedObject2 - u.Type = NullableOneOfRefInObjectNullableOneOfTwoTypeTypedObject2 + u.Type = NullableOneOfTwoTypeTypedObject2 return nil } return errors.New("could not unmarshal into supported union types") } -func (u NullableOneOfRefInObjectNullableOneOfTwo) MarshalJSON() ([]byte, error) { +func (u NullableOneOfTwo) MarshalJSON() ([]byte, error) { if u.TypedObject1 != nil { return utils.MarshalJSON(u.TypedObject1, "", true) } @@ -70,40 +70,40 @@ func (u NullableOneOfRefInObjectNullableOneOfTwo) MarshalJSON() ([]byte, error) return nil, errors.New("could not marshal union type: all fields are null") } -type NullableOneOfRefInObjectOneOfOneType string +type OneOfOneType string const ( - NullableOneOfRefInObjectOneOfOneTypeTypedObject1 NullableOneOfRefInObjectOneOfOneType = "typedObject1" + OneOfOneTypeTypedObject1 OneOfOneType = "typedObject1" ) -type NullableOneOfRefInObjectOneOfOne struct { +type OneOfOne struct { TypedObject1 *TypedObject1 - Type NullableOneOfRefInObjectOneOfOneType + Type OneOfOneType } -func CreateNullableOneOfRefInObjectOneOfOneTypedObject1(typedObject1 TypedObject1) NullableOneOfRefInObjectOneOfOne { - typ := NullableOneOfRefInObjectOneOfOneTypeTypedObject1 +func CreateOneOfOneTypedObject1(typedObject1 TypedObject1) OneOfOne { + typ := OneOfOneTypeTypedObject1 - return NullableOneOfRefInObjectOneOfOne{ + return OneOfOne{ TypedObject1: &typedObject1, Type: typ, } } -func (u *NullableOneOfRefInObjectOneOfOne) UnmarshalJSON(data []byte) error { +func (u *OneOfOne) UnmarshalJSON(data []byte) error { typedObject1 := TypedObject1{} if err := utils.UnmarshalJSON(data, &typedObject1, "", true, true); err == nil { u.TypedObject1 = &typedObject1 - u.Type = NullableOneOfRefInObjectOneOfOneTypeTypedObject1 + u.Type = OneOfOneTypeTypedObject1 return nil } return errors.New("could not unmarshal into supported union types") } -func (u NullableOneOfRefInObjectOneOfOne) MarshalJSON() ([]byte, error) { +func (u OneOfOne) MarshalJSON() ([]byte, error) { if u.TypedObject1 != nil { return utils.MarshalJSON(u.TypedObject1, "", true) } @@ -112,9 +112,9 @@ func (u NullableOneOfRefInObjectOneOfOne) MarshalJSON() ([]byte, error) { } type NullableOneOfRefInObject struct { - NullableOneOfOne *TypedObject1 `json:"NullableOneOfOne"` - NullableOneOfTwo *NullableOneOfRefInObjectNullableOneOfTwo `json:"NullableOneOfTwo"` - OneOfOne NullableOneOfRefInObjectOneOfOne `json:"OneOfOne"` + NullableOneOfOne *TypedObject1 `json:"NullableOneOfOne"` + NullableOneOfTwo *NullableOneOfTwo `json:"NullableOneOfTwo"` + OneOfOne OneOfOne `json:"OneOfOne"` } func (o *NullableOneOfRefInObject) GetNullableOneOfOne() *TypedObject1 { @@ -124,16 +124,16 @@ func (o *NullableOneOfRefInObject) GetNullableOneOfOne() *TypedObject1 { return o.NullableOneOfOne } -func (o *NullableOneOfRefInObject) GetNullableOneOfTwo() *NullableOneOfRefInObjectNullableOneOfTwo { +func (o *NullableOneOfRefInObject) GetNullableOneOfTwo() *NullableOneOfTwo { if o == nil { return nil } return o.NullableOneOfTwo } -func (o *NullableOneOfRefInObject) GetOneOfOne() NullableOneOfRefInObjectOneOfOne { +func (o *NullableOneOfRefInObject) GetOneOfOne() OneOfOne { if o == nil { - return NullableOneOfRefInObjectOneOfOne{} + return OneOfOne{} } return o.OneOfOne } diff --git a/go-client-sdk/pkg/models/shared/nullableoneoftypeinobject.go b/go-client-sdk/pkg/models/shared/nullableoneoftypeinobject.go index b3a81e6ef..77beeda05 100755 --- a/go-client-sdk/pkg/models/shared/nullableoneoftypeinobject.go +++ b/go-client-sdk/pkg/models/shared/nullableoneoftypeinobject.go @@ -4,7 +4,7 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type NullableOneOfTypeInObjectNullableOneOfTwoType string diff --git a/go-client-sdk/pkg/models/shared/numericunion.go b/go-client-sdk/pkg/models/shared/numericunion.go index bb49871df..89c8cfb70 100755 --- a/go-client-sdk/pkg/models/shared/numericunion.go +++ b/go-client-sdk/pkg/models/shared/numericunion.go @@ -6,7 +6,7 @@ import ( "errors" "github.com/ericlagergren/decimal" "math/big" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type NumericUnionType string diff --git a/go-client-sdk/pkg/models/shared/objwithcomplexnumbersadditionalproperties.go b/go-client-sdk/pkg/models/shared/objwithcomplexnumbersadditionalproperties.go index 596d6c423..2d8fef62e 100755 --- a/go-client-sdk/pkg/models/shared/objwithcomplexnumbersadditionalproperties.go +++ b/go-client-sdk/pkg/models/shared/objwithcomplexnumbersadditionalproperties.go @@ -4,7 +4,7 @@ package shared import ( "math/big" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type ObjWithComplexNumbersAdditionalProperties struct { diff --git a/go-client-sdk/pkg/models/shared/objwithdateadditionalproperties.go b/go-client-sdk/pkg/models/shared/objwithdateadditionalproperties.go index 4e91e3edf..07e9afa0b 100755 --- a/go-client-sdk/pkg/models/shared/objwithdateadditionalproperties.go +++ b/go-client-sdk/pkg/models/shared/objwithdateadditionalproperties.go @@ -3,8 +3,8 @@ package shared import ( - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" ) type ObjWithDateAdditionalProperties struct { diff --git a/go-client-sdk/pkg/models/shared/objwithobjadditionalproperties.go b/go-client-sdk/pkg/models/shared/objwithobjadditionalproperties.go index c98e8588f..b2cb13dd7 100755 --- a/go-client-sdk/pkg/models/shared/objwithobjadditionalproperties.go +++ b/go-client-sdk/pkg/models/shared/objwithobjadditionalproperties.go @@ -3,7 +3,7 @@ package shared import ( - "openapi/pkg/utils" + "openapi/v2/pkg/utils" "time" ) diff --git a/go-client-sdk/pkg/models/shared/objwithstringadditionalproperties.go b/go-client-sdk/pkg/models/shared/objwithstringadditionalproperties.go index 2ecb198b5..7901e34f3 100755 --- a/go-client-sdk/pkg/models/shared/objwithstringadditionalproperties.go +++ b/go-client-sdk/pkg/models/shared/objwithstringadditionalproperties.go @@ -3,7 +3,7 @@ package shared import ( - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type ObjWithStringAdditionalProperties struct { diff --git a/go-client-sdk/pkg/models/shared/objwithzerovaluecomplextypeptrs.go b/go-client-sdk/pkg/models/shared/objwithzerovaluecomplextypeptrs.go index 59f1e4eaa..1ab6c59fb 100755 --- a/go-client-sdk/pkg/models/shared/objwithzerovaluecomplextypeptrs.go +++ b/go-client-sdk/pkg/models/shared/objwithzerovaluecomplextypeptrs.go @@ -5,8 +5,8 @@ package shared import ( "github.com/ericlagergren/decimal" "math/big" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" "time" ) diff --git a/go-client-sdk/pkg/models/shared/oneofcircularreferenceobject.go b/go-client-sdk/pkg/models/shared/oneofcircularreferenceobject.go index 9fffd6c6a..1e81170d8 100755 --- a/go-client-sdk/pkg/models/shared/oneofcircularreferenceobject.go +++ b/go-client-sdk/pkg/models/shared/oneofcircularreferenceobject.go @@ -4,61 +4,61 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -type OneOfCircularReferenceObjectChildType string +type ChildType string const ( - OneOfCircularReferenceObjectChildTypeOneOfCircularReferenceObject OneOfCircularReferenceObjectChildType = "oneOfCircularReferenceObject" - OneOfCircularReferenceObjectChildTypeSimpleObject OneOfCircularReferenceObjectChildType = "simpleObject" + ChildTypeOneOfCircularReferenceObject ChildType = "oneOfCircularReferenceObject" + ChildTypeSimpleObject ChildType = "simpleObject" ) -type OneOfCircularReferenceObjectChild struct { +type Child struct { OneOfCircularReferenceObject *OneOfCircularReferenceObject SimpleObject *SimpleObject - Type OneOfCircularReferenceObjectChildType + Type ChildType } -func CreateOneOfCircularReferenceObjectChildOneOfCircularReferenceObject(oneOfCircularReferenceObject OneOfCircularReferenceObject) OneOfCircularReferenceObjectChild { - typ := OneOfCircularReferenceObjectChildTypeOneOfCircularReferenceObject +func CreateChildOneOfCircularReferenceObject(oneOfCircularReferenceObject OneOfCircularReferenceObject) Child { + typ := ChildTypeOneOfCircularReferenceObject - return OneOfCircularReferenceObjectChild{ + return Child{ OneOfCircularReferenceObject: &oneOfCircularReferenceObject, Type: typ, } } -func CreateOneOfCircularReferenceObjectChildSimpleObject(simpleObject SimpleObject) OneOfCircularReferenceObjectChild { - typ := OneOfCircularReferenceObjectChildTypeSimpleObject +func CreateChildSimpleObject(simpleObject SimpleObject) Child { + typ := ChildTypeSimpleObject - return OneOfCircularReferenceObjectChild{ + return Child{ SimpleObject: &simpleObject, Type: typ, } } -func (u *OneOfCircularReferenceObjectChild) UnmarshalJSON(data []byte) error { +func (u *Child) UnmarshalJSON(data []byte) error { oneOfCircularReferenceObject := OneOfCircularReferenceObject{} if err := utils.UnmarshalJSON(data, &oneOfCircularReferenceObject, "", true, true); err == nil { u.OneOfCircularReferenceObject = &oneOfCircularReferenceObject - u.Type = OneOfCircularReferenceObjectChildTypeOneOfCircularReferenceObject + u.Type = ChildTypeOneOfCircularReferenceObject return nil } simpleObject := SimpleObject{} if err := utils.UnmarshalJSON(data, &simpleObject, "", true, true); err == nil { u.SimpleObject = &simpleObject - u.Type = OneOfCircularReferenceObjectChildTypeSimpleObject + u.Type = ChildTypeSimpleObject return nil } return errors.New("could not unmarshal into supported union types") } -func (u OneOfCircularReferenceObjectChild) MarshalJSON() ([]byte, error) { +func (u Child) MarshalJSON() ([]byte, error) { if u.OneOfCircularReferenceObject != nil { return utils.MarshalJSON(u.OneOfCircularReferenceObject, "", true) } @@ -71,12 +71,12 @@ func (u OneOfCircularReferenceObjectChild) MarshalJSON() ([]byte, error) { } type OneOfCircularReferenceObject struct { - Child OneOfCircularReferenceObjectChild `json:"child"` + Child Child `json:"child"` } -func (o *OneOfCircularReferenceObject) GetChild() OneOfCircularReferenceObjectChild { +func (o *OneOfCircularReferenceObject) GetChild() Child { if o == nil { - return OneOfCircularReferenceObjectChild{} + return Child{} } return o.Child } diff --git a/go-client-sdk/pkg/models/shared/oneofgenerationstresstest.go b/go-client-sdk/pkg/models/shared/oneofgenerationstresstest.go index 7d576bdd9..4ea62b700 100755 --- a/go-client-sdk/pkg/models/shared/oneofgenerationstresstest.go +++ b/go-client-sdk/pkg/models/shared/oneofgenerationstresstest.go @@ -6,61 +6,61 @@ import ( "encoding/json" "errors" "fmt" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) -type OneOfGenerationStressTestOneOfFromArrayOfTypesType string +type OneOfFromArrayOfTypesType string const ( - OneOfGenerationStressTestOneOfFromArrayOfTypesTypeStr OneOfGenerationStressTestOneOfFromArrayOfTypesType = "str" - OneOfGenerationStressTestOneOfFromArrayOfTypesTypeInteger OneOfGenerationStressTestOneOfFromArrayOfTypesType = "integer" + OneOfFromArrayOfTypesTypeStr OneOfFromArrayOfTypesType = "str" + OneOfFromArrayOfTypesTypeInteger OneOfFromArrayOfTypesType = "integer" ) -type OneOfGenerationStressTestOneOfFromArrayOfTypes struct { +type OneOfFromArrayOfTypes struct { Str *string Integer *int64 - Type OneOfGenerationStressTestOneOfFromArrayOfTypesType + Type OneOfFromArrayOfTypesType } -func CreateOneOfGenerationStressTestOneOfFromArrayOfTypesStr(str string) OneOfGenerationStressTestOneOfFromArrayOfTypes { - typ := OneOfGenerationStressTestOneOfFromArrayOfTypesTypeStr +func CreateOneOfFromArrayOfTypesStr(str string) OneOfFromArrayOfTypes { + typ := OneOfFromArrayOfTypesTypeStr - return OneOfGenerationStressTestOneOfFromArrayOfTypes{ + return OneOfFromArrayOfTypes{ Str: &str, Type: typ, } } -func CreateOneOfGenerationStressTestOneOfFromArrayOfTypesInteger(integer int64) OneOfGenerationStressTestOneOfFromArrayOfTypes { - typ := OneOfGenerationStressTestOneOfFromArrayOfTypesTypeInteger +func CreateOneOfFromArrayOfTypesInteger(integer int64) OneOfFromArrayOfTypes { + typ := OneOfFromArrayOfTypesTypeInteger - return OneOfGenerationStressTestOneOfFromArrayOfTypes{ + return OneOfFromArrayOfTypes{ Integer: &integer, Type: typ, } } -func (u *OneOfGenerationStressTestOneOfFromArrayOfTypes) UnmarshalJSON(data []byte) error { +func (u *OneOfFromArrayOfTypes) UnmarshalJSON(data []byte) error { str := "" if err := utils.UnmarshalJSON(data, &str, "", true, true); err == nil { u.Str = &str - u.Type = OneOfGenerationStressTestOneOfFromArrayOfTypesTypeStr + u.Type = OneOfFromArrayOfTypesTypeStr return nil } integer := int64(0) if err := utils.UnmarshalJSON(data, &integer, "", true, true); err == nil { u.Integer = &integer - u.Type = OneOfGenerationStressTestOneOfFromArrayOfTypesTypeInteger + u.Type = OneOfFromArrayOfTypesTypeInteger return nil } return errors.New("could not unmarshal into supported union types") } -func (u OneOfGenerationStressTestOneOfFromArrayOfTypes) MarshalJSON() ([]byte, error) { +func (u OneOfFromArrayOfTypes) MarshalJSON() ([]byte, error) { if u.Str != nil { return utils.MarshalJSON(u.Str, "", true) } @@ -72,98 +72,98 @@ func (u OneOfGenerationStressTestOneOfFromArrayOfTypes) MarshalJSON() ([]byte, e return nil, errors.New("could not marshal union type: all fields are null") } -type OneOfGenerationStressTestOneOfSameType2 string +type Two string const ( - OneOfGenerationStressTestOneOfSameType2Latest OneOfGenerationStressTestOneOfSameType2 = "latest" + TwoLatest Two = "latest" ) -func (e OneOfGenerationStressTestOneOfSameType2) ToPointer() *OneOfGenerationStressTestOneOfSameType2 { +func (e Two) ToPointer() *Two { return &e } -func (e *OneOfGenerationStressTestOneOfSameType2) UnmarshalJSON(data []byte) error { +func (e *Two) UnmarshalJSON(data []byte) error { var v string if err := json.Unmarshal(data, &v); err != nil { return err } switch v { case "latest": - *e = OneOfGenerationStressTestOneOfSameType2(v) + *e = Two(v) return nil default: - return fmt.Errorf("invalid value for OneOfGenerationStressTestOneOfSameType2: %v", v) + return fmt.Errorf("invalid value for Two: %v", v) } } -type OneOfGenerationStressTestOneOfSameTypeType string +type OneOfSameTypeType string const ( - OneOfGenerationStressTestOneOfSameTypeTypeStr OneOfGenerationStressTestOneOfSameTypeType = "str" - OneOfGenerationStressTestOneOfSameTypeTypeOneOfGenerationStressTestOneOfSameType2 OneOfGenerationStressTestOneOfSameTypeType = "oneOfGenerationStressTest_oneOfSameType_2" + OneOfSameTypeTypeStr OneOfSameTypeType = "str" + OneOfSameTypeTypeTwo OneOfSameTypeType = "2" ) -type OneOfGenerationStressTestOneOfSameType struct { - Str *string - OneOfGenerationStressTestOneOfSameType2 *OneOfGenerationStressTestOneOfSameType2 +type OneOfSameType struct { + Str *string + Two *Two - Type OneOfGenerationStressTestOneOfSameTypeType + Type OneOfSameTypeType } -func CreateOneOfGenerationStressTestOneOfSameTypeStr(str string) OneOfGenerationStressTestOneOfSameType { - typ := OneOfGenerationStressTestOneOfSameTypeTypeStr +func CreateOneOfSameTypeStr(str string) OneOfSameType { + typ := OneOfSameTypeTypeStr - return OneOfGenerationStressTestOneOfSameType{ + return OneOfSameType{ Str: &str, Type: typ, } } -func CreateOneOfGenerationStressTestOneOfSameTypeOneOfGenerationStressTestOneOfSameType2(oneOfGenerationStressTestOneOfSameType2 OneOfGenerationStressTestOneOfSameType2) OneOfGenerationStressTestOneOfSameType { - typ := OneOfGenerationStressTestOneOfSameTypeTypeOneOfGenerationStressTestOneOfSameType2 +func CreateOneOfSameTypeTwo(two Two) OneOfSameType { + typ := OneOfSameTypeTypeTwo - return OneOfGenerationStressTestOneOfSameType{ - OneOfGenerationStressTestOneOfSameType2: &oneOfGenerationStressTestOneOfSameType2, - Type: typ, + return OneOfSameType{ + Two: &two, + Type: typ, } } -func (u *OneOfGenerationStressTestOneOfSameType) UnmarshalJSON(data []byte) error { +func (u *OneOfSameType) UnmarshalJSON(data []byte) error { str := "" if err := utils.UnmarshalJSON(data, &str, "", true, true); err == nil { u.Str = &str - u.Type = OneOfGenerationStressTestOneOfSameTypeTypeStr + u.Type = OneOfSameTypeTypeStr return nil } - oneOfGenerationStressTestOneOfSameType2 := OneOfGenerationStressTestOneOfSameType2("") - if err := utils.UnmarshalJSON(data, &oneOfGenerationStressTestOneOfSameType2, "", true, true); err == nil { - u.OneOfGenerationStressTestOneOfSameType2 = &oneOfGenerationStressTestOneOfSameType2 - u.Type = OneOfGenerationStressTestOneOfSameTypeTypeOneOfGenerationStressTestOneOfSameType2 + two := Two("") + if err := utils.UnmarshalJSON(data, &two, "", true, true); err == nil { + u.Two = &two + u.Type = OneOfSameTypeTypeTwo return nil } return errors.New("could not unmarshal into supported union types") } -func (u OneOfGenerationStressTestOneOfSameType) MarshalJSON() ([]byte, error) { +func (u OneOfSameType) MarshalJSON() ([]byte, error) { if u.Str != nil { return utils.MarshalJSON(u.Str, "", true) } - if u.OneOfGenerationStressTestOneOfSameType2 != nil { - return utils.MarshalJSON(u.OneOfGenerationStressTestOneOfSameType2, "", true) + if u.Two != nil { + return utils.MarshalJSON(u.Two, "", true) } return nil, errors.New("could not marshal union type: all fields are null") } type OneOfGenerationStressTest struct { - Any interface{} `json:"any"` - NullableAny interface{} `json:"nullableAny"` - OneOfFromArrayOfTypes *OneOfGenerationStressTestOneOfFromArrayOfTypes `json:"oneOfFromArrayOfTypes"` - OneOfSameType *OneOfGenerationStressTestOneOfSameType `json:"oneOfSameType"` + Any interface{} `json:"any"` + NullableAny interface{} `json:"nullableAny"` + OneOfFromArrayOfTypes *OneOfFromArrayOfTypes `json:"oneOfFromArrayOfTypes"` + OneOfSameType *OneOfSameType `json:"oneOfSameType"` } func (o *OneOfGenerationStressTest) GetAny() interface{} { @@ -180,14 +180,14 @@ func (o *OneOfGenerationStressTest) GetNullableAny() interface{} { return o.NullableAny } -func (o *OneOfGenerationStressTest) GetOneOfFromArrayOfTypes() *OneOfGenerationStressTestOneOfFromArrayOfTypes { +func (o *OneOfGenerationStressTest) GetOneOfFromArrayOfTypes() *OneOfFromArrayOfTypes { if o == nil { return nil } return o.OneOfFromArrayOfTypes } -func (o *OneOfGenerationStressTest) GetOneOfSameType() *OneOfGenerationStressTestOneOfSameType { +func (o *OneOfGenerationStressTest) GetOneOfSameType() *OneOfSameType { if o == nil { return nil } diff --git a/go-client-sdk/pkg/models/shared/primitivetypeunion.go b/go-client-sdk/pkg/models/shared/primitivetypeunion.go index ba0b7e3ae..aec3775f9 100755 --- a/go-client-sdk/pkg/models/shared/primitivetypeunion.go +++ b/go-client-sdk/pkg/models/shared/primitivetypeunion.go @@ -4,7 +4,7 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type PrimitiveTypeUnionType string diff --git a/go-client-sdk/pkg/models/shared/readwriteobject.go b/go-client-sdk/pkg/models/shared/readwriteobject.go index ec5fae29f..04954e402 100755 --- a/go-client-sdk/pkg/models/shared/readwriteobject.go +++ b/go-client-sdk/pkg/models/shared/readwriteobject.go @@ -2,27 +2,27 @@ package shared -type ReadWriteObjectInput struct { +type ReadWriteObject struct { Num1 int64 `json:"num1"` Num2 int64 `json:"num2"` Num3 int64 `json:"num3"` } -func (o *ReadWriteObjectInput) GetNum1() int64 { +func (o *ReadWriteObject) GetNum1() int64 { if o == nil { return 0 } return o.Num1 } -func (o *ReadWriteObjectInput) GetNum2() int64 { +func (o *ReadWriteObject) GetNum2() int64 { if o == nil { return 0 } return o.Num2 } -func (o *ReadWriteObjectInput) GetNum3() int64 { +func (o *ReadWriteObject) GetNum3() int64 { if o == nil { return 0 } diff --git a/go-client-sdk/pkg/models/shared/simpleobject.go b/go-client-sdk/pkg/models/shared/simpleobject.go index 6189ed704..b4a63ff2f 100755 --- a/go-client-sdk/pkg/models/shared/simpleobject.go +++ b/go-client-sdk/pkg/models/shared/simpleobject.go @@ -7,25 +7,25 @@ import ( "fmt" "github.com/ericlagergren/decimal" "math/big" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" "time" ) -// SimpleObjectInt32Enum - An int32 enum property. -type SimpleObjectInt32Enum int +// Int32Enum - An int32 enum property. +type Int32Enum int const ( - SimpleObjectInt32EnumFiftyFive SimpleObjectInt32Enum = 55 - SimpleObjectInt32EnumSixtyNine SimpleObjectInt32Enum = 69 - SimpleObjectInt32EnumOneHundredAndEightyOne SimpleObjectInt32Enum = 181 + Int32EnumFiftyFive Int32Enum = 55 + Int32EnumSixtyNine Int32Enum = 69 + Int32EnumOneHundredAndEightyOne Int32Enum = 181 ) -func (e SimpleObjectInt32Enum) ToPointer() *SimpleObjectInt32Enum { +func (e Int32Enum) ToPointer() *Int32Enum { return &e } -func (e *SimpleObjectInt32Enum) UnmarshalJSON(data []byte) error { +func (e *Int32Enum) UnmarshalJSON(data []byte) error { var v int if err := json.Unmarshal(data, &v); err != nil { return err @@ -36,27 +36,27 @@ func (e *SimpleObjectInt32Enum) UnmarshalJSON(data []byte) error { case 69: fallthrough case 181: - *e = SimpleObjectInt32Enum(v) + *e = Int32Enum(v) return nil default: - return fmt.Errorf("invalid value for SimpleObjectInt32Enum: %v", v) + return fmt.Errorf("invalid value for Int32Enum: %v", v) } } -// SimpleObjectIntEnum - An integer enum property. -type SimpleObjectIntEnum int64 +// IntEnum - An integer enum property. +type IntEnum int64 const ( - SimpleObjectIntEnumFirst SimpleObjectIntEnum = 1 - SimpleObjectIntEnumSecond SimpleObjectIntEnum = 2 - SimpleObjectIntEnumThird SimpleObjectIntEnum = 3 + IntEnumFirst IntEnum = 1 + IntEnumSecond IntEnum = 2 + IntEnumThird IntEnum = 3 ) -func (e SimpleObjectIntEnum) ToPointer() *SimpleObjectIntEnum { +func (e IntEnum) ToPointer() *IntEnum { return &e } -func (e *SimpleObjectIntEnum) UnmarshalJSON(data []byte) error { +func (e *IntEnum) UnmarshalJSON(data []byte) error { var v int64 if err := json.Unmarshal(data, &v); err != nil { return err @@ -67,10 +67,10 @@ func (e *SimpleObjectIntEnum) UnmarshalJSON(data []byte) error { case 2: fallthrough case 3: - *e = SimpleObjectIntEnum(v) + *e = IntEnum(v) return nil default: - return fmt.Errorf("invalid value for SimpleObjectIntEnum: %v", v) + return fmt.Errorf("invalid value for IntEnum: %v", v) } } @@ -101,9 +101,9 @@ type SimpleObject struct { // An int32 property. Int32 int `json:"int32" header:"name=int32" pathParam:"name=int32" queryParam:"name=int32" form:"name=int32" multipartForm:"name=int32"` // An int32 enum property. - Int32Enum SimpleObjectInt32Enum `json:"int32Enum" header:"name=int32Enum" pathParam:"name=int32Enum" queryParam:"name=int32Enum" form:"name=int32Enum" multipartForm:"name=int32Enum"` + Int32Enum Int32Enum `json:"int32Enum" header:"name=int32Enum" pathParam:"name=int32Enum" queryParam:"name=int32Enum" form:"name=int32Enum" multipartForm:"name=int32Enum"` // An integer enum property. - IntEnum SimpleObjectIntEnum `json:"intEnum" header:"name=intEnum" pathParam:"name=intEnum" queryParam:"name=intEnum" form:"name=intEnum" multipartForm:"name=intEnum"` + IntEnum IntEnum `json:"intEnum" header:"name=intEnum" pathParam:"name=intEnum" queryParam:"name=intEnum" form:"name=intEnum" multipartForm:"name=intEnum"` // An optional integer property will be null for tests. IntOptNull *int64 `json:"intOptNull,omitempty" header:"name=intOptNull" pathParam:"name=intOptNull" queryParam:"name=intOptNull" form:"name=intOptNull" multipartForm:"name=intOptNull"` // A number property. @@ -218,16 +218,16 @@ func (o *SimpleObject) GetInt32() int { return o.Int32 } -func (o *SimpleObject) GetInt32Enum() SimpleObjectInt32Enum { +func (o *SimpleObject) GetInt32Enum() Int32Enum { if o == nil { - return SimpleObjectInt32Enum(0) + return Int32Enum(0) } return o.Int32Enum } -func (o *SimpleObject) GetIntEnum() SimpleObjectIntEnum { +func (o *SimpleObject) GetIntEnum() IntEnum { if o == nil { - return SimpleObjectIntEnum(0) + return IntEnum(0) } return o.IntEnum } diff --git a/go-client-sdk/pkg/models/shared/simpleobjectcamelcase.go b/go-client-sdk/pkg/models/shared/simpleobjectcamelcase.go index 858cbf91d..b46e63d89 100755 --- a/go-client-sdk/pkg/models/shared/simpleobjectcamelcase.go +++ b/go-client-sdk/pkg/models/shared/simpleobjectcamelcase.go @@ -7,25 +7,25 @@ import ( "fmt" "github.com/ericlagergren/decimal" "math/big" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" "time" ) -// SimpleObjectCamelCaseInt32EnumVal - An int32 enum property. -type SimpleObjectCamelCaseInt32EnumVal int +// Int32EnumVal - An int32 enum property. +type Int32EnumVal int const ( - SimpleObjectCamelCaseInt32EnumValFiftyFive SimpleObjectCamelCaseInt32EnumVal = 55 - SimpleObjectCamelCaseInt32EnumValSixtyNine SimpleObjectCamelCaseInt32EnumVal = 69 - SimpleObjectCamelCaseInt32EnumValOneHundredAndEightyOne SimpleObjectCamelCaseInt32EnumVal = 181 + Int32EnumValFiftyFive Int32EnumVal = 55 + Int32EnumValSixtyNine Int32EnumVal = 69 + Int32EnumValOneHundredAndEightyOne Int32EnumVal = 181 ) -func (e SimpleObjectCamelCaseInt32EnumVal) ToPointer() *SimpleObjectCamelCaseInt32EnumVal { +func (e Int32EnumVal) ToPointer() *Int32EnumVal { return &e } -func (e *SimpleObjectCamelCaseInt32EnumVal) UnmarshalJSON(data []byte) error { +func (e *Int32EnumVal) UnmarshalJSON(data []byte) error { var v int if err := json.Unmarshal(data, &v); err != nil { return err @@ -36,27 +36,27 @@ func (e *SimpleObjectCamelCaseInt32EnumVal) UnmarshalJSON(data []byte) error { case 69: fallthrough case 181: - *e = SimpleObjectCamelCaseInt32EnumVal(v) + *e = Int32EnumVal(v) return nil default: - return fmt.Errorf("invalid value for SimpleObjectCamelCaseInt32EnumVal: %v", v) + return fmt.Errorf("invalid value for Int32EnumVal: %v", v) } } -// SimpleObjectCamelCaseIntEnumVal - An integer enum property. -type SimpleObjectCamelCaseIntEnumVal int64 +// IntEnumVal - An integer enum property. +type IntEnumVal int64 const ( - SimpleObjectCamelCaseIntEnumValFirst SimpleObjectCamelCaseIntEnumVal = 1 - SimpleObjectCamelCaseIntEnumValSecond SimpleObjectCamelCaseIntEnumVal = 2 - SimpleObjectCamelCaseIntEnumValThird SimpleObjectCamelCaseIntEnumVal = 3 + IntEnumValFirst IntEnumVal = 1 + IntEnumValSecond IntEnumVal = 2 + IntEnumValThird IntEnumVal = 3 ) -func (e SimpleObjectCamelCaseIntEnumVal) ToPointer() *SimpleObjectCamelCaseIntEnumVal { +func (e IntEnumVal) ToPointer() *IntEnumVal { return &e } -func (e *SimpleObjectCamelCaseIntEnumVal) UnmarshalJSON(data []byte) error { +func (e *IntEnumVal) UnmarshalJSON(data []byte) error { var v int64 if err := json.Unmarshal(data, &v); err != nil { return err @@ -67,10 +67,10 @@ func (e *SimpleObjectCamelCaseIntEnumVal) UnmarshalJSON(data []byte) error { case 2: fallthrough case 3: - *e = SimpleObjectCamelCaseIntEnumVal(v) + *e = IntEnumVal(v) return nil default: - return fmt.Errorf("invalid value for SimpleObjectCamelCaseIntEnumVal: %v", v) + return fmt.Errorf("invalid value for IntEnumVal: %v", v) } } @@ -96,11 +96,11 @@ type SimpleObjectCamelCase struct { // A float32 property. Float32Val float32 `json:"float32_val"` // An int32 enum property. - Int32EnumVal SimpleObjectCamelCaseInt32EnumVal `json:"int32_enum_val"` + Int32EnumVal Int32EnumVal `json:"int32_enum_val"` // An int32 property. Int32Val int `json:"int32_val"` // An integer enum property. - IntEnumVal SimpleObjectCamelCaseIntEnumVal `json:"int_enum_val"` + IntEnumVal IntEnumVal `json:"int_enum_val"` // An optional integer property will be null for tests. IntOptNullVal *int64 `json:"int_opt_null_val,omitempty"` // An integer property. @@ -196,9 +196,9 @@ func (o *SimpleObjectCamelCase) GetFloat32Val() float32 { return o.Float32Val } -func (o *SimpleObjectCamelCase) GetInt32EnumVal() SimpleObjectCamelCaseInt32EnumVal { +func (o *SimpleObjectCamelCase) GetInt32EnumVal() Int32EnumVal { if o == nil { - return SimpleObjectCamelCaseInt32EnumVal(0) + return Int32EnumVal(0) } return o.Int32EnumVal } @@ -210,9 +210,9 @@ func (o *SimpleObjectCamelCase) GetInt32Val() int { return o.Int32Val } -func (o *SimpleObjectCamelCase) GetIntEnumVal() SimpleObjectCamelCaseIntEnumVal { +func (o *SimpleObjectCamelCase) GetIntEnumVal() IntEnumVal { if o == nil { - return SimpleObjectCamelCaseIntEnumVal(0) + return IntEnumVal(0) } return o.IntEnumVal } diff --git a/go-client-sdk/pkg/models/shared/simpleobjectwithtype.go b/go-client-sdk/pkg/models/shared/simpleobjectwithtype.go index 39a7d348d..b1738f92d 100755 --- a/go-client-sdk/pkg/models/shared/simpleobjectwithtype.go +++ b/go-client-sdk/pkg/models/shared/simpleobjectwithtype.go @@ -7,8 +7,8 @@ import ( "fmt" "github.com/ericlagergren/decimal" "math/big" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" "time" ) diff --git a/go-client-sdk/pkg/models/shared/stronglytypedoneofobject.go b/go-client-sdk/pkg/models/shared/stronglytypedoneofobject.go index 8983ed691..9a5df7e8a 100755 --- a/go-client-sdk/pkg/models/shared/stronglytypedoneofobject.go +++ b/go-client-sdk/pkg/models/shared/stronglytypedoneofobject.go @@ -6,7 +6,7 @@ import ( "encoding/json" "errors" "fmt" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type StronglyTypedOneOfObjectType string diff --git a/go-client-sdk/pkg/models/shared/typedobjectnullableoneof.go b/go-client-sdk/pkg/models/shared/typedobjectnullableoneof.go index 3bb50e0f8..707125d69 100755 --- a/go-client-sdk/pkg/models/shared/typedobjectnullableoneof.go +++ b/go-client-sdk/pkg/models/shared/typedobjectnullableoneof.go @@ -4,7 +4,7 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type TypedObjectNullableOneOfType string diff --git a/go-client-sdk/pkg/models/shared/typedobjectoneof.go b/go-client-sdk/pkg/models/shared/typedobjectoneof.go index b2736702d..5f0a3c673 100755 --- a/go-client-sdk/pkg/models/shared/typedobjectoneof.go +++ b/go-client-sdk/pkg/models/shared/typedobjectoneof.go @@ -4,7 +4,7 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type TypedObjectOneOfType string diff --git a/go-client-sdk/pkg/models/shared/weaklytypedoneofobject.go b/go-client-sdk/pkg/models/shared/weaklytypedoneofobject.go index 0f683b2c0..9dcccbd03 100755 --- a/go-client-sdk/pkg/models/shared/weaklytypedoneofobject.go +++ b/go-client-sdk/pkg/models/shared/weaklytypedoneofobject.go @@ -4,7 +4,7 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type WeaklyTypedOneOfObjectType string diff --git a/go-client-sdk/pkg/models/shared/weaklytypedoneofreadonlyobject.go b/go-client-sdk/pkg/models/shared/weaklytypedoneofreadonlyobject.go index ae48afeca..dae33eaf1 100755 --- a/go-client-sdk/pkg/models/shared/weaklytypedoneofreadonlyobject.go +++ b/go-client-sdk/pkg/models/shared/weaklytypedoneofreadonlyobject.go @@ -4,7 +4,7 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type WeaklyTypedOneOfReadOnlyObjectType string diff --git a/go-client-sdk/pkg/models/shared/weaklytypedoneofreadonlyobjectinput.go b/go-client-sdk/pkg/models/shared/weaklytypedoneofreadonlyobjectinput.go index 88dfea003..8e1fa7e76 100755 --- a/go-client-sdk/pkg/models/shared/weaklytypedoneofreadonlyobjectinput.go +++ b/go-client-sdk/pkg/models/shared/weaklytypedoneofreadonlyobjectinput.go @@ -4,14 +4,14 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type WeaklyTypedOneOfReadOnlyObjectInputType string const ( WeaklyTypedOneOfReadOnlyObjectInputTypeSimpleObject WeaklyTypedOneOfReadOnlyObjectInputType = "simpleObject" - WeaklyTypedOneOfReadOnlyObjectInputTypeReadOnlyObjectInput WeaklyTypedOneOfReadOnlyObjectInputType = "readOnlyObjectInput" + WeaklyTypedOneOfReadOnlyObjectInputTypeReadOnlyObjectInput WeaklyTypedOneOfReadOnlyObjectInputType = "readOnlyObject_input" ) type WeaklyTypedOneOfReadOnlyObjectInput struct { diff --git a/go-client-sdk/pkg/models/shared/weaklytypedoneofreadwriteobject.go b/go-client-sdk/pkg/models/shared/weaklytypedoneofreadwriteobject.go new file mode 100755 index 000000000..f325fd5d1 --- /dev/null +++ b/go-client-sdk/pkg/models/shared/weaklytypedoneofreadwriteobject.go @@ -0,0 +1,71 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +package shared + +import ( + "errors" + "openapi/v2/pkg/utils" +) + +type WeaklyTypedOneOfReadWriteObjectType string + +const ( + WeaklyTypedOneOfReadWriteObjectTypeSimpleObject WeaklyTypedOneOfReadWriteObjectType = "simpleObject" + WeaklyTypedOneOfReadWriteObjectTypeReadWriteObject WeaklyTypedOneOfReadWriteObjectType = "readWriteObject" +) + +type WeaklyTypedOneOfReadWriteObject struct { + SimpleObject *SimpleObject + ReadWriteObject *ReadWriteObject + + Type WeaklyTypedOneOfReadWriteObjectType +} + +func CreateWeaklyTypedOneOfReadWriteObjectSimpleObject(simpleObject SimpleObject) WeaklyTypedOneOfReadWriteObject { + typ := WeaklyTypedOneOfReadWriteObjectTypeSimpleObject + + return WeaklyTypedOneOfReadWriteObject{ + SimpleObject: &simpleObject, + Type: typ, + } +} + +func CreateWeaklyTypedOneOfReadWriteObjectReadWriteObject(readWriteObject ReadWriteObject) WeaklyTypedOneOfReadWriteObject { + typ := WeaklyTypedOneOfReadWriteObjectTypeReadWriteObject + + return WeaklyTypedOneOfReadWriteObject{ + ReadWriteObject: &readWriteObject, + Type: typ, + } +} + +func (u *WeaklyTypedOneOfReadWriteObject) UnmarshalJSON(data []byte) error { + + readWriteObject := ReadWriteObject{} + if err := utils.UnmarshalJSON(data, &readWriteObject, "", true, true); err == nil { + u.ReadWriteObject = &readWriteObject + u.Type = WeaklyTypedOneOfReadWriteObjectTypeReadWriteObject + return nil + } + + simpleObject := SimpleObject{} + if err := utils.UnmarshalJSON(data, &simpleObject, "", true, true); err == nil { + u.SimpleObject = &simpleObject + u.Type = WeaklyTypedOneOfReadWriteObjectTypeSimpleObject + return nil + } + + return errors.New("could not unmarshal into supported union types") +} + +func (u WeaklyTypedOneOfReadWriteObject) MarshalJSON() ([]byte, error) { + if u.SimpleObject != nil { + return utils.MarshalJSON(u.SimpleObject, "", true) + } + + if u.ReadWriteObject != nil { + return utils.MarshalJSON(u.ReadWriteObject, "", true) + } + + return nil, errors.New("could not marshal union type: all fields are null") +} diff --git a/go-client-sdk/pkg/models/shared/weaklytypedoneofreadwriteobjectinput.go b/go-client-sdk/pkg/models/shared/weaklytypedoneofreadwriteobjectinput.go deleted file mode 100755 index 691f275f7..000000000 --- a/go-client-sdk/pkg/models/shared/weaklytypedoneofreadwriteobjectinput.go +++ /dev/null @@ -1,71 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -package shared - -import ( - "errors" - "openapi/pkg/utils" -) - -type WeaklyTypedOneOfReadWriteObjectInputType string - -const ( - WeaklyTypedOneOfReadWriteObjectInputTypeSimpleObject WeaklyTypedOneOfReadWriteObjectInputType = "simpleObject" - WeaklyTypedOneOfReadWriteObjectInputTypeReadWriteObjectInput WeaklyTypedOneOfReadWriteObjectInputType = "readWriteObjectInput" -) - -type WeaklyTypedOneOfReadWriteObjectInput struct { - SimpleObject *SimpleObject - ReadWriteObjectInput *ReadWriteObjectInput - - Type WeaklyTypedOneOfReadWriteObjectInputType -} - -func CreateWeaklyTypedOneOfReadWriteObjectInputSimpleObject(simpleObject SimpleObject) WeaklyTypedOneOfReadWriteObjectInput { - typ := WeaklyTypedOneOfReadWriteObjectInputTypeSimpleObject - - return WeaklyTypedOneOfReadWriteObjectInput{ - SimpleObject: &simpleObject, - Type: typ, - } -} - -func CreateWeaklyTypedOneOfReadWriteObjectInputReadWriteObjectInput(readWriteObjectInput ReadWriteObjectInput) WeaklyTypedOneOfReadWriteObjectInput { - typ := WeaklyTypedOneOfReadWriteObjectInputTypeReadWriteObjectInput - - return WeaklyTypedOneOfReadWriteObjectInput{ - ReadWriteObjectInput: &readWriteObjectInput, - Type: typ, - } -} - -func (u *WeaklyTypedOneOfReadWriteObjectInput) UnmarshalJSON(data []byte) error { - - readWriteObjectInput := ReadWriteObjectInput{} - if err := utils.UnmarshalJSON(data, &readWriteObjectInput, "", true, true); err == nil { - u.ReadWriteObjectInput = &readWriteObjectInput - u.Type = WeaklyTypedOneOfReadWriteObjectInputTypeReadWriteObjectInput - return nil - } - - simpleObject := SimpleObject{} - if err := utils.UnmarshalJSON(data, &simpleObject, "", true, true); err == nil { - u.SimpleObject = &simpleObject - u.Type = WeaklyTypedOneOfReadWriteObjectInputTypeSimpleObject - return nil - } - - return errors.New("could not unmarshal into supported union types") -} - -func (u WeaklyTypedOneOfReadWriteObjectInput) MarshalJSON() ([]byte, error) { - if u.SimpleObject != nil { - return utils.MarshalJSON(u.SimpleObject, "", true) - } - - if u.ReadWriteObjectInput != nil { - return utils.MarshalJSON(u.ReadWriteObjectInput, "", true) - } - - return nil, errors.New("could not marshal union type: all fields are null") -} diff --git a/go-client-sdk/pkg/models/shared/weaklytypedoneofreadwriteobjectoutput.go b/go-client-sdk/pkg/models/shared/weaklytypedoneofreadwriteobjectoutput.go index f0fca898b..f2f1d73b2 100755 --- a/go-client-sdk/pkg/models/shared/weaklytypedoneofreadwriteobjectoutput.go +++ b/go-client-sdk/pkg/models/shared/weaklytypedoneofreadwriteobjectoutput.go @@ -4,14 +4,14 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type WeaklyTypedOneOfReadWriteObjectOutputType string const ( WeaklyTypedOneOfReadWriteObjectOutputTypeSimpleObject WeaklyTypedOneOfReadWriteObjectOutputType = "simpleObject" - WeaklyTypedOneOfReadWriteObjectOutputTypeReadWriteObjectOutput WeaklyTypedOneOfReadWriteObjectOutputType = "readWriteObjectOutput" + WeaklyTypedOneOfReadWriteObjectOutputTypeReadWriteObjectOutput WeaklyTypedOneOfReadWriteObjectOutputType = "readWriteObject_output" ) type WeaklyTypedOneOfReadWriteObjectOutput struct { diff --git a/go-client-sdk/pkg/models/shared/weaklytypedoneofwriteonlyobject.go b/go-client-sdk/pkg/models/shared/weaklytypedoneofwriteonlyobject.go index 587fda239..0fd7d641d 100755 --- a/go-client-sdk/pkg/models/shared/weaklytypedoneofwriteonlyobject.go +++ b/go-client-sdk/pkg/models/shared/weaklytypedoneofwriteonlyobject.go @@ -4,7 +4,7 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type WeaklyTypedOneOfWriteOnlyObjectType string diff --git a/go-client-sdk/pkg/models/shared/weaklytypedoneofwriteonlyobjectoutput.go b/go-client-sdk/pkg/models/shared/weaklytypedoneofwriteonlyobjectoutput.go index fe42b9ae5..6db0f4b54 100755 --- a/go-client-sdk/pkg/models/shared/weaklytypedoneofwriteonlyobjectoutput.go +++ b/go-client-sdk/pkg/models/shared/weaklytypedoneofwriteonlyobjectoutput.go @@ -4,14 +4,14 @@ package shared import ( "errors" - "openapi/pkg/utils" + "openapi/v2/pkg/utils" ) type WeaklyTypedOneOfWriteOnlyObjectOutputType string const ( WeaklyTypedOneOfWriteOnlyObjectOutputTypeSimpleObject WeaklyTypedOneOfWriteOnlyObjectOutputType = "simpleObject" - WeaklyTypedOneOfWriteOnlyObjectOutputTypeWriteOnlyObjectOutput WeaklyTypedOneOfWriteOnlyObjectOutputType = "writeOnlyObjectOutput" + WeaklyTypedOneOfWriteOnlyObjectOutputTypeWriteOnlyObjectOutput WeaklyTypedOneOfWriteOnlyObjectOutputType = "writeOnlyObject_output" ) type WeaklyTypedOneOfWriteOnlyObjectOutput struct { diff --git a/go-client-sdk/pkg/utils/form.go b/go-client-sdk/pkg/utils/form.go index ecd19193e..c0739f697 100755 --- a/go-client-sdk/pkg/utils/form.go +++ b/go-client-sdk/pkg/utils/form.go @@ -12,7 +12,7 @@ import ( "github.com/ericlagergren/decimal" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func populateForm(paramName string, explode bool, objType reflect.Type, objValue reflect.Value, delimiter string, getFieldName func(reflect.StructField) string) url.Values { diff --git a/go-client-sdk/pkg/utils/json.go b/go-client-sdk/pkg/utils/json.go index eac494a6a..86b06be6c 100755 --- a/go-client-sdk/pkg/utils/json.go +++ b/go-client-sdk/pkg/utils/json.go @@ -12,7 +12,7 @@ import ( "time" "unsafe" - "openapi/pkg/types" + "openapi/v2/pkg/types" "github.com/ericlagergren/decimal" ) diff --git a/go-client-sdk/pkg/utils/pathparams.go b/go-client-sdk/pkg/utils/pathparams.go index b575541d0..bbbe169ed 100755 --- a/go-client-sdk/pkg/utils/pathparams.go +++ b/go-client-sdk/pkg/utils/pathparams.go @@ -13,7 +13,7 @@ import ( "github.com/ericlagergren/decimal" - "openapi/pkg/types" + "openapi/v2/pkg/types" ) func GenerateURL(ctx context.Context, serverURL, path string, pathParams interface{}, globals map[string]map[string]map[string]interface{}) (string, error) { diff --git a/go-client-sdk/requestbodies.go b/go-client-sdk/requestbodies.go index c56547cff..aa73db637 100755 --- a/go-client-sdk/requestbodies.go +++ b/go-client-sdk/requestbodies.go @@ -10,27 +10,27 @@ import ( "io" "math/big" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/models/shared" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" "strings" "time" ) -// requestBodies - Endpoints for testing request bodies. -type requestBodies struct { +// RequestBodies - Endpoints for testing request bodies. +type RequestBodies struct { sdkConfiguration sdkConfiguration } -func newRequestBodies(sdkConfig sdkConfiguration) *requestBodies { - return &requestBodies{ +func newRequestBodies(sdkConfig sdkConfiguration) *RequestBodies { + return &RequestBodies{ sdkConfiguration: sdkConfig, } } -func (s *requestBodies) NullableObjectPost(ctx context.Context, request *shared.NullableObject) (*operations.NullableObjectPostResponse, error) { +func (s *RequestBodies) NullableObjectPost(ctx context.Context, request *shared.NullableObject) (*operations.NullableObjectPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/nullableRequiredObject" @@ -97,7 +97,7 @@ func (s *requestBodies) NullableObjectPost(ctx context.Context, request *shared. return res, nil } -func (s *requestBodies) NullableRequiredEmptyObjectPost(ctx context.Context, request operations.NullableRequiredEmptyObjectPostRequestBody) (*operations.NullableRequiredEmptyObjectPostResponse, error) { +func (s *RequestBodies) NullableRequiredEmptyObjectPost(ctx context.Context, request operations.NullableRequiredEmptyObjectPostRequestBody) (*operations.NullableRequiredEmptyObjectPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/nullableRequiredEmptyObject" @@ -147,7 +147,7 @@ func (s *requestBodies) NullableRequiredEmptyObjectPost(ctx context.Context, req switch { case utils.MatchContentType(contentType, `application/json`): out := string(rawBody) - res.NullableRequiredEmptyObjectPost200ApplicationJSONString = &out + res.Res = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -160,7 +160,7 @@ func (s *requestBodies) NullableRequiredEmptyObjectPost(ctx context.Context, req return res, nil } -func (s *requestBodies) NullableRequiredPropertyPost(ctx context.Context, request operations.NullableRequiredPropertyPostRequestBody) (*operations.NullableRequiredPropertyPostResponse, error) { +func (s *RequestBodies) NullableRequiredPropertyPost(ctx context.Context, request operations.NullableRequiredPropertyPostRequestBody) (*operations.NullableRequiredPropertyPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/nullableRequiredProperty" @@ -210,7 +210,7 @@ func (s *requestBodies) NullableRequiredPropertyPost(ctx context.Context, reques switch { case utils.MatchContentType(contentType, `application/json`): out := string(rawBody) - res.NullableRequiredPropertyPost200ApplicationJSONString = &out + res.Res = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -223,7 +223,7 @@ func (s *requestBodies) NullableRequiredPropertyPost(ctx context.Context, reques return res, nil } -func (s *requestBodies) NullableRequiredSharedObjectPost(ctx context.Context, request operations.NullableRequiredSharedObjectPostRequestBody) (*operations.NullableRequiredSharedObjectPostResponse, error) { +func (s *RequestBodies) NullableRequiredSharedObjectPost(ctx context.Context, request operations.NullableRequiredSharedObjectPostRequestBody) (*operations.NullableRequiredSharedObjectPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/nullableRequiredSharedObject" @@ -273,7 +273,7 @@ func (s *requestBodies) NullableRequiredSharedObjectPost(ctx context.Context, re switch { case utils.MatchContentType(contentType, `application/json`): out := string(rawBody) - res.NullableRequiredSharedObjectPost200ApplicationJSONString = &out + res.Res = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -286,7 +286,7 @@ func (s *requestBodies) NullableRequiredSharedObjectPost(ctx context.Context, re return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONArray(ctx context.Context, request []shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONArray(ctx context.Context, request []shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -354,7 +354,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArray(ctx context.Context, return nil, err } - res.SimpleObjects = out + res.Res = out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -367,7 +367,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArray(ctx context.Context, return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONArrayCamelCase(ctx context.Context, request []shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayCamelCaseResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONArrayCamelCase(ctx context.Context, request []shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayCamelCaseResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -435,7 +435,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayCamelCase(ctx context return nil, err } - res.SimpleObjectCamelCases = out + res.Res = out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -448,7 +448,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayCamelCase(ctx context return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONArrayObj(ctx context.Context, request []shared.SimpleObject) (*operations.RequestBodyPostApplicationJSONArrayObjResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONArrayObj(ctx context.Context, request []shared.SimpleObject) (*operations.RequestBodyPostApplicationJSONArrayObjResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/application/json/array/objResponse" @@ -515,7 +515,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayObj(ctx context.Conte return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONArrayObjCamelCase(ctx context.Context, request []shared.SimpleObjectCamelCase) (*operations.RequestBodyPostApplicationJSONArrayObjCamelCaseResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONArrayObjCamelCase(ctx context.Context, request []shared.SimpleObjectCamelCase) (*operations.RequestBodyPostApplicationJSONArrayObjCamelCaseResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/application/json/array/objResponseCamelCase" @@ -582,7 +582,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayObjCamelCase(ctx cont return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfArray(ctx context.Context, request [][]shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfArrayResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONArrayOfArray(ctx context.Context, request [][]shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfArrayResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -650,7 +650,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfArray(ctx context.C return nil, err } - res.Arrs = out + res.Res = out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -663,7 +663,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfArray(ctx context.C return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfArrayCamelCase(ctx context.Context, request [][]shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfArrayCamelCaseResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONArrayOfArrayCamelCase(ctx context.Context, request [][]shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfArrayCamelCaseResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -731,7 +731,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfArrayCamelCase(ctx return nil, err } - res.Arrs = out + res.Res = out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -744,7 +744,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfArrayCamelCase(ctx return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfArrayOfPrimitive(ctx context.Context, request [][]string, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfArrayOfPrimitiveResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONArrayOfArrayOfPrimitive(ctx context.Context, request [][]string, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfArrayOfPrimitiveResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -812,7 +812,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfArrayOfPrimitive(ct return nil, err } - res.Arrs = out + res.Res = out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -825,7 +825,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfArrayOfPrimitive(ct return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfMap(ctx context.Context, request []map[string]shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfMapResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONArrayOfMap(ctx context.Context, request []map[string]shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfMapResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -893,7 +893,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfMap(ctx context.Con return nil, err } - res.Maps = out + res.Res = out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -906,7 +906,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfMap(ctx context.Con return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfMapCamelCase(ctx context.Context, request []map[string]shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfMapCamelCaseResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONArrayOfMapCamelCase(ctx context.Context, request []map[string]shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfMapCamelCaseResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -974,7 +974,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfMapCamelCase(ctx co return nil, err } - res.Maps = out + res.Res = out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -987,7 +987,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfMapCamelCase(ctx co return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfPrimitive(ctx context.Context, request []string, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfPrimitiveResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONArrayOfPrimitive(ctx context.Context, request []string, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONArrayOfPrimitiveResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -1055,7 +1055,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfPrimitive(ctx conte return nil, err } - res.Strings = out + res.Res = out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -1068,7 +1068,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONArrayOfPrimitive(ctx conte return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONDeep(ctx context.Context, request shared.DeepObject) (*operations.RequestBodyPostApplicationJSONDeepResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONDeep(ctx context.Context, request shared.DeepObject) (*operations.RequestBodyPostApplicationJSONDeepResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/application/json/deep" @@ -1135,7 +1135,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONDeep(ctx context.Context, return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONDeepCamelCase(ctx context.Context, request shared.DeepObjectCamelCase) (*operations.RequestBodyPostApplicationJSONDeepCamelCaseResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONDeepCamelCase(ctx context.Context, request shared.DeepObjectCamelCase) (*operations.RequestBodyPostApplicationJSONDeepCamelCaseResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/application/json/deep/camelcase" @@ -1202,7 +1202,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONDeepCamelCase(ctx context. return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONMap(ctx context.Context, request map[string]shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONMap(ctx context.Context, request map[string]shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -1283,7 +1283,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONMap(ctx context.Context, r return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONMapCamelCase(ctx context.Context, request map[string]shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapCamelCaseResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONMapCamelCase(ctx context.Context, request map[string]shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapCamelCaseResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -1364,7 +1364,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONMapCamelCase(ctx context.C return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONMapObj(ctx context.Context, request map[string]shared.SimpleObject) (*operations.RequestBodyPostApplicationJSONMapObjResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONMapObj(ctx context.Context, request map[string]shared.SimpleObject) (*operations.RequestBodyPostApplicationJSONMapObjResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/application/json/map/objResponse" @@ -1431,7 +1431,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONMapObj(ctx context.Context return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONMapObjCamelCase(ctx context.Context, request map[string]shared.SimpleObjectCamelCase) (*operations.RequestBodyPostApplicationJSONMapObjCamelCaseResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONMapObjCamelCase(ctx context.Context, request map[string]shared.SimpleObjectCamelCase) (*operations.RequestBodyPostApplicationJSONMapObjCamelCaseResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/application/json/map/objResponseCamelCase" @@ -1498,7 +1498,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONMapObjCamelCase(ctx contex return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONMapOfArray(ctx context.Context, request map[string][]shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfArrayResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONMapOfArray(ctx context.Context, request map[string][]shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfArrayResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -1579,7 +1579,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONMapOfArray(ctx context.Con return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONMapOfArrayCamelCase(ctx context.Context, request map[string][]shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfArrayCamelCaseResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONMapOfArrayCamelCase(ctx context.Context, request map[string][]shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfArrayCamelCaseResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -1660,7 +1660,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONMapOfArrayCamelCase(ctx co return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONMapOfMap(ctx context.Context, request map[string]map[string]shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfMapResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONMapOfMap(ctx context.Context, request map[string]map[string]shared.SimpleObject, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfMapResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -1741,7 +1741,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONMapOfMap(ctx context.Conte return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONMapOfMapCamelCase(ctx context.Context, request map[string]map[string]shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfMapCamelCaseResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONMapOfMapCamelCase(ctx context.Context, request map[string]map[string]shared.SimpleObjectCamelCase, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfMapCamelCaseResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -1822,7 +1822,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONMapOfMapCamelCase(ctx cont return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONMapOfMapOfPrimitive(ctx context.Context, request map[string]map[string]string, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfMapOfPrimitiveResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONMapOfMapOfPrimitive(ctx context.Context, request map[string]map[string]string, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfMapOfPrimitiveResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -1903,7 +1903,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONMapOfMapOfPrimitive(ctx co return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONMapOfPrimitive(ctx context.Context, request map[string]string, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfPrimitiveResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONMapOfPrimitive(ctx context.Context, request map[string]string, opts ...operations.Option) (*operations.RequestBodyPostApplicationJSONMapOfPrimitiveResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -1984,7 +1984,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONMapOfPrimitive(ctx context return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONMultipleJSONFiltered(ctx context.Context, request shared.SimpleObject) (*operations.RequestBodyPostApplicationJSONMultipleJSONFilteredResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONMultipleJSONFiltered(ctx context.Context, request shared.SimpleObject) (*operations.RequestBodyPostApplicationJSONMultipleJSONFilteredResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/application/json/multiple/json/filtered" @@ -2051,7 +2051,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONMultipleJSONFiltered(ctx c return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONSimple(ctx context.Context, request shared.SimpleObject) (*operations.RequestBodyPostApplicationJSONSimpleResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONSimple(ctx context.Context, request shared.SimpleObject) (*operations.RequestBodyPostApplicationJSONSimpleResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/application/json/simple" @@ -2118,7 +2118,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONSimple(ctx context.Context return res, nil } -func (s *requestBodies) RequestBodyPostApplicationJSONSimpleCamelCase(ctx context.Context, request shared.SimpleObjectCamelCase) (*operations.RequestBodyPostApplicationJSONSimpleCamelCaseResponse, error) { +func (s *RequestBodies) RequestBodyPostApplicationJSONSimpleCamelCase(ctx context.Context, request shared.SimpleObjectCamelCase) (*operations.RequestBodyPostApplicationJSONSimpleCamelCaseResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/application/json/camelcase" @@ -2185,7 +2185,7 @@ func (s *requestBodies) RequestBodyPostApplicationJSONSimpleCamelCase(ctx contex return res, nil } -func (s *requestBodies) RequestBodyPostComplexNumberTypes(ctx context.Context, request operations.RequestBodyPostComplexNumberTypesRequest) (*operations.RequestBodyPostComplexNumberTypesResponse, error) { +func (s *RequestBodies) RequestBodyPostComplexNumberTypes(ctx context.Context, request operations.RequestBodyPostComplexNumberTypesRequest) (*operations.RequestBodyPostComplexNumberTypesResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url, err := utils.GenerateURL(ctx, baseURL, "/anything/requestBodies/post/{pathBigInt}/{pathBigIntStr}/{pathDecimal}/{pathDecimalStr}/complex-number-types", request, s.sdkConfiguration.Globals) if err != nil { @@ -2241,12 +2241,12 @@ func (s *requestBodies) RequestBodyPostComplexNumberTypes(ctx context.Context, r case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostComplexNumberTypes200ApplicationJSON + var out operations.RequestBodyPostComplexNumberTypesResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostComplexNumberTypes200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -2259,7 +2259,7 @@ func (s *requestBodies) RequestBodyPostComplexNumberTypes(ctx context.Context, r return res, nil } -func (s *requestBodies) RequestBodyPostDefaultsAndConsts(ctx context.Context, request shared.DefaultsAndConsts) (*operations.RequestBodyPostDefaultsAndConstsResponse, error) { +func (s *RequestBodies) RequestBodyPostDefaultsAndConsts(ctx context.Context, request shared.DefaultsAndConsts) (*operations.RequestBodyPostDefaultsAndConstsResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/defaultsAndConsts" @@ -2308,12 +2308,12 @@ func (s *requestBodies) RequestBodyPostDefaultsAndConsts(ctx context.Context, re case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostDefaultsAndConsts200ApplicationJSON + var out operations.RequestBodyPostDefaultsAndConstsResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -2326,7 +2326,7 @@ func (s *requestBodies) RequestBodyPostDefaultsAndConsts(ctx context.Context, re return res, nil } -func (s *requestBodies) RequestBodyPostEmptyObject(ctx context.Context, request operations.RequestBodyPostEmptyObjectRequestBody) (*operations.RequestBodyPostEmptyObjectResponse, error) { +func (s *RequestBodies) RequestBodyPostEmptyObject(ctx context.Context, request operations.RequestBodyPostEmptyObjectRequestBody) (*operations.RequestBodyPostEmptyObjectResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/empty-object" @@ -2375,12 +2375,12 @@ func (s *requestBodies) RequestBodyPostEmptyObject(ctx context.Context, request case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostEmptyObject200ApplicationJSON + var out operations.RequestBodyPostEmptyObjectResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostEmptyObject200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -2393,7 +2393,7 @@ func (s *requestBodies) RequestBodyPostEmptyObject(ctx context.Context, request return res, nil } -func (s *requestBodies) RequestBodyPostFormDeep(ctx context.Context, request shared.DeepObject) (*operations.RequestBodyPostFormDeepResponse, error) { +func (s *RequestBodies) RequestBodyPostFormDeep(ctx context.Context, request shared.DeepObject) (*operations.RequestBodyPostFormDeepResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/form/deep" @@ -2460,7 +2460,7 @@ func (s *requestBodies) RequestBodyPostFormDeep(ctx context.Context, request sha return res, nil } -func (s *requestBodies) RequestBodyPostFormMapPrimitive(ctx context.Context, request map[string]string) (*operations.RequestBodyPostFormMapPrimitiveResponse, error) { +func (s *RequestBodies) RequestBodyPostFormMapPrimitive(ctx context.Context, request map[string]string) (*operations.RequestBodyPostFormMapPrimitiveResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/form/map/primitive" @@ -2527,7 +2527,7 @@ func (s *requestBodies) RequestBodyPostFormMapPrimitive(ctx context.Context, req return res, nil } -func (s *requestBodies) RequestBodyPostFormSimple(ctx context.Context, request shared.SimpleObject) (*operations.RequestBodyPostFormSimpleResponse, error) { +func (s *RequestBodies) RequestBodyPostFormSimple(ctx context.Context, request shared.SimpleObject) (*operations.RequestBodyPostFormSimpleResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/form/simple" @@ -2594,7 +2594,7 @@ func (s *requestBodies) RequestBodyPostFormSimple(ctx context.Context, request s return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesArrayBigInt(ctx context.Context, request []*big.Int) (*operations.RequestBodyPostJSONDataTypesArrayBigIntResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesArrayBigInt(ctx context.Context, request []*big.Int) (*operations.RequestBodyPostJSONDataTypesArrayBigIntResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/array/bigInt" @@ -2643,12 +2643,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesArrayBigInt(ctx context.Cont case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesArrayBigIntResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -2661,7 +2661,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesArrayBigInt(ctx context.Cont return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesArrayDate(ctx context.Context, request []types.Date) (*operations.RequestBodyPostJSONDataTypesArrayDateResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesArrayDate(ctx context.Context, request []types.Date) (*operations.RequestBodyPostJSONDataTypesArrayDateResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/array/date" @@ -2710,12 +2710,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesArrayDate(ctx context.Contex case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesArrayDateResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -2728,7 +2728,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesArrayDate(ctx context.Contex return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesArrayDecimalStr(ctx context.Context, request []*decimal.Big) (*operations.RequestBodyPostJSONDataTypesArrayDecimalStrResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesArrayDecimalStr(ctx context.Context, request []*decimal.Big) (*operations.RequestBodyPostJSONDataTypesArrayDecimalStrResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/array/decimalStr" @@ -2777,12 +2777,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesArrayDecimalStr(ctx context. case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -2795,7 +2795,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesArrayDecimalStr(ctx context. return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesBigInt(ctx context.Context, request *big.Int) (*operations.RequestBodyPostJSONDataTypesBigIntResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesBigInt(ctx context.Context, request *big.Int) (*operations.RequestBodyPostJSONDataTypesBigIntResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/bigint" @@ -2844,12 +2844,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesBigInt(ctx context.Context, case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesBigInt200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesBigIntResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesBigInt200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -2862,7 +2862,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesBigInt(ctx context.Context, return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesBigIntStr(ctx context.Context, request *big.Int) (*operations.RequestBodyPostJSONDataTypesBigIntStrResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesBigIntStr(ctx context.Context, request *big.Int) (*operations.RequestBodyPostJSONDataTypesBigIntStrResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/bigintStr" @@ -2911,12 +2911,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesBigIntStr(ctx context.Contex case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesBigIntStrResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -2929,7 +2929,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesBigIntStr(ctx context.Contex return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesBoolean(ctx context.Context, request bool) (*operations.RequestBodyPostJSONDataTypesBooleanResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesBoolean(ctx context.Context, request bool) (*operations.RequestBodyPostJSONDataTypesBooleanResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/boolean" @@ -2978,12 +2978,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesBoolean(ctx context.Context, case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesBoolean200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesBooleanResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesBoolean200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -2996,7 +2996,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesBoolean(ctx context.Context, return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesDate(ctx context.Context, request types.Date) (*operations.RequestBodyPostJSONDataTypesDateResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesDate(ctx context.Context, request types.Date) (*operations.RequestBodyPostJSONDataTypesDateResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/date" @@ -3045,12 +3045,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesDate(ctx context.Context, re case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesDate200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesDateResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesDate200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3063,7 +3063,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesDate(ctx context.Context, re return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesDateTime(ctx context.Context, request time.Time) (*operations.RequestBodyPostJSONDataTypesDateTimeResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesDateTime(ctx context.Context, request time.Time) (*operations.RequestBodyPostJSONDataTypesDateTimeResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/dateTime" @@ -3112,12 +3112,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesDateTime(ctx context.Context case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesDateTime200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesDateTimeResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesDateTime200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3130,7 +3130,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesDateTime(ctx context.Context return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesDecimal(ctx context.Context, request *decimal.Big) (*operations.RequestBodyPostJSONDataTypesDecimalResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesDecimal(ctx context.Context, request *decimal.Big) (*operations.RequestBodyPostJSONDataTypesDecimalResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/decimal" @@ -3179,12 +3179,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesDecimal(ctx context.Context, case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesDecimal200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesDecimalResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesDecimal200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3197,7 +3197,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesDecimal(ctx context.Context, return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesDecimalStr(ctx context.Context, request *decimal.Big) (*operations.RequestBodyPostJSONDataTypesDecimalStrResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesDecimalStr(ctx context.Context, request *decimal.Big) (*operations.RequestBodyPostJSONDataTypesDecimalStrResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/decimalStr" @@ -3246,12 +3246,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesDecimalStr(ctx context.Conte case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesDecimalStrResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3264,7 +3264,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesDecimalStr(ctx context.Conte return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesFloat32(ctx context.Context, request float64) (*operations.RequestBodyPostJSONDataTypesFloat32Response, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesFloat32(ctx context.Context, request float64) (*operations.RequestBodyPostJSONDataTypesFloat32Response, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/float32" @@ -3313,12 +3313,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesFloat32(ctx context.Context, case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesFloat32200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesFloat32ResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesFloat32200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3331,7 +3331,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesFloat32(ctx context.Context, return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesInt32(ctx context.Context, request int) (*operations.RequestBodyPostJSONDataTypesInt32Response, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesInt32(ctx context.Context, request int) (*operations.RequestBodyPostJSONDataTypesInt32Response, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/int32" @@ -3380,12 +3380,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesInt32(ctx context.Context, r case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesInt32200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesInt32ResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesInt32200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3398,7 +3398,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesInt32(ctx context.Context, r return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesInteger(ctx context.Context, request int64) (*operations.RequestBodyPostJSONDataTypesIntegerResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesInteger(ctx context.Context, request int64) (*operations.RequestBodyPostJSONDataTypesIntegerResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/integer" @@ -3447,12 +3447,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesInteger(ctx context.Context, case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesInteger200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesIntegerResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesInteger200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3465,7 +3465,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesInteger(ctx context.Context, return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesMapBigIntStr(ctx context.Context, request map[string]*big.Int) (*operations.RequestBodyPostJSONDataTypesMapBigIntStrResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesMapBigIntStr(ctx context.Context, request map[string]*big.Int) (*operations.RequestBodyPostJSONDataTypesMapBigIntStrResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/map/bigIntStr" @@ -3514,12 +3514,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesMapBigIntStr(ctx context.Con case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesMapBigIntStrResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3532,7 +3532,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesMapBigIntStr(ctx context.Con return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesMapDateTime(ctx context.Context, request map[string]time.Time) (*operations.RequestBodyPostJSONDataTypesMapDateTimeResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesMapDateTime(ctx context.Context, request map[string]time.Time) (*operations.RequestBodyPostJSONDataTypesMapDateTimeResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/map/dateTime" @@ -3581,12 +3581,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesMapDateTime(ctx context.Cont case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesMapDateTimeResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3599,7 +3599,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesMapDateTime(ctx context.Cont return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesMapDecimal(ctx context.Context, request map[string]*decimal.Big) (*operations.RequestBodyPostJSONDataTypesMapDecimalResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesMapDecimal(ctx context.Context, request map[string]*decimal.Big) (*operations.RequestBodyPostJSONDataTypesMapDecimalResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/map/decimal" @@ -3648,12 +3648,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesMapDecimal(ctx context.Conte case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesMapDecimalResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3666,7 +3666,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesMapDecimal(ctx context.Conte return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesNumber(ctx context.Context, request float64) (*operations.RequestBodyPostJSONDataTypesNumberResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesNumber(ctx context.Context, request float64) (*operations.RequestBodyPostJSONDataTypesNumberResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/number" @@ -3715,12 +3715,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesNumber(ctx context.Context, case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesNumber200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesNumberResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesNumber200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3733,7 +3733,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesNumber(ctx context.Context, return res, nil } -func (s *requestBodies) RequestBodyPostJSONDataTypesString(ctx context.Context, request string) (*operations.RequestBodyPostJSONDataTypesStringResponse, error) { +func (s *RequestBodies) RequestBodyPostJSONDataTypesString(ctx context.Context, request string) (*operations.RequestBodyPostJSONDataTypesStringResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/jsonDataTypes/string" @@ -3782,12 +3782,12 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesString(ctx context.Context, case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostJSONDataTypesString200ApplicationJSON + var out operations.RequestBodyPostJSONDataTypesStringResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostJSONDataTypesString200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -3800,7 +3800,7 @@ func (s *requestBodies) RequestBodyPostJSONDataTypesString(ctx context.Context, return res, nil } -func (s *requestBodies) RequestBodyPostMultipleContentTypesComponentFiltered(ctx context.Context, request shared.SimpleObject) (*operations.RequestBodyPostMultipleContentTypesComponentFilteredResponse, error) { +func (s *RequestBodies) RequestBodyPostMultipleContentTypesComponentFiltered(ctx context.Context, request shared.SimpleObject) (*operations.RequestBodyPostMultipleContentTypesComponentFilteredResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/multiple/contentTypes/component/filtered" @@ -3867,7 +3867,7 @@ func (s *requestBodies) RequestBodyPostMultipleContentTypesComponentFiltered(ctx return res, nil } -func (s *requestBodies) RequestBodyPostMultipleContentTypesInlineFiltered(ctx context.Context, request operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON) (*operations.RequestBodyPostMultipleContentTypesInlineFilteredResponse, error) { +func (s *RequestBodies) RequestBodyPostMultipleContentTypesInlineFiltered(ctx context.Context, request operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody) (*operations.RequestBodyPostMultipleContentTypesInlineFilteredResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/multiple/contentTypes/inline/filtered" @@ -3934,7 +3934,7 @@ func (s *requestBodies) RequestBodyPostMultipleContentTypesInlineFiltered(ctx co return res, nil } -func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitParamForm(ctx context.Context, requestBody operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded, paramStr string) (*operations.RequestBodyPostMultipleContentTypesSplitParamFormResponse, error) { +func (s *RequestBodies) RequestBodyPostMultipleContentTypesSplitParamForm(ctx context.Context, requestBody operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody, paramStr string) (*operations.RequestBodyPostMultipleContentTypesSplitParamFormResponse, error) { request := operations.RequestBodyPostMultipleContentTypesSplitParamFormRequest{ RequestBody: requestBody, ParamStr: paramStr, @@ -4010,7 +4010,7 @@ func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitParamForm(ctx co return res, nil } -func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitParamJSON(ctx context.Context, requestBody operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON, paramStr string) (*operations.RequestBodyPostMultipleContentTypesSplitParamJSONResponse, error) { +func (s *RequestBodies) RequestBodyPostMultipleContentTypesSplitParamJSON(ctx context.Context, requestBody operations.RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody, paramStr string) (*operations.RequestBodyPostMultipleContentTypesSplitParamJSONResponse, error) { request := operations.RequestBodyPostMultipleContentTypesSplitParamJSONRequest{ RequestBody: requestBody, ParamStr: paramStr, @@ -4086,7 +4086,7 @@ func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitParamJSON(ctx co return res, nil } -func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitParamMultipart(ctx context.Context, requestBody operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData, paramStr string) (*operations.RequestBodyPostMultipleContentTypesSplitParamMultipartResponse, error) { +func (s *RequestBodies) RequestBodyPostMultipleContentTypesSplitParamMultipart(ctx context.Context, requestBody operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody, paramStr string) (*operations.RequestBodyPostMultipleContentTypesSplitParamMultipartResponse, error) { request := operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequest{ RequestBody: requestBody, ParamStr: paramStr, @@ -4162,7 +4162,7 @@ func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitParamMultipart(c return res, nil } -func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitForm(ctx context.Context, request operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded) (*operations.RequestBodyPostMultipleContentTypesSplitFormResponse, error) { +func (s *RequestBodies) RequestBodyPostMultipleContentTypesSplitForm(ctx context.Context, request operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody) (*operations.RequestBodyPostMultipleContentTypesSplitFormResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/multiple/contentTypes/split" @@ -4229,7 +4229,7 @@ func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitForm(ctx context return res, nil } -func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitJSON(ctx context.Context, request operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON) (*operations.RequestBodyPostMultipleContentTypesSplitJSONResponse, error) { +func (s *RequestBodies) RequestBodyPostMultipleContentTypesSplitJSON(ctx context.Context, request operations.RequestBodyPostMultipleContentTypesSplitJSONRequestBody) (*operations.RequestBodyPostMultipleContentTypesSplitJSONResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/multiple/contentTypes/split" @@ -4296,7 +4296,7 @@ func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitJSON(ctx context return res, nil } -func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitMultipart(ctx context.Context, request operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData) (*operations.RequestBodyPostMultipleContentTypesSplitMultipartResponse, error) { +func (s *RequestBodies) RequestBodyPostMultipleContentTypesSplitMultipart(ctx context.Context, request operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody) (*operations.RequestBodyPostMultipleContentTypesSplitMultipartResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/multiple/contentTypes/split" @@ -4363,7 +4363,7 @@ func (s *requestBodies) RequestBodyPostMultipleContentTypesSplitMultipart(ctx co return res, nil } -func (s *requestBodies) RequestBodyPostNotNullableNotRequiredStringBody(ctx context.Context, request *string) (*operations.RequestBodyPostNotNullableNotRequiredStringBodyResponse, error) { +func (s *RequestBodies) RequestBodyPostNotNullableNotRequiredStringBody(ctx context.Context, request *string) (*operations.RequestBodyPostNotNullableNotRequiredStringBodyResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/notnullable/notrequired/string" @@ -4409,12 +4409,12 @@ func (s *requestBodies) RequestBodyPostNotNullableNotRequiredStringBody(ctx cont case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON + var out operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -4427,7 +4427,7 @@ func (s *requestBodies) RequestBodyPostNotNullableNotRequiredStringBody(ctx cont return res, nil } -func (s *requestBodies) RequestBodyPostNullArray(ctx context.Context, request []string) (*operations.RequestBodyPostNullArrayResponse, error) { +func (s *RequestBodies) RequestBodyPostNullArray(ctx context.Context, request []string) (*operations.RequestBodyPostNullArrayResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/null-array" @@ -4476,12 +4476,12 @@ func (s *requestBodies) RequestBodyPostNullArray(ctx context.Context, request [] case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostNullArray200ApplicationJSON + var out operations.RequestBodyPostNullArrayResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostNullArray200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -4494,7 +4494,7 @@ func (s *requestBodies) RequestBodyPostNullArray(ctx context.Context, request [] return res, nil } -func (s *requestBodies) RequestBodyPostNullDictionary(ctx context.Context, request map[string]string) (*operations.RequestBodyPostNullDictionaryResponse, error) { +func (s *RequestBodies) RequestBodyPostNullDictionary(ctx context.Context, request map[string]string) (*operations.RequestBodyPostNullDictionaryResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/null-dictionary" @@ -4543,12 +4543,12 @@ func (s *requestBodies) RequestBodyPostNullDictionary(ctx context.Context, reque case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostNullDictionary200ApplicationJSON + var out operations.RequestBodyPostNullDictionaryResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostNullDictionary200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -4561,7 +4561,7 @@ func (s *requestBodies) RequestBodyPostNullDictionary(ctx context.Context, reque return res, nil } -func (s *requestBodies) RequestBodyPostNullableNotRequiredStringBody(ctx context.Context, request *string) (*operations.RequestBodyPostNullableNotRequiredStringBodyResponse, error) { +func (s *RequestBodies) RequestBodyPostNullableNotRequiredStringBody(ctx context.Context, request *string) (*operations.RequestBodyPostNullableNotRequiredStringBodyResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/nullable/notrequired/string" @@ -4607,12 +4607,12 @@ func (s *requestBodies) RequestBodyPostNullableNotRequiredStringBody(ctx context case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON + var out operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -4625,7 +4625,7 @@ func (s *requestBodies) RequestBodyPostNullableNotRequiredStringBody(ctx context return res, nil } -func (s *requestBodies) RequestBodyPostNullableRequiredStringBody(ctx context.Context, request *string) (*operations.RequestBodyPostNullableRequiredStringBodyResponse, error) { +func (s *RequestBodies) RequestBodyPostNullableRequiredStringBody(ctx context.Context, request *string) (*operations.RequestBodyPostNullableRequiredStringBodyResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/post/nullable/required/string" @@ -4674,12 +4674,12 @@ func (s *requestBodies) RequestBodyPostNullableRequiredStringBody(ctx context.Co case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.RequestBodyPostNullableRequiredStringBody200ApplicationJSON + var out operations.RequestBodyPostNullableRequiredStringBodyResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.RequestBodyPostNullableRequiredStringBody200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -4692,7 +4692,7 @@ func (s *requestBodies) RequestBodyPostNullableRequiredStringBody(ctx context.Co return res, nil } -func (s *requestBodies) RequestBodyPutBytes(ctx context.Context, request []byte) (*operations.RequestBodyPutBytesResponse, error) { +func (s *RequestBodies) RequestBodyPutBytes(ctx context.Context, request []byte) (*operations.RequestBodyPutBytesResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/put/bytes" @@ -4759,7 +4759,7 @@ func (s *requestBodies) RequestBodyPutBytes(ctx context.Context, request []byte) return res, nil } -func (s *requestBodies) RequestBodyPutBytesWithParams(ctx context.Context, requestBody []byte, queryStringParam string) (*operations.RequestBodyPutBytesWithParamsResponse, error) { +func (s *RequestBodies) RequestBodyPutBytesWithParams(ctx context.Context, requestBody []byte, queryStringParam string) (*operations.RequestBodyPutBytesWithParamsResponse, error) { request := operations.RequestBodyPutBytesWithParamsRequest{ RequestBody: requestBody, QueryStringParam: queryStringParam, @@ -4835,7 +4835,7 @@ func (s *requestBodies) RequestBodyPutBytesWithParams(ctx context.Context, reque return res, nil } -func (s *requestBodies) RequestBodyPutMultipartDeep(ctx context.Context, request shared.DeepObject) (*operations.RequestBodyPutMultipartDeepResponse, error) { +func (s *RequestBodies) RequestBodyPutMultipartDeep(ctx context.Context, request shared.DeepObject) (*operations.RequestBodyPutMultipartDeepResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/put/multipart/deep" @@ -4902,7 +4902,7 @@ func (s *requestBodies) RequestBodyPutMultipartDeep(ctx context.Context, request return res, nil } -func (s *requestBodies) RequestBodyPutMultipartDifferentFileName(ctx context.Context, request operations.RequestBodyPutMultipartDifferentFileNameRequestBody) (*operations.RequestBodyPutMultipartDifferentFileNameResponse, error) { +func (s *RequestBodies) RequestBodyPutMultipartDifferentFileName(ctx context.Context, request operations.RequestBodyPutMultipartDifferentFileNameRequestBody) (*operations.RequestBodyPutMultipartDifferentFileNameResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/put/multipart/differentFileName" @@ -4969,7 +4969,7 @@ func (s *requestBodies) RequestBodyPutMultipartDifferentFileName(ctx context.Con return res, nil } -func (s *requestBodies) RequestBodyPutMultipartFile(ctx context.Context, request operations.RequestBodyPutMultipartFileRequestBody) (*operations.RequestBodyPutMultipartFileResponse, error) { +func (s *RequestBodies) RequestBodyPutMultipartFile(ctx context.Context, request operations.RequestBodyPutMultipartFileRequestBody) (*operations.RequestBodyPutMultipartFileResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/put/multipart/file" @@ -5036,7 +5036,7 @@ func (s *requestBodies) RequestBodyPutMultipartFile(ctx context.Context, request return res, nil } -func (s *requestBodies) RequestBodyPutMultipartSimple(ctx context.Context, request shared.SimpleObject) (*operations.RequestBodyPutMultipartSimpleResponse, error) { +func (s *RequestBodies) RequestBodyPutMultipartSimple(ctx context.Context, request shared.SimpleObject) (*operations.RequestBodyPutMultipartSimpleResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/put/multipart/simple" @@ -5103,7 +5103,7 @@ func (s *requestBodies) RequestBodyPutMultipartSimple(ctx context.Context, reque return res, nil } -func (s *requestBodies) RequestBodyPutString(ctx context.Context, request string) (*operations.RequestBodyPutStringResponse, error) { +func (s *RequestBodies) RequestBodyPutString(ctx context.Context, request string) (*operations.RequestBodyPutStringResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/requestBodies/put/string" @@ -5170,7 +5170,7 @@ func (s *requestBodies) RequestBodyPutString(ctx context.Context, request string return res, nil } -func (s *requestBodies) RequestBodyPutStringWithParams(ctx context.Context, requestBody string, queryStringParam string) (*operations.RequestBodyPutStringWithParamsResponse, error) { +func (s *RequestBodies) RequestBodyPutStringWithParams(ctx context.Context, requestBody string, queryStringParam string) (*operations.RequestBodyPutStringWithParamsResponse, error) { request := operations.RequestBodyPutStringWithParamsRequest{ RequestBody: requestBody, QueryStringParam: queryStringParam, @@ -5246,7 +5246,7 @@ func (s *requestBodies) RequestBodyPutStringWithParams(ctx context.Context, requ return res, nil } -func (s *requestBodies) RequestBodyReadAndWrite(ctx context.Context, request shared.ReadWriteObjectInput, opts ...operations.Option) (*operations.RequestBodyReadAndWriteResponse, error) { +func (s *RequestBodies) RequestBodyReadAndWrite(ctx context.Context, request shared.ReadWriteObject, opts ...operations.Option) (*operations.RequestBodyReadAndWriteResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -5327,7 +5327,7 @@ func (s *requestBodies) RequestBodyReadAndWrite(ctx context.Context, request sha return res, nil } -func (s *requestBodies) RequestBodyReadOnlyInput(ctx context.Context, request shared.ReadOnlyObjectInput, opts ...operations.Option) (*operations.RequestBodyReadOnlyInputResponse, error) { +func (s *RequestBodies) RequestBodyReadOnlyInput(ctx context.Context, request shared.ReadOnlyObjectInput, opts ...operations.Option) (*operations.RequestBodyReadOnlyInputResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -5408,7 +5408,7 @@ func (s *requestBodies) RequestBodyReadOnlyInput(ctx context.Context, request sh return res, nil } -func (s *requestBodies) RequestBodyReadOnlyUnion(ctx context.Context, request shared.WeaklyTypedOneOfReadOnlyObjectInput, opts ...operations.Option) (*operations.RequestBodyReadOnlyUnionResponse, error) { +func (s *RequestBodies) RequestBodyReadOnlyUnion(ctx context.Context, request shared.WeaklyTypedOneOfReadOnlyObjectInput, opts ...operations.Option) (*operations.RequestBodyReadOnlyUnionResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -5489,7 +5489,7 @@ func (s *requestBodies) RequestBodyReadOnlyUnion(ctx context.Context, request sh return res, nil } -func (s *requestBodies) RequestBodyReadWriteOnlyUnion(ctx context.Context, request shared.WeaklyTypedOneOfReadWriteObjectInput, opts ...operations.Option) (*operations.RequestBodyReadWriteOnlyUnionResponse, error) { +func (s *RequestBodies) RequestBodyReadWriteOnlyUnion(ctx context.Context, request shared.WeaklyTypedOneOfReadWriteObject, opts ...operations.Option) (*operations.RequestBodyReadWriteOnlyUnionResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -5570,7 +5570,7 @@ func (s *requestBodies) RequestBodyReadWriteOnlyUnion(ctx context.Context, reque return res, nil } -func (s *requestBodies) RequestBodyWriteOnly(ctx context.Context, request shared.WriteOnlyObject, opts ...operations.Option) (*operations.RequestBodyWriteOnlyResponse, error) { +func (s *RequestBodies) RequestBodyWriteOnly(ctx context.Context, request shared.WriteOnlyObject, opts ...operations.Option) (*operations.RequestBodyWriteOnlyResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -5651,7 +5651,7 @@ func (s *requestBodies) RequestBodyWriteOnly(ctx context.Context, request shared return res, nil } -func (s *requestBodies) RequestBodyWriteOnlyOutput(ctx context.Context, request shared.WriteOnlyObject, opts ...operations.Option) (*operations.RequestBodyWriteOnlyOutputResponse, error) { +func (s *RequestBodies) RequestBodyWriteOnlyOutput(ctx context.Context, request shared.WriteOnlyObject, opts ...operations.Option) (*operations.RequestBodyWriteOnlyOutputResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -5732,7 +5732,7 @@ func (s *requestBodies) RequestBodyWriteOnlyOutput(ctx context.Context, request return res, nil } -func (s *requestBodies) RequestBodyWriteOnlyUnion(ctx context.Context, request shared.WeaklyTypedOneOfWriteOnlyObject, opts ...operations.Option) (*operations.RequestBodyWriteOnlyUnionResponse, error) { +func (s *RequestBodies) RequestBodyWriteOnlyUnion(ctx context.Context, request shared.WeaklyTypedOneOfWriteOnlyObject, opts ...operations.Option) (*operations.RequestBodyWriteOnlyUnionResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, diff --git a/go-client-sdk/resource.go b/go-client-sdk/resource.go index d47dbd9c9..6ef4fdffc 100755 --- a/go-client-sdk/resource.go +++ b/go-client-sdk/resource.go @@ -8,24 +8,24 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/models/shared" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/utils" "strings" ) -type resource struct { +type Resource struct { sdkConfiguration sdkConfiguration } -func newResource(sdkConfig sdkConfiguration) *resource { - return &resource{ +func newResource(sdkConfig sdkConfiguration) *Resource { + return &Resource{ sdkConfiguration: sdkConfig, } } -func (s *resource) CreateFile(ctx context.Context, request operations.CreateFileRequestBody) (*operations.CreateFileResponse, error) { +func (s *Resource) CreateFile(ctx context.Context, request operations.CreateFileRequestBody) (*operations.CreateFileResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/fileResource" @@ -92,7 +92,7 @@ func (s *resource) CreateFile(ctx context.Context, request operations.CreateFile return res, nil } -func (s *resource) CreateResource(ctx context.Context, request shared.ExampleResource) (*operations.CreateResourceResponse, error) { +func (s *Resource) CreateResource(ctx context.Context, request shared.ExampleResource) (*operations.CreateResourceResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/resource" @@ -159,7 +159,7 @@ func (s *resource) CreateResource(ctx context.Context, request shared.ExampleRes return res, nil } -func (s *resource) DeleteResource(ctx context.Context, resourceID string) (*operations.DeleteResourceResponse, error) { +func (s *Resource) DeleteResource(ctx context.Context, resourceID string) (*operations.DeleteResourceResponse, error) { request := operations.DeleteResourceRequest{ ResourceID: resourceID, } @@ -212,7 +212,7 @@ func (s *resource) DeleteResource(ctx context.Context, resourceID string) (*oper return res, nil } -func (s *resource) GetResource(ctx context.Context, resourceID string) (*operations.GetResourceResponse, error) { +func (s *Resource) GetResource(ctx context.Context, resourceID string) (*operations.GetResourceResponse, error) { request := operations.GetResourceRequest{ ResourceID: resourceID, } @@ -276,7 +276,7 @@ func (s *resource) GetResource(ctx context.Context, resourceID string) (*operati return res, nil } -func (s *resource) UpdateResource(ctx context.Context, resourceID string) (*operations.UpdateResourceResponse, error) { +func (s *Resource) UpdateResource(ctx context.Context, resourceID string) (*operations.UpdateResourceResponse, error) { request := operations.UpdateResourceRequest{ ResourceID: resourceID, } diff --git a/go-client-sdk/responsebodies.go b/go-client-sdk/responsebodies.go index 0711950c3..2e013c18b 100755 --- a/go-client-sdk/responsebodies.go +++ b/go-client-sdk/responsebodies.go @@ -8,25 +8,25 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/models/shared" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/utils" "strings" ) -// responseBodies - Endpoints for testing response bodies. -type responseBodies struct { +// ResponseBodies - Endpoints for testing response bodies. +type ResponseBodies struct { sdkConfiguration sdkConfiguration } -func newResponseBodies(sdkConfig sdkConfiguration) *responseBodies { - return &responseBodies{ +func newResponseBodies(sdkConfig sdkConfiguration) *ResponseBodies { + return &ResponseBodies{ sdkConfiguration: sdkConfig, } } -func (s *responseBodies) ResponseBodyAdditionalPropertiesComplexNumbersPost(ctx context.Context, request shared.ObjWithComplexNumbersAdditionalProperties) (*operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponse, error) { +func (s *ResponseBodies) ResponseBodyAdditionalPropertiesComplexNumbersPost(ctx context.Context, request shared.ObjWithComplexNumbersAdditionalProperties) (*operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/responseBodies/additionalPropertiesComplexNumbers" @@ -75,12 +75,12 @@ func (s *responseBodies) ResponseBodyAdditionalPropertiesComplexNumbersPost(ctx case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON + var out operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -93,7 +93,7 @@ func (s *responseBodies) ResponseBodyAdditionalPropertiesComplexNumbersPost(ctx return res, nil } -func (s *responseBodies) ResponseBodyAdditionalPropertiesDatePost(ctx context.Context, request shared.ObjWithDateAdditionalProperties) (*operations.ResponseBodyAdditionalPropertiesDatePostResponse, error) { +func (s *ResponseBodies) ResponseBodyAdditionalPropertiesDatePost(ctx context.Context, request shared.ObjWithDateAdditionalProperties) (*operations.ResponseBodyAdditionalPropertiesDatePostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/responseBodies/additionalPropertiesDate" @@ -142,12 +142,12 @@ func (s *responseBodies) ResponseBodyAdditionalPropertiesDatePost(ctx context.Co case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON + var out operations.ResponseBodyAdditionalPropertiesDatePostResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -160,7 +160,7 @@ func (s *responseBodies) ResponseBodyAdditionalPropertiesDatePost(ctx context.Co return res, nil } -func (s *responseBodies) ResponseBodyAdditionalPropertiesObjectPost(ctx context.Context, request shared.ObjWithObjAdditionalProperties) (*operations.ResponseBodyAdditionalPropertiesObjectPostResponse, error) { +func (s *ResponseBodies) ResponseBodyAdditionalPropertiesObjectPost(ctx context.Context, request shared.ObjWithObjAdditionalProperties) (*operations.ResponseBodyAdditionalPropertiesObjectPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/responseBodies/additionalPropertiesObject" @@ -209,12 +209,12 @@ func (s *responseBodies) ResponseBodyAdditionalPropertiesObjectPost(ctx context. case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON + var out operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -227,7 +227,7 @@ func (s *responseBodies) ResponseBodyAdditionalPropertiesObjectPost(ctx context. return res, nil } -func (s *responseBodies) ResponseBodyAdditionalPropertiesPost(ctx context.Context, request shared.ObjWithStringAdditionalProperties) (*operations.ResponseBodyAdditionalPropertiesPostResponse, error) { +func (s *ResponseBodies) ResponseBodyAdditionalPropertiesPost(ctx context.Context, request shared.ObjWithStringAdditionalProperties) (*operations.ResponseBodyAdditionalPropertiesPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/responseBodies/additionalProperties" @@ -276,12 +276,12 @@ func (s *responseBodies) ResponseBodyAdditionalPropertiesPost(ctx context.Contex case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.ResponseBodyAdditionalPropertiesPost200ApplicationJSON + var out operations.ResponseBodyAdditionalPropertiesPostResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.ResponseBodyAdditionalPropertiesPost200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -294,7 +294,7 @@ func (s *responseBodies) ResponseBodyAdditionalPropertiesPost(ctx context.Contex return res, nil } -func (s *responseBodies) ResponseBodyBytesGet(ctx context.Context) (*operations.ResponseBodyBytesGetResponse, error) { +func (s *ResponseBodies) ResponseBodyBytesGet(ctx context.Context) (*operations.ResponseBodyBytesGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/bytes/100" @@ -350,7 +350,7 @@ func (s *responseBodies) ResponseBodyBytesGet(ctx context.Context) (*operations. return res, nil } -func (s *responseBodies) ResponseBodyEmptyWithHeaders(ctx context.Context, xNumberHeader float64, xStringHeader string) (*operations.ResponseBodyEmptyWithHeadersResponse, error) { +func (s *ResponseBodies) ResponseBodyEmptyWithHeaders(ctx context.Context, xNumberHeader float64, xStringHeader string) (*operations.ResponseBodyEmptyWithHeadersResponse, error) { request := operations.ResponseBodyEmptyWithHeadersRequest{ XNumberHeader: xNumberHeader, XStringHeader: xStringHeader, @@ -407,7 +407,7 @@ func (s *responseBodies) ResponseBodyEmptyWithHeaders(ctx context.Context, xNumb return res, nil } -func (s *responseBodies) ResponseBodyOptionalGet(ctx context.Context, opts ...operations.Option) (*operations.ResponseBodyOptionalGetResponse, error) { +func (s *ResponseBodies) ResponseBodyOptionalGet(ctx context.Context, opts ...operations.Option) (*operations.ResponseBodyOptionalGetResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -474,7 +474,7 @@ func (s *responseBodies) ResponseBodyOptionalGet(ctx context.Context, opts ...op res.TypedObject1 = &out case utils.MatchContentType(contentType, `text/plain`): out := string(rawBody) - res.ResponseBodyOptionalGet200TextPlainString = &out + res.Res = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } @@ -487,7 +487,7 @@ func (s *responseBodies) ResponseBodyOptionalGet(ctx context.Context, opts ...op return res, nil } -func (s *responseBodies) ResponseBodyReadOnly(ctx context.Context, opts ...operations.Option) (*operations.ResponseBodyReadOnlyResponse, error) { +func (s *ResponseBodies) ResponseBodyReadOnly(ctx context.Context, opts ...operations.Option) (*operations.ResponseBodyReadOnlyResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -558,7 +558,7 @@ func (s *responseBodies) ResponseBodyReadOnly(ctx context.Context, opts ...opera return res, nil } -func (s *responseBodies) ResponseBodyStringGet(ctx context.Context) (*operations.ResponseBodyStringGetResponse, error) { +func (s *ResponseBodies) ResponseBodyStringGet(ctx context.Context) (*operations.ResponseBodyStringGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/html" @@ -611,7 +611,7 @@ func (s *responseBodies) ResponseBodyStringGet(ctx context.Context) (*operations return res, nil } -func (s *responseBodies) ResponseBodyXMLGet(ctx context.Context) (*operations.ResponseBodyXMLGetResponse, error) { +func (s *ResponseBodies) ResponseBodyXMLGet(ctx context.Context) (*operations.ResponseBodyXMLGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/xml" @@ -664,7 +664,7 @@ func (s *responseBodies) ResponseBodyXMLGet(ctx context.Context) (*operations.Re return res, nil } -func (s *responseBodies) ResponseBodyZeroValueComplexTypePtrsPost(ctx context.Context, request shared.ObjWithZeroValueComplexTypePtrs) (*operations.ResponseBodyZeroValueComplexTypePtrsPostResponse, error) { +func (s *ResponseBodies) ResponseBodyZeroValueComplexTypePtrsPost(ctx context.Context, request shared.ObjWithZeroValueComplexTypePtrs) (*operations.ResponseBodyZeroValueComplexTypePtrsPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/responseBodies/zeroValueComplexTypePtrs" @@ -713,12 +713,12 @@ func (s *responseBodies) ResponseBodyZeroValueComplexTypePtrsPost(ctx context.Co case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON + var out operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } diff --git a/go-client-sdk/retries.go b/go-client-sdk/retries.go index 8c1a7a3ef..9f9d385a9 100755 --- a/go-client-sdk/retries.go +++ b/go-client-sdk/retries.go @@ -8,24 +8,24 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" "strings" ) -// retries - Endpoints for testing retries. -type retries struct { +// Retries - Endpoints for testing retries. +type Retries struct { sdkConfiguration sdkConfiguration } -func newRetries(sdkConfig sdkConfiguration) *retries { - return &retries{ +func newRetries(sdkConfig sdkConfiguration) *Retries { + return &Retries{ sdkConfiguration: sdkConfig, } } -func (s *retries) RetriesGet(ctx context.Context, requestID string, numRetries *int64, opts ...operations.Option) (*operations.RetriesGetResponse, error) { +func (s *Retries) RetriesGet(ctx context.Context, requestID string, numRetries *int64, opts ...operations.Option) (*operations.RetriesGetResponse, error) { request := operations.RetriesGetRequest{ RequestID: requestID, NumRetries: numRetries, diff --git a/go-client-sdk/sdk.go b/go-client-sdk/sdk.go index 7defc1399..ba29918ee 100755 --- a/go-client-sdk/sdk.go +++ b/go-client-sdk/sdk.go @@ -9,10 +9,10 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/models/shared" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/utils" "strings" "time" ) @@ -84,41 +84,41 @@ func (c *sdkConfiguration) GetServerDetails() (string, map[string]string) { // // https://speakeasyapi.dev/docs/home - Speakeasy Docs type SDK struct { - // Endpoints for testing authentication. - Auth *auth - // Endpoints for testing authentication. - AuthNew *authNew - // Testing for documentation extensions in Go. - Documentation *documentation + // Endpoints for purely testing valid generation behavior. + Generation *Generation // Endpoints for testing error responses. - Errors *errors - First *first + Errors *Errors + // Endpoints for testing union types. + Unions *Unions // Endpoints for testing flattening through request body and parameter combinations. - Flattening *flattening - // Endpoints for purely testing valid generation behavior. - Generation *generation + Flattening *Flattening // Endpoints for testing global parameters. - Globals *globals - Nest *nest - Nested *nested - // Endpoints for testing the pagination extension - Pagination *pagination + Globals *Globals // Endpoints for testing parameters. - Parameters *parameters + Parameters *Parameters + Nest *Nest + Nested *Nested // Endpoints for testing request bodies. - RequestBodies *requestBodies - Resource *resource + RequestBodies *RequestBodies // Endpoints for testing response bodies. - ResponseBodies *responseBodies - // Endpoints for testing retries. - Retries *retries - Second *second + ResponseBodies *ResponseBodies // Endpoints for testing servers. - Servers *servers + Servers *Servers // Endpoints for testing telemetry. - Telemetry *telemetry - // Endpoints for testing union types. - Unions *unions + Telemetry *Telemetry + // Endpoints for testing authentication. + AuthNew *AuthNew + // Endpoints for testing authentication. + Auth *Auth + // Testing for documentation extensions in Go. + Documentation *Documentation + Resource *Resource + First *First + Second *Second + // Endpoints for testing the pagination extension + Pagination *Pagination + // Endpoints for testing retries. + Retries *Retries sdkConfiguration sdkConfiguration } @@ -301,9 +301,9 @@ func New(opts ...SDKOption) *SDK { sdkConfiguration: sdkConfiguration{ Language: "go", OpenAPIDocVersion: "0.1.0", - SDKVersion: "1.39.4", - GenVersion: "2.173.0", - UserAgent: "speakeasy-sdk/go 1.39.4 2.173.0 0.1.0 openapi", + SDKVersion: "2.0.0", + GenVersion: "2.181.1", + UserAgent: "speakeasy-sdk/go 2.0.0 2.181.1 0.1.0 openapi", Globals: map[string]map[string]map[string]interface{}{ "parameters": {}, }, @@ -341,45 +341,45 @@ func New(opts ...SDKOption) *SDK { } } - sdk.Auth = newAuth(sdk.sdkConfiguration) - - sdk.AuthNew = newAuthNew(sdk.sdkConfiguration) - - sdk.Documentation = newDocumentation(sdk.sdkConfiguration) + sdk.Generation = newGeneration(sdk.sdkConfiguration) sdk.Errors = newErrors(sdk.sdkConfiguration) - sdk.First = newFirst(sdk.sdkConfiguration) + sdk.Unions = newUnions(sdk.sdkConfiguration) sdk.Flattening = newFlattening(sdk.sdkConfiguration) - sdk.Generation = newGeneration(sdk.sdkConfiguration) - sdk.Globals = newGlobals(sdk.sdkConfiguration) + sdk.Parameters = newParameters(sdk.sdkConfiguration) + sdk.Nest = newNest(sdk.sdkConfiguration) sdk.Nested = newNested(sdk.sdkConfiguration) - sdk.Pagination = newPagination(sdk.sdkConfiguration) + sdk.RequestBodies = newRequestBodies(sdk.sdkConfiguration) - sdk.Parameters = newParameters(sdk.sdkConfiguration) + sdk.ResponseBodies = newResponseBodies(sdk.sdkConfiguration) - sdk.RequestBodies = newRequestBodies(sdk.sdkConfiguration) + sdk.Servers = newServers(sdk.sdkConfiguration) - sdk.Resource = newResource(sdk.sdkConfiguration) + sdk.Telemetry = newTelemetry(sdk.sdkConfiguration) - sdk.ResponseBodies = newResponseBodies(sdk.sdkConfiguration) + sdk.AuthNew = newAuthNew(sdk.sdkConfiguration) - sdk.Retries = newRetries(sdk.sdkConfiguration) + sdk.Auth = newAuth(sdk.sdkConfiguration) - sdk.Second = newSecond(sdk.sdkConfiguration) + sdk.Documentation = newDocumentation(sdk.sdkConfiguration) - sdk.Servers = newServers(sdk.sdkConfiguration) + sdk.Resource = newResource(sdk.sdkConfiguration) - sdk.Telemetry = newTelemetry(sdk.sdkConfiguration) + sdk.First = newFirst(sdk.sdkConfiguration) - sdk.Unions = newUnions(sdk.sdkConfiguration) + sdk.Second = newSecond(sdk.sdkConfiguration) + + sdk.Pagination = newPagination(sdk.sdkConfiguration) + + sdk.Retries = newRetries(sdk.sdkConfiguration) return sdk } @@ -433,12 +433,12 @@ func (s *SDK) PutAnythingIgnoredGeneration(ctx context.Context, request string) case httpRes.StatusCode == 200: switch { case utils.MatchContentType(contentType, `application/json`): - var out operations.PutAnythingIgnoredGeneration200ApplicationJSON + var out operations.PutAnythingIgnoredGenerationResponseBody if err := utils.UnmarshalJsonFromResponseBody(bytes.NewBuffer(rawBody), &out, ""); err != nil { return nil, err } - res.PutAnythingIgnoredGeneration200ApplicationJSONObject = &out + res.Object = &out default: return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", contentType), httpRes.StatusCode, string(rawBody), httpRes) } diff --git a/go-client-sdk/sdkfirst.go b/go-client-sdk/sdkfirst.go new file mode 100755 index 000000000..cca2c3dab --- /dev/null +++ b/go-client-sdk/sdkfirst.go @@ -0,0 +1,71 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +package openapi + +import ( + "bytes" + "context" + "fmt" + "io" + "net/http" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" + "strings" +) + +type SDKFirst struct { + sdkConfiguration sdkConfiguration +} + +func newSDKFirst(sdkConfig sdkConfiguration) *SDKFirst { + return &SDKFirst{ + sdkConfiguration: sdkConfig, + } +} + +func (s *SDKFirst) Get(ctx context.Context) (*operations.NestFirstGetResponse, error) { + baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) + url := strings.TrimSuffix(baseURL, "/") + "/anything/nest/first" + + req, err := http.NewRequestWithContext(ctx, "GET", url, nil) + if err != nil { + return nil, fmt.Errorf("error creating request: %w", err) + } + req.Header.Set("Accept", "*/*") + req.Header.Set("x-speakeasy-user-agent", s.sdkConfiguration.UserAgent) + + client := s.sdkConfiguration.SecurityClient + + httpRes, err := client.Do(req) + if err != nil { + return nil, fmt.Errorf("error sending request: %w", err) + } + if httpRes == nil { + return nil, fmt.Errorf("error sending request: no response") + } + + contentType := httpRes.Header.Get("Content-Type") + + res := &operations.NestFirstGetResponse{ + StatusCode: httpRes.StatusCode, + ContentType: contentType, + RawResponse: httpRes, + } + + rawBody, err := io.ReadAll(httpRes.Body) + if err != nil { + return nil, fmt.Errorf("error reading response body: %w", err) + } + httpRes.Body.Close() + httpRes.Body = io.NopCloser(bytes.NewBuffer(rawBody)) + switch { + case httpRes.StatusCode == 200: + case httpRes.StatusCode >= 400 && httpRes.StatusCode < 500: + fallthrough + case httpRes.StatusCode >= 500 && httpRes.StatusCode < 600: + return nil, sdkerrors.NewSDKError("API error occurred", httpRes.StatusCode, string(rawBody), httpRes) + } + + return res, nil +} diff --git a/go-client-sdk/sdknestedfirst.go b/go-client-sdk/sdknestedfirst.go new file mode 100755 index 000000000..19c3844e9 --- /dev/null +++ b/go-client-sdk/sdknestedfirst.go @@ -0,0 +1,71 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +package openapi + +import ( + "bytes" + "context" + "fmt" + "io" + "net/http" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" + "strings" +) + +type SDKNestedFirst struct { + sdkConfiguration sdkConfiguration +} + +func newSDKNestedFirst(sdkConfig sdkConfiguration) *SDKNestedFirst { + return &SDKNestedFirst{ + sdkConfiguration: sdkConfig, + } +} + +func (s *SDKNestedFirst) Get(ctx context.Context) (*operations.NestedFirstGetResponse, error) { + baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) + url := strings.TrimSuffix(baseURL, "/") + "/anything/nested/first" + + req, err := http.NewRequestWithContext(ctx, "GET", url, nil) + if err != nil { + return nil, fmt.Errorf("error creating request: %w", err) + } + req.Header.Set("Accept", "*/*") + req.Header.Set("x-speakeasy-user-agent", s.sdkConfiguration.UserAgent) + + client := s.sdkConfiguration.SecurityClient + + httpRes, err := client.Do(req) + if err != nil { + return nil, fmt.Errorf("error sending request: %w", err) + } + if httpRes == nil { + return nil, fmt.Errorf("error sending request: no response") + } + + contentType := httpRes.Header.Get("Content-Type") + + res := &operations.NestedFirstGetResponse{ + StatusCode: httpRes.StatusCode, + ContentType: contentType, + RawResponse: httpRes, + } + + rawBody, err := io.ReadAll(httpRes.Body) + if err != nil { + return nil, fmt.Errorf("error reading response body: %w", err) + } + httpRes.Body.Close() + httpRes.Body = io.NopCloser(bytes.NewBuffer(rawBody)) + switch { + case httpRes.StatusCode == 200: + case httpRes.StatusCode >= 400 && httpRes.StatusCode < 500: + fallthrough + case httpRes.StatusCode >= 500 && httpRes.StatusCode < 600: + return nil, sdkerrors.NewSDKError("API error occurred", httpRes.StatusCode, string(rawBody), httpRes) + } + + return res, nil +} diff --git a/go-client-sdk/sdksecond.go b/go-client-sdk/sdksecond.go new file mode 100755 index 000000000..738d1fce3 --- /dev/null +++ b/go-client-sdk/sdksecond.go @@ -0,0 +1,71 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +package openapi + +import ( + "bytes" + "context" + "fmt" + "io" + "net/http" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" + "strings" +) + +type SDKSecond struct { + sdkConfiguration sdkConfiguration +} + +func newSDKSecond(sdkConfig sdkConfiguration) *SDKSecond { + return &SDKSecond{ + sdkConfiguration: sdkConfig, + } +} + +func (s *SDKSecond) Get(ctx context.Context) (*operations.NestedSecondGetResponse, error) { + baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) + url := strings.TrimSuffix(baseURL, "/") + "/anything/nested/second" + + req, err := http.NewRequestWithContext(ctx, "GET", url, nil) + if err != nil { + return nil, fmt.Errorf("error creating request: %w", err) + } + req.Header.Set("Accept", "*/*") + req.Header.Set("x-speakeasy-user-agent", s.sdkConfiguration.UserAgent) + + client := s.sdkConfiguration.SecurityClient + + httpRes, err := client.Do(req) + if err != nil { + return nil, fmt.Errorf("error sending request: %w", err) + } + if httpRes == nil { + return nil, fmt.Errorf("error sending request: no response") + } + + contentType := httpRes.Header.Get("Content-Type") + + res := &operations.NestedSecondGetResponse{ + StatusCode: httpRes.StatusCode, + ContentType: contentType, + RawResponse: httpRes, + } + + rawBody, err := io.ReadAll(httpRes.Body) + if err != nil { + return nil, fmt.Errorf("error reading response body: %w", err) + } + httpRes.Body.Close() + httpRes.Body = io.NopCloser(bytes.NewBuffer(rawBody)) + switch { + case httpRes.StatusCode == 200: + case httpRes.StatusCode >= 400 && httpRes.StatusCode < 500: + fallthrough + case httpRes.StatusCode >= 500 && httpRes.StatusCode < 600: + return nil, sdkerrors.NewSDKError("API error occurred", httpRes.StatusCode, string(rawBody), httpRes) + } + + return res, nil +} diff --git a/go-client-sdk/second.go b/go-client-sdk/second.go index 520f4dcab..b5148ec83 100755 --- a/go-client-sdk/second.go +++ b/go-client-sdk/second.go @@ -8,23 +8,23 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" "strings" ) -type second struct { +type Second struct { sdkConfiguration sdkConfiguration } -func newSecond(sdkConfig sdkConfiguration) *second { - return &second{ +func newSecond(sdkConfig sdkConfiguration) *Second { + return &Second{ sdkConfiguration: sdkConfig, } } -func (s *second) Get(ctx context.Context) (*operations.GroupSecondGetResponse, error) { +func (s *Second) Get(ctx context.Context) (*operations.GroupSecondGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/group/second" diff --git a/go-client-sdk/servers.go b/go-client-sdk/servers.go index cc290c80d..295e1d95f 100755 --- a/go-client-sdk/servers.go +++ b/go-client-sdk/servers.go @@ -8,24 +8,24 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" "strings" ) -// servers - Endpoints for testing servers. -type servers struct { +// Servers - Endpoints for testing servers. +type Servers struct { sdkConfiguration sdkConfiguration } -func newServers(sdkConfig sdkConfiguration) *servers { - return &servers{ +func newServers(sdkConfig sdkConfiguration) *Servers { + return &Servers{ sdkConfiguration: sdkConfig, } } -func (s *servers) SelectGlobalServer(ctx context.Context) (*operations.SelectGlobalServerResponse, error) { +func (s *Servers) SelectGlobalServer(ctx context.Context) (*operations.SelectGlobalServerResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/selectGlobalServer" @@ -74,7 +74,7 @@ func (s *servers) SelectGlobalServer(ctx context.Context) (*operations.SelectGlo } // SelectServerWithID - Select a server by ID. -func (s *servers) SelectServerWithID(ctx context.Context, opts ...operations.Option) (*operations.SelectServerWithIDResponse, error) { +func (s *Servers) SelectServerWithID(ctx context.Context, opts ...operations.Option) (*operations.SelectServerWithIDResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -134,7 +134,7 @@ func (s *servers) SelectServerWithID(ctx context.Context, opts ...operations.Opt return res, nil } -func (s *servers) ServerWithProtocolTemplate(ctx context.Context, opts ...operations.Option) (*operations.ServerWithProtocolTemplateResponse, error) { +func (s *Servers) ServerWithProtocolTemplate(ctx context.Context, opts ...operations.Option) (*operations.ServerWithProtocolTemplateResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -198,7 +198,7 @@ func (s *servers) ServerWithProtocolTemplate(ctx context.Context, opts ...operat return res, nil } -func (s *servers) ServerWithTemplates(ctx context.Context, opts ...operations.Option) (*operations.ServerWithTemplatesResponse, error) { +func (s *Servers) ServerWithTemplates(ctx context.Context, opts ...operations.Option) (*operations.ServerWithTemplatesResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, @@ -261,7 +261,7 @@ func (s *servers) ServerWithTemplates(ctx context.Context, opts ...operations.Op return res, nil } -func (s *servers) ServerWithTemplatesGlobal(ctx context.Context) (*operations.ServerWithTemplatesGlobalResponse, error) { +func (s *Servers) ServerWithTemplatesGlobal(ctx context.Context) (*operations.ServerWithTemplatesGlobalResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/serverWithTemplatesGlobal" @@ -307,7 +307,7 @@ func (s *servers) ServerWithTemplatesGlobal(ctx context.Context) (*operations.Se return res, nil } -func (s *servers) ServersByIDWithTemplates(ctx context.Context, opts ...operations.Option) (*operations.ServersByIDWithTemplatesResponse, error) { +func (s *Servers) ServersByIDWithTemplates(ctx context.Context, opts ...operations.Option) (*operations.ServersByIDWithTemplatesResponse, error) { o := operations.Options{} supportedOptions := []string{ operations.SupportedOptionServerURL, diff --git a/go-client-sdk/telemetry.go b/go-client-sdk/telemetry.go index 8f6da89ac..0b5ca9e00 100755 --- a/go-client-sdk/telemetry.go +++ b/go-client-sdk/telemetry.go @@ -8,24 +8,24 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" "strings" ) -// telemetry - Endpoints for testing telemetry. -type telemetry struct { +// Telemetry - Endpoints for testing telemetry. +type Telemetry struct { sdkConfiguration sdkConfiguration } -func newTelemetry(sdkConfig sdkConfiguration) *telemetry { - return &telemetry{ +func newTelemetry(sdkConfig sdkConfiguration) *Telemetry { + return &Telemetry{ sdkConfiguration: sdkConfig, } } -func (s *telemetry) TelemetrySpeakeasyUserAgentGet(ctx context.Context, userAgent string) (*operations.TelemetrySpeakeasyUserAgentGetResponse, error) { +func (s *Telemetry) TelemetrySpeakeasyUserAgentGet(ctx context.Context, userAgent string) (*operations.TelemetrySpeakeasyUserAgentGetResponse, error) { request := operations.TelemetrySpeakeasyUserAgentGetRequest{ UserAgent: userAgent, } @@ -88,7 +88,7 @@ func (s *telemetry) TelemetrySpeakeasyUserAgentGet(ctx context.Context, userAgen return res, nil } -func (s *telemetry) TelemetryUserAgentGet(ctx context.Context) (*operations.TelemetryUserAgentGetResponse, error) { +func (s *Telemetry) TelemetryUserAgentGet(ctx context.Context) (*operations.TelemetryUserAgentGetResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/telemetry/user-agent" diff --git a/go-client-sdk/tests/parameters_test.go b/go-client-sdk/tests/parameters_test.go index f162fa01d..c702b0b36 100755 --- a/go-client-sdk/tests/parameters_test.go +++ b/go-client-sdk/tests/parameters_test.go @@ -7,10 +7,10 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "math/big" - "openapi" - "openapi/pkg/models/operations" - "openapi/pkg/models/shared" - "openapi/pkg/types" + openapi "openapi/v2" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" "testing" ) @@ -45,23 +45,23 @@ func TestParameters_DeepObjectQueryParamsMap(t *testing.T) { require.NotNil(t, res) assert.Equal(t, 200, res.StatusCode) - assert.Equal(t, map[string]operations.DeepObjectQueryParamsMapResArgs{ - "mapArrParam[test]": operations.CreateDeepObjectQueryParamsMapResArgsArrayOfstr( + assert.Equal(t, map[string]operations.DeepObjectQueryParamsMapArgs{ + "mapArrParam[test]": operations.CreateDeepObjectQueryParamsMapArgsArrayOfstr( []string{ "test", "test2", }, ), - "mapArrParam[test2]": operations.CreateDeepObjectQueryParamsMapResArgsArrayOfstr( + "mapArrParam[test2]": operations.CreateDeepObjectQueryParamsMapArgsArrayOfstr( []string{ "test3", "test4", }, ), - "mapParam[test]": operations.CreateDeepObjectQueryParamsMapResArgsStr( + "mapParam[test]": operations.CreateDeepObjectQueryParamsMapArgsStr( "value", ), - "mapParam[test2]": operations.CreateDeepObjectQueryParamsMapResArgsStr( + "mapParam[test2]": operations.CreateDeepObjectQueryParamsMapArgsStr( "value2", ), }, res.Res.Args) @@ -91,14 +91,14 @@ func TestParameters_DeepObjectQueryParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), } - objArrParam := &operations.DeepObjectQueryParamsObjectObjArrParam{ + objArrParam := &operations.ObjArrParam{ Arr: []string{ "test", "test2", @@ -178,12 +178,12 @@ func TestParameters_FormQueryParamsCamelObject(t *testing.T) { openapi.WithGlobalQueryParam("some example global query param"), ) - objParamExploded := operations.FormQueryParamsCamelObjectObjParamExploded{ + objParamExploded := operations.ObjParamExploded{ ItemCount: openapi.String("10"), SearchTerm: openapi.String("foo"), } - objParam := &operations.FormQueryParamsCamelObjectObjParam{ + objParam := &operations.ObjParam{ EncodedCount: openapi.String("11"), EncodedTerm: openapi.String("bar"), } @@ -209,13 +209,13 @@ func TestParameters_FormQueryParamsMap(t *testing.T) { ) mapParam := map[string]string{ - "test": "value", "test2": "value2", + "test": "value", } mapParamExploded := map[string]int64{ - "test": 1, "test2": 2, + "test": 1, } ctx := context.Background() @@ -225,9 +225,9 @@ func TestParameters_FormQueryParamsMap(t *testing.T) { assert.Equal(t, 200, res.StatusCode) assert.Equal(t, map[string]string{ + "mapParam": "test,value,test2,value2", "test": "1", "test2": "2", - "mapParam": "test,value,test2,value2", }, sortSerializedMaps(res.Res.Args, `(.*)`, ",")) assert.Equal(t, "http://localhost:35123/anything/queryParams/form/map?mapParam=test%2Cvalue%2Ctest2%2Cvalue2&test=1&test2=2", sortSerializedMaps(res.Res.URL, `.*?\?mapParam=(.*?)&(.*)`, "%2C")) } @@ -255,8 +255,8 @@ func TestParameters_FormQueryParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -276,8 +276,8 @@ func TestParameters_FormQueryParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -455,8 +455,8 @@ func TestParameters_HeaderParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -476,8 +476,8 @@ func TestParameters_HeaderParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -532,7 +532,7 @@ func TestParameters_JSONQueryParamsObject(t *testing.T) { ) deepObjParam := shared.DeepObject{ - Any: shared.CreateDeepObjectAnySimpleObject( + Any: shared.CreateAnySimpleObject( shared.SimpleObject{ Any: "any", Bigint: big.NewInt(8821239038968084), @@ -547,8 +547,8 @@ func TestParameters_JSONQueryParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -569,8 +569,8 @@ func TestParameters_JSONQueryParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -589,8 +589,8 @@ func TestParameters_JSONQueryParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -613,8 +613,8 @@ func TestParameters_JSONQueryParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -633,8 +633,8 @@ func TestParameters_JSONQueryParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -655,8 +655,8 @@ func TestParameters_JSONQueryParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -678,8 +678,8 @@ func TestParameters_JSONQueryParamsObject(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -771,8 +771,8 @@ func TestParameters_MixedQueryParams(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -792,8 +792,8 @@ func TestParameters_MixedQueryParams(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -813,8 +813,8 @@ func TestParameters_MixedQueryParams(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -827,43 +827,43 @@ func TestParameters_MixedQueryParams(t *testing.T) { assert.Equal(t, 200, res.StatusCode) assert.Equal(t, map[string]string{ - "deepObjectParam[boolOpt]": "true", - "deepObjectParam[dateTime]": "2020-01-01T00:00:00.000000001Z", - "intEnum": "2", - "jsonParam": "{\"any\":\"any\",\"bigint\":8821239038968084,\"bigintStr\":\"9223372036854775808\",\"bool\":true,\"boolOpt\":true,\"date\":\"2020-01-01\",\"dateTime\":\"2020-01-01T00:00:00.000000001Z\",\"decimal\":3.141592653589793,\"decimalStr\":\"3.14159265358979344719667586\",\"enum\":\"one\",\"float32\":1.1,\"int\":1,\"int32\":1,\"int32Enum\":55,\"intEnum\":2,\"num\":1.1,\"str\":\"test\",\"strOpt\":\"testOptional\"}", - "any": "any", - "date": "2020-01-01", - "deepObjectParam[any]": "any", - "deepObjectParam[strOpt]": "testOptional", - "int32": "1", - "dateTime": "2020-01-01T00:00:00.000000001Z", - "deepObjectParam[bigint]": "8821239038968084", - "deepObjectParam[int]": "1", - "deepObjectParam[int32Enum]": "55", - "deepObjectParam[num]": "1.1", - "int32Enum": "55", - "boolOpt": "true", - "deepObjectParam[intEnum]": "2", - "deepObjectParam[decimalStr]": "3.14159265358979344719667586", - "float32": "1.1", "int": "1", - "deepObjectParam[bigintStr]": "9223372036854775808", + "decimalStr": "3.14159265358979344719667586", + "strOpt": "testOptional", "deepObjectParam[enum]": "one", - "deepObjectParam[int32]": "1", - "enum": "one", - "deepObjectParam[decimal]": "3.141592653589793", + "deepObjectParam[decimalStr]": "3.14159265358979344719667586", "deepObjectParam[str]": "test", + "float32": "1.1", + "intEnum": "2", + "bigint": "8821239038968084", + "deepObjectParam[intEnum]": "2", + "deepObjectParam[decimal]": "3.141592653589793", + "deepObjectParam[float32]": "1.1", "num": "1.1", - "decimal": "3.141592653589793", "str": "test", - "bigint": "8821239038968084", + "deepObjectParam[bigintStr]": "9223372036854775808", + "deepObjectParam[boolOpt]": "true", + "deepObjectParam[int32Enum]": "55", "bigintStr": "9223372036854775808", "bool": "true", + "boolOpt": "true", + "jsonParam": "{\"any\":\"any\",\"bigint\":8821239038968084,\"bigintStr\":\"9223372036854775808\",\"bool\":true,\"boolOpt\":true,\"date\":\"2020-01-01\",\"dateTime\":\"2020-01-01T00:00:00.000000001Z\",\"decimal\":3.141592653589793,\"decimalStr\":\"3.14159265358979344719667586\",\"enum\":\"one\",\"float32\":1.1,\"int\":1,\"int32\":1,\"int32Enum\":55,\"intEnum\":2,\"num\":1.1,\"str\":\"test\",\"strOpt\":\"testOptional\"}", + "any": "any", + "date": "2020-01-01", + "int32": "1", + "deepObjectParam[dateTime]": "2020-01-01T00:00:00.000000001Z", + "deepObjectParam[int32]": "1", + "deepObjectParam[int]": "1", + "deepObjectParam[strOpt]": "testOptional", + "enum": "one", + "dateTime": "2020-01-01T00:00:00.000000001Z", + "deepObjectParam[bigint]": "8821239038968084", "deepObjectParam[bool]": "true", + "decimal": "3.141592653589793", + "int32Enum": "55", + "deepObjectParam[any]": "any", "deepObjectParam[date]": "2020-01-01", - "deepObjectParam[float32]": "1.1", - "decimalStr": "3.14159265358979344719667586", - "strOpt": "testOptional", + "deepObjectParam[num]": "1.1", }, res.Res.Args) assert.Equal(t, "http://localhost:35123/anything/queryParams/mixed?any=any&bigint=8821239038968084&bigintStr=9223372036854775808&bool=true&boolOpt=true&date=2020-01-01&dateTime=2020-01-01T00%3A00%3A00.000000001Z&decimal=3.141592653589793&decimalStr=3.14159265358979344719667586&deepObjectParam[any]=any&deepObjectParam[bigintStr]=9223372036854775808&deepObjectParam[bigint]=8821239038968084&deepObjectParam[boolOpt]=true&deepObjectParam[bool]=true&deepObjectParam[dateTime]=2020-01-01T00%3A00%3A00.000000001Z&deepObjectParam[date]=2020-01-01&deepObjectParam[decimalStr]=3.14159265358979344719667586&deepObjectParam[decimal]=3.141592653589793&deepObjectParam[enum]=one&deepObjectParam[float32]=1.1&deepObjectParam[int32Enum]=55&deepObjectParam[int32]=1&deepObjectParam[intEnum]=2&deepObjectParam[int]=1&deepObjectParam[num]=1.1&deepObjectParam[strOpt]=testOptional&deepObjectParam[str]=test&enum=one&float32=1.1&int=1&int32=1&int32Enum=55&intEnum=2&jsonParam={\"any\"%3A\"any\"%2C\"bigint\"%3A8821239038968084%2C\"bigintStr\"%3A\"9223372036854775808\"%2C\"bool\"%3Atrue%2C\"boolOpt\"%3Atrue%2C\"date\"%3A\"2020-01-01\"%2C\"dateTime\"%3A\"2020-01-01T00%3A00%3A00.000000001Z\"%2C\"decimal\"%3A3.141592653589793%2C\"decimalStr\"%3A\"3.14159265358979344719667586\"%2C\"enum\"%3A\"one\"%2C\"float32\"%3A1.1%2C\"int\"%3A1%2C\"int32\"%3A1%2C\"int32Enum\"%3A55%2C\"intEnum\"%3A2%2C\"num\"%3A1.1%2C\"str\"%3A\"test\"%2C\"strOpt\"%3A\"testOptional\"}&num=1.1&str=test&strOpt=testOptional", res.Res.URL) } @@ -891,8 +891,8 @@ func TestParameters_PathParameterJSON(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -945,8 +945,8 @@ func TestParameters_PipeDelimitedQueryParamsArray(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1040,8 +1040,8 @@ func TestParameters_SimplePathParameterObjects(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), @@ -1061,8 +1061,8 @@ func TestParameters_SimplePathParameterObjects(t *testing.T) { Float32: 1.1, Int: 1, Int32: 1, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, - IntEnum: shared.SimpleObjectIntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, Num: 1.1, Str: "test", StrOpt: openapi.String("testOptional"), diff --git a/go-client-sdk/testsprimary/auth_test.go b/go-client-sdk/testsprimary/auth_test.go index f21eae4a3..488bb2294 100755 --- a/go-client-sdk/testsprimary/auth_test.go +++ b/go-client-sdk/testsprimary/auth_test.go @@ -22,7 +22,7 @@ func TestBasicAuth(t *testing.T) { s := sdk.New() res, err := s.AuthNew.BasicAuthNew(context.Background(), shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Username: "testUser", Password: "testPass", }, @@ -43,7 +43,7 @@ func TestAPIKeyAuthGlobal(t *testing.T) { })) res, err := s.AuthNew.APIKeyAuthGlobalNew(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "x-api-key", ExpectedValue: "test_api_key", @@ -106,7 +106,7 @@ func TestOauth2Auth(t *testing.T) { s := sdk.New() res, err := s.AuthNew.Oauth2AuthNew(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "Authorization", ExpectedValue: "Bearer testToken", @@ -126,7 +126,7 @@ func TestOpenIdConnectAuth(t *testing.T) { s := sdk.New() res, err := s.AuthNew.OpenIDConnectAuthNew(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "Authorization", ExpectedValue: "Bearer testToken", @@ -146,7 +146,7 @@ func TestMultipleSimpleSchemeAuth(t *testing.T) { s := sdk.New() res, err := s.AuthNew.MultipleSimpleSchemeAuth(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "x-api-key", ExpectedValue: "test_api_key", @@ -171,13 +171,13 @@ func TestMultipleMixedSchemeAuth(t *testing.T) { s := sdk.New() res, err := s.AuthNew.MultipleMixedSchemeAuth(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "x-api-key", ExpectedValue: "test_api_key", }, }, - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Username: "testUser", Password: "testPass", }, @@ -199,7 +199,7 @@ func TestMultipleSimpleOptionsAuth_FirstOption(t *testing.T) { s := sdk.New() res, err := s.AuthNew.MultipleSimpleOptionsAuth(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "x-api-key", ExpectedValue: "test_api_key", @@ -219,7 +219,7 @@ func TestMultipleSimpleOptionsAuth_SecondOption(t *testing.T) { s := sdk.New() res, err := s.AuthNew.MultipleSimpleOptionsAuth(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "Authorization", ExpectedValue: "Bearer testToken", @@ -239,7 +239,7 @@ func TestMultipleMixedOptionsAuth_FirstOption(t *testing.T) { s := sdk.New() res, err := s.AuthNew.MultipleMixedOptionsAuth(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "x-api-key", ExpectedValue: "test_api_key", @@ -259,7 +259,7 @@ func TestMultipleMixedOptionsAuth_SecondOption(t *testing.T) { s := sdk.New() res, err := s.AuthNew.MultipleMixedOptionsAuth(context.Background(), shared.AuthServiceRequestBody{ - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Username: "testUser", Password: "testPass", }, @@ -280,7 +280,7 @@ func TestMultipleOptionsWithSimpleSchemesAuth_FirstOption(t *testing.T) { s := sdk.New() res, err := s.AuthNew.MultipleOptionsWithSimpleSchemesAuth(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "x-api-key", ExpectedValue: "test_api_key", @@ -307,7 +307,7 @@ func TestMultipleOptionsWithSimpleSchemesAuth_SecondOption(t *testing.T) { s := sdk.New() res, err := s.AuthNew.MultipleOptionsWithSimpleSchemesAuth(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "x-api-key", ExpectedValue: "test_api_key", @@ -334,7 +334,7 @@ func TestMultipleOptionsWithMixedSchemesAuth_FirstOption(t *testing.T) { s := sdk.New() res, err := s.AuthNew.MultipleOptionsWithMixedSchemesAuth(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "x-api-key", ExpectedValue: "test_api_key", @@ -361,13 +361,13 @@ func TestMultipleOptionsWithMixedSchemesAuth_SecondOption(t *testing.T) { s := sdk.New() res, err := s.AuthNew.MultipleOptionsWithMixedSchemesAuth(context.Background(), shared.AuthServiceRequestBody{ - HeaderAuth: []shared.AuthServiceRequestBodyHeaderAuth{ + HeaderAuth: []shared.HeaderAuth{ { HeaderName: "x-api-key", ExpectedValue: "test_api_key", }, }, - BasicAuth: &shared.AuthServiceRequestBodyBasicAuth{ + BasicAuth: &shared.BasicAuth{ Username: "testUser", Password: "testPass", }, diff --git a/go-client-sdk/testsprimary/errors_test.go b/go-client-sdk/testsprimary/errors_test.go index 168a57fda..eaaf12c8b 100755 --- a/go-client-sdk/testsprimary/errors_test.go +++ b/go-client-sdk/testsprimary/errors_test.go @@ -4,9 +4,10 @@ package tests import ( "context" - "openapi/pkg/models/sdkerrors" "testing" + "openapi/pkg/models/sdkerrors" + sdk "openapi" "github.com/stretchr/testify/assert" @@ -103,7 +104,7 @@ func TestStatusGetErrorXSpeakeasyErrors(t *testing.T) { assert.Error(t, err) assert.Equal(t, `{"code":"501","message":"an error occurred","type":"internal"}`, err.Error()) - var e501 *sdkerrors.StatusGetXSpeakeasyErrors501ApplicationJSON + var e501 *sdkerrors.StatusGetXSpeakeasyErrorsResponseBody if assert.ErrorAs(t, err, &e501) { assert.Equal(t, "501", *e501.Code) assert.Equal(t, 501, e501.RawResponse.StatusCode) diff --git a/go-client-sdk/testsprimary/flattening_test.go b/go-client-sdk/testsprimary/flattening_test.go index 5ab072348..57dd849d1 100755 --- a/go-client-sdk/testsprimary/flattening_test.go +++ b/go-client-sdk/testsprimary/flattening_test.go @@ -7,7 +7,7 @@ import ( "net/http" "testing" - "openapi/pkg/models/operations" + "openapi/v2/pkg/models/operations" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/go-client-sdk/testsprimary/globals_test.go b/go-client-sdk/testsprimary/globals_test.go index 9ea22e4ff..f88f4f17a 100755 --- a/go-client-sdk/testsprimary/globals_test.go +++ b/go-client-sdk/testsprimary/globals_test.go @@ -7,7 +7,7 @@ import ( "net/http" "testing" - sdk "openapi" + sdk "openapi/v2" "github.com/AlekSi/pointer" "github.com/stretchr/testify/assert" diff --git a/go-client-sdk/testsprimary/helpers_test.go b/go-client-sdk/testsprimary/helpers_test.go index 3a1f79f2d..fe0113a42 100755 --- a/go-client-sdk/testsprimary/helpers_test.go +++ b/go-client-sdk/testsprimary/helpers_test.go @@ -5,11 +5,11 @@ package tests import ( "encoding/json" "math/big" + "testing" + "time" "openapi/pkg/models/shared" "openapi/pkg/types" - "testing" - "time" "github.com/AlekSi/pointer" "github.com/stretchr/testify/require" @@ -21,8 +21,8 @@ func createSimpleObject() shared.SimpleObject { Bool: true, Int: 1, Int32: 1, - IntEnum: shared.SimpleObjectIntEnumSecond, - Int32Enum: shared.SimpleObjectInt32EnumFiftyFive, + IntEnum: shared.IntEnumSecond, + Int32Enum: shared.Int32EnumFiftyFive, Num: 1.1, Float32: 1.1, Enum: shared.EnumOne, @@ -44,8 +44,8 @@ func createSimpleObjectCamelCase() shared.SimpleObjectCamelCase { BoolVal: true, IntVal: 1, Int32Val: 1, - IntEnumVal: shared.SimpleObjectCamelCaseIntEnumValSecond, - Int32EnumVal: shared.SimpleObjectCamelCaseInt32EnumValFiftyFive, + IntEnumVal: shared.IntEnumValSecond, + Int32EnumVal: shared.Int32EnumValFiftyFive, NumVal: 1.1, Float32Val: 1.1, EnumVal: shared.EnumOne, @@ -63,7 +63,7 @@ func createSimpleObjectCamelCase() shared.SimpleObjectCamelCase { func createDeepObject() shared.DeepObject { return shared.DeepObject{ - Any: shared.CreateDeepObjectAnySimpleObject(createSimpleObject()), + Any: shared.CreateAnySimpleObject(createSimpleObject()), Arr: []shared.SimpleObject{ createSimpleObject(), createSimpleObject(), }, @@ -80,7 +80,7 @@ func createDeepObject() shared.DeepObject { func createDeepObjectCamelCase() shared.DeepObjectCamelCase { return shared.DeepObjectCamelCase{ - AnyVal: shared.CreateDeepObjectCamelCaseAnyValSimpleObjectCamelCase(createSimpleObjectCamelCase()), + AnyVal: shared.CreateAnyValSimpleObjectCamelCase(createSimpleObjectCamelCase()), ArrVal: []shared.SimpleObjectCamelCase{ createSimpleObjectCamelCase(), createSimpleObjectCamelCase(), }, diff --git a/go-client-sdk/testsprimary/multilevel_test.go b/go-client-sdk/testsprimary/multilevel_test.go index 8e418ce23..a11845404 100755 --- a/go-client-sdk/testsprimary/multilevel_test.go +++ b/go-client-sdk/testsprimary/multilevel_test.go @@ -7,7 +7,7 @@ import ( "net/http" "testing" - sdk "openapi" + sdk "openapi/v2" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/go-client-sdk/testsprimary/requestbodies_test.go b/go-client-sdk/testsprimary/requestbodies_test.go index 4d5006811..b7e9ca4c5 100755 --- a/go-client-sdk/testsprimary/requestbodies_test.go +++ b/go-client-sdk/testsprimary/requestbodies_test.go @@ -120,7 +120,7 @@ func TestRequestBodyPostMultipleContentTypesInlineFiltered(t *testing.T) { s := sdk.New() res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesInlineFiltered(context.Background(), - operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON{ + operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody{ Bool: true, Num: 1.1, Str: "test", @@ -142,7 +142,7 @@ func TestRequestBodyPostMultipleContentTypesSplitJSON(t *testing.T) { s := sdk.New() res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitJSON(context.Background(), - operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON{ + operations.RequestBodyPostMultipleContentTypesSplitJSONRequestBody{ Bool: true, Num: 1.1, Str: "test", @@ -164,7 +164,7 @@ func TestRequestBodyPostMultipleContentTypesSplitMultipart(t *testing.T) { s := sdk.New() res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitMultipart(context.Background(), - operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData{ + operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody{ Bool2: true, Num2: 1.1, Str2: "test", @@ -186,7 +186,7 @@ func TestRequestBodyPostMultipleContentTypesSplitForm(t *testing.T) { s := sdk.New() res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitForm(context.Background(), - operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded{ + operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody{ Bool3: true, Num3: 1.1, Str3: "test", @@ -208,7 +208,7 @@ func TestRequestBodyPostMultipleContentTypesSplitJSONWithParam(t *testing.T) { s := sdk.New() res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamJSON(context.Background(), - operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON{ + operations.RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody{ Bool: true, Num: 1.1, Str: "test body", @@ -236,7 +236,7 @@ func TestRequestBodyPostMultipleContentTypesSplitMultipartWithParam(t *testing.T s := sdk.New() res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamMultipart(context.Background(), - operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData{ + operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody{ Bool2: true, Num2: 1.1, Str2: "test body", @@ -264,7 +264,7 @@ func TestRequestBodyPostMultipleContentTypesSplitFormWithParam(t *testing.T) { s := sdk.New() res, err := s.RequestBodies.RequestBodyPostMultipleContentTypesSplitParamForm(context.Background(), - operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded{ + operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody{ Bool3: true, Num3: 1.1, Str3: "test body", @@ -299,8 +299,8 @@ func TestRequestBodyPostApplicationJSONArray(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.NotNil(t, res.SimpleObjects) - assert.Equal(t, obj, res.SimpleObjects) + assert.NotNil(t, res.Res) + assert.Equal(t, obj, res.Res) } func TestRequestBodyPostApplicationJSONArrayCamelCase(t *testing.T) { @@ -316,8 +316,8 @@ func TestRequestBodyPostApplicationJSONArrayCamelCase(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.NotNil(t, res.SimpleObjectCamelCases) - assert.Equal(t, obj, res.SimpleObjectCamelCases) + assert.NotNil(t, res.Res) + assert.Equal(t, obj, res.Res) } func TestRequestBodyPostApplicationJSONArrayOfArray(t *testing.T) { @@ -335,8 +335,8 @@ func TestRequestBodyPostApplicationJSONArrayOfArray(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.NotNil(t, res.Arrs) - assert.Equal(t, obj, res.Arrs) + assert.NotNil(t, res.Res) + assert.Equal(t, obj, res.Res) } func TestRequestBodyPostApplicationJSONArrayOfArrayCamelCase(t *testing.T) { @@ -354,8 +354,8 @@ func TestRequestBodyPostApplicationJSONArrayOfArrayCamelCase(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.NotNil(t, res.Arrs) - assert.Equal(t, obj, res.Arrs) + assert.NotNil(t, res.Res) + assert.Equal(t, obj, res.Res) } func TestRequestBodyPostApplicationJSONMap(t *testing.T) { @@ -498,8 +498,8 @@ func TestRequestBodyPostApplicationJSONArrayOfMap(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.NotNil(t, res.Maps) - assert.Equal(t, obj, res.Maps) + assert.NotNil(t, res.Res) + assert.Equal(t, obj, res.Res) } func TestRequestBodyPostApplicationJSONArrayOfMapCamelCase(t *testing.T) { @@ -522,8 +522,8 @@ func TestRequestBodyPostApplicationJSONArrayOfMapCamelCase(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.NotNil(t, res.Maps) - assert.Equal(t, obj, res.Maps) + assert.NotNil(t, res.Res) + assert.Equal(t, obj, res.Res) } func TestRequestBodyPostApplicationJSONArrayOfPrimitive(t *testing.T) { @@ -537,8 +537,8 @@ func TestRequestBodyPostApplicationJSONArrayOfPrimitive(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.NotNil(t, res.Strings) - assert.Equal(t, obj, res.Strings) + assert.NotNil(t, res.Res) + assert.Equal(t, obj, res.Res) } func TestRequestBodyPostApplicationJSONMapOfPrimitive(t *testing.T) { @@ -597,8 +597,8 @@ func TestRequestBodyPostApplicationJSONArrayOfArrayOfPrimitive(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.NotNil(t, res.Arrs) - assert.Equal(t, obj, res.Arrs) + assert.NotNil(t, res.Res) + assert.Equal(t, obj, res.Res) } func TestRequestBodyPostApplicationJSONArrayObject(t *testing.T) { @@ -679,7 +679,7 @@ func TestRequestBodyPutMultipartSimple(t *testing.T) { require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) assert.NotNil(t, res.Res) - assert.Equal(t, operations.RequestBodyPutMultipartSimpleResForm{ + assert.Equal(t, operations.RequestBodyPutMultipartSimpleForm{ Any: "any", Bool: "true", BoolOpt: pointer.ToString("true"), @@ -708,7 +708,7 @@ func TestRequestBodyPutMultipartDeep(t *testing.T) { assert.Equal(t, http.StatusOK, res.StatusCode) assert.NotNil(t, res.Res) - assert.Equal(t, operations.RequestBodyPutMultipartDeepResForm{ + assert.Equal(t, operations.RequestBodyPutMultipartDeepForm{ Arr: marshalJSON(t, obj.Arr), Bool: "true", Int: "1", @@ -729,9 +729,9 @@ func TestRequestBodyPutMultipartFile(t *testing.T) { res, err := s.RequestBodies.RequestBodyPutMultipartFile(context.Background(), operations.RequestBodyPutMultipartFileRequestBody{ - File: &operations.RequestBodyPutMultipartFileRequestBodyFile{ - Content: data, - File: "testUpload.json", + File: &operations.File{ + Content: data, + FileName: "testUpload.json", }, }, ) @@ -754,9 +754,9 @@ func TestRequestBodyPutMultipartDifferentFileName(t *testing.T) { res, err := s.RequestBodies.RequestBodyPutMultipartDifferentFileName(context.Background(), operations.RequestBodyPutMultipartDifferentFileNameRequestBody{ - DifferentFileName: &operations.RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName{ - Content: data, - DifferentFileName: "testUpload.json", + DifferentFileName: &operations.DifferentFileName{ + Content: data, + FileName: "testUpload.json", }, }, ) @@ -781,7 +781,7 @@ func TestRequestBodyPostFormSimple(t *testing.T) { require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) assert.NotNil(t, res.Res) - assert.Equal(t, operations.RequestBodyPostFormSimpleResForm{ + assert.Equal(t, operations.RequestBodyPostFormSimpleForm{ Any: "any", Bool: "true", BoolOpt: pointer.ToString("true"), @@ -809,7 +809,7 @@ func TestRequestBodyPostFormDeep(t *testing.T) { require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) assert.NotNil(t, res.Res) - assert.Equal(t, operations.RequestBodyPostFormDeepResForm{ + assert.Equal(t, operations.Form{ Arr: marshalJSON(t, obj.Arr), Bool: "true", Int: "1", @@ -904,13 +904,13 @@ func TestRequestBodyEmptyObject(t *testing.T) { s := sdk.New() res, err := s.RequestBodies.RequestBodyPostEmptyObject(context.Background(), operations.RequestBodyPostEmptyObjectRequestBody{ - Empty: &operations.RequestBodyPostEmptyObjectRequestBodyEmpty{}, - EmptyWithEmptyProperties: &operations.RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties{}, + Empty: &operations.Empty{}, + EmptyWithEmptyProperties: &operations.EmptyWithEmptyProperties{}, }) require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.NotNil(t, res.RequestBodyPostEmptyObject200ApplicationJSONObject) + assert.NotNil(t, res.Object) } func TestRequestBodyPostNullableRequiredProperty(t *testing.T) { @@ -947,7 +947,7 @@ func TestRequestBodyPostNullableRequiredProperty(t *testing.T) { arg: operations.NullableRequiredPropertyPostRequestBody{ NullableOptionalInt: pointer.ToInt64(0), NullableRequiredArray: []float64{1, 2, 3}, - NullableRequiredEnum: operations.NullableRequiredPropertyPostRequestBodyNullableRequiredEnumSecond.ToPointer(), + NullableRequiredEnum: operations.NullableRequiredEnumSecond.ToPointer(), NullableRequiredInt: pointer.ToInt64(1), }, wantJson: "{\"NullableOptionalInt\":0,\"NullableRequiredArray\":[1,2,3],\"NullableRequiredEnum\":\"second\",\"NullableRequiredInt\":1}", @@ -1034,7 +1034,7 @@ func TestRequestBodyPostNullableRequiredEmptyObject(t *testing.T) { { name: "Nullable fields set to null", arg: operations.NullableRequiredEmptyObjectPostRequestBody{ - RequiredObj: operations.NullableRequiredEmptyObjectPostRequestBodyRequiredObj{}, + RequiredObj: operations.RequiredObj{}, NullableOptionalObj: nil, NullableRequiredObj: nil, }, @@ -1043,16 +1043,16 @@ func TestRequestBodyPostNullableRequiredEmptyObject(t *testing.T) { { name: "Optional field set to non-null value", arg: operations.NullableRequiredEmptyObjectPostRequestBody{ - NullableOptionalObj: &operations.NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj{}, + NullableOptionalObj: &operations.NullableOptionalObj{}, }, wantJson: "{\"NullableOptionalObj\":{},\"NullableRequiredObj\":null,\"RequiredObj\":{}}", }, { name: "All fields set to non-null value", arg: operations.NullableRequiredEmptyObjectPostRequestBody{ - RequiredObj: operations.NullableRequiredEmptyObjectPostRequestBodyRequiredObj{}, - NullableOptionalObj: &operations.NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj{}, - NullableRequiredObj: &operations.NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj{}, + RequiredObj: operations.RequiredObj{}, + NullableOptionalObj: &operations.NullableOptionalObj{}, + NullableRequiredObj: &operations.NullableRequiredObj{}, }, wantJson: "{\"NullableOptionalObj\":{},\"NullableRequiredObj\":{},\"RequiredObj\":{}}", }, @@ -1127,7 +1127,7 @@ func TestRequestBodyReadAndWrite(t *testing.T) { s := sdk.New() - res, err := s.RequestBodies.RequestBodyReadAndWrite(context.Background(), shared.ReadWriteObjectInput{ + res, err := s.RequestBodies.RequestBodyReadAndWrite(context.Background(), shared.ReadWriteObject{ Num1: 1, Num2: 2, Num3: 4, @@ -1177,7 +1177,7 @@ func TestRequestBodyReadWriteOnlyUnion(t *testing.T) { s := sdk.New() res, err := s.RequestBodies.RequestBodyReadWriteOnlyUnion(context.Background(), - shared.CreateWeaklyTypedOneOfReadWriteObjectInputReadWriteObjectInput(shared.ReadWriteObjectInput{ + shared.CreateWeaklyTypedOneOfReadWriteObjectReadWriteObject(shared.ReadWriteObject{ Num1: 1, Num2: 2, Num3: 4, @@ -1215,8 +1215,8 @@ func TestRequestBodyPostComplexNumberTypes(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req.ComplexNumberTypes, res.RequestBodyPostComplexNumberTypes200ApplicationJSONObject.JSON) - assert.Equal(t, "http://localhost:35123/anything/requestBodies/post/9007199254740991/9223372036854775807/3.141592653589793/3.141592653589793238462643383279/complex-number-types?queryBigInt=9007199254740991&queryBigIntStr=9223372036854775807&queryDecimal=3.141592653589793&queryDecimalStr=3.141592653589793238462643383279", res.RequestBodyPostComplexNumberTypes200ApplicationJSONObject.URL) + assert.Equal(t, req.ComplexNumberTypes, res.Object.JSON) + assert.Equal(t, "http://localhost:35123/anything/requestBodies/post/9007199254740991/9223372036854775807/3.141592653589793/3.141592653589793238462643383279/complex-number-types?queryBigInt=9007199254740991&queryBigIntStr=9223372036854775807&queryDecimal=3.141592653589793&queryDecimalStr=3.141592653589793238462643383279", res.Object.URL) } func TestRequestBodyPostDefaultsAndConsts(t *testing.T) { @@ -1236,8 +1236,8 @@ func TestRequestBodyPostDefaultsAndConsts(t *testing.T) { assert.Equal(t, types.MustTimeFromString("2020-01-01T00:00:00Z"), req.GetConstDateTime()) assert.Equal(t, types.MustNewDecimalFromString("3.141592653589793"), req.GetConstDecimal()) assert.Equal(t, types.MustNewDecimalFromString("3.141592653589793238462643383279"), req.GetConstDecimalStr()) - assert.Equal(t, shared.DefaultsAndConstsConstEnumIntTwo, req.GetConstEnumInt()) - assert.Equal(t, shared.DefaultsAndConstsConstEnumStrTwo, req.GetConstEnumStr()) + assert.Equal(t, shared.ConstEnumIntTwo, req.GetConstEnumInt()) + assert.Equal(t, shared.ConstEnumStrTwo, req.GetConstEnumStr()) assert.Equal(t, int64(123), req.GetConstInt()) assert.Equal(t, float64(123.456), req.GetConstNum()) assert.Equal(t, "const", req.GetConstStr()) @@ -1247,36 +1247,36 @@ func TestRequestBodyPostDefaultsAndConsts(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, "normal", res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.NormalField) - - assert.Equal(t, types.MustNewBigIntFromString("9007199254740991"), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstBigInt) - assert.Equal(t, types.MustNewBigIntFromString("9223372036854775807"), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstBigIntStr) - assert.Equal(t, true, res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstBool) - assert.Equal(t, types.MustDateFromString("2020-01-01"), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstDate) - assert.Equal(t, types.MustTimeFromString("2020-01-01T00:00:00Z"), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstDateTime) - assert.Equal(t, types.MustNewDecimalFromString("3.141592653589793").String(), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstDecimal.String()) - assert.Equal(t, types.MustNewDecimalFromString("3.141592653589793238462643383279").String(), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstDecimalStr.String()) - assert.Equal(t, shared.DefaultsAndConstsOutputConstEnumIntTwo, res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstEnumInt) - assert.Equal(t, shared.DefaultsAndConstsOutputConstEnumStrTwo, res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstEnumStr) - assert.Equal(t, int64(123), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstInt) - assert.Equal(t, float64(123.456), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstNum) - assert.Equal(t, "const", res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstStr) - assert.Equal(t, (*string)(nil), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.ConstStrNull) - - assert.Equal(t, types.MustNewBigIntFromString("9007199254740991"), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultBigInt) - assert.Equal(t, types.MustNewBigIntFromString("9223372036854775807"), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultBigIntStr) - assert.Equal(t, true, res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultBool) - assert.Equal(t, types.MustDateFromString("2020-01-01"), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultDate) - assert.Equal(t, types.MustTimeFromString("2020-01-01T00:00:00Z"), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultDateTime) - assert.Equal(t, types.MustNewDecimalFromString("3.141592653589793").String(), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultDecimal.String()) - assert.Equal(t, types.MustNewDecimalFromString("3.141592653589793238462643383279").String(), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultDecimalStr.String()) - assert.Equal(t, shared.DefaultsAndConstsOutputDefaultEnumIntTwo, res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultEnumInt) - assert.Equal(t, shared.DefaultsAndConstsOutputDefaultEnumStrTwo, res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultEnumStr) - assert.Equal(t, int64(123), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultInt) - assert.Equal(t, float64(123.456), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultNum) - assert.Equal(t, "not default", res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultStr) - assert.Equal(t, (*string)(nil), res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultStrNullable) - assert.Equal(t, "default", *res.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject.JSON.DefaultStrOptional) + assert.Equal(t, "normal", res.Object.JSON.NormalField) + + assert.Equal(t, types.MustNewBigIntFromString("9007199254740991"), res.Object.JSON.ConstBigInt) + assert.Equal(t, types.MustNewBigIntFromString("9223372036854775807"), res.Object.JSON.ConstBigIntStr) + assert.Equal(t, true, res.Object.JSON.ConstBool) + assert.Equal(t, types.MustDateFromString("2020-01-01"), res.Object.JSON.ConstDate) + assert.Equal(t, types.MustTimeFromString("2020-01-01T00:00:00Z"), res.Object.JSON.ConstDateTime) + assert.Equal(t, types.MustNewDecimalFromString("3.141592653589793").String(), res.Object.JSON.ConstDecimal.String()) + assert.Equal(t, types.MustNewDecimalFromString("3.141592653589793238462643383279").String(), res.Object.JSON.ConstDecimalStr.String()) + assert.Equal(t, shared.DefaultsAndConstsOutputConstEnumIntTwo, res.Object.JSON.ConstEnumInt) + assert.Equal(t, shared.DefaultsAndConstsOutputConstEnumStrTwo, res.Object.JSON.ConstEnumStr) + assert.Equal(t, int64(123), res.Object.JSON.ConstInt) + assert.Equal(t, float64(123.456), res.Object.JSON.ConstNum) + assert.Equal(t, "const", res.Object.JSON.ConstStr) + assert.Equal(t, (*string)(nil), res.Object.JSON.ConstStrNull) + + assert.Equal(t, types.MustNewBigIntFromString("9007199254740991"), res.Object.JSON.DefaultBigInt) + assert.Equal(t, types.MustNewBigIntFromString("9223372036854775807"), res.Object.JSON.DefaultBigIntStr) + assert.Equal(t, true, res.Object.JSON.DefaultBool) + assert.Equal(t, types.MustDateFromString("2020-01-01"), res.Object.JSON.DefaultDate) + assert.Equal(t, types.MustTimeFromString("2020-01-01T00:00:00Z"), res.Object.JSON.DefaultDateTime) + assert.Equal(t, types.MustNewDecimalFromString("3.141592653589793").String(), res.Object.JSON.DefaultDecimal.String()) + assert.Equal(t, types.MustNewDecimalFromString("3.141592653589793238462643383279").String(), res.Object.JSON.DefaultDecimalStr.String()) + assert.Equal(t, shared.DefaultsAndConstsOutputDefaultEnumIntTwo, res.Object.JSON.DefaultEnumInt) + assert.Equal(t, shared.DefaultsAndConstsOutputDefaultEnumStrTwo, res.Object.JSON.DefaultEnumStr) + assert.Equal(t, int64(123), res.Object.JSON.DefaultInt) + assert.Equal(t, float64(123.456), res.Object.JSON.DefaultNum) + assert.Equal(t, "not default", res.Object.JSON.DefaultStr) + assert.Equal(t, (*string)(nil), res.Object.JSON.DefaultStrNullable) + assert.Equal(t, "default", *res.Object.JSON.DefaultStrOptional) } func TestRequestBodyPostJsonDataTypesString(t *testing.T) { @@ -1288,7 +1288,7 @@ func TestRequestBodyPostJsonDataTypesString(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, "test", res.RequestBodyPostJSONDataTypesString200ApplicationJSONObject.JSON) + assert.Equal(t, "test", res.Object.JSON) } func TestRequestBodyPostJsonDataTypesInteger(t *testing.T) { @@ -1300,7 +1300,7 @@ func TestRequestBodyPostJsonDataTypesInteger(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, int64(1), res.RequestBodyPostJSONDataTypesInteger200ApplicationJSONObject.JSON) + assert.Equal(t, int64(1), res.Object.JSON) } func TestRequestBodyPostJsonDataTypesInt32(t *testing.T) { @@ -1312,7 +1312,7 @@ func TestRequestBodyPostJsonDataTypesInt32(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, 1, res.RequestBodyPostJSONDataTypesInt32200ApplicationJSONObject.JSON) + assert.Equal(t, 1, res.Object.JSON) } func TestRequestBodyPostJsonDataTypesBigInt(t *testing.T) { @@ -1324,8 +1324,8 @@ func TestRequestBodyPostJsonDataTypesBigInt(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, big.NewInt(1), res.RequestBodyPostJSONDataTypesBigInt200ApplicationJSONObject.JSON) - assert.Equal(t, "1", res.RequestBodyPostJSONDataTypesBigInt200ApplicationJSONObject.Data) + assert.Equal(t, big.NewInt(1), res.Object.JSON) + assert.Equal(t, "1", res.Object.Data) } func TestRequestBodyPostJsonDataTypesBigIntStr(t *testing.T) { @@ -1337,8 +1337,8 @@ func TestRequestBodyPostJsonDataTypesBigIntStr(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, types.MustNewBigIntFromString("1"), res.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject.JSON) - assert.Equal(t, `"1"`, res.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject.Data) + assert.Equal(t, types.MustNewBigIntFromString("1"), res.Object.JSON) + assert.Equal(t, `"1"`, res.Object.Data) } func TestRequestBodyPostJsonDataTypesNumber(t *testing.T) { @@ -1350,7 +1350,7 @@ func TestRequestBodyPostJsonDataTypesNumber(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, 1.1, res.RequestBodyPostJSONDataTypesNumber200ApplicationJSONObject.JSON) + assert.Equal(t, 1.1, res.Object.JSON) } func TestRequestBodyPostJsonDataTypesFloat32(t *testing.T) { @@ -1362,7 +1362,7 @@ func TestRequestBodyPostJsonDataTypesFloat32(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, 1.1, res.RequestBodyPostJSONDataTypesFloat32200ApplicationJSONObject.JSON) + assert.Equal(t, 1.1, res.Object.JSON) } func TestRequestBodyPostJsonDataTypesDecimal(t *testing.T) { @@ -1374,8 +1374,8 @@ func TestRequestBodyPostJsonDataTypesDecimal(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, types.MustNewDecimalFromString("1.1"), res.RequestBodyPostJSONDataTypesDecimal200ApplicationJSONObject.JSON) - assert.Equal(t, "1.1", res.RequestBodyPostJSONDataTypesDecimal200ApplicationJSONObject.Data) + assert.Equal(t, types.MustNewDecimalFromString("1.1"), res.Object.JSON) + assert.Equal(t, "1.1", res.Object.Data) } func TestRequestBodyPostJsonDataTypesDecimalStr(t *testing.T) { @@ -1387,8 +1387,8 @@ func TestRequestBodyPostJsonDataTypesDecimalStr(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, types.MustNewDecimalFromString("1.1"), res.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject.JSON) - assert.Equal(t, `"1.1"`, res.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject.Data) + assert.Equal(t, types.MustNewDecimalFromString("1.1"), res.Object.JSON) + assert.Equal(t, `"1.1"`, res.Object.Data) } func TestRequestBodyPostJsonDataTypesBoolean(t *testing.T) { @@ -1400,7 +1400,7 @@ func TestRequestBodyPostJsonDataTypesBoolean(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, true, res.RequestBodyPostJSONDataTypesBoolean200ApplicationJSONObject.JSON) + assert.Equal(t, true, res.Object.JSON) } func TestRequestBodyPostJsonDataTypesDate(t *testing.T) { @@ -1412,8 +1412,8 @@ func TestRequestBodyPostJsonDataTypesDate(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, types.MustDateFromString("2020-01-01"), res.RequestBodyPostJSONDataTypesDate200ApplicationJSONObject.JSON) - assert.Equal(t, `"2020-01-01"`, res.RequestBodyPostJSONDataTypesDate200ApplicationJSONObject.Data) + assert.Equal(t, types.MustDateFromString("2020-01-01"), res.Object.JSON) + assert.Equal(t, `"2020-01-01"`, res.Object.Data) } func TestRequestBodyPostJsonDataTypesDateTime(t *testing.T) { @@ -1425,8 +1425,8 @@ func TestRequestBodyPostJsonDataTypesDateTime(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, types.MustTimeFromString("2020-01-01T00:00:00Z"), res.RequestBodyPostJSONDataTypesDateTime200ApplicationJSONObject.JSON) - assert.Equal(t, `"2020-01-01T00:00:00Z"`, res.RequestBodyPostJSONDataTypesDateTime200ApplicationJSONObject.Data) + assert.Equal(t, types.MustTimeFromString("2020-01-01T00:00:00Z"), res.Object.JSON) + assert.Equal(t, `"2020-01-01T00:00:00Z"`, res.Object.Data) } func TestRequestBodyPostJSONDataTypesMapDateTime(t *testing.T) { @@ -1442,8 +1442,8 @@ func TestRequestBodyPostJSONDataTypesMapDateTime(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req, res.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject.JSON) - assert.Equal(t, `{"test":"2020-01-01T00:00:00.000000001Z"}`, res.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject.Data) + assert.Equal(t, req, res.Object.JSON) + assert.Equal(t, `{"test":"2020-01-01T00:00:00.000000001Z"}`, res.Object.Data) } func TestRequestBodyPostJSONDataTypesMapBigIntStr(t *testing.T) { @@ -1459,8 +1459,8 @@ func TestRequestBodyPostJSONDataTypesMapBigIntStr(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req, res.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject.JSON) - assert.Equal(t, `{"test":"1"}`, res.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject.Data) + assert.Equal(t, req, res.Object.JSON) + assert.Equal(t, `{"test":"1"}`, res.Object.Data) } func TestRequestBodyPostJSONDataTypesMapDecimal(t *testing.T) { @@ -1476,8 +1476,8 @@ func TestRequestBodyPostJSONDataTypesMapDecimal(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req, res.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject.JSON) - assert.Equal(t, `{"test":3.141592653589793}`, res.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject.Data) + assert.Equal(t, req, res.Object.JSON) + assert.Equal(t, `{"test":3.141592653589793}`, res.Object.Data) } func TestRequestBodyPostJSONDataTypesArrayDate(t *testing.T) { @@ -1493,8 +1493,8 @@ func TestRequestBodyPostJSONDataTypesArrayDate(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req, res.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject.JSON) - assert.Equal(t, `["2020-01-01"]`, res.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject.Data) + assert.Equal(t, req, res.Object.JSON) + assert.Equal(t, `["2020-01-01"]`, res.Object.Data) } func TestRequestBodyPostJSONDataTypesArrayBigInt(t *testing.T) { @@ -1510,8 +1510,8 @@ func TestRequestBodyPostJSONDataTypesArrayBigInt(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req, res.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject.JSON) - assert.Equal(t, `[1]`, res.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject.Data) + assert.Equal(t, req, res.Object.JSON) + assert.Equal(t, `[1]`, res.Object.Data) } func TestRequestBodyPostJSONDataTypesArrayDecimalStr(t *testing.T) { @@ -1527,8 +1527,8 @@ func TestRequestBodyPostJSONDataTypesArrayDecimalStr(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req, res.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject.JSON) - assert.Equal(t, `["3.141592653589793438462643383279"]`, res.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject.Data) + assert.Equal(t, req, res.Object.JSON) + assert.Equal(t, `["3.141592653589793438462643383279"]`, res.Object.Data) } func TestRequestBodyPostNullableRequiredStringBody(t *testing.T) { @@ -1540,7 +1540,7 @@ func TestRequestBodyPostNullableRequiredStringBody(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, "null", res.RequestBodyPostNullableRequiredStringBody200ApplicationJSONObject.Data) + assert.Equal(t, "null", res.Object.Data) } func TestRequestBodyPostNullableNotRequiredStringBody(t *testing.T) { @@ -1552,7 +1552,7 @@ func TestRequestBodyPostNullableNotRequiredStringBody(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, "null", res.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject.Data) + assert.Equal(t, "null", res.Object.Data) } func TestRequestBodyPostNotNullableNotRequiredStringBody(t *testing.T) { @@ -1564,5 +1564,5 @@ func TestRequestBodyPostNotNullableNotRequiredStringBody(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, "", res.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject.Data) + assert.Equal(t, "", res.Object.Data) } diff --git a/go-client-sdk/testsprimary/responsebodies_test.go b/go-client-sdk/testsprimary/responsebodies_test.go index 8b53e2ae9..7e629f5ca 100755 --- a/go-client-sdk/testsprimary/responsebodies_test.go +++ b/go-client-sdk/testsprimary/responsebodies_test.go @@ -31,11 +31,11 @@ func TestResponseBodyJSONGet(t *testing.T) { assert.Equal(t, http.StatusOK, res.StatusCode) assert.NotNil(t, res.HTTPBinSimpleJSONObject) assert.Equal(t, &shared.HTTPBinSimpleJSONObject{ - Slideshow: shared.HTTPBinSimpleJSONObjectSlideshow{ + Slideshow: shared.Slideshow{ Author: "Yours Truly", Date: "date of publication", Title: "Sample Slide Show", - Slides: []shared.HTTPBinSimpleJSONObjectSlideshowSlides{ + Slides: []shared.Slides{ { Title: "Wake up to WonderWidgets!", Type: "all", @@ -108,8 +108,8 @@ func TestResponseBodyOverrideAcceptHeader(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.NotNil(t, res.GetResponseBodyOptionalGet200TextPlainString) - assert.Equal(t, "Success", *res.GetResponseBodyOptionalGet200TextPlainString()) + assert.NotNil(t, res.Res) + assert.Equal(t, "Success", *res.GetRes()) } func TestResponseBodyDefaultAcceptHeader(t *testing.T) { @@ -155,7 +155,7 @@ func TestResponseBodyAdditionalPropertiesPost(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req, res.ResponseBodyAdditionalPropertiesPost200ApplicationJSONObject.JSON) + assert.Equal(t, req, res.Object.JSON) } func TestResponseBodyAdditionalPropertiesComplexNumbersPost(t *testing.T) { @@ -174,7 +174,7 @@ func TestResponseBodyAdditionalPropertiesComplexNumbersPost(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req, res.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject.JSON) + assert.Equal(t, req, res.Object.JSON) } func TestResponseBodyZeroValueComplexTypePtrsPost(t *testing.T) { @@ -193,7 +193,7 @@ func TestResponseBodyZeroValueComplexTypePtrsPost(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req, res.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject.JSON) + assert.Equal(t, req, res.Object.JSON) } func TestResponseBodyAdditionalPropertiesDatePost(t *testing.T) { @@ -212,7 +212,7 @@ func TestResponseBodyAdditionalPropertiesDatePost(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req, res.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSONObject.JSON) + assert.Equal(t, req, res.Object.JSON) } func TestResponseBodyAdditionalPropertiesObjectPost(t *testing.T) { @@ -232,5 +232,5 @@ func TestResponseBodyAdditionalPropertiesObjectPost(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, req, res.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject.JSON) + assert.Equal(t, req, res.Object.JSON) } diff --git a/go-client-sdk/testsprimary/retries_test.go b/go-client-sdk/testsprimary/retries_test.go index 4bfcf083a..1af157fe6 100755 --- a/go-client-sdk/testsprimary/retries_test.go +++ b/go-client-sdk/testsprimary/retries_test.go @@ -9,11 +9,11 @@ import ( "net/http" "testing" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/utils" - sdk "openapi" + sdk "openapi/v2" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/go-client-sdk/testsprimary/servers_test.go b/go-client-sdk/testsprimary/servers_test.go index c0060e44c..2a0426646 100755 --- a/go-client-sdk/testsprimary/servers_test.go +++ b/go-client-sdk/testsprimary/servers_test.go @@ -7,9 +7,9 @@ import ( "net/http" "testing" - "openapi/pkg/models/operations" + "openapi/v2/pkg/models/operations" - sdk "openapi" + sdk "openapi/v2" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/go-client-sdk/testsprimary/telemetry_test.go b/go-client-sdk/testsprimary/telemetry_test.go index 1ed592bee..97f482b70 100755 --- a/go-client-sdk/testsprimary/telemetry_test.go +++ b/go-client-sdk/testsprimary/telemetry_test.go @@ -7,7 +7,7 @@ import ( "net/http" "testing" - sdk "openapi" + sdk "openapi/v2" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -22,7 +22,7 @@ func TestTelemetryUserAgentGet(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, "speakeasy-sdk/go 1.39.4 2.173.0 0.1.0 openapi", res.Res.Headers["X-Speakeasy-User-Agent"]) + assert.Equal(t, "speakeasy-sdk/go 2.0.0 2.181.1 0.1.0 openapi", res.Res.Headers["X-Speakeasy-User-Agent"]) } func TestTelemetrySpeakeasyUserAgentGet(t *testing.T) { @@ -37,5 +37,5 @@ func TestTelemetrySpeakeasyUserAgentGet(t *testing.T) { require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) assert.Equal(t, userAgent, res.Res.Headers["User-Agent"]) - assert.Equal(t, "speakeasy-sdk/go 1.39.4 2.173.0 0.1.0 openapi", res.Res.Headers["X-Speakeasy-User-Agent"]) + assert.Equal(t, "speakeasy-sdk/go 2.0.0 2.181.1 0.1.0 openapi", res.Res.Headers["X-Speakeasy-User-Agent"]) } diff --git a/go-client-sdk/testsprimary/unions_test.go b/go-client-sdk/testsprimary/unions_test.go index d88b2d3ab..4c4d317a6 100755 --- a/go-client-sdk/testsprimary/unions_test.go +++ b/go-client-sdk/testsprimary/unions_test.go @@ -5,14 +5,14 @@ package tests import ( "bytes" "context" + "math/big" "net/http" - "testing" - "time" - "openapi/pkg/models/operations" "openapi/pkg/models/shared" "openapi/pkg/types" "openapi/pkg/utils" + "testing" + "time" sdk "openapi" @@ -297,7 +297,7 @@ func TestNullableOneOfSchemaPost_Obj1(t *testing.T) { res, err := s.Unions.NullableOneOfSchemaPost(context.Background(), &req) require.NoError(t, err) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, operations.NullableOneOfSchemaPostResJSONTypeTypedObject1, res.Res.JSON.Type) + assert.Equal(t, operations.NullableOneOfSchemaPostJSONTypeTypedObject1, res.Res.JSON.Type) assert.Equal(t, obj, *res.Res.JSON.TypedObject1) } @@ -316,7 +316,7 @@ func TestNullableOneOfSchemaPost_Obj2(t *testing.T) { res, err := s.Unions.NullableOneOfSchemaPost(context.Background(), &req) require.NoError(t, err) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, operations.NullableOneOfSchemaPostResJSONTypeTypedObject2, res.Res.JSON.Type) + assert.Equal(t, operations.NullableOneOfSchemaPostJSONTypeTypedObject2, res.Res.JSON.Type) assert.Equal(t, obj, *res.Res.JSON.TypedObject2) } @@ -386,7 +386,7 @@ func TestNullableOneOfTypeInObject(t *testing.T) { func TestNullableOneOfRefInObject(t *testing.T) { recordTest("unions-nullable-oneof-ref-in-object-post") - nullableOneOfTwoObj2 := shared.CreateNullableOneOfRefInObjectNullableOneOfTwoTypedObject2(shared.TypedObject2{Value: "two", Type: shared.TypedObject2TypeObj2}) + nullableOneOfTwoObj2 := shared.CreateNullableOneOfTwoTypedObject2(shared.TypedObject2{Value: "two", Type: shared.TypedObject2TypeObj2}) tests := []struct { name string @@ -396,7 +396,7 @@ func TestNullableOneOfRefInObject(t *testing.T) { { name: "Non-nullable field set only", obj: shared.NullableOneOfRefInObject{ - OneOfOne: shared.CreateNullableOneOfRefInObjectOneOfOneTypedObject1(shared.TypedObject1{Value: "one", Type: shared.TypedObject1TypeObj1}), + OneOfOne: shared.CreateOneOfOneTypedObject1(shared.TypedObject1{Value: "one", Type: shared.TypedObject1TypeObj1}), }, wantJson: "{\"NullableOneOfOne\":null,\"NullableOneOfTwo\":null,\"OneOfOne\":{\"type\":\"obj1\",\"value\":\"one\"}}", }, @@ -405,7 +405,7 @@ func TestNullableOneOfRefInObject(t *testing.T) { obj: shared.NullableOneOfRefInObject{ NullableOneOfOne: nil, NullableOneOfTwo: nil, - OneOfOne: shared.CreateNullableOneOfRefInObjectOneOfOneTypedObject1(shared.TypedObject1{Value: "one", Type: shared.TypedObject1TypeObj1}), + OneOfOne: shared.CreateOneOfOneTypedObject1(shared.TypedObject1{Value: "one", Type: shared.TypedObject1TypeObj1}), }, wantJson: "{\"NullableOneOfOne\":null,\"NullableOneOfTwo\":null,\"OneOfOne\":{\"type\":\"obj1\",\"value\":\"one\"}}", }, @@ -414,7 +414,7 @@ func TestNullableOneOfRefInObject(t *testing.T) { obj: shared.NullableOneOfRefInObject{ NullableOneOfOne: &shared.TypedObject1{Value: "one", Type: shared.TypedObject1TypeObj1}, NullableOneOfTwo: &nullableOneOfTwoObj2, - OneOfOne: shared.CreateNullableOneOfRefInObjectOneOfOneTypedObject1(shared.TypedObject1{Type: shared.TypedObject1TypeObj1}), + OneOfOne: shared.CreateOneOfOneTypedObject1(shared.TypedObject1{Type: shared.TypedObject1TypeObj1}), }, wantJson: "{\"NullableOneOfOne\":{\"type\":\"obj1\",\"value\":\"one\"},\"NullableOneOfTwo\":{\"type\":\"obj2\",\"value\":\"two\"},\"OneOfOne\":{\"type\":\"obj1\",\"value\":\"\"}}", }, @@ -446,7 +446,7 @@ func TestPrimitiveTypeOneOfPost_String(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, operations.PrimitiveTypeOneOfPostResJSONTypeStr, res.Res.JSON.Type) + assert.Equal(t, operations.PrimitiveTypeOneOfPostJSONTypeStr, res.Res.JSON.Type) assert.Equal(t, "test", *res.Res.JSON.Str) } @@ -461,7 +461,7 @@ func TestPrimitiveTypeOneOfPost_Integer(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, operations.PrimitiveTypeOneOfPostResJSONTypeInteger, res.Res.JSON.Type) + assert.Equal(t, operations.PrimitiveTypeOneOfPostJSONTypeInteger, res.Res.JSON.Type) assert.Equal(t, int64(111), *res.Res.JSON.Integer) } @@ -476,7 +476,7 @@ func TestPrimitiveTypeOneOfPost_Number(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, operations.PrimitiveTypeOneOfPostResJSONTypeNumber, res.Res.JSON.Type) + assert.Equal(t, operations.PrimitiveTypeOneOfPostJSONTypeNumber, res.Res.JSON.Type) assert.Equal(t, float64(22.2), *res.Res.JSON.Number) } @@ -491,7 +491,7 @@ func TestPrimitiveTypeOneOfPost_Boolean(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, operations.PrimitiveTypeOneOfPostResJSONTypeBoolean, res.Res.JSON.Type) + assert.Equal(t, operations.PrimitiveTypeOneOfPostJSONTypeBoolean, res.Res.JSON.Type) assert.Equal(t, true, *res.Res.JSON.Boolean) } @@ -506,7 +506,7 @@ func TestMixedTypeOneOfPost_String(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, operations.MixedTypeOneOfPostResJSONTypeStr, res.Res.JSON.Type) + assert.Equal(t, operations.MixedTypeOneOfPostJSONTypeStr, res.Res.JSON.Type) assert.Equal(t, "test", *res.Res.JSON.Str) } @@ -521,7 +521,7 @@ func TestMixedTypeOneOfPost_Integer(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, operations.MixedTypeOneOfPostResJSONTypeInteger, res.Res.JSON.Type) + assert.Equal(t, operations.MixedTypeOneOfPostJSONTypeInteger, res.Res.JSON.Type) assert.Equal(t, int64(111), *res.Res.JSON.Integer) } @@ -538,6 +538,78 @@ func TestMixedTypeOneOfPost_Object(t *testing.T) { require.NoError(t, err) require.NotNil(t, res) assert.Equal(t, http.StatusOK, res.StatusCode) - assert.Equal(t, operations.MixedTypeOneOfPostResJSONTypeSimpleObject, res.Res.JSON.Type) + assert.Equal(t, operations.MixedTypeOneOfPostJSONTypeSimpleObject, res.Res.JSON.Type) assert.Equal(t, obj, *res.Res.JSON.SimpleObject) } + +func TestDateNullUnion(t *testing.T) { + recordTest("unions-date-null") + + s := sdk.New() + date := types.MustDateFromString("2020-01-01") + res, err := s.Unions.UnionDateNull(context.Background(), &date) + require.NoError(t, err) + require.NotNil(t, res) + assert.Equal(t, http.StatusOK, res.StatusCode) + assert.Equal(t, types.MustDateFromString("2020-01-01"), *res.Res.JSON) +} + +func TestDateTimeNullUnion(t *testing.T) { + recordTest("unions-datetime-null") + + s := sdk.New() + dateTime := types.MustTimeFromString("2020-01-01T00:00:00Z") + res, err := s.Unions.UnionDateTimeNull(context.Background(), &dateTime) + require.NoError(t, err) + require.NotNil(t, res) + assert.Equal(t, http.StatusOK, res.StatusCode) + assert.Equal(t, types.MustTimeFromString("2020-01-01T00:00:00Z"), *res.Res.JSON) +} + +func TestDateTimeBigintUnion(t *testing.T) { + recordTest("unions-datetime-bigint") + + s := sdk.New() + + req := operations.CreateUnionDateTimeBigIntRequestBodyDateTime(types.MustTimeFromString("2020-01-01T00:00:00Z")) + + res, err := s.Unions.UnionDateTimeBigInt(context.Background(), req) + require.NoError(t, err) + require.NotNil(t, res) + assert.Equal(t, http.StatusOK, res.StatusCode) + assert.Equal(t, operations.UnionDateTimeBigIntJSONTypeDateTime, res.Res.JSON.Type) + assert.Equal(t, types.MustTimeFromString("2020-01-01T00:00:00Z"), *res.Res.JSON.DateTime) + + nextReq := operations.CreateUnionDateTimeBigIntRequestBodyBigint(big.NewInt(9007199254740991)) + + nextRes, nextErr := s.Unions.UnionDateTimeBigInt(context.Background(), nextReq) + require.NoError(t, nextErr) + require.NotNil(t, nextRes) + assert.Equal(t, http.StatusOK, nextRes.StatusCode) + assert.Equal(t, operations.UnionDateTimeBigIntJSONTypeBigint, nextRes.Res.JSON.Type) + assert.Equal(t, big.NewInt(9007199254740991), nextRes.Res.JSON.Bigint) +} + +func TestUnionBigintDecimal(t *testing.T) { + recordTest("unions-bigint-decimal") + + s := sdk.New() + + req := operations.CreateUnionBigIntDecimalRequestBodyDecimal(types.MustNewDecimalFromString("3.141592653589793")) + + res, err := s.Unions.UnionBigIntDecimal(context.Background(), req) + require.NoError(t, err) + require.NotNil(t, res) + assert.Equal(t, http.StatusOK, res.StatusCode) + assert.Equal(t, operations.UnionBigIntDecimalJSONTypeDecimal, res.Res.JSON.Type) + assert.Equal(t, types.MustNewDecimalFromString("3.141592653589793"), res.Res.JSON.Decimal) + + nextReq := operations.CreateUnionBigIntDecimalRequestBodyBigint(big.NewInt(9007199254740991)) + + nextRes, nextErr := s.Unions.UnionBigIntDecimal(context.Background(), nextReq) + require.NoError(t, nextErr) + require.NotNil(t, nextRes) + assert.Equal(t, http.StatusOK, nextRes.StatusCode) + assert.Equal(t, operations.UnionBigIntDecimalJSONTypeBigint, nextRes.Res.JSON.Type) + assert.Equal(t, big.NewInt(9007199254740991), nextRes.Res.JSON.Bigint) +} diff --git a/go-client-sdk/testssimple_security/auth_test.go b/go-client-sdk/testssimple_security/auth_test.go index 453f42cd3..d509e0b20 100755 --- a/go-client-sdk/testssimple_security/auth_test.go +++ b/go-client-sdk/testssimple_security/auth_test.go @@ -7,7 +7,7 @@ import ( "net/http" "testing" - sdk "openapi" + sdk "openapi/v2" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/go-client-sdk/unions.go b/go-client-sdk/unions.go index 6a04bbd4d..82c25b1f9 100755 --- a/go-client-sdk/unions.go +++ b/go-client-sdk/unions.go @@ -8,27 +8,27 @@ import ( "fmt" "io" "net/http" - "openapi/pkg/models/operations" - "openapi/pkg/models/sdkerrors" - "openapi/pkg/models/shared" - "openapi/pkg/types" - "openapi/pkg/utils" + "openapi/v2/pkg/models/operations" + "openapi/v2/pkg/models/sdkerrors" + "openapi/v2/pkg/models/shared" + "openapi/v2/pkg/types" + "openapi/v2/pkg/utils" "strings" "time" ) -// unions - Endpoints for testing union types. -type unions struct { +// Unions - Endpoints for testing union types. +type Unions struct { sdkConfiguration sdkConfiguration } -func newUnions(sdkConfig sdkConfiguration) *unions { - return &unions{ +func newUnions(sdkConfig sdkConfiguration) *Unions { + return &Unions{ sdkConfiguration: sdkConfig, } } -func (s *unions) FlattenedTypedObjectPost(ctx context.Context, request shared.FlattenedTypedObject1) (*operations.FlattenedTypedObjectPostResponse, error) { +func (s *Unions) FlattenedTypedObjectPost(ctx context.Context, request shared.FlattenedTypedObject1) (*operations.FlattenedTypedObjectPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/flattenedTypedObject" @@ -95,7 +95,7 @@ func (s *unions) FlattenedTypedObjectPost(ctx context.Context, request shared.Fl return res, nil } -func (s *unions) MixedTypeOneOfPost(ctx context.Context, request operations.MixedTypeOneOfPostRequestBody) (*operations.MixedTypeOneOfPostResponse, error) { +func (s *Unions) MixedTypeOneOfPost(ctx context.Context, request operations.MixedTypeOneOfPostRequestBody) (*operations.MixedTypeOneOfPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/mixedTypeOneOf" @@ -162,7 +162,7 @@ func (s *unions) MixedTypeOneOfPost(ctx context.Context, request operations.Mixe return res, nil } -func (s *unions) NullableOneOfRefInObjectPost(ctx context.Context, request shared.NullableOneOfRefInObject) (*operations.NullableOneOfRefInObjectPostResponse, error) { +func (s *Unions) NullableOneOfRefInObjectPost(ctx context.Context, request shared.NullableOneOfRefInObject) (*operations.NullableOneOfRefInObjectPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/nullableOneOfRefInObject" @@ -229,7 +229,7 @@ func (s *unions) NullableOneOfRefInObjectPost(ctx context.Context, request share return res, nil } -func (s *unions) NullableOneOfSchemaPost(ctx context.Context, request *operations.NullableOneOfSchemaPostRequestBody) (*operations.NullableOneOfSchemaPostResponse, error) { +func (s *Unions) NullableOneOfSchemaPost(ctx context.Context, request *operations.NullableOneOfSchemaPostRequestBody) (*operations.NullableOneOfSchemaPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/nullableOneOfSchema" @@ -296,7 +296,7 @@ func (s *unions) NullableOneOfSchemaPost(ctx context.Context, request *operation return res, nil } -func (s *unions) NullableOneOfTypeInObjectPost(ctx context.Context, request shared.NullableOneOfTypeInObject) (*operations.NullableOneOfTypeInObjectPostResponse, error) { +func (s *Unions) NullableOneOfTypeInObjectPost(ctx context.Context, request shared.NullableOneOfTypeInObject) (*operations.NullableOneOfTypeInObjectPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/nullableOneOfInObject" @@ -363,7 +363,7 @@ func (s *unions) NullableOneOfTypeInObjectPost(ctx context.Context, request shar return res, nil } -func (s *unions) NullableTypedObjectPost(ctx context.Context, request *shared.TypedObject1) (*operations.NullableTypedObjectPostResponse, error) { +func (s *Unions) NullableTypedObjectPost(ctx context.Context, request *shared.TypedObject1) (*operations.NullableTypedObjectPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/nullableTypedObject" @@ -430,7 +430,7 @@ func (s *unions) NullableTypedObjectPost(ctx context.Context, request *shared.Ty return res, nil } -func (s *unions) PrimitiveTypeOneOfPost(ctx context.Context, request operations.PrimitiveTypeOneOfPostRequestBody) (*operations.PrimitiveTypeOneOfPostResponse, error) { +func (s *Unions) PrimitiveTypeOneOfPost(ctx context.Context, request operations.PrimitiveTypeOneOfPostRequestBody) (*operations.PrimitiveTypeOneOfPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/primitiveTypeOneOf" @@ -497,7 +497,7 @@ func (s *unions) PrimitiveTypeOneOfPost(ctx context.Context, request operations. return res, nil } -func (s *unions) StronglyTypedOneOfPost(ctx context.Context, request shared.StronglyTypedOneOfObject) (*operations.StronglyTypedOneOfPostResponse, error) { +func (s *Unions) StronglyTypedOneOfPost(ctx context.Context, request shared.StronglyTypedOneOfObject) (*operations.StronglyTypedOneOfPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/stronglyTypedOneOf" @@ -564,7 +564,7 @@ func (s *unions) StronglyTypedOneOfPost(ctx context.Context, request shared.Stro return res, nil } -func (s *unions) TypedObjectNullableOneOfPost(ctx context.Context, request *shared.TypedObjectNullableOneOf) (*operations.TypedObjectNullableOneOfPostResponse, error) { +func (s *Unions) TypedObjectNullableOneOfPost(ctx context.Context, request *shared.TypedObjectNullableOneOf) (*operations.TypedObjectNullableOneOfPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/typedObjectNullableOneOf" @@ -631,7 +631,7 @@ func (s *unions) TypedObjectNullableOneOfPost(ctx context.Context, request *shar return res, nil } -func (s *unions) TypedObjectOneOfPost(ctx context.Context, request shared.TypedObjectOneOf) (*operations.TypedObjectOneOfPostResponse, error) { +func (s *Unions) TypedObjectOneOfPost(ctx context.Context, request shared.TypedObjectOneOf) (*operations.TypedObjectOneOfPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/typedObjectOneOf" @@ -698,7 +698,7 @@ func (s *unions) TypedObjectOneOfPost(ctx context.Context, request shared.TypedO return res, nil } -func (s *unions) UnionBigIntDecimal(ctx context.Context, request operations.UnionBigIntDecimalRequestBody) (*operations.UnionBigIntDecimalResponse, error) { +func (s *Unions) UnionBigIntDecimal(ctx context.Context, request operations.UnionBigIntDecimalRequestBody) (*operations.UnionBigIntDecimalResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/unionBigIntDecimal" @@ -765,7 +765,7 @@ func (s *unions) UnionBigIntDecimal(ctx context.Context, request operations.Unio return res, nil } -func (s *unions) UnionDateNull(ctx context.Context, request *types.Date) (*operations.UnionDateNullResponse, error) { +func (s *Unions) UnionDateNull(ctx context.Context, request *types.Date) (*operations.UnionDateNullResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/unionDateNull" @@ -832,7 +832,7 @@ func (s *unions) UnionDateNull(ctx context.Context, request *types.Date) (*opera return res, nil } -func (s *unions) UnionDateTimeBigInt(ctx context.Context, request operations.UnionDateTimeBigIntRequestBody) (*operations.UnionDateTimeBigIntResponse, error) { +func (s *Unions) UnionDateTimeBigInt(ctx context.Context, request operations.UnionDateTimeBigIntRequestBody) (*operations.UnionDateTimeBigIntResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/unionDateTimeBigInt" @@ -899,7 +899,7 @@ func (s *unions) UnionDateTimeBigInt(ctx context.Context, request operations.Uni return res, nil } -func (s *unions) UnionDateTimeNull(ctx context.Context, request *time.Time) (*operations.UnionDateTimeNullResponse, error) { +func (s *Unions) UnionDateTimeNull(ctx context.Context, request *time.Time) (*operations.UnionDateTimeNullResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/unionDateTimeNull" @@ -966,7 +966,7 @@ func (s *unions) UnionDateTimeNull(ctx context.Context, request *time.Time) (*op return res, nil } -func (s *unions) WeaklyTypedOneOfPost(ctx context.Context, request shared.WeaklyTypedOneOfObject) (*operations.WeaklyTypedOneOfPostResponse, error) { +func (s *Unions) WeaklyTypedOneOfPost(ctx context.Context, request shared.WeaklyTypedOneOfObject) (*operations.WeaklyTypedOneOfPostResponse, error) { baseURL := utils.ReplaceParameters(s.sdkConfiguration.GetServerDetails()) url := strings.TrimSuffix(baseURL, "/") + "/anything/weaklyTypedOneOf" diff --git a/java-client-sdk/README.md b/java-client-sdk/README.md index 6a42f3247..9fa3f6128 100755 --- a/java-client-sdk/README.md +++ b/java-client-sdk/README.md @@ -6,7 +6,7 @@ ### Gradle ```groovy -implementation 'org.openapis.openapi:openapi:1.38.2' +implementation 'org.openapis.openapi:openapi:2.0.0' ``` @@ -32,7 +32,7 @@ public class Application { GetGlobalNameOverrideResponse res = sdk.generation.globalNameOverridden(); - if (res.getGlobalNameOverride200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -51,8 +51,8 @@ package hello.world; import java.time.LocalDate; import java.time.OffsetDateTime; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.UsageExamplePostEnumParameter; -import org.openapis.openapi.models.operations.UsageExamplePostOptEnumParameter; +import org.openapis.openapi.models.operations.EnumParameter; +import org.openapis.openapi.models.operations.OptEnumParameter; import org.openapis.openapi.models.operations.UsageExamplePostRequest; import org.openapis.openapi.models.operations.UsageExamplePostRequestBody; import org.openapis.openapi.models.operations.UsageExamplePostResponse; @@ -60,10 +60,10 @@ import org.openapis.openapi.models.operations.UsageExamplePostSecurity; import org.openapis.openapi.models.shared.Enum; import org.openapis.openapi.models.shared.FakerFormattedStrings; import org.openapis.openapi.models.shared.FakerStrings; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -73,7 +73,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - UsageExamplePostRequest req = new UsageExamplePostRequest(168827L, "string", false, LocalDate.parse("2022-05-05"), OffsetDateTime.parse("2023-06-11T00:39:45.412Z"), OffsetDateTime.parse("2022-07-22T13:16:48.221Z"), 2679.33d, "string", 5223.72d, UsageExamplePostEnumParameter.VALUE1, 0d, 6946.59f, 2286.22d, 102975L, 566999, "example 1"){{ + UsageExamplePostRequest req = new UsageExamplePostRequest(168827L, "string", false, LocalDate.parse("2022-05-05"), OffsetDateTime.parse("2023-06-11T00:39:45.412Z"), OffsetDateTime.parse("2022-07-22T13:16:48.221Z"), 2679.33d, "string", 5223.72d, EnumParameter.VALUE1, 0d, 6946.59f, 2286.22d, 102975L, 566999, "example 1"){{ requestBody = new UsageExamplePostRequestBody(){{ fakerFormattedStrings = new FakerFormattedStrings(){{ addressFormat = "2344 Aufderhar Corner"; @@ -150,7 +150,7 @@ public class Application { username = "Mable76"; uuid = "16b919d6-51cd-4e97-81e2-5221b7b6969f"; }}; - simpleObject = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + simpleObject = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -165,7 +165,7 @@ public class Application { bigintStrParameterOptional = "string"; decimalParameterOptional = 5944.32d; decimalStrParameterOptional = "string"; - optEnumParameter = UsageExamplePostOptEnumParameter.VALUE3; + optEnumParameter = OptEnumParameter.VALUE3; }}; UsageExamplePostResponse res = sdk.generation.usageExamplePost(req, new UsageExamplePostSecurity("YOUR_PASSWORD", "YOUR_USERNAME"){{ @@ -173,7 +173,7 @@ public class Application { username = "YOUR_USERNAME"; }}); - if (res.usageExamplePost200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -192,54 +192,7 @@ public class Application { * [putAnythingIgnoredGeneration](docs/sdks/sdk/README.md#putanythingignoredgeneration) * [responseBodyJsonGet](docs/sdks/sdk/README.md#responsebodyjsonget) -### [auth](docs/sdks/auth/README.md) - -* [apiKeyAuth](docs/sdks/auth/README.md#apikeyauth) -* [apiKeyAuthGlobal](docs/sdks/auth/README.md#apikeyauthglobal) -* [basicAuth](docs/sdks/auth/README.md#basicauth) -* [bearerAuth](docs/sdks/auth/README.md#bearerauth) -* [globalBearerAuth](docs/sdks/auth/README.md#globalbearerauth) -* [oauth2Auth](docs/sdks/auth/README.md#oauth2auth) -* [oauth2Override](docs/sdks/auth/README.md#oauth2override) -* [openIdConnectAuth](docs/sdks/auth/README.md#openidconnectauth) - -### [authNew](docs/sdks/authnew/README.md) - -* [apiKeyAuthGlobalNew](docs/sdks/authnew/README.md#apikeyauthglobalnew) -* [authGlobal](docs/sdks/authnew/README.md#authglobal) -* [basicAuthNew](docs/sdks/authnew/README.md#basicauthnew) -* [multipleMixedOptionsAuth](docs/sdks/authnew/README.md#multiplemixedoptionsauth) -* [multipleMixedSchemeAuth](docs/sdks/authnew/README.md#multiplemixedschemeauth) -* [multipleOptionsWithMixedSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithmixedschemesauth) -* [multipleOptionsWithSimpleSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithsimpleschemesauth) -* [multipleSimpleOptionsAuth](docs/sdks/authnew/README.md#multiplesimpleoptionsauth) -* [multipleSimpleSchemeAuth](docs/sdks/authnew/README.md#multiplesimpleschemeauth) -* [oauth2AuthNew](docs/sdks/authnew/README.md#oauth2authnew) -* [openIdConnectAuthNew](docs/sdks/authnew/README.md#openidconnectauthnew) - -### [documentation](docs/sdks/documentation/README.md) - -* [getDocumentationPerLanguage](docs/sdks/documentation/README.md#getdocumentationperlanguage) - Gets documentation for some language, I guess. - -### [errors](docs/sdks/errors/README.md) - -* [connectionErrorGet](docs/sdks/errors/README.md#connectionerrorget) -* [statusGetError](docs/sdks/errors/README.md#statusgeterror) -* [statusGetXSpeakeasyErrors](docs/sdks/errors/README.md#statusgetxspeakeasyerrors) - -### [first](docs/sdks/first/README.md) - -* [get](docs/sdks/first/README.md#get) - -### [flattening](docs/sdks/flattening/README.md) - -* [componentBodyAndParamConflict](docs/sdks/flattening/README.md#componentbodyandparamconflict) -* [componentBodyAndParamNoConflict](docs/sdks/flattening/README.md#componentbodyandparamnoconflict) -* [conflictingParams](docs/sdks/flattening/README.md#conflictingparams) -* [inlineBodyAndParamConflict](docs/sdks/flattening/README.md#inlinebodyandparamconflict) -* [inlineBodyAndParamNoConflict](docs/sdks/flattening/README.md#inlinebodyandparamnoconflict) - -### [generation](docs/sdks/generation/README.md) +### [.generation](docs/sdks/generation/README.md) * [anchorTypesGet](docs/sdks/generation/README.md#anchortypesget) * [arrayCircularReferenceGet](docs/sdks/generation/README.md#arraycircularreferenceget) @@ -262,38 +215,44 @@ public class Application { * [typedParameterGenerationGet](docs/sdks/generation/README.md#typedparametergenerationget) * [usageExamplePost](docs/sdks/generation/README.md#usageexamplepost) - An operation used for testing usage examples -### [globals](docs/sdks/globals/README.md) +### [.errors](docs/sdks/errors/README.md) -* [globalPathParameterGet](docs/sdks/globals/README.md#globalpathparameterget) -* [globalsQueryParameterGet](docs/sdks/globals/README.md#globalsqueryparameterget) - - -### [nest.first](docs/sdks/nestfirst/README.md) - -* [get](docs/sdks/nestfirst/README.md#get) - -### [nested](docs/sdks/nested/README.md) - -* [get](docs/sdks/nested/README.md#get) +* [connectionErrorGet](docs/sdks/errors/README.md#connectionerrorget) +* [statusGetError](docs/sdks/errors/README.md#statusgeterror) +* [statusGetXSpeakeasyErrors](docs/sdks/errors/README.md#statusgetxspeakeasyerrors) -### [nested.first](docs/sdks/nestedfirst/README.md) +### [.unions](docs/sdks/unions/README.md) -* [get](docs/sdks/nestedfirst/README.md#get) +* [flattenedTypedObjectPost](docs/sdks/unions/README.md#flattenedtypedobjectpost) +* [mixedTypeOneOfPost](docs/sdks/unions/README.md#mixedtypeoneofpost) +* [nullableOneOfRefInObjectPost](docs/sdks/unions/README.md#nullableoneofrefinobjectpost) +* [nullableOneOfSchemaPost](docs/sdks/unions/README.md#nullableoneofschemapost) +* [nullableOneOfTypeInObjectPost](docs/sdks/unions/README.md#nullableoneoftypeinobjectpost) +* [nullableTypedObjectPost](docs/sdks/unions/README.md#nullabletypedobjectpost) +* [primitiveTypeOneOfPost](docs/sdks/unions/README.md#primitivetypeoneofpost) +* [stronglyTypedOneOfPost](docs/sdks/unions/README.md#stronglytypedoneofpost) +* [typedObjectNullableOneOfPost](docs/sdks/unions/README.md#typedobjectnullableoneofpost) +* [typedObjectOneOfPost](docs/sdks/unions/README.md#typedobjectoneofpost) +* [unionBigIntDecimal](docs/sdks/unions/README.md#unionbigintdecimal) +* [unionDateNull](docs/sdks/unions/README.md#uniondatenull) +* [unionDateTimeBigInt](docs/sdks/unions/README.md#uniondatetimebigint) +* [unionDateTimeNull](docs/sdks/unions/README.md#uniondatetimenull) +* [weaklyTypedOneOfPost](docs/sdks/unions/README.md#weaklytypedoneofpost) -### [nested.second](docs/sdks/nestedsecond/README.md) +### [.flattening](docs/sdks/flattening/README.md) -* [get](docs/sdks/nestedsecond/README.md#get) +* [componentBodyAndParamConflict](docs/sdks/flattening/README.md#componentbodyandparamconflict) +* [componentBodyAndParamNoConflict](docs/sdks/flattening/README.md#componentbodyandparamnoconflict) +* [conflictingParams](docs/sdks/flattening/README.md#conflictingparams) +* [inlineBodyAndParamConflict](docs/sdks/flattening/README.md#inlinebodyandparamconflict) +* [inlineBodyAndParamNoConflict](docs/sdks/flattening/README.md#inlinebodyandparamnoconflict) -### [pagination](docs/sdks/pagination/README.md) +### [.globals](docs/sdks/globals/README.md) -* [paginationCursorBody](docs/sdks/pagination/README.md#paginationcursorbody) -* [paginationCursorParams](docs/sdks/pagination/README.md#paginationcursorparams) -* [paginationLimitOffsetOffsetBody](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetbody) -* [paginationLimitOffsetOffsetParams](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetparams) -* [paginationLimitOffsetPageBody](docs/sdks/pagination/README.md#paginationlimitoffsetpagebody) -* [paginationLimitOffsetPageParams](docs/sdks/pagination/README.md#paginationlimitoffsetpageparams) +* [globalPathParameterGet](docs/sdks/globals/README.md#globalpathparameterget) +* [globalsQueryParameterGet](docs/sdks/globals/README.md#globalsqueryparameterget) -### [parameters](docs/sdks/parameters/README.md) +### [.parameters](docs/sdks/parameters/README.md) * [deepObjectQueryParamsMap](docs/sdks/parameters/README.md#deepobjectqueryparamsmap) * [deepObjectQueryParamsObject](docs/sdks/parameters/README.md#deepobjectqueryparamsobject) @@ -319,7 +278,24 @@ public class Application { * [simplePathParameterObjects](docs/sdks/parameters/README.md#simplepathparameterobjects) * [simplePathParameterPrimitives](docs/sdks/parameters/README.md#simplepathparameterprimitives) -### [requestBodies](docs/sdks/requestbodies/README.md) + +### [.nest.first](docs/sdks/sdkfirst/README.md) + +* [get](docs/sdks/sdkfirst/README.md#get) + +### [.nested](docs/sdks/nested/README.md) + +* [get](docs/sdks/nested/README.md#get) + +### [.nested.first](docs/sdks/sdknestedfirst/README.md) + +* [get](docs/sdks/sdknestedfirst/README.md#get) + +### [.nested.second](docs/sdks/sdksecond/README.md) + +* [get](docs/sdks/sdksecond/README.md#get) + +### [.requestBodies](docs/sdks/requestbodies/README.md) * [nullableObjectPost](docs/sdks/requestbodies/README.md#nullableobjectpost) * [nullableRequiredEmptyObjectPost](docs/sdks/requestbodies/README.md#nullablerequiredemptyobjectpost) @@ -403,15 +379,7 @@ public class Application { * [requestBodyWriteOnlyOutput](docs/sdks/requestbodies/README.md#requestbodywriteonlyoutput) * [requestBodyWriteOnlyUnion](docs/sdks/requestbodies/README.md#requestbodywriteonlyunion) -### [resource](docs/sdks/resource/README.md) - -* [createFile](docs/sdks/resource/README.md#createfile) -* [createResource](docs/sdks/resource/README.md#createresource) -* [deleteResource](docs/sdks/resource/README.md#deleteresource) -* [getResource](docs/sdks/resource/README.md#getresource) -* [updateResource](docs/sdks/resource/README.md#updateresource) - -### [responseBodies](docs/sdks/responsebodies/README.md) +### [.responseBodies](docs/sdks/responsebodies/README.md) * [responseBodyAdditionalPropertiesComplexNumbersPost](docs/sdks/responsebodies/README.md#responsebodyadditionalpropertiescomplexnumberspost) * [responseBodyAdditionalPropertiesDatePost](docs/sdks/responsebodies/README.md#responsebodyadditionalpropertiesdatepost) @@ -425,15 +393,7 @@ public class Application { * [responseBodyXmlGet](docs/sdks/responsebodies/README.md#responsebodyxmlget) * [responseBodyZeroValueComplexTypePtrsPost](docs/sdks/responsebodies/README.md#responsebodyzerovaluecomplextypeptrspost) -### [retries](docs/sdks/retries/README.md) - -* [retriesGet](docs/sdks/retries/README.md#retriesget) - -### [second](docs/sdks/second/README.md) - -* [get](docs/sdks/second/README.md#get) - -### [servers](docs/sdks/servers/README.md) +### [.servers](docs/sdks/servers/README.md) * [selectGlobalServer](docs/sdks/servers/README.md#selectglobalserver) * [selectServerWithID](docs/sdks/servers/README.md#selectserverwithid) - Select a server by ID. @@ -442,28 +402,68 @@ public class Application { * [serverWithTemplatesGlobal](docs/sdks/servers/README.md#serverwithtemplatesglobal) * [serversByIDWithTemplates](docs/sdks/servers/README.md#serversbyidwithtemplates) -### [telemetry](docs/sdks/telemetry/README.md) +### [.telemetry](docs/sdks/telemetry/README.md) * [telemetrySpeakeasyUserAgentGet](docs/sdks/telemetry/README.md#telemetryspeakeasyuseragentget) * [telemetryUserAgentGet](docs/sdks/telemetry/README.md#telemetryuseragentget) -### [unions](docs/sdks/unions/README.md) +### [.authNew](docs/sdks/authnew/README.md) -* [flattenedTypedObjectPost](docs/sdks/unions/README.md#flattenedtypedobjectpost) -* [mixedTypeOneOfPost](docs/sdks/unions/README.md#mixedtypeoneofpost) -* [nullableOneOfRefInObjectPost](docs/sdks/unions/README.md#nullableoneofrefinobjectpost) -* [nullableOneOfSchemaPost](docs/sdks/unions/README.md#nullableoneofschemapost) -* [nullableOneOfTypeInObjectPost](docs/sdks/unions/README.md#nullableoneoftypeinobjectpost) -* [nullableTypedObjectPost](docs/sdks/unions/README.md#nullabletypedobjectpost) -* [primitiveTypeOneOfPost](docs/sdks/unions/README.md#primitivetypeoneofpost) -* [stronglyTypedOneOfPost](docs/sdks/unions/README.md#stronglytypedoneofpost) -* [typedObjectNullableOneOfPost](docs/sdks/unions/README.md#typedobjectnullableoneofpost) -* [typedObjectOneOfPost](docs/sdks/unions/README.md#typedobjectoneofpost) -* [unionBigIntDecimal](docs/sdks/unions/README.md#unionbigintdecimal) -* [unionDateNull](docs/sdks/unions/README.md#uniondatenull) -* [unionDateTimeBigInt](docs/sdks/unions/README.md#uniondatetimebigint) -* [unionDateTimeNull](docs/sdks/unions/README.md#uniondatetimenull) -* [weaklyTypedOneOfPost](docs/sdks/unions/README.md#weaklytypedoneofpost) +* [apiKeyAuthGlobalNew](docs/sdks/authnew/README.md#apikeyauthglobalnew) +* [authGlobal](docs/sdks/authnew/README.md#authglobal) +* [basicAuthNew](docs/sdks/authnew/README.md#basicauthnew) +* [multipleMixedOptionsAuth](docs/sdks/authnew/README.md#multiplemixedoptionsauth) +* [multipleMixedSchemeAuth](docs/sdks/authnew/README.md#multiplemixedschemeauth) +* [multipleOptionsWithMixedSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithmixedschemesauth) +* [multipleOptionsWithSimpleSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithsimpleschemesauth) +* [multipleSimpleOptionsAuth](docs/sdks/authnew/README.md#multiplesimpleoptionsauth) +* [multipleSimpleSchemeAuth](docs/sdks/authnew/README.md#multiplesimpleschemeauth) +* [oauth2AuthNew](docs/sdks/authnew/README.md#oauth2authnew) +* [openIdConnectAuthNew](docs/sdks/authnew/README.md#openidconnectauthnew) + +### [.auth](docs/sdks/auth/README.md) + +* [apiKeyAuth](docs/sdks/auth/README.md#apikeyauth) +* [apiKeyAuthGlobal](docs/sdks/auth/README.md#apikeyauthglobal) +* [basicAuth](docs/sdks/auth/README.md#basicauth) +* [bearerAuth](docs/sdks/auth/README.md#bearerauth) +* [globalBearerAuth](docs/sdks/auth/README.md#globalbearerauth) +* [oauth2Auth](docs/sdks/auth/README.md#oauth2auth) +* [oauth2Override](docs/sdks/auth/README.md#oauth2override) +* [openIdConnectAuth](docs/sdks/auth/README.md#openidconnectauth) + +### [.documentation](docs/sdks/documentation/README.md) + +* [getDocumentationPerLanguage](docs/sdks/documentation/README.md#getdocumentationperlanguage) - Gets documentation for some language, I guess. + +### [.resource](docs/sdks/resource/README.md) + +* [createFile](docs/sdks/resource/README.md#createfile) +* [createResource](docs/sdks/resource/README.md#createresource) +* [deleteResource](docs/sdks/resource/README.md#deleteresource) +* [getResource](docs/sdks/resource/README.md#getresource) +* [updateResource](docs/sdks/resource/README.md#updateresource) + +### [.first](docs/sdks/first/README.md) + +* [get](docs/sdks/first/README.md#get) + +### [.second](docs/sdks/second/README.md) + +* [get](docs/sdks/second/README.md#get) + +### [.pagination](docs/sdks/pagination/README.md) + +* [paginationCursorBody](docs/sdks/pagination/README.md#paginationcursorbody) +* [paginationCursorParams](docs/sdks/pagination/README.md#paginationcursorparams) +* [paginationLimitOffsetOffsetBody](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetbody) +* [paginationLimitOffsetOffsetParams](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetparams) +* [paginationLimitOffsetPageBody](docs/sdks/pagination/README.md#paginationlimitoffsetpagebody) +* [paginationLimitOffsetPageParams](docs/sdks/pagination/README.md#paginationlimitoffsetpageparams) + +### [.retries](docs/sdks/retries/README.md) + +* [retriesGet](docs/sdks/retries/README.md#retriesget) diff --git a/java-client-sdk/USAGE.md b/java-client-sdk/USAGE.md index b6ef6f0c8..fc0b1fafd 100755 --- a/java-client-sdk/USAGE.md +++ b/java-client-sdk/USAGE.md @@ -21,7 +21,7 @@ public class Application { GetGlobalNameOverrideResponse res = sdk.generation.globalNameOverridden(); - if (res.getGlobalNameOverride200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -40,8 +40,8 @@ package hello.world; import java.time.LocalDate; import java.time.OffsetDateTime; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.UsageExamplePostEnumParameter; -import org.openapis.openapi.models.operations.UsageExamplePostOptEnumParameter; +import org.openapis.openapi.models.operations.EnumParameter; +import org.openapis.openapi.models.operations.OptEnumParameter; import org.openapis.openapi.models.operations.UsageExamplePostRequest; import org.openapis.openapi.models.operations.UsageExamplePostRequestBody; import org.openapis.openapi.models.operations.UsageExamplePostResponse; @@ -49,10 +49,10 @@ import org.openapis.openapi.models.operations.UsageExamplePostSecurity; import org.openapis.openapi.models.shared.Enum; import org.openapis.openapi.models.shared.FakerFormattedStrings; import org.openapis.openapi.models.shared.FakerStrings; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -62,7 +62,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - UsageExamplePostRequest req = new UsageExamplePostRequest(168827L, "string", false, LocalDate.parse("2022-05-05"), OffsetDateTime.parse("2023-06-11T00:39:45.412Z"), OffsetDateTime.parse("2022-07-22T13:16:48.221Z"), 2679.33d, "string", 5223.72d, UsageExamplePostEnumParameter.VALUE1, 0d, 6946.59f, 2286.22d, 102975L, 566999, "example 1"){{ + UsageExamplePostRequest req = new UsageExamplePostRequest(168827L, "string", false, LocalDate.parse("2022-05-05"), OffsetDateTime.parse("2023-06-11T00:39:45.412Z"), OffsetDateTime.parse("2022-07-22T13:16:48.221Z"), 2679.33d, "string", 5223.72d, EnumParameter.VALUE1, 0d, 6946.59f, 2286.22d, 102975L, 566999, "example 1"){{ requestBody = new UsageExamplePostRequestBody(){{ fakerFormattedStrings = new FakerFormattedStrings(){{ addressFormat = "2344 Aufderhar Corner"; @@ -139,7 +139,7 @@ public class Application { username = "Mable76"; uuid = "16b919d6-51cd-4e97-81e2-5221b7b6969f"; }}; - simpleObject = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + simpleObject = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -154,7 +154,7 @@ public class Application { bigintStrParameterOptional = "string"; decimalParameterOptional = 5944.32d; decimalStrParameterOptional = "string"; - optEnumParameter = UsageExamplePostOptEnumParameter.VALUE3; + optEnumParameter = OptEnumParameter.VALUE3; }}; UsageExamplePostResponse res = sdk.generation.usageExamplePost(req, new UsageExamplePostSecurity("YOUR_PASSWORD", "YOUR_USERNAME"){{ @@ -162,7 +162,7 @@ public class Application { username = "YOUR_USERNAME"; }}); - if (res.usageExamplePost200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { diff --git a/java-client-sdk/docs/models/operations/AnchorTypesGetResponse.md b/java-client-sdk/docs/models/operations/AnchorTypesGetResponse.md index 3a99cc090..30664776f 100755 --- a/java-client-sdk/docs/models/operations/AnchorTypesGetResponse.md +++ b/java-client-sdk/docs/models/operations/AnchorTypesGetResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `typeFromAnchor` | [TypeFromAnchor](../../models/operations/TypeFromAnchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| `typeFromAnchor` | [AnchorTypesGetTypeFromAnchor](../../models/operations/AnchorTypesGetTypeFromAnchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/AnchorTypesGetTypeFromAnchor.md b/java-client-sdk/docs/models/operations/AnchorTypesGetTypeFromAnchor.md new file mode 100755 index 000000000..4c3057663 --- /dev/null +++ b/java-client-sdk/docs/models/operations/AnchorTypesGetTypeFromAnchor.md @@ -0,0 +1,10 @@ +# AnchorTypesGetTypeFromAnchor + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/Args.md b/java-client-sdk/docs/models/operations/Args.md new file mode 100755 index 000000000..903ad9e07 --- /dev/null +++ b/java-client-sdk/docs/models/operations/Args.md @@ -0,0 +1,8 @@ +# Args + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `globalQueryParam` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/CreateFileFile.md b/java-client-sdk/docs/models/operations/CreateFileFile.md new file mode 100755 index 000000000..d868a56f2 --- /dev/null +++ b/java-client-sdk/docs/models/operations/CreateFileFile.md @@ -0,0 +1,9 @@ +# CreateFileFile + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *byte[]* | :heavy_check_mark: | N/A | +| `fileName` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/CreateFileRequestBody.md b/java-client-sdk/docs/models/operations/CreateFileRequestBody.md index b22eacdbc..08df38d3b 100755 --- a/java-client-sdk/docs/models/operations/CreateFileRequestBody.md +++ b/java-client-sdk/docs/models/operations/CreateFileRequestBody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `file` | [CreateFileRequestBodyFile](../../models/operations/CreateFileRequestBodyFile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | +| `file` | [CreateFileFile](../../models/operations/CreateFileFile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/CreateFileRequestBodyFile.md b/java-client-sdk/docs/models/operations/CreateFileRequestBodyFile.md deleted file mode 100755 index e28c5573f..000000000 --- a/java-client-sdk/docs/models/operations/CreateFileRequestBodyFile.md +++ /dev/null @@ -1,9 +0,0 @@ -# CreateFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content` | *byte[]* | :heavy_check_mark: | N/A | -| `file` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectArgs.md b/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectArgs.md new file mode 100755 index 000000000..306b70061 --- /dev/null +++ b/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectArgs.md @@ -0,0 +1,26 @@ +# DeepObjectQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | +| `objArrParamArr` | List<*String*> | :heavy_check_mark: | N/A | | +| `objParamAny` | *String* | :heavy_check_mark: | N/A | any | +| `objParamBigintStr` | *String* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `objParamBigint` | *String* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `objParamBoolOpt` | *String* | :heavy_check_mark: | N/A | true | +| `objParamBool` | *String* | :heavy_check_mark: | N/A | true | +| `objParamDateTime` | *String* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `objParamDate` | *String* | :heavy_check_mark: | N/A | 2020-01-01 | +| `objParamDecimalStr` | *String* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `objParamDecimal` | *String* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `objParamEnum` | *String* | :heavy_check_mark: | N/A | one | +| `objParamFloat32` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `objParamInt32Enum` | *String* | :heavy_check_mark: | N/A | 55 | +| `objParamInt32` | *String* | :heavy_check_mark: | N/A | 1 | +| `objParamIntEnum` | *String* | :heavy_check_mark: | N/A | 2 | +| `objParamInt` | *String* | :heavy_check_mark: | N/A | 1 | +| `objParamNum` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `objParamStrOpt` | *String* | :heavy_check_mark: | N/A | testOptional | +| `objParamStr` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md b/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md deleted file mode 100755 index 43cf28b11..000000000 --- a/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md +++ /dev/null @@ -1,8 +0,0 @@ -# DeepObjectQueryParamsObjectObjArrParam - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | List<*String*> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md b/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md index 0d6da929f..f72bce8db 100755 --- a/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md +++ b/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `objParam` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `objArrParam` | [DeepObjectQueryParamsObjectObjArrParam](../../models/operations/DeepObjectQueryParamsObjectObjArrParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `objParam` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `objArrParam` | [ObjArrParam](../../models/operations/ObjArrParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md b/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md index fea45d1ef..ca79188e0 100755 --- a/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md +++ b/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [DeepObjectQueryParamsObjectResArgs](../../models/operations/DeepObjectQueryParamsObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [DeepObjectQueryParamsObjectArgs](../../models/operations/DeepObjectQueryParamsObjectArgs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/deepObject/obj?objArrParam[arr]=test&objArrParam[arr]=test2&objParam[any]=any&objParam[bigintStr]=9223372036854775808&objParam[bigint]=8821239038968084&objParam[boolOpt]=true&objParam[bool]=true&objParam[dateTime]=2020-01-01T00%3A00%3A00.000000001Z&objParam[date]=2020-01-01&objParam[decimalStr]=3.14159265358979344719667586&objParam[decimal]=3.141592653589793&objParam[enum]=one&objParam[float32]=1.1&objParam[int32Enum]=55&objParam[int32]=1&objParam[intEnum]=2&objParam[int]=1&objParam[num]=1.1&objParam[strOpt]=testOptional&objParam[str]=test | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResArgs.md b/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResArgs.md deleted file mode 100755 index 2f11fe749..000000000 --- a/java-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResArgs.md +++ /dev/null @@ -1,26 +0,0 @@ -# DeepObjectQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | -| `objArrParamArr` | List<*String*> | :heavy_check_mark: | N/A | | -| `objParamAny` | *String* | :heavy_check_mark: | N/A | any | -| `objParamBigintStr` | *String* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `objParamBigint` | *String* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `objParamBoolOpt` | *String* | :heavy_check_mark: | N/A | true | -| `objParamBool` | *String* | :heavy_check_mark: | N/A | true | -| `objParamDateTime` | *String* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `objParamDate` | *String* | :heavy_check_mark: | N/A | 2020-01-01 | -| `objParamDecimalStr` | *String* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `objParamDecimal` | *String* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `objParamEnum` | *String* | :heavy_check_mark: | N/A | one | -| `objParamFloat32` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `objParamInt32Enum` | *String* | :heavy_check_mark: | N/A | 55 | -| `objParamInt32` | *String* | :heavy_check_mark: | N/A | 1 | -| `objParamIntEnum` | *String* | :heavy_check_mark: | N/A | 2 | -| `objParamInt` | *String* | :heavy_check_mark: | N/A | 1 | -| `objParamNum` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `objParamStrOpt` | *String* | :heavy_check_mark: | N/A | testOptional | -| `objParamStr` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md b/java-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md deleted file mode 100755 index dde337251..000000000 --- a/java-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# DeprecatedObjectInSchemaGet200ApplicationJSON - -A successful response that contains a deprecatedObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| ~~`json`~~ | [org.openapis.openapi.models.shared.DeprecatedObject](../../models/shared/DeprecatedObject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md b/java-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md index 03ebc14bc..ad7ca1cdf 100755 --- a/java-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md +++ b/java-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `deprecatedObjectInSchemaGet200ApplicationJSONObject` | [DeprecatedObjectInSchemaGet200ApplicationJSON](../../models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [DeprecatedObjectInSchemaGetResponseBody](../../models/operations/DeprecatedObjectInSchemaGetResponseBody.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md b/java-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md new file mode 100755 index 000000000..ab5d79c51 --- /dev/null +++ b/java-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md @@ -0,0 +1,10 @@ +# DeprecatedObjectInSchemaGetResponseBody + +A successful response that contains a deprecatedObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| ~~`json`~~ | [org.openapis.openapi.models.shared.DeprecatedObject](../../models/shared/DeprecatedObject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/DifferentFileName.md b/java-client-sdk/docs/models/operations/DifferentFileName.md new file mode 100755 index 000000000..000d86dfc --- /dev/null +++ b/java-client-sdk/docs/models/operations/DifferentFileName.md @@ -0,0 +1,9 @@ +# DifferentFileName + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *byte[]* | :heavy_check_mark: | N/A | +| `fileName` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/Empty.md b/java-client-sdk/docs/models/operations/Empty.md new file mode 100755 index 000000000..f9f6b3eab --- /dev/null +++ b/java-client-sdk/docs/models/operations/Empty.md @@ -0,0 +1,7 @@ +# Empty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/EmptyRespWithEmptyProperies.md b/java-client-sdk/docs/models/operations/EmptyRespWithEmptyProperies.md new file mode 100755 index 000000000..1da3e5d24 --- /dev/null +++ b/java-client-sdk/docs/models/operations/EmptyRespWithEmptyProperies.md @@ -0,0 +1,7 @@ +# EmptyRespWithEmptyProperies + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md b/java-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md deleted file mode 100755 index bbddca47a..000000000 --- a/java-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md +++ /dev/null @@ -1,9 +0,0 @@ -# EmptyResponseObjectWithCommentGet200ApplicationOctetStream - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md b/java-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md new file mode 100755 index 000000000..5098e6819 --- /dev/null +++ b/java-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md @@ -0,0 +1,9 @@ +# EmptyResponseObjectWithCommentGetResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/EmptyWithEmptyProperties.md b/java-client-sdk/docs/models/operations/EmptyWithEmptyProperties.md new file mode 100755 index 000000000..535ae89ed --- /dev/null +++ b/java-client-sdk/docs/models/operations/EmptyWithEmptyProperties.md @@ -0,0 +1,7 @@ +# EmptyWithEmptyProperties + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/EnumNameOverride.md b/java-client-sdk/docs/models/operations/EnumNameOverride.md new file mode 100755 index 000000000..c678e92bd --- /dev/null +++ b/java-client-sdk/docs/models/operations/EnumNameOverride.md @@ -0,0 +1,12 @@ +# EnumNameOverride + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `VALUE1` | value1 | +| `VALUE2` | value2 | +| `VALUE3` | value3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/EnumParameter.md b/java-client-sdk/docs/models/operations/EnumParameter.md new file mode 100755 index 000000000..11b789b86 --- /dev/null +++ b/java-client-sdk/docs/models/operations/EnumParameter.md @@ -0,0 +1,12 @@ +# EnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `VALUE1` | value1 | +| `VALUE2` | value2 | +| `VALUE3` | value3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/File.md b/java-client-sdk/docs/models/operations/File.md new file mode 100755 index 000000000..aae9f94dd --- /dev/null +++ b/java-client-sdk/docs/models/operations/File.md @@ -0,0 +1,9 @@ +# File + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *byte[]* | :heavy_check_mark: | N/A | +| `fileName` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/Form.md b/java-client-sdk/docs/models/operations/Form.md new file mode 100755 index 000000000..915d385c4 --- /dev/null +++ b/java-client-sdk/docs/models/operations/Form.md @@ -0,0 +1,14 @@ +# Form + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | *String* | :heavy_check_mark: | N/A | +| `bool` | *String* | :heavy_check_mark: | N/A | +| `int_` | *String* | :heavy_check_mark: | N/A | +| `map` | *String* | :heavy_check_mark: | N/A | +| `num` | *String* | :heavy_check_mark: | N/A | +| `obj` | *String* | :heavy_check_mark: | N/A | +| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsArrayArgs.md b/java-client-sdk/docs/models/operations/FormQueryParamsArrayArgs.md new file mode 100755 index 000000000..439162b52 --- /dev/null +++ b/java-client-sdk/docs/models/operations/FormQueryParamsArrayArgs.md @@ -0,0 +1,9 @@ +# FormQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `arrParam` | *String* | :heavy_check_mark: | N/A | test,test2 | +| `arrParamExploded` | List<*String*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md b/java-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md index 871051bff..8f16d989b 100755 --- a/java-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md +++ b/java-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | -| `args` | [FormQueryParamsArrayResArgs](../../models/operations/FormQueryParamsArrayResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [FormQueryParamsArrayArgs](../../models/operations/FormQueryParamsArrayArgs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/array?arrParam=test%2Ctest2&arrParamExploded=1&arrParamExploded=2 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsArrayResArgs.md b/java-client-sdk/docs/models/operations/FormQueryParamsArrayResArgs.md deleted file mode 100755 index 01a3d74fb..000000000 --- a/java-client-sdk/docs/models/operations/FormQueryParamsArrayResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `arrParam` | *String* | :heavy_check_mark: | N/A | test,test2 | -| `arrParamExploded` | List<*String*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectArgs.md b/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectArgs.md new file mode 100755 index 000000000..852c4c202 --- /dev/null +++ b/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectArgs.md @@ -0,0 +1,9 @@ +# FormQueryParamsCamelObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `itemCount` | *String* | :heavy_check_mark: | N/A | 10 | +| `searchTerm` | *String* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParam.md b/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParam.md deleted file mode 100755 index 682a98300..000000000 --- a/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParam.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParam - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `encodedCount` | *String* | :heavy_minus_sign: | N/A | 11 | -| `encodedTerm` | *String* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md b/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md deleted file mode 100755 index 3129ad003..000000000 --- a/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParamExploded - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `itemCount` | *String* | :heavy_minus_sign: | N/A | 10 | -| `searchTerm` | *String* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md b/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md index d19a9747b..bded1a5b0 100755 --- a/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md +++ b/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `objParamExploded` | [FormQueryParamsCamelObjectObjParamExploded](../../models/operations/FormQueryParamsCamelObjectObjParamExploded.md) | :heavy_check_mark: | N/A | -| `objParam` | [FormQueryParamsCamelObjectObjParam](../../models/operations/FormQueryParamsCamelObjectObjParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | +| `objParamExploded` | [ObjParamExploded](../../models/operations/ObjParamExploded.md) | :heavy_check_mark: | N/A | +| `objParam` | [ObjParam](../../models/operations/ObjParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md b/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md index cbb31bb3c..13a662f4d 100755 --- a/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md +++ b/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsCamelObjectResArgs](../../models/operations/FormQueryParamsCamelObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [FormQueryParamsCamelObjectArgs](../../models/operations/FormQueryParamsCamelObjectArgs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/camelObj?item_count=10&obj_param=encoded_count%2C11%2Cencoded_term%2Cbar&search_term=foo | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResArgs.md b/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResArgs.md deleted file mode 100755 index a3996a8ca..000000000 --- a/java-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `itemCount` | *String* | :heavy_check_mark: | N/A | 10 | -| `searchTerm` | *String* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsObjectArgs.md b/java-client-sdk/docs/models/operations/FormQueryParamsObjectArgs.md new file mode 100755 index 000000000..26af0f255 --- /dev/null +++ b/java-client-sdk/docs/models/operations/FormQueryParamsObjectArgs.md @@ -0,0 +1,28 @@ +# FormQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `any` | *String* | :heavy_check_mark: | N/A | any | +| `bigint` | *String* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `bigintStr` | *String* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `bool` | *String* | :heavy_check_mark: | N/A | true | +| `boolOpt` | *String* | :heavy_minus_sign: | N/A | true | +| `date` | *String* | :heavy_check_mark: | N/A | 2020-01-01 | +| `dateTime` | *String* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `decimal` | *String* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `decimalStr` | *String* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `enum_` | *String* | :heavy_check_mark: | N/A | one | +| `float32` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `int_` | *String* | :heavy_check_mark: | N/A | 1 | +| `int32` | *String* | :heavy_check_mark: | N/A | 1 | +| `int32Enum` | *String* | :heavy_check_mark: | N/A | 55 | +| `intEnum` | *String* | :heavy_check_mark: | N/A | 2 | +| `intOptNull` | *String* | :heavy_minus_sign: | N/A | | +| `num` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `numOptNull` | *String* | :heavy_minus_sign: | N/A | | +| `objParam` | *String* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `str` | *String* | :heavy_check_mark: | N/A | test | +| `strOpt` | *String* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md b/java-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md index 4829ddbba..c00d212b0 100755 --- a/java-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md +++ b/java-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsObjectResArgs](../../models/operations/FormQueryParamsObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [FormQueryParamsObjectArgs](../../models/operations/FormQueryParamsObjectArgs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/obj?any=any&bigint=8821239038968084&bigintStr=9223372036854775808&bool=true&boolOpt=true&date=2020-01-01&dateTime=2020-01-01T00%3A00%3A00.000000001Z&decimal=3.141592653589793&decimalStr=3.14159265358979344719667586&enum=one&float32=1.1&int=1&int32=1&int32Enum=55&intEnum=2&num=1.1&objParam=any%2Cany%2Cbigint%2C8821239038968084%2CbigintStr%2C9223372036854775808%2Cbool%2Ctrue%2CboolOpt%2Ctrue%2Cdate%2C2020-01-01%2CdateTime%2C2020-01-01T00%3A00%3A00.000000001Z%2Cdecimal%2C3.141592653589793%2CdecimalStr%2C3.14159265358979344719667586%2Cenum%2Cone%2Cfloat32%2C1.1%2Cint%2C1%2Cint32%2C1%2Cint32Enum%2C55%2CintEnum%2C2%2Cnum%2C1.1%2Cstr%2Ctest%2CstrOpt%2CtestOptional&str=test&strOpt=testOptional | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsObjectResArgs.md b/java-client-sdk/docs/models/operations/FormQueryParamsObjectResArgs.md deleted file mode 100755 index 523dca36b..000000000 --- a/java-client-sdk/docs/models/operations/FormQueryParamsObjectResArgs.md +++ /dev/null @@ -1,28 +0,0 @@ -# FormQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `any` | *String* | :heavy_check_mark: | N/A | any | -| `bigint` | *String* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `bigintStr` | *String* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `bool` | *String* | :heavy_check_mark: | N/A | true | -| `boolOpt` | *String* | :heavy_minus_sign: | N/A | true | -| `date` | *String* | :heavy_check_mark: | N/A | 2020-01-01 | -| `dateTime` | *String* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `decimal` | *String* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `decimalStr` | *String* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `enum_` | *String* | :heavy_check_mark: | N/A | one | -| `float32` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `int_` | *String* | :heavy_check_mark: | N/A | 1 | -| `int32` | *String* | :heavy_check_mark: | N/A | 1 | -| `int32Enum` | *String* | :heavy_check_mark: | N/A | 55 | -| `intEnum` | *String* | :heavy_check_mark: | N/A | 2 | -| `intOptNull` | *String* | :heavy_minus_sign: | N/A | | -| `num` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `numOptNull` | *String* | :heavy_minus_sign: | N/A | | -| `objParam` | *String* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `str` | *String* | :heavy_check_mark: | N/A | test | -| `strOpt` | *String* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsPrimitiveArgs.md b/java-client-sdk/docs/models/operations/FormQueryParamsPrimitiveArgs.md new file mode 100755 index 000000000..9870a01eb --- /dev/null +++ b/java-client-sdk/docs/models/operations/FormQueryParamsPrimitiveArgs.md @@ -0,0 +1,11 @@ +# FormQueryParamsPrimitiveArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `boolParam` | *String* | :heavy_check_mark: | N/A | true | +| `intParam` | *String* | :heavy_check_mark: | N/A | 1 | +| `numParam` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `strParam` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md b/java-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md index f37812ae9..247f4dd63 100755 --- a/java-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md +++ b/java-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsPrimitiveResArgs](../../models/operations/FormQueryParamsPrimitiveResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [FormQueryParamsPrimitiveArgs](../../models/operations/FormQueryParamsPrimitiveArgs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/primitive?boolParam=true&intParam=1&numParam=1.1&strParam=test | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResArgs.md b/java-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResArgs.md deleted file mode 100755 index a4d55dea5..000000000 --- a/java-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResArgs.md +++ /dev/null @@ -1,11 +0,0 @@ -# FormQueryParamsPrimitiveResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `boolParam` | *String* | :heavy_check_mark: | N/A | true | -| `intParam` | *String* | :heavy_check_mark: | N/A | 1 | -| `numParam` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `strParam` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectArgs.md b/java-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectArgs.md new file mode 100755 index 000000000..8fcf32a1c --- /dev/null +++ b/java-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectArgs.md @@ -0,0 +1,12 @@ +# FormQueryParamsRefParamObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | +| `bool` | *String* | :heavy_check_mark: | N/A | true | +| `int_` | *String* | :heavy_check_mark: | N/A | 1 | +| `num` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `refObjParam` | *String* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | +| `str` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md b/java-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md index c0884f770..7bc26b29d 100755 --- a/java-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md +++ b/java-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsRefParamObjectResArgs](../../models/operations/FormQueryParamsRefParamObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [FormQueryParamsRefParamObjectArgs](../../models/operations/FormQueryParamsRefParamObjectArgs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/refParamObject?bool=true&int=1&num=1.1&refObjParam=bool%2Ctrue%2Cint%2C1%2Cnum%2C1.1%2Cstr%2Ctest&str=test | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResArgs.md b/java-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResArgs.md deleted file mode 100755 index 0868b3611..000000000 --- a/java-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResArgs.md +++ /dev/null @@ -1,12 +0,0 @@ -# FormQueryParamsRefParamObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -| `bool` | *String* | :heavy_check_mark: | N/A | true | -| `int_` | *String* | :heavy_check_mark: | N/A | 1 | -| `num` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `refObjParam` | *String* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | -| `str` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md b/java-client-sdk/docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md deleted file mode 100755 index 008de2a8c..000000000 --- a/java-client-sdk/docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# GetGlobalNameOverride200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md b/java-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md index 578d64477..ea793fbde 100755 --- a/java-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md +++ b/java-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `getGlobalNameOverride200ApplicationJSONObject` | [GetGlobalNameOverride200ApplicationJSON](../../models/operations/GetGlobalNameOverride200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| `object` | [GetGlobalNameOverrideResponseBody](../../models/operations/GetGlobalNameOverrideResponseBody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/GetGlobalNameOverrideResponseBody.md b/java-client-sdk/docs/models/operations/GetGlobalNameOverrideResponseBody.md new file mode 100755 index 000000000..9f5d84da9 --- /dev/null +++ b/java-client-sdk/docs/models/operations/GetGlobalNameOverrideResponseBody.md @@ -0,0 +1,10 @@ +# GetGlobalNameOverrideResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md b/java-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md index 2ac3e9bdb..652604904 100755 --- a/java-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md +++ b/java-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `args` | [GlobalsQueryParameterGetResArgs](../../models/operations/GlobalsQueryParameterGetResArgs.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | +| `args` | [Args](../../models/operations/Args.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/GlobalsQueryParameterGetResArgs.md b/java-client-sdk/docs/models/operations/GlobalsQueryParameterGetResArgs.md deleted file mode 100755 index 6acaa6c0d..000000000 --- a/java-client-sdk/docs/models/operations/GlobalsQueryParameterGetResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# GlobalsQueryParameterGetResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `globalQueryParam` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/HeaderParamsArrayRes.md b/java-client-sdk/docs/models/operations/HeaderParamsArrayRes.md index dd3db2dfb..7c057aea7 100755 --- a/java-client-sdk/docs/models/operations/HeaderParamsArrayRes.md +++ b/java-client-sdk/docs/models/operations/HeaderParamsArrayRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsArrayResHeaders](../../models/operations/HeaderParamsArrayResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | +| `headers` | [Headers](../../models/operations/Headers.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/HeaderParamsArrayResHeaders.md b/java-client-sdk/docs/models/operations/HeaderParamsArrayResHeaders.md deleted file mode 100755 index 05e58ff60..000000000 --- a/java-client-sdk/docs/models/operations/HeaderParamsArrayResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# HeaderParamsArrayResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `xHeaderArray` | *String* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/HeaderParamsMapHeaders.md b/java-client-sdk/docs/models/operations/HeaderParamsMapHeaders.md new file mode 100755 index 000000000..26c534f45 --- /dev/null +++ b/java-client-sdk/docs/models/operations/HeaderParamsMapHeaders.md @@ -0,0 +1,9 @@ +# HeaderParamsMapHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | +| `xHeaderMap` | *String* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | +| `xHeaderMapExplode` | *String* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/HeaderParamsMapRes.md b/java-client-sdk/docs/models/operations/HeaderParamsMapRes.md index 927df613c..c828c1dfc 100755 --- a/java-client-sdk/docs/models/operations/HeaderParamsMapRes.md +++ b/java-client-sdk/docs/models/operations/HeaderParamsMapRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsMapResHeaders](../../models/operations/HeaderParamsMapResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | +| `headers` | [HeaderParamsMapHeaders](../../models/operations/HeaderParamsMapHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/HeaderParamsMapResHeaders.md b/java-client-sdk/docs/models/operations/HeaderParamsMapResHeaders.md deleted file mode 100755 index 3e39a4c86..000000000 --- a/java-client-sdk/docs/models/operations/HeaderParamsMapResHeaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsMapResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | -| `xHeaderMap` | *String* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | -| `xHeaderMapExplode` | *String* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/HeaderParamsObjectHeaders.md b/java-client-sdk/docs/models/operations/HeaderParamsObjectHeaders.md new file mode 100755 index 000000000..98e94751c --- /dev/null +++ b/java-client-sdk/docs/models/operations/HeaderParamsObjectHeaders.md @@ -0,0 +1,9 @@ +# HeaderParamsObjectHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `xHeaderObj` | *String* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `xHeaderObjExplode` | *String* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/HeaderParamsObjectRes.md b/java-client-sdk/docs/models/operations/HeaderParamsObjectRes.md index 27e715a68..ea8a5455e 100755 --- a/java-client-sdk/docs/models/operations/HeaderParamsObjectRes.md +++ b/java-client-sdk/docs/models/operations/HeaderParamsObjectRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsObjectResHeaders](../../models/operations/HeaderParamsObjectResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | +| `headers` | [HeaderParamsObjectHeaders](../../models/operations/HeaderParamsObjectHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/HeaderParamsObjectResHeaders.md b/java-client-sdk/docs/models/operations/HeaderParamsObjectResHeaders.md deleted file mode 100755 index 88fa5118c..000000000 --- a/java-client-sdk/docs/models/operations/HeaderParamsObjectResHeaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsObjectResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `xHeaderObj` | *String* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `xHeaderObjExplode` | *String* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/HeaderParamsPrimitiveHeaders.md b/java-client-sdk/docs/models/operations/HeaderParamsPrimitiveHeaders.md new file mode 100755 index 000000000..040e65f8c --- /dev/null +++ b/java-client-sdk/docs/models/operations/HeaderParamsPrimitiveHeaders.md @@ -0,0 +1,11 @@ +# HeaderParamsPrimitiveHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `xHeaderBoolean` | *String* | :heavy_check_mark: | N/A | true | +| `xHeaderInteger` | *String* | :heavy_check_mark: | N/A | 1 | +| `xHeaderNumber` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `xHeaderString` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md b/java-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md index d02811818..66c77dad4 100755 --- a/java-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md +++ b/java-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsPrimitiveResHeaders](../../models/operations/HeaderParamsPrimitiveResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `headers` | [HeaderParamsPrimitiveHeaders](../../models/operations/HeaderParamsPrimitiveHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/HeaderParamsPrimitiveResHeaders.md b/java-client-sdk/docs/models/operations/HeaderParamsPrimitiveResHeaders.md deleted file mode 100755 index 2ec997d92..000000000 --- a/java-client-sdk/docs/models/operations/HeaderParamsPrimitiveResHeaders.md +++ /dev/null @@ -1,11 +0,0 @@ -# HeaderParamsPrimitiveResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `xHeaderBoolean` | *String* | :heavy_check_mark: | N/A | true | -| `xHeaderInteger` | *String* | :heavy_check_mark: | N/A | 1 | -| `xHeaderNumber` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `xHeaderString` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/Headers.md b/java-client-sdk/docs/models/operations/Headers.md new file mode 100755 index 000000000..f603574a7 --- /dev/null +++ b/java-client-sdk/docs/models/operations/Headers.md @@ -0,0 +1,8 @@ +# Headers + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `xHeaderArray` | *String* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md b/java-client-sdk/docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md deleted file mode 100755 index bfea4db3f..000000000 --- a/java-client-sdk/docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# IgnoredGenerationGet200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md b/java-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md index 358311b3e..bb4424ad5 100755 --- a/java-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md +++ b/java-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ignoredGenerationGet200ApplicationJSONObject` | [IgnoredGenerationGet200ApplicationJSON](../../models/operations/IgnoredGenerationGet200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| `object` | [IgnoredGenerationGetResponseBody](../../models/operations/IgnoredGenerationGetResponseBody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/IgnoredGenerationGetResponseBody.md b/java-client-sdk/docs/models/operations/IgnoredGenerationGetResponseBody.md new file mode 100755 index 000000000..0e764cf43 --- /dev/null +++ b/java-client-sdk/docs/models/operations/IgnoredGenerationGetResponseBody.md @@ -0,0 +1,10 @@ +# IgnoredGenerationGetResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/IgnoresPostApplicationJSON.md b/java-client-sdk/docs/models/operations/IgnoresPostApplicationJSON.md deleted file mode 100755 index 51b74f094..000000000 --- a/java-client-sdk/docs/models/operations/IgnoresPostApplicationJSON.md +++ /dev/null @@ -1,9 +0,0 @@ -# IgnoresPostApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `callbackUrl` | *String* | :heavy_minus_sign: | N/A | -| `testProp` | *String* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/IgnoresPostRequest.md b/java-client-sdk/docs/models/operations/IgnoresPostRequest.md index ae7a21042..1eddc57fc 100755 --- a/java-client-sdk/docs/models/operations/IgnoresPostRequest.md +++ b/java-client-sdk/docs/models/operations/IgnoresPostRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `requestBody` | [IgnoresPostApplicationJSON](../../models/operations/IgnoresPostApplicationJSON.md) | :heavy_check_mark: | N/A | -| `testParam` | *String* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | +| `requestBody` | [IgnoresPostRequestBody](../../models/operations/IgnoresPostRequestBody.md) | :heavy_check_mark: | N/A | +| `testParam` | *String* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/IgnoresPostRequestBody.md b/java-client-sdk/docs/models/operations/IgnoresPostRequestBody.md new file mode 100755 index 000000000..28a46023b --- /dev/null +++ b/java-client-sdk/docs/models/operations/IgnoresPostRequestBody.md @@ -0,0 +1,9 @@ +# IgnoresPostRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `callbackUrl` | *String* | :heavy_minus_sign: | N/A | +| `testProp` | *String* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md b/java-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md index f6f556e28..2e902518d 100755 --- a/java-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md +++ b/java-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `args` | Map | :heavy_check_mark: | N/A | -| `json` | [InlineBodyAndParamConflictResJson](../../models/operations/InlineBodyAndParamConflictResJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | +| `args` | Map | :heavy_check_mark: | N/A | +| `json` | [Json](../../models/operations/Json.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/InlineBodyAndParamConflictResJson.md b/java-client-sdk/docs/models/operations/InlineBodyAndParamConflictResJson.md deleted file mode 100755 index 180078055..000000000 --- a/java-client-sdk/docs/models/operations/InlineBodyAndParamConflictResJson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamConflictResJson - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictJson.md b/java-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictJson.md new file mode 100755 index 000000000..8d42472e9 --- /dev/null +++ b/java-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictJson.md @@ -0,0 +1,8 @@ +# InlineBodyAndParamNoConflictJson + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bodyStr` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md b/java-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md index eb2fa3a1f..f0c521c4c 100755 --- a/java-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md +++ b/java-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `args` | Map | :heavy_check_mark: | N/A | -| `json` | [InlineBodyAndParamNoConflictResJson](../../models/operations/InlineBodyAndParamNoConflictResJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `args` | Map | :heavy_check_mark: | N/A | +| `json` | [InlineBodyAndParamNoConflictJson](../../models/operations/InlineBodyAndParamNoConflictJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResJson.md b/java-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResJson.md deleted file mode 100755 index 3c3d2eb86..000000000 --- a/java-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResJson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamNoConflictResJson - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bodyStr` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/Json.md b/java-client-sdk/docs/models/operations/Json.md new file mode 100755 index 000000000..a1eb698dd --- /dev/null +++ b/java-client-sdk/docs/models/operations/Json.md @@ -0,0 +1,8 @@ +# Json + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/JsonQueryParamsObjectArgs.md b/java-client-sdk/docs/models/operations/JsonQueryParamsObjectArgs.md new file mode 100755 index 000000000..6cc83eac1 --- /dev/null +++ b/java-client-sdk/docs/models/operations/JsonQueryParamsObjectArgs.md @@ -0,0 +1,9 @@ +# JsonQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `deepObjParam` | *String* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | +| `simpleObjParam` | *String* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md b/java-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md index 6b3fd2a52..b7897fc3c 100755 --- a/java-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md +++ b/java-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [JsonQueryParamsObjectResArgs](../../models/operations/JsonQueryParamsObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [JsonQueryParamsObjectArgs](../../models/operations/JsonQueryParamsObjectArgs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/json/obj?deepObjParam={"any"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"arr"%3A[{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}]%2C"bool"%3Atrue%2C"int"%3A1%2C"map"%3A{"key"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"key2"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}}%2C"num"%3A1.1%2C"obj"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"str"%3A"test"}&simpleObjParam={"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"} | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/JsonQueryParamsObjectResArgs.md b/java-client-sdk/docs/models/operations/JsonQueryParamsObjectResArgs.md deleted file mode 100755 index c878966cd..000000000 --- a/java-client-sdk/docs/models/operations/JsonQueryParamsObjectResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# JsonQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `deepObjParam` | *String* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | -| `simpleObjParam` | *String* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/MixedParametersCamelCaseArgs.md b/java-client-sdk/docs/models/operations/MixedParametersCamelCaseArgs.md new file mode 100755 index 000000000..ac174ab94 --- /dev/null +++ b/java-client-sdk/docs/models/operations/MixedParametersCamelCaseArgs.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *String* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/MixedParametersCamelCaseHeaders.md b/java-client-sdk/docs/models/operations/MixedParametersCamelCaseHeaders.md new file mode 100755 index 000000000..96c1b8678 --- /dev/null +++ b/java-client-sdk/docs/models/operations/MixedParametersCamelCaseHeaders.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `headerParam` | *String* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md b/java-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md index cc16d03fd..a848337c4 100755 --- a/java-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md +++ b/java-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `args` | [MixedParametersCamelCaseResArgs](../../models/operations/MixedParametersCamelCaseResArgs.md) | :heavy_check_mark: | N/A | | -| `headers` | [MixedParametersCamelCaseResHeaders](../../models/operations/MixedParametersCamelCaseResHeaders.md) | :heavy_check_mark: | N/A | | -| `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `args` | [MixedParametersCamelCaseArgs](../../models/operations/MixedParametersCamelCaseArgs.md) | :heavy_check_mark: | N/A | | +| `headers` | [MixedParametersCamelCaseHeaders](../../models/operations/MixedParametersCamelCaseHeaders.md) | :heavy_check_mark: | N/A | | +| `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/MixedParametersCamelCaseResArgs.md b/java-client-sdk/docs/models/operations/MixedParametersCamelCaseResArgs.md deleted file mode 100755 index 947f05ae1..000000000 --- a/java-client-sdk/docs/models/operations/MixedParametersCamelCaseResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *String* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/MixedParametersCamelCaseResHeaders.md b/java-client-sdk/docs/models/operations/MixedParametersCamelCaseResHeaders.md deleted file mode 100755 index 6851b3b36..000000000 --- a/java-client-sdk/docs/models/operations/MixedParametersCamelCaseResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `headerParam` | *String* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/MixedParametersPrimitivesArgs.md b/java-client-sdk/docs/models/operations/MixedParametersPrimitivesArgs.md new file mode 100755 index 000000000..d6adb7426 --- /dev/null +++ b/java-client-sdk/docs/models/operations/MixedParametersPrimitivesArgs.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *String* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/MixedParametersPrimitivesHeaders.md b/java-client-sdk/docs/models/operations/MixedParametersPrimitivesHeaders.md new file mode 100755 index 000000000..a353890f4 --- /dev/null +++ b/java-client-sdk/docs/models/operations/MixedParametersPrimitivesHeaders.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `headerparam` | *String* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md b/java-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md index 173530884..b164abb7d 100755 --- a/java-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md +++ b/java-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `args` | [MixedParametersPrimitivesResArgs](../../models/operations/MixedParametersPrimitivesResArgs.md) | :heavy_check_mark: | N/A | | -| `headers` | [MixedParametersPrimitivesResHeaders](../../models/operations/MixedParametersPrimitivesResHeaders.md) | :heavy_check_mark: | N/A | | -| `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `args` | [MixedParametersPrimitivesArgs](../../models/operations/MixedParametersPrimitivesArgs.md) | :heavy_check_mark: | N/A | | +| `headers` | [MixedParametersPrimitivesHeaders](../../models/operations/MixedParametersPrimitivesHeaders.md) | :heavy_check_mark: | N/A | | +| `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/MixedParametersPrimitivesResArgs.md b/java-client-sdk/docs/models/operations/MixedParametersPrimitivesResArgs.md deleted file mode 100755 index f068dc968..000000000 --- a/java-client-sdk/docs/models/operations/MixedParametersPrimitivesResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *String* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/MixedParametersPrimitivesResHeaders.md b/java-client-sdk/docs/models/operations/MixedParametersPrimitivesResHeaders.md deleted file mode 100755 index a2d023b7a..000000000 --- a/java-client-sdk/docs/models/operations/MixedParametersPrimitivesResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `headerparam` | *String* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NameOverrideGetEnumNameOverride.md b/java-client-sdk/docs/models/operations/NameOverrideGetEnumNameOverride.md deleted file mode 100755 index 9892181d6..000000000 --- a/java-client-sdk/docs/models/operations/NameOverrideGetEnumNameOverride.md +++ /dev/null @@ -1,12 +0,0 @@ -# NameOverrideGetEnumNameOverride - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `VALUE1` | value1 | -| `VALUE2` | value2 | -| `VALUE3` | value3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NameOverrideGetOverriddenResponse.md b/java-client-sdk/docs/models/operations/NameOverrideGetOverriddenResponse.md new file mode 100755 index 000000000..4895c745d --- /dev/null +++ b/java-client-sdk/docs/models/operations/NameOverrideGetOverriddenResponse.md @@ -0,0 +1,10 @@ +# NameOverrideGetOverriddenResponse + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NameOverrideGetRequest.md b/java-client-sdk/docs/models/operations/NameOverrideGetRequest.md index 37ccaf447..59a01fbd4 100755 --- a/java-client-sdk/docs/models/operations/NameOverrideGetRequest.md +++ b/java-client-sdk/docs/models/operations/NameOverrideGetRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `testEnumQueryParam` | [NameOverrideGetEnumNameOverride](../../models/operations/NameOverrideGetEnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | -| `testQueryParam` | *String* | :heavy_check_mark: | N/A | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | +| `testEnumQueryParam` | [EnumNameOverride](../../models/operations/EnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | +| `testQueryParam` | *String* | :heavy_check_mark: | N/A | example | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NameOverrideGetResponse.md b/java-client-sdk/docs/models/operations/NameOverrideGetResponse.md index 9cd027c86..56e952032 100755 --- a/java-client-sdk/docs/models/operations/NameOverrideGetResponse.md +++ b/java-client-sdk/docs/models/operations/NameOverrideGetResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `overriddenResponse` | [OverriddenResponse](../../models/operations/OverriddenResponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| `overriddenResponse` | [NameOverrideGetOverriddenResponse](../../models/operations/NameOverrideGetOverriddenResponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableOptionalObj.md b/java-client-sdk/docs/models/operations/NullableOptionalObj.md new file mode 100755 index 000000000..a4e5f26bb --- /dev/null +++ b/java-client-sdk/docs/models/operations/NullableOptionalObj.md @@ -0,0 +1,7 @@ +# NullableOptionalObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md b/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md index 70803b54f..25960413a 100755 --- a/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md +++ b/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `nullableOptionalObj` | [NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj](../../models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md) | :heavy_minus_sign: | N/A | -| `nullableRequiredObj` | [NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj](../../models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md) | :heavy_check_mark: | N/A | -| `requiredObj` | [NullableRequiredEmptyObjectPostRequestBodyRequiredObj](../../models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | +| `nullableOptionalObj` | [NullableOptionalObj](../../models/operations/NullableOptionalObj.md) | :heavy_minus_sign: | N/A | +| `nullableRequiredObj` | [NullableRequiredObj](../../models/operations/NullableRequiredObj.md) | :heavy_check_mark: | N/A | +| `requiredObj` | [RequiredObj](../../models/operations/RequiredObj.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md b/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md deleted file mode 100755 index 4bd625eb3..000000000 --- a/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md b/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md deleted file mode 100755 index f5a542eea..000000000 --- a/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md b/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md deleted file mode 100755 index 20a807232..000000000 --- a/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md b/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md index 1129520f3..49f754798 100755 --- a/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md +++ b/java-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullableRequiredEmptyObjectPost200ApplicationJSONString` | *String* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *String* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableRequiredEnum.md b/java-client-sdk/docs/models/operations/NullableRequiredEnum.md new file mode 100755 index 000000000..99c697b3d --- /dev/null +++ b/java-client-sdk/docs/models/operations/NullableRequiredEnum.md @@ -0,0 +1,9 @@ +# NullableRequiredEnum + + +## Values + +| Name | Value | +| -------- | -------- | +| `FIRST` | first | +| `SECOND` | second | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableRequiredObj.md b/java-client-sdk/docs/models/operations/NullableRequiredObj.md new file mode 100755 index 000000000..b1e3ab8c2 --- /dev/null +++ b/java-client-sdk/docs/models/operations/NullableRequiredObj.md @@ -0,0 +1,7 @@ +# NullableRequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md b/java-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md index bcdd898a4..9df8c015f 100755 --- a/java-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md +++ b/java-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -| `nullableOptionalInt` | *Long* | :heavy_minus_sign: | N/A | -| `nullableRequiredArray` | List<*Double*> | :heavy_check_mark: | N/A | -| `nullableRequiredEnum` | [NullableRequiredPropertyPostRequestBodyNullableRequiredEnum](../../models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md) | :heavy_check_mark: | N/A | -| `nullableRequiredInt` | *Long* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `nullableOptionalInt` | *Long* | :heavy_minus_sign: | N/A | +| `nullableRequiredArray` | List<*Double*> | :heavy_check_mark: | N/A | +| `nullableRequiredEnum` | [NullableRequiredEnum](../../models/operations/NullableRequiredEnum.md) | :heavy_check_mark: | N/A | +| `nullableRequiredInt` | *Long* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md b/java-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md deleted file mode 100755 index 67d85fb92..000000000 --- a/java-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md +++ /dev/null @@ -1,9 +0,0 @@ -# NullableRequiredPropertyPostRequestBodyNullableRequiredEnum - - -## Values - -| Name | Value | -| -------- | -------- | -| `FIRST` | first | -| `SECOND` | second | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md b/java-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md index 600b514b7..d717b9a09 100755 --- a/java-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md +++ b/java-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullableRequiredPropertyPost200ApplicationJSONString` | *String* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *String* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md b/java-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md index 738ae5bb1..0c2b76f28 100755 --- a/java-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md +++ b/java-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullableRequiredSharedObjectPost200ApplicationJSONString` | *String* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *String* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/Obj.md b/java-client-sdk/docs/models/operations/Obj.md new file mode 100755 index 000000000..c2afc5190 --- /dev/null +++ b/java-client-sdk/docs/models/operations/Obj.md @@ -0,0 +1,10 @@ +# Obj + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *Boolean* | :heavy_check_mark: | N/A | +| `num` | *Double* | :heavy_check_mark: | N/A | +| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ObjArrParam.md b/java-client-sdk/docs/models/operations/ObjArrParam.md new file mode 100755 index 000000000..e7e9fa380 --- /dev/null +++ b/java-client-sdk/docs/models/operations/ObjArrParam.md @@ -0,0 +1,8 @@ +# ObjArrParam + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | List<*String*> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ObjParam.md b/java-client-sdk/docs/models/operations/ObjParam.md new file mode 100755 index 000000000..faaf11a8b --- /dev/null +++ b/java-client-sdk/docs/models/operations/ObjParam.md @@ -0,0 +1,9 @@ +# ObjParam + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `encodedCount` | *String* | :heavy_minus_sign: | N/A | 11 | +| `encodedTerm` | *String* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ObjParamExploded.md b/java-client-sdk/docs/models/operations/ObjParamExploded.md new file mode 100755 index 000000000..f3b93796b --- /dev/null +++ b/java-client-sdk/docs/models/operations/ObjParamExploded.md @@ -0,0 +1,9 @@ +# ObjParamExploded + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `itemCount` | *String* | :heavy_minus_sign: | N/A | 10 | +| `searchTerm` | *String* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/OptEnumParameter.md b/java-client-sdk/docs/models/operations/OptEnumParameter.md new file mode 100755 index 000000000..e4a2544eb --- /dev/null +++ b/java-client-sdk/docs/models/operations/OptEnumParameter.md @@ -0,0 +1,12 @@ +# OptEnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `VALUE1` | value1 | +| `VALUE2` | value2 | +| `VALUE3` | value3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/OverriddenResponse.md b/java-client-sdk/docs/models/operations/OverriddenResponse.md deleted file mode 100755 index 5d6c1e27e..000000000 --- a/java-client-sdk/docs/models/operations/OverriddenResponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# OverriddenResponse - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md b/java-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md new file mode 100755 index 000000000..641124965 --- /dev/null +++ b/java-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md @@ -0,0 +1,9 @@ +# PipeDelimitedQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `arrParam` | *String* | :heavy_check_mark: | N/A | test\|test2 | +| `arrParamExploded` | List<*String*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md b/java-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md index a4eb3b915..5888ed332 100755 --- a/java-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md +++ b/java-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `args` | [PipeDelimitedQueryParamsArrayResArgs](../../models/operations/PipeDelimitedQueryParamsArrayResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [PipeDelimitedQueryParamsArrayArgs](../../models/operations/PipeDelimitedQueryParamsArrayArgs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/pipe/array?arrParam=test\|test2&arrParamExploded=1&arrParamExploded=2&mapParam=key1\|val1\|key2\|val2&objParam=any\|any\|bigint\|8821239038968084\|bigintStr\|9223372036854775808\|bool\|true\|boolOpt\|true\|date\|2020-01-01\|dateTime\|2020-01-01T00%3A00%3A00.000000001Z\|decimal\|3.141592653589793\|decimalStr\|3.14159265358979344719667586\|enum\|one\|float32\|1.1\|int\|1\|int32\|1\|int32Enum\|55\|intEnum\|2\|num\|1.1\|str\|test\|strOpt\|testOptional | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md b/java-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md deleted file mode 100755 index 378d859ab..000000000 --- a/java-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# PipeDelimitedQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `arrParam` | *String* | :heavy_check_mark: | N/A | test\|test2 | -| `arrParamExploded` | List<*String*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md b/java-client-sdk/docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md deleted file mode 100755 index 2ccfab00c..000000000 --- a/java-client-sdk/docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# PutAnythingIgnoredGeneration200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *String* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md b/java-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md index 5b24b4bde..6a98cb68f 100755 --- a/java-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md +++ b/java-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `putAnythingIgnoredGeneration200ApplicationJSONObject` | [PutAnythingIgnoredGeneration200ApplicationJSON](../../models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [PutAnythingIgnoredGenerationResponseBody](../../models/operations/PutAnythingIgnoredGenerationResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md b/java-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md new file mode 100755 index 000000000..c81af96b1 --- /dev/null +++ b/java-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md @@ -0,0 +1,10 @@ +# PutAnythingIgnoredGenerationResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *String* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md index b7261f8c0..4a528e4af 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `simpleObjectCamelCases` | List<[org.openapis.openapi.models.shared.SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md)> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List<[org.openapis.openapi.models.shared.SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md)> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md index 96a701580..57d13181d 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | List> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md index e12633105..ccde50db3 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | List> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md index 185da184e..56acbb19e 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | List> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md index a0a850072..e5c50aa08 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `maps` | List> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md index 677c83457..a0dcaf15f 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `maps` | List> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md index ad5f21420..87479c553 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `strings` | List<*String*> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List<*String*> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md index 3f493e780..02dcfebea 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `simpleObjects` | List<[org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md)> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List<[org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md)> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md deleted file mode 100755 index 57aff93c8..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostComplexNumberTypes200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -| `json` | [org.openapis.openapi.models.shared.ComplexNumberTypes](../../models/shared/ComplexNumberTypes.md) | :heavy_check_mark: | N/A | -| `url` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md index c877456af..c53697df8 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostComplexNumberTypes200ApplicationJSONObject` | [RequestBodyPostComplexNumberTypes200ApplicationJSON](../../models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostComplexNumberTypesResponseBody](../../models/operations/RequestBodyPostComplexNumberTypesResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md new file mode 100755 index 000000000..c324255e3 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostComplexNumberTypesResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `json` | [org.openapis.openapi.models.shared.ComplexNumberTypes](../../models/shared/ComplexNumberTypes.md) | :heavy_check_mark: | N/A | +| `url` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md deleted file mode 100755 index d7102e008..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostDefaultsAndConsts200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `json` | [org.openapis.openapi.models.shared.DefaultsAndConstsOutput](../../models/shared/DefaultsAndConstsOutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md index 26fc74a19..3f9622d4e 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostDefaultsAndConsts200ApplicationJSONObject` | [RequestBodyPostDefaultsAndConsts200ApplicationJSON](../../models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostDefaultsAndConstsResponseBody](../../models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md new file mode 100755 index 000000000..324d8d9ec --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostDefaultsAndConstsResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `json` | [org.openapis.openapi.models.shared.DefaultsAndConstsOutput](../../models/shared/DefaultsAndConstsOutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md deleted file mode 100755 index e9804af95..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `empty` | [RequestBodyPostEmptyObject200ApplicationJSONEmpty](../../models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md) | :heavy_minus_sign: | N/A | -| `emptyRespWithEmptyProperies` | [RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies](../../models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md deleted file mode 100755 index 6248bf538..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md deleted file mode 100755 index 27326d373..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectEmpty.md b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectEmpty.md new file mode 100755 index 000000000..7624b0484 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectEmpty.md @@ -0,0 +1,7 @@ +# RequestBodyPostEmptyObjectEmpty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md index 2d0e21328..1653b55e2 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `empty` | [RequestBodyPostEmptyObjectRequestBodyEmpty](../../models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md) | :heavy_minus_sign: | N/A | -| `emptyWithEmptyProperties` | [RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties](../../models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | +| `empty` | [Empty](../../models/operations/Empty.md) | :heavy_minus_sign: | N/A | +| `emptyWithEmptyProperties` | [EmptyWithEmptyProperties](../../models/operations/EmptyWithEmptyProperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md deleted file mode 100755 index 60e906506..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md deleted file mode 100755 index 66bb29b41..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md index 4952877e9..54fe025ff 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostEmptyObject200ApplicationJSONObject` | [RequestBodyPostEmptyObject200ApplicationJSON](../../models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `object` | [RequestBodyPostEmptyObjectResponseBody](../../models/operations/RequestBodyPostEmptyObjectResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md new file mode 100755 index 000000000..fbc5836c0 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostEmptyObjectResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `empty` | [RequestBodyPostEmptyObjectEmpty](../../models/operations/RequestBodyPostEmptyObjectEmpty.md) | :heavy_minus_sign: | N/A | +| `emptyRespWithEmptyProperies` | [EmptyRespWithEmptyProperies](../../models/operations/EmptyRespWithEmptyProperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md b/java-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md index 59a417dcf..0baf9ebb0 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPostFormDeepResForm](../../models/operations/RequestBodyPostFormDeepResForm.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | +| `form` | [Form](../../models/operations/Form.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostFormDeepResForm.md b/java-client-sdk/docs/models/operations/RequestBodyPostFormDeepResForm.md deleted file mode 100755 index 42bce3394..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostFormDeepResForm.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPostFormDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | *String* | :heavy_check_mark: | N/A | -| `bool` | *String* | :heavy_check_mark: | N/A | -| `int_` | *String* | :heavy_check_mark: | N/A | -| `map` | *String* | :heavy_check_mark: | N/A | -| `num` | *String* | :heavy_check_mark: | N/A | -| `obj` | *String* | :heavy_check_mark: | N/A | -| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleForm.md b/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleForm.md new file mode 100755 index 000000000..7d4da27e0 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleForm.md @@ -0,0 +1,21 @@ +# RequestBodyPostFormSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `any` | *String* | :heavy_check_mark: | N/A | +| `bool` | *String* | :heavy_check_mark: | N/A | +| `boolOpt` | *String* | :heavy_minus_sign: | N/A | +| `date` | *String* | :heavy_check_mark: | N/A | +| `dateTime` | *String* | :heavy_check_mark: | N/A | +| `enum_` | *String* | :heavy_check_mark: | N/A | +| `float32` | *String* | :heavy_check_mark: | N/A | +| `int_` | *String* | :heavy_check_mark: | N/A | +| `int32` | *String* | :heavy_check_mark: | N/A | +| `intOptNull` | *String* | :heavy_minus_sign: | N/A | +| `num` | *String* | :heavy_check_mark: | N/A | +| `numOptNull` | *String* | :heavy_minus_sign: | N/A | +| `str` | *String* | :heavy_check_mark: | N/A | +| `strOpt` | *String* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleHeaders.md b/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleHeaders.md new file mode 100755 index 000000000..72434b99b --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleHeaders.md @@ -0,0 +1,8 @@ +# RequestBodyPostFormSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `contentType` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md b/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md index 0e68a9da7..08c35a454 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPostFormSimpleResForm](../../models/operations/RequestBodyPostFormSimpleResForm.md) | :heavy_check_mark: | N/A | -| `headers` | [RequestBodyPostFormSimpleResHeaders](../../models/operations/RequestBodyPostFormSimpleResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `form` | [RequestBodyPostFormSimpleForm](../../models/operations/RequestBodyPostFormSimpleForm.md) | :heavy_check_mark: | N/A | +| `headers` | [RequestBodyPostFormSimpleHeaders](../../models/operations/RequestBodyPostFormSimpleHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResForm.md b/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResForm.md deleted file mode 100755 index c1d63c363..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResForm.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPostFormSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `any` | *String* | :heavy_check_mark: | N/A | -| `bool` | *String* | :heavy_check_mark: | N/A | -| `boolOpt` | *String* | :heavy_minus_sign: | N/A | -| `date` | *String* | :heavy_check_mark: | N/A | -| `dateTime` | *String* | :heavy_check_mark: | N/A | -| `enum_` | *String* | :heavy_check_mark: | N/A | -| `float32` | *String* | :heavy_check_mark: | N/A | -| `int_` | *String* | :heavy_check_mark: | N/A | -| `int32` | *String* | :heavy_check_mark: | N/A | -| `intOptNull` | *String* | :heavy_minus_sign: | N/A | -| `num` | *String* | :heavy_check_mark: | N/A | -| `numOptNull` | *String* | :heavy_minus_sign: | N/A | -| `str` | *String* | :heavy_check_mark: | N/A | -| `strOpt` | *String* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResHeaders.md b/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResHeaders.md deleted file mode 100755 index 2a0ca3ced..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPostFormSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `contentType` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md deleted file mode 100755 index 24d3d17bf..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | List<*Long*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md deleted file mode 100755 index d5907096e..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | List<[LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html)> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md deleted file mode 100755 index 14d189d1c..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | List<*String*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md deleted file mode 100755 index 826f0e22a..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | *Long* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md deleted file mode 100755 index 6b9609bdb..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md deleted file mode 100755 index 8e2f6d14a..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesBoolean200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *Boolean* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md deleted file mode 100755 index 7f1419057..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | [LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md deleted file mode 100755 index 83c8ecf63..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md deleted file mode 100755 index 7a5c419a3..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | *Double* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md deleted file mode 100755 index 82b51eaed..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md deleted file mode 100755 index 3babf21f3..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesFloat32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *Double* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md deleted file mode 100755 index ec06bfa1b..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInt32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md deleted file mode 100755 index 35b942156..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInteger200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *Long* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md deleted file mode 100755 index 853ee05d3..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------- | --------------------- | --------------------- | --------------------- | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md deleted file mode 100755 index e5bd52f81..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md deleted file mode 100755 index e7bfa5ba3..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------- | --------------------- | --------------------- | --------------------- | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md deleted file mode 100755 index 6934c7e15..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesNumber200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *Double* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md deleted file mode 100755 index bc71b3891..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesString200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md index 1b4924092..e36d2028f 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesArrayBigIntResponseBody](../../models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md new file mode 100755 index 000000000..303a7eb1d --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | List<*Long*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md index 1b4d9bdbd..a1b70ff12 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesArrayDateResponseBody](../../models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md new file mode 100755 index 000000000..607612850 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | List<[LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html)> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md index 722102457..e50a95b53 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md new file mode 100755 index 000000000..0b76fec71 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | List<*String*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md index 626521327..95efbe0f7 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesBigInt200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesBigIntResponseBody](../../models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md new file mode 100755 index 000000000..aea6216fe --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | *Long* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md index 9f53ea331..dbe034a48 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesBigIntStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md new file mode 100755 index 000000000..e1fb2fad7 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md index 05b2c8570..49ed8a199 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesBoolean200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesBooleanResponseBody](../../models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md new file mode 100755 index 000000000..ad0939cca --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesBooleanResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *Boolean* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md index b8006037b..15b6df5c1 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDate200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDate200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesDateResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md new file mode 100755 index 000000000..b3ef40bd9 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | [LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md index 802bfdd22..77414b3e5 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDateTime200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesDateTimeResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md new file mode 100755 index 000000000..6680e6622 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md index b4f460214..d8ab9de38 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDecimal200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesDecimalResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md new file mode 100755 index 000000000..0a609d93a --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | *Double* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md index d19b14dd7..dee4ba772 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesDecimalStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md new file mode 100755 index 000000000..9b2293663 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md index 500465df4..eed0be648 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesFloat32200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesFloat32ResponseBody](../../models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md new file mode 100755 index 000000000..3c29b465f --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesFloat32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *Double* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md index c0b568554..65e0e06d8 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesInt32200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesInt32200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesInt32ResponseBody](../../models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md new file mode 100755 index 000000000..ab9c53289 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesInt32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md index 832f101f8..a180ccad2 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesInteger200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesInteger200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesIntegerResponseBody](../../models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md new file mode 100755 index 000000000..1d0fdb570 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesIntegerResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *Long* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md index 24501105d..bcf3c8ecb 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesMapBigIntStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md new file mode 100755 index 000000000..52a5cba47 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------- | --------------------- | --------------------- | --------------------- | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md index dfcfad2c2..24b48a347 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesMapDateTimeResponseBody](../../models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md new file mode 100755 index 000000000..b0e4a779e --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md index de922c190..a47a79183 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesMapDecimalResponseBody](../../models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md new file mode 100755 index 000000000..0bc28b7ab --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------- | --------------------- | --------------------- | --------------------- | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md index 090ffe25c..2a538228c 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesNumber200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesNumber200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesNumberResponseBody](../../models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md new file mode 100755 index 000000000..35baabd7c --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesNumberResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *Double* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md index 873bc936a..f5fef5e0d 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesString200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesString200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostJsonDataTypesStringResponseBody](../../models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md new file mode 100755 index 000000000..85f295dd7 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesStringResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md deleted file mode 100755 index f797dda97..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *Boolean* | :heavy_check_mark: | N/A | -| `num` | *Double* | :heavy_check_mark: | N/A | -| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md new file mode 100755 index 000000000..3e2eb14ed --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesInlineFilteredRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *Boolean* | :heavy_check_mark: | N/A | +| `num` | *Double* | :heavy_check_mark: | N/A | +| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md deleted file mode 100755 index 257feead2..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *Boolean* | :heavy_check_mark: | N/A | -| `num` | *Double* | :heavy_check_mark: | N/A | -| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md deleted file mode 100755 index 2471419f8..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool3` | *Boolean* | :heavy_check_mark: | N/A | -| `num3` | *Double* | :heavy_check_mark: | N/A | -| `str3` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md new file mode 100755 index 000000000..c0df72d61 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool3` | *Boolean* | :heavy_check_mark: | N/A | +| `num3` | *Double* | :heavy_check_mark: | N/A | +| `str3` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md new file mode 100755 index 000000000..6d5a850a8 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitJsonRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *Boolean* | :heavy_check_mark: | N/A | +| `num` | *Double* | :heavy_check_mark: | N/A | +| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md deleted file mode 100755 index c8d053a76..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool2` | *Boolean* | :heavy_check_mark: | N/A | -| `num2` | *Double* | :heavy_check_mark: | N/A | -| `str2` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md new file mode 100755 index 000000000..3bf28ff37 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool2` | *Boolean* | :heavy_check_mark: | N/A | +| `num2` | *Double* | :heavy_check_mark: | N/A | +| `str2` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md deleted file mode 100755 index 0bec02049..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *Boolean* | :heavy_check_mark: | N/A | -| `num` | *Double* | :heavy_check_mark: | N/A | -| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md deleted file mode 100755 index 807ce9b8d..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool3` | *Boolean* | :heavy_check_mark: | N/A | -| `num3` | *Double* | :heavy_check_mark: | N/A | -| `str3` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md index 2a5770d64..79da2c9b8 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md) | :heavy_check_mark: | N/A | -| `paramStr` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md new file mode 100755 index 000000000..fb7d0ced6 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool3` | *Boolean* | :heavy_check_mark: | N/A | +| `num3` | *Double* | :heavy_check_mark: | N/A | +| `str3` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md index 1379381b1..8a2ed1ba3 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md @@ -5,5 +5,5 @@ | Field | Type | Required | Description | | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md) | :heavy_check_mark: | N/A | +| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md) | :heavy_check_mark: | N/A | | `paramStr` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md new file mode 100755 index 000000000..b88a2e5e7 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *Boolean* | :heavy_check_mark: | N/A | +| `num` | *Double* | :heavy_check_mark: | N/A | +| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md deleted file mode 100755 index 75ad66962..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool2` | *Boolean* | :heavy_check_mark: | N/A | -| `num2` | *Double* | :heavy_check_mark: | N/A | -| `str2` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md index 4f612f741..6bc896f5d 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md) | :heavy_check_mark: | N/A | -| `paramStr` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md new file mode 100755 index 000000000..28c6fa5f4 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool2` | *Boolean* | :heavy_check_mark: | N/A | +| `num2` | *Double* | :heavy_check_mark: | N/A | +| `str2` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md deleted file mode 100755 index e40b1bbae..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md index c2c6a3d36..0e6c2fece 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject` | [RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON](../../models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostNotNullableNotRequiredStringBodyResponseBody](../../models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md new file mode 100755 index 000000000..719b5fc50 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNotNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md deleted file mode 100755 index e0fc5958d..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullArray200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md index 208816edd..049b65889 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullArray200ApplicationJSONObject` | [RequestBodyPostNullArray200ApplicationJSON](../../models/operations/RequestBodyPostNullArray200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `object` | [RequestBodyPostNullArrayResponseBody](../../models/operations/RequestBodyPostNullArrayResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponseBody.md new file mode 100755 index 000000000..0dfdf7a1b --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullArrayResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md deleted file mode 100755 index c226be683..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullDictionary200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md index 864b6383b..2d17debe7 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullDictionary200ApplicationJSONObject` | [RequestBodyPostNullDictionary200ApplicationJSON](../../models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostNullDictionaryResponseBody](../../models/operations/RequestBodyPostNullDictionaryResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md new file mode 100755 index 000000000..37db38e9c --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullDictionaryResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md deleted file mode 100755 index 2680ec7c4..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md index 63306ada8..5ba79c353 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject` | [RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON](../../models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostNullableNotRequiredStringBodyResponseBody](../../models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md new file mode 100755 index 000000000..8f22bc610 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md deleted file mode 100755 index 93739c710..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md index ae67975a8..b044a76a9 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullableRequiredStringBody200ApplicationJSONObject` | [RequestBodyPostNullableRequiredStringBody200ApplicationJSON](../../models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [RequestBodyPostNullableRequiredStringBodyResponseBody](../../models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md b/java-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md new file mode 100755 index 000000000..63f197336 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsArgs.md b/java-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsArgs.md new file mode 100755 index 000000000..2a176c9bf --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsArgs.md @@ -0,0 +1,8 @@ +# RequestBodyPutBytesWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md b/java-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md index a1cfb85c3..5e2b7dd69 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `args` | [RequestBodyPutBytesWithParamsResArgs](../../models/operations/RequestBodyPutBytesWithParamsResArgs.md) | :heavy_check_mark: | N/A | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| `args` | [RequestBodyPutBytesWithParamsArgs](../../models/operations/RequestBodyPutBytesWithParamsArgs.md) | :heavy_check_mark: | N/A | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md b/java-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md deleted file mode 100755 index 1ace3a86c..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutBytesWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepForm.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepForm.md new file mode 100755 index 000000000..18855da31 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepForm.md @@ -0,0 +1,14 @@ +# RequestBodyPutMultipartDeepForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | *String* | :heavy_check_mark: | N/A | +| `bool` | *String* | :heavy_check_mark: | N/A | +| `int_` | *String* | :heavy_check_mark: | N/A | +| `map` | *String* | :heavy_check_mark: | N/A | +| `num` | *String* | :heavy_check_mark: | N/A | +| `obj` | *String* | :heavy_check_mark: | N/A | +| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md index 7c14a634f..647c76d8d 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPutMultipartDeepResForm](../../models/operations/RequestBodyPutMultipartDeepResForm.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `form` | [RequestBodyPutMultipartDeepForm](../../models/operations/RequestBodyPutMultipartDeepForm.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResForm.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResForm.md deleted file mode 100755 index 463d38173..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResForm.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPutMultipartDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | *String* | :heavy_check_mark: | N/A | -| `bool` | *String* | :heavy_check_mark: | N/A | -| `int_` | *String* | :heavy_check_mark: | N/A | -| `map` | *String* | :heavy_check_mark: | N/A | -| `num` | *String* | :heavy_check_mark: | N/A | -| `obj` | *String* | :heavy_check_mark: | N/A | -| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md index 970baec2d..ae60be400 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `differentFileName` | [RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName](../../models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | +| `differentFileName` | [DifferentFileName](../../models/operations/DifferentFileName.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md deleted file mode 100755 index 90413f4b5..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName - - -## Fields - -| Field | Type | Required | Description | -| ------------------- | ------------------- | ------------------- | ------------------- | -| `content` | *byte[]* | :heavy_check_mark: | N/A | -| `differentFileName` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md index 523ce9c8a..e516615fa 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `file` | [RequestBodyPutMultipartFileRequestBodyFile](../../models/operations/RequestBodyPutMultipartFileRequestBodyFile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | +| `file` | [File](../../models/operations/File.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md deleted file mode 100755 index c6b065e66..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content` | *byte[]* | :heavy_check_mark: | N/A | -| `file` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleForm.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleForm.md new file mode 100755 index 000000000..29fb8de4d --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleForm.md @@ -0,0 +1,21 @@ +# RequestBodyPutMultipartSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `any` | *String* | :heavy_check_mark: | N/A | +| `bool` | *String* | :heavy_check_mark: | N/A | +| `boolOpt` | *String* | :heavy_minus_sign: | N/A | +| `date` | *String* | :heavy_check_mark: | N/A | +| `dateTime` | *String* | :heavy_check_mark: | N/A | +| `enum_` | *String* | :heavy_check_mark: | N/A | +| `float32` | *String* | :heavy_check_mark: | N/A | +| `int_` | *String* | :heavy_check_mark: | N/A | +| `int32` | *String* | :heavy_check_mark: | N/A | +| `intOptNull` | *String* | :heavy_minus_sign: | N/A | +| `num` | *String* | :heavy_check_mark: | N/A | +| `numOptNull` | *String* | :heavy_minus_sign: | N/A | +| `str` | *String* | :heavy_check_mark: | N/A | +| `strOpt` | *String* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md new file mode 100755 index 000000000..6b25ab983 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md @@ -0,0 +1,8 @@ +# RequestBodyPutMultipartSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `contentType` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md index 26e3f1073..8af61a8ce 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPutMultipartSimpleResForm](../../models/operations/RequestBodyPutMultipartSimpleResForm.md) | :heavy_check_mark: | N/A | -| `headers` | [RequestBodyPutMultipartSimpleResHeaders](../../models/operations/RequestBodyPutMultipartSimpleResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | +| `form` | [RequestBodyPutMultipartSimpleForm](../../models/operations/RequestBodyPutMultipartSimpleForm.md) | :heavy_check_mark: | N/A | +| `headers` | [RequestBodyPutMultipartSimpleHeaders](../../models/operations/RequestBodyPutMultipartSimpleHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResForm.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResForm.md deleted file mode 100755 index 2bc73c6e9..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResForm.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPutMultipartSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `any` | *String* | :heavy_check_mark: | N/A | -| `bool` | *String* | :heavy_check_mark: | N/A | -| `boolOpt` | *String* | :heavy_minus_sign: | N/A | -| `date` | *String* | :heavy_check_mark: | N/A | -| `dateTime` | *String* | :heavy_check_mark: | N/A | -| `enum_` | *String* | :heavy_check_mark: | N/A | -| `float32` | *String* | :heavy_check_mark: | N/A | -| `int_` | *String* | :heavy_check_mark: | N/A | -| `int32` | *String* | :heavy_check_mark: | N/A | -| `intOptNull` | *String* | :heavy_minus_sign: | N/A | -| `num` | *String* | :heavy_check_mark: | N/A | -| `numOptNull` | *String* | :heavy_minus_sign: | N/A | -| `str` | *String* | :heavy_check_mark: | N/A | -| `strOpt` | *String* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md b/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md deleted file mode 100755 index dad1266d8..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutMultipartSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `contentType` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsArgs.md b/java-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsArgs.md new file mode 100755 index 000000000..b05563073 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsArgs.md @@ -0,0 +1,8 @@ +# RequestBodyPutStringWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md b/java-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md index 6429ff118..12a104759 100755 --- a/java-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md +++ b/java-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `args` | [RequestBodyPutStringWithParamsResArgs](../../models/operations/RequestBodyPutStringWithParamsResArgs.md) | :heavy_check_mark: | N/A | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| `args` | [RequestBodyPutStringWithParamsArgs](../../models/operations/RequestBodyPutStringWithParamsArgs.md) | :heavy_check_mark: | N/A | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResArgs.md b/java-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResArgs.md deleted file mode 100755 index 611874d2c..000000000 --- a/java-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutStringWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/RequiredObj.md b/java-client-sdk/docs/models/operations/RequiredObj.md new file mode 100755 index 000000000..75e7b11a1 --- /dev/null +++ b/java-client-sdk/docs/models/operations/RequiredObj.md @@ -0,0 +1,7 @@ +# RequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md deleted file mode 100755 index 565b9cbfb..000000000 --- a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------- | --------------------- | --------------------- | --------------------- | -| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md index 011b7c763..7d6b134ea 100755 --- a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md +++ b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md new file mode 100755 index 000000000..309e09bd2 --- /dev/null +++ b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------- | --------------------- | --------------------- | --------------------- | +| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md deleted file mode 100755 index a82af0b83..000000000 --- a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md index 9dfde80f4..da3ecfd35 100755 --- a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md +++ b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [ResponseBodyAdditionalPropertiesDatePostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md new file mode 100755 index 000000000..b522e5154 --- /dev/null +++ b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesDatePostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md deleted file mode 100755 index 44f770f63..000000000 --- a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md index a65e7cac7..8c19316db 100755 --- a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md +++ b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [ResponseBodyAdditionalPropertiesObjectPostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md new file mode 100755 index 000000000..5dbedaba1 --- /dev/null +++ b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesObjectPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md deleted file mode 100755 index 86f69e920..000000000 --- a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------- | --------------------- | --------------------- | --------------------- | -| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md index 1c2a243cc..26cc3c804 100755 --- a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md +++ b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesPost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesPost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [ResponseBodyAdditionalPropertiesPostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md new file mode 100755 index 000000000..495c76ca1 --- /dev/null +++ b/java-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------- | --------------------- | --------------------- | --------------------- | +| `json` | Map | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md b/java-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md index 29b0b0202..b0be184ed 100755 --- a/java-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md +++ b/java-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md @@ -8,5 +8,5 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyOptionalGet200TextPlainString` | *String* | :heavy_minus_sign: | OK | +| `res` | *String* | :heavy_minus_sign: | OK | | `typedObject1` | [org.openapis.openapi.models.shared.TypedObject1](../../models/shared/TypedObject1.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md b/java-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md deleted file mode 100755 index 5b542de1d..000000000 --- a/java-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | -| `json` | [org.openapis.openapi.models.shared.ObjWithZeroValueComplexTypePtrs](../../models/shared/ObjWithZeroValueComplexTypePtrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md b/java-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md index 6fbf94895..ae6767f15 100755 --- a/java-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md +++ b/java-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject` | [ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON](../../models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [ResponseBodyZeroValueComplexTypePtrsPostResponseBody](../../models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md b/java-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md new file mode 100755 index 000000000..cbcda7034 --- /dev/null +++ b/java-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyZeroValueComplexTypePtrsPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | +| `json` | [org.openapis.openapi.models.shared.ObjWithZeroValueComplexTypePtrs](../../models/shared/ObjWithZeroValueComplexTypePtrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md b/java-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md deleted file mode 100755 index 3557cc1b5..000000000 --- a/java-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md +++ /dev/null @@ -1,12 +0,0 @@ -# StatusGetXSpeakeasyErrors501ApplicationJSON - -Not Implemented - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -| `code` | *String* | :heavy_minus_sign: | N/A | -| `message` | *String* | :heavy_minus_sign: | N/A | -| `type` | [org.openapis.openapi.models.shared.ErrorType](../../models/shared/ErrorType.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md b/java-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md index b31d9e049..88988779c 100755 --- a/java-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md +++ b/java-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md @@ -9,4 +9,4 @@ | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | | `error` | [org.openapis.openapi.models.shared.Error](../../models/shared/Error.md) | :heavy_minus_sign: | Internal Server Error | -| `statusGetXSpeakeasyErrors501ApplicationJSONObject` | [StatusGetXSpeakeasyErrors501ApplicationJSON](../../models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md) | :heavy_minus_sign: | Not Implemented | \ No newline at end of file +| `object` | [StatusGetXSpeakeasyErrorsResponseBody](../../models/operations/StatusGetXSpeakeasyErrorsResponseBody.md) | :heavy_minus_sign: | Not Implemented | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md b/java-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md new file mode 100755 index 000000000..a748a55d0 --- /dev/null +++ b/java-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md @@ -0,0 +1,12 @@ +# StatusGetXSpeakeasyErrorsResponseBody + +Not Implemented + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | +| `code` | *String* | :heavy_minus_sign: | N/A | +| `message` | *String* | :heavy_minus_sign: | N/A | +| `type` | [org.openapis.openapi.models.shared.ErrorType](../../models/shared/ErrorType.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/TypeFromAnchor.md b/java-client-sdk/docs/models/operations/TypeFromAnchor.md deleted file mode 100755 index 6f31bcf81..000000000 --- a/java-client-sdk/docs/models/operations/TypeFromAnchor.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypeFromAnchor - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/TypedParameterGenerationGetObj.md b/java-client-sdk/docs/models/operations/TypedParameterGenerationGetObj.md deleted file mode 100755 index 3944124fc..000000000 --- a/java-client-sdk/docs/models/operations/TypedParameterGenerationGetObj.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypedParameterGenerationGetObj - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *Boolean* | :heavy_check_mark: | N/A | -| `num` | *Double* | :heavy_check_mark: | N/A | -| `str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md b/java-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md index 3076c31c6..69a76038f 100755 --- a/java-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md +++ b/java-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `bigint` | *Long* | :heavy_minus_sign: | N/A | -| `date` | [LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html) | :heavy_minus_sign: | N/A | -| `decimal` | *Double* | :heavy_minus_sign: | N/A | -| `obj` | [TypedParameterGenerationGetObj](../../models/operations/TypedParameterGenerationGetObj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | +| `bigint` | *Long* | :heavy_minus_sign: | N/A | +| `date` | [LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html) | :heavy_minus_sign: | N/A | +| `decimal` | *Double* | :heavy_minus_sign: | N/A | +| `obj` | [Obj](../../models/operations/Obj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSON.md b/java-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSON.md deleted file mode 100755 index 4762981fe..000000000 --- a/java-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSON - -A response body that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `json` | [UsageExamplePost200ApplicationJSONJSON](../../models/operations/UsageExamplePost200ApplicationJSONJSON.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md b/java-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md deleted file mode 100755 index cb9e4448c..000000000 --- a/java-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSONJSON - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `fakerFormattedStrings` | [org.openapis.openapi.models.shared.FakerFormattedStrings](../../models/shared/FakerFormattedStrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | -| `fakerStrings` | [org.openapis.openapi.models.shared.FakerStrings](../../models/shared/FakerStrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | -| `simpleObject` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/UsageExamplePostEnumParameter.md b/java-client-sdk/docs/models/operations/UsageExamplePostEnumParameter.md deleted file mode 100755 index ab456314d..000000000 --- a/java-client-sdk/docs/models/operations/UsageExamplePostEnumParameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `VALUE1` | value1 | -| `VALUE2` | value2 | -| `VALUE3` | value3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/UsageExamplePostJson.md b/java-client-sdk/docs/models/operations/UsageExamplePostJson.md new file mode 100755 index 000000000..e5b82e928 --- /dev/null +++ b/java-client-sdk/docs/models/operations/UsageExamplePostJson.md @@ -0,0 +1,10 @@ +# UsageExamplePostJson + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `fakerFormattedStrings` | [org.openapis.openapi.models.shared.FakerFormattedStrings](../../models/shared/FakerFormattedStrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | +| `fakerStrings` | [org.openapis.openapi.models.shared.FakerStrings](../../models/shared/FakerStrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | +| `simpleObject` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/UsageExamplePostOptEnumParameter.md b/java-client-sdk/docs/models/operations/UsageExamplePostOptEnumParameter.md deleted file mode 100755 index 7a18bbc53..000000000 --- a/java-client-sdk/docs/models/operations/UsageExamplePostOptEnumParameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostOptEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `VALUE1` | value1 | -| `VALUE2` | value2 | -| `VALUE3` | value3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/UsageExamplePostRequest.md b/java-client-sdk/docs/models/operations/UsageExamplePostRequest.md index d41636a8b..9e3263e8a 100755 --- a/java-client-sdk/docs/models/operations/UsageExamplePostRequest.md +++ b/java-client-sdk/docs/models/operations/UsageExamplePostRequest.md @@ -3,27 +3,27 @@ ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `requestBody` | [UsageExamplePostRequestBody](../../models/operations/UsageExamplePostRequestBody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | -| `bigintParameter` | *Long* | :heavy_check_mark: | An bigint parameter | | -| `bigintParameterOptional` | *Long* | :heavy_minus_sign: | An bigint parameter | | -| `bigintStrParameter` | *String* | :heavy_check_mark: | An bigint parameter | | -| `bigintStrParameterOptional` | *String* | :heavy_minus_sign: | An bigint parameter | | -| `boolParameter` | *Boolean* | :heavy_check_mark: | A boolean parameter | | -| `dateParameter` | [LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html) | :heavy_check_mark: | A date parameter | | -| `dateTimeDefaultParameter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | A date time parameter with a default value | | -| `dateTimeParameter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | A date time parameter | | -| `decimalParameter` | *Double* | :heavy_check_mark: | A decimal parameter | | -| `decimalParameterOptional` | *Double* | :heavy_minus_sign: | A decimal parameter | | -| `decimalStrParameter` | *String* | :heavy_check_mark: | A decimal parameter | | -| `decimalStrParameterOptional` | *String* | :heavy_minus_sign: | A decimal parameter | | -| `doubleParameter` | *Double* | :heavy_check_mark: | A double parameter | | -| `enumParameter` | [UsageExamplePostEnumParameter](../../models/operations/UsageExamplePostEnumParameter.md) | :heavy_check_mark: | An enum parameter | | -| `falseyNumberParameter` | *Double* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | -| `float32Parameter` | *Float* | :heavy_check_mark: | A float32 parameter | | -| `floatParameter` | *Double* | :heavy_check_mark: | A float parameter | | -| `int64Parameter` | *Long* | :heavy_check_mark: | An int64 parameter | | -| `intParameter` | *Integer* | :heavy_check_mark: | An integer parameter | | -| `optEnumParameter` | [UsageExamplePostOptEnumParameter](../../models/operations/UsageExamplePostOptEnumParameter.md) | :heavy_minus_sign: | An enum parameter | value3 | -| `strParameter` | *String* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `requestBody` | [UsageExamplePostRequestBody](../../models/operations/UsageExamplePostRequestBody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | +| `bigintParameter` | *Long* | :heavy_check_mark: | An bigint parameter | | +| `bigintParameterOptional` | *Long* | :heavy_minus_sign: | An bigint parameter | | +| `bigintStrParameter` | *String* | :heavy_check_mark: | An bigint parameter | | +| `bigintStrParameterOptional` | *String* | :heavy_minus_sign: | An bigint parameter | | +| `boolParameter` | *Boolean* | :heavy_check_mark: | A boolean parameter | | +| `dateParameter` | [LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html) | :heavy_check_mark: | A date parameter | | +| `dateTimeDefaultParameter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | A date time parameter with a default value | | +| `dateTimeParameter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | A date time parameter | | +| `decimalParameter` | *Double* | :heavy_check_mark: | A decimal parameter | | +| `decimalParameterOptional` | *Double* | :heavy_minus_sign: | A decimal parameter | | +| `decimalStrParameter` | *String* | :heavy_check_mark: | A decimal parameter | | +| `decimalStrParameterOptional` | *String* | :heavy_minus_sign: | A decimal parameter | | +| `doubleParameter` | *Double* | :heavy_check_mark: | A double parameter | | +| `enumParameter` | [EnumParameter](../../models/operations/EnumParameter.md) | :heavy_check_mark: | An enum parameter | | +| `falseyNumberParameter` | *Double* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | +| `float32Parameter` | *Float* | :heavy_check_mark: | A float32 parameter | | +| `floatParameter` | *Double* | :heavy_check_mark: | A float parameter | | +| `int64Parameter` | *Long* | :heavy_check_mark: | An int64 parameter | | +| `intParameter` | *Integer* | :heavy_check_mark: | An integer parameter | | +| `optEnumParameter` | [OptEnumParameter](../../models/operations/OptEnumParameter.md) | :heavy_minus_sign: | An enum parameter | value3 | +| `strParameter` | *String* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/UsageExamplePostResponse.md b/java-client-sdk/docs/models/operations/UsageExamplePostResponse.md index d089c72e8..e13def876 100755 --- a/java-client-sdk/docs/models/operations/UsageExamplePostResponse.md +++ b/java-client-sdk/docs/models/operations/UsageExamplePostResponse.md @@ -8,4 +8,4 @@ | `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `usageExamplePost200ApplicationJSONObject` | [UsageExamplePost200ApplicationJSON](../../models/operations/UsageExamplePost200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| `object` | [UsageExamplePostResponseBody](../../models/operations/UsageExamplePostResponseBody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/java-client-sdk/docs/models/operations/UsageExamplePostResponseBody.md b/java-client-sdk/docs/models/operations/UsageExamplePostResponseBody.md new file mode 100755 index 000000000..183969e7b --- /dev/null +++ b/java-client-sdk/docs/models/operations/UsageExamplePostResponseBody.md @@ -0,0 +1,10 @@ +# UsageExamplePostResponseBody + +A response body that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `json` | [UsageExamplePostJson](../../models/operations/UsageExamplePostJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/AuthServiceRequestBody.md b/java-client-sdk/docs/models/shared/AuthServiceRequestBody.md index 3946debf9..bf63fe233 100755 --- a/java-client-sdk/docs/models/shared/AuthServiceRequestBody.md +++ b/java-client-sdk/docs/models/shared/AuthServiceRequestBody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `basicAuth` | [AuthServiceRequestBodyBasicAuth](../../models/shared/AuthServiceRequestBodyBasicAuth.md) | :heavy_minus_sign: | N/A | -| `headerAuth` | List<[AuthServiceRequestBodyHeaderAuth](../../models/shared/AuthServiceRequestBodyHeaderAuth.md)> | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | +| `basicAuth` | [BasicAuth](../../models/shared/BasicAuth.md) | :heavy_minus_sign: | N/A | +| `headerAuth` | List<[HeaderAuth](../../models/shared/HeaderAuth.md)> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/AuthServiceRequestBodyBasicAuth.md b/java-client-sdk/docs/models/shared/AuthServiceRequestBodyBasicAuth.md deleted file mode 100755 index af376b041..000000000 --- a/java-client-sdk/docs/models/shared/AuthServiceRequestBodyBasicAuth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyBasicAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `password` | *String* | :heavy_check_mark: | N/A | -| `username` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/AuthServiceRequestBodyHeaderAuth.md b/java-client-sdk/docs/models/shared/AuthServiceRequestBodyHeaderAuth.md deleted file mode 100755 index 3c1470640..000000000 --- a/java-client-sdk/docs/models/shared/AuthServiceRequestBodyHeaderAuth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyHeaderAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `expectedValue` | *String* | :heavy_check_mark: | N/A | -| `headerName` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/BasicAuth.md b/java-client-sdk/docs/models/shared/BasicAuth.md new file mode 100755 index 000000000..0e36cee88 --- /dev/null +++ b/java-client-sdk/docs/models/shared/BasicAuth.md @@ -0,0 +1,9 @@ +# BasicAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `password` | *String* | :heavy_check_mark: | N/A | +| `username` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/Chocolates.md b/java-client-sdk/docs/models/shared/Chocolates.md new file mode 100755 index 000000000..5ab163deb --- /dev/null +++ b/java-client-sdk/docs/models/shared/Chocolates.md @@ -0,0 +1,8 @@ +# Chocolates + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `description` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/ConstEnumInt.md b/java-client-sdk/docs/models/shared/ConstEnumInt.md new file mode 100755 index 000000000..cab586d10 --- /dev/null +++ b/java-client-sdk/docs/models/shared/ConstEnumInt.md @@ -0,0 +1,10 @@ +# ConstEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | 1 | +| `TWO` | 2 | +| `THREE` | 3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/ConstEnumStr.md b/java-client-sdk/docs/models/shared/ConstEnumStr.md new file mode 100755 index 000000000..986110929 --- /dev/null +++ b/java-client-sdk/docs/models/shared/ConstEnumStr.md @@ -0,0 +1,10 @@ +# ConstEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | one | +| `TWO` | two | +| `THREE` | three | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/DefaultEnumInt.md b/java-client-sdk/docs/models/shared/DefaultEnumInt.md new file mode 100755 index 000000000..ae0f52ec8 --- /dev/null +++ b/java-client-sdk/docs/models/shared/DefaultEnumInt.md @@ -0,0 +1,10 @@ +# DefaultEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | 1 | +| `TWO` | 2 | +| `THREE` | 3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/DefaultEnumStr.md b/java-client-sdk/docs/models/shared/DefaultEnumStr.md new file mode 100755 index 000000000..fe1bc0fbf --- /dev/null +++ b/java-client-sdk/docs/models/shared/DefaultEnumStr.md @@ -0,0 +1,10 @@ +# DefaultEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | one | +| `TWO` | two | +| `THREE` | three | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/DefaultsAndConsts.md b/java-client-sdk/docs/models/shared/DefaultsAndConsts.md index 6c7e875af..cc2cca177 100755 --- a/java-client-sdk/docs/models/shared/DefaultsAndConsts.md +++ b/java-client-sdk/docs/models/shared/DefaultsAndConsts.md @@ -12,8 +12,8 @@ | `constDateTime` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | N/A | | `constDecimal` | *Double* | :heavy_check_mark: | N/A | | `constDecimalStr` | *String* | :heavy_check_mark: | N/A | -| `constEnumInt` | [DefaultsAndConstsConstEnumInt](../../models/shared/DefaultsAndConstsConstEnumInt.md) | :heavy_check_mark: | N/A | -| `constEnumStr` | [DefaultsAndConstsConstEnumStr](../../models/shared/DefaultsAndConstsConstEnumStr.md) | :heavy_check_mark: | N/A | +| `constEnumInt` | [ConstEnumInt](../../models/shared/ConstEnumInt.md) | :heavy_check_mark: | N/A | +| `constEnumStr` | [ConstEnumStr](../../models/shared/ConstEnumStr.md) | :heavy_check_mark: | N/A | | `constInt` | *Long* | :heavy_check_mark: | N/A | | `constNum` | *Double* | :heavy_check_mark: | N/A | | `constStr` | *String* | :heavy_check_mark: | N/A | @@ -25,8 +25,8 @@ | `defaultDateTime` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | N/A | | `defaultDecimal` | *Double* | :heavy_minus_sign: | N/A | | `defaultDecimalStr` | *String* | :heavy_minus_sign: | N/A | -| `defaultEnumInt` | [DefaultsAndConstsDefaultEnumInt](../../models/shared/DefaultsAndConstsDefaultEnumInt.md) | :heavy_minus_sign: | N/A | -| `defaultEnumStr` | [DefaultsAndConstsDefaultEnumStr](../../models/shared/DefaultsAndConstsDefaultEnumStr.md) | :heavy_minus_sign: | N/A | +| `defaultEnumInt` | [DefaultEnumInt](../../models/shared/DefaultEnumInt.md) | :heavy_minus_sign: | N/A | +| `defaultEnumStr` | [DefaultEnumStr](../../models/shared/DefaultEnumStr.md) | :heavy_minus_sign: | N/A | | `defaultInt` | *Long* | :heavy_minus_sign: | N/A | | `defaultNum` | *Double* | :heavy_minus_sign: | N/A | | `defaultStr` | *String* | :heavy_minus_sign: | N/A | diff --git a/java-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumInt.md b/java-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumInt.md deleted file mode 100755 index 0d99bc945..000000000 --- a/java-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumInt.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | 1 | -| `TWO` | 2 | -| `THREE` | 3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumStr.md b/java-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumStr.md deleted file mode 100755 index e74129ef1..000000000 --- a/java-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumStr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | one | -| `TWO` | two | -| `THREE` | three | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumInt.md b/java-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumInt.md deleted file mode 100755 index 051ac2c0d..000000000 --- a/java-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumInt.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | 1 | -| `TWO` | 2 | -| `THREE` | 3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumStr.md b/java-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumStr.md deleted file mode 100755 index 17ab70b26..000000000 --- a/java-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumStr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | one | -| `TWO` | two | -| `THREE` | three | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/DeprecatedEnum.md b/java-client-sdk/docs/models/shared/DeprecatedEnum.md new file mode 100755 index 000000000..2af19435d --- /dev/null +++ b/java-client-sdk/docs/models/shared/DeprecatedEnum.md @@ -0,0 +1,12 @@ +# ~~DeprecatedEnum~~ + +> :warning: **DEPRECATED**: This enum is deprecated. + + +## Values + +| Name | Value | +| ----- | ----- | +| `A` | a | +| `B` | b | +| `C` | c | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/DeprecatedFieldInObject.md b/java-client-sdk/docs/models/shared/DeprecatedFieldInObject.md index f124ff8ff..5fa64970d 100755 --- a/java-client-sdk/docs/models/shared/DeprecatedFieldInObject.md +++ b/java-client-sdk/docs/models/shared/DeprecatedFieldInObject.md @@ -5,6 +5,6 @@ | Field | Type | Required | Description | | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| ~~`deprecatedEnum`~~ | [DeprecatedFieldInObjectDeprecatedEnum](../../models/shared/DeprecatedFieldInObjectDeprecatedEnum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | +| ~~`deprecatedEnum`~~ | [DeprecatedEnum](../../models/shared/DeprecatedEnum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | | ~~`deprecatedField`~~ | *String* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. Use newField instead. | | `newField` | *String* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md b/java-client-sdk/docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md deleted file mode 100755 index 14c3d71b4..000000000 --- a/java-client-sdk/docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md +++ /dev/null @@ -1,12 +0,0 @@ -# ~~DeprecatedFieldInObjectDeprecatedEnum~~ - -> :warning: **DEPRECATED**: This enum is deprecated. - - -## Values - -| Name | Value | -| ----- | ----- | -| `A` | a | -| `B` | b | -| `C` | c | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/EnumNumber.md b/java-client-sdk/docs/models/shared/EnumNumber.md new file mode 100755 index 000000000..79405247f --- /dev/null +++ b/java-client-sdk/docs/models/shared/EnumNumber.md @@ -0,0 +1,10 @@ +# EnumNumber + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | 1 | +| `TWO` | 2 | +| `THREE` | 3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/EnumStr.md b/java-client-sdk/docs/models/shared/EnumStr.md new file mode 100755 index 000000000..8e2938878 --- /dev/null +++ b/java-client-sdk/docs/models/shared/EnumStr.md @@ -0,0 +1,10 @@ +# EnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | one | +| `TWO` | two | +| `THREE` | three | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/ExampleResource.md b/java-client-sdk/docs/models/shared/ExampleResource.md index ee307c061..3af0d421b 100755 --- a/java-client-sdk/docs/models/shared/ExampleResource.md +++ b/java-client-sdk/docs/models/shared/ExampleResource.md @@ -7,10 +7,10 @@ | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | | `arrayOfNumber` | List<*Double*> | :heavy_minus_sign: | N/A | | `arrayOfString` | List<*String*> | :heavy_minus_sign: | N/A | -| `chocolates` | List<[ExampleResourceChocolates](../../models/shared/ExampleResourceChocolates.md)> | :heavy_check_mark: | N/A | +| `chocolates` | List<[Chocolates](../../models/shared/Chocolates.md)> | :heavy_check_mark: | N/A | | `createdAt` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | N/A | -| `enumNumber` | [ExampleResourceEnumNumber](../../models/shared/ExampleResourceEnumNumber.md) | :heavy_minus_sign: | N/A | -| `enumStr` | [ExampleResourceEnumStr](../../models/shared/ExampleResourceEnumStr.md) | :heavy_minus_sign: | N/A | +| `enumNumber` | [EnumNumber](../../models/shared/EnumNumber.md) | :heavy_minus_sign: | N/A | +| `enumStr` | [EnumStr](../../models/shared/EnumStr.md) | :heavy_minus_sign: | N/A | | `id` | *String* | :heavy_check_mark: | N/A | | `mapOfInteger` | Map | :heavy_minus_sign: | N/A | | `mapOfString` | Map | :heavy_minus_sign: | N/A | diff --git a/java-client-sdk/docs/models/shared/ExampleResourceChocolates.md b/java-client-sdk/docs/models/shared/ExampleResourceChocolates.md deleted file mode 100755 index e0d9a9ad5..000000000 --- a/java-client-sdk/docs/models/shared/ExampleResourceChocolates.md +++ /dev/null @@ -1,8 +0,0 @@ -# ExampleResourceChocolates - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `description` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/ExampleResourceEnumNumber.md b/java-client-sdk/docs/models/shared/ExampleResourceEnumNumber.md deleted file mode 100755 index a872613f0..000000000 --- a/java-client-sdk/docs/models/shared/ExampleResourceEnumNumber.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumNumber - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | 1 | -| `TWO` | 2 | -| `THREE` | 3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/ExampleResourceEnumStr.md b/java-client-sdk/docs/models/shared/ExampleResourceEnumStr.md deleted file mode 100755 index 7f8258195..000000000 --- a/java-client-sdk/docs/models/shared/ExampleResourceEnumStr.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | one | -| `TWO` | two | -| `THREE` | three | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/HeaderAuth.md b/java-client-sdk/docs/models/shared/HeaderAuth.md new file mode 100755 index 000000000..58e448e6b --- /dev/null +++ b/java-client-sdk/docs/models/shared/HeaderAuth.md @@ -0,0 +1,9 @@ +# HeaderAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `expectedValue` | *String* | :heavy_check_mark: | N/A | +| `headerName` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md b/java-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md index fc7865d29..47eb33de7 100755 --- a/java-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md +++ b/java-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `slideshow` | [HttpBinSimpleJsonObjectSlideshow](../../models/shared/HttpBinSimpleJsonObjectSlideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | +| `slideshow` | [Slideshow](../../models/shared/Slideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md b/java-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md deleted file mode 100755 index 40090b949..000000000 --- a/java-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md +++ /dev/null @@ -1,11 +0,0 @@ -# HttpBinSimpleJsonObjectSlideshow - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `author` | *String* | :heavy_check_mark: | N/A | -| `date` | *String* | :heavy_check_mark: | N/A | -| `slides` | List<[HttpBinSimpleJsonObjectSlideshowSlides](../../models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md)> | :heavy_check_mark: | N/A | -| `title` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md b/java-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md deleted file mode 100755 index 1a38150f2..000000000 --- a/java-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md +++ /dev/null @@ -1,10 +0,0 @@ -# HttpBinSimpleJsonObjectSlideshowSlides - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `items` | List<*String*> | :heavy_minus_sign: | N/A | -| `title` | *String* | :heavy_check_mark: | N/A | -| `type` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/Int32Enum.md b/java-client-sdk/docs/models/shared/Int32Enum.md new file mode 100755 index 000000000..1e9b518b6 --- /dev/null +++ b/java-client-sdk/docs/models/shared/Int32Enum.md @@ -0,0 +1,12 @@ +# Int32Enum + +An int32 enum property. + + +## Values + +| Name | Value | +| ---------------------------- | ---------------------------- | +| `FIFTY_FIVE` | 55 | +| `SIXTY_NINE` | 69 | +| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/Int32EnumVal.md b/java-client-sdk/docs/models/shared/Int32EnumVal.md new file mode 100755 index 000000000..bb756154d --- /dev/null +++ b/java-client-sdk/docs/models/shared/Int32EnumVal.md @@ -0,0 +1,12 @@ +# Int32EnumVal + +An int32 enum property. + + +## Values + +| Name | Value | +| ---------------------------- | ---------------------------- | +| `FIFTY_FIVE` | 55 | +| `SIXTY_NINE` | 69 | +| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/IntEnum.md b/java-client-sdk/docs/models/shared/IntEnum.md new file mode 100755 index 000000000..5a6582451 --- /dev/null +++ b/java-client-sdk/docs/models/shared/IntEnum.md @@ -0,0 +1,12 @@ +# IntEnum + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `First` | 1 | +| `Second` | 2 | +| `Third` | 3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/IntEnumVal.md b/java-client-sdk/docs/models/shared/IntEnumVal.md new file mode 100755 index 000000000..1261fe20b --- /dev/null +++ b/java-client-sdk/docs/models/shared/IntEnumVal.md @@ -0,0 +1,12 @@ +# IntEnumVal + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `First` | 1 | +| `Second` | 2 | +| `Third` | 3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/ReadWriteObject.md b/java-client-sdk/docs/models/shared/ReadWriteObject.md new file mode 100755 index 000000000..99fc920dd --- /dev/null +++ b/java-client-sdk/docs/models/shared/ReadWriteObject.md @@ -0,0 +1,10 @@ +# ReadWriteObject + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `num1` | *Long* | :heavy_check_mark: | N/A | +| `num2` | *Long* | :heavy_check_mark: | N/A | +| `num3` | *Long* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/ReadWriteObjectInput.md b/java-client-sdk/docs/models/shared/ReadWriteObjectInput.md deleted file mode 100755 index b4687026d..000000000 --- a/java-client-sdk/docs/models/shared/ReadWriteObjectInput.md +++ /dev/null @@ -1,10 +0,0 @@ -# ReadWriteObjectInput - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `num1` | *Long* | :heavy_check_mark: | N/A | -| `num2` | *Long* | :heavy_check_mark: | N/A | -| `num3` | *Long* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/SimpleObject.md b/java-client-sdk/docs/models/shared/SimpleObject.md index 7df9c55df..9c8bf6102 100755 --- a/java-client-sdk/docs/models/shared/SimpleObject.md +++ b/java-client-sdk/docs/models/shared/SimpleObject.md @@ -23,8 +23,8 @@ A link to the external docs. | `float32` | *Float* | :heavy_check_mark: | A float32 property. | 1.1 | | `int_` | *Long* | :heavy_check_mark: | An integer property. | 1 | | `int32` | *Integer* | :heavy_check_mark: | An int32 property. | 1 | -| `int32Enum` | [SimpleObjectInt32Enum](../../models/shared/SimpleObjectInt32Enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | -| `intEnum` | [SimpleObjectIntEnum](../../models/shared/SimpleObjectIntEnum.md) | :heavy_check_mark: | An integer enum property. | 2 | +| `int32Enum` | [Int32Enum](../../models/shared/Int32Enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | +| `intEnum` | [IntEnum](../../models/shared/IntEnum.md) | :heavy_check_mark: | An integer enum property. | 2 | | `intOptNull` | *Long* | :heavy_minus_sign: | An optional integer property will be null for tests. | | | `num` | *Double* | :heavy_check_mark: | A number property. | 1.1 | | `numOptNull` | *Double* | :heavy_minus_sign: | An optional number property will be null for tests. | | diff --git a/java-client-sdk/docs/models/shared/SimpleObjectCamelCase.md b/java-client-sdk/docs/models/shared/SimpleObjectCamelCase.md index 5fb81a7c4..331c7371e 100755 --- a/java-client-sdk/docs/models/shared/SimpleObjectCamelCase.md +++ b/java-client-sdk/docs/models/shared/SimpleObjectCamelCase.md @@ -8,24 +8,24 @@ A link to the external docs. ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `anyVal` | *Object* | :heavy_check_mark: | An any property. | any example | -| `bigintStrVal` | *String* | :heavy_minus_sign: | N/A | | -| `bigintVal` | *Long* | :heavy_minus_sign: | N/A | | -| `boolOptVal` | *Boolean* | :heavy_minus_sign: | An optional boolean property. | true | -| `boolVal` | *Boolean* | :heavy_check_mark: | A boolean property. | true | -| `dateTimeVal` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | -| `dateVal` | [LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html) | :heavy_check_mark: | A date property. | 2020-01-01 | -| `decimalVal` | *Double* | :heavy_minus_sign: | N/A | | -| `enumVal` | [Enum](../../models/shared/Enum.md) | :heavy_check_mark: | A string based enum | one | -| `float32Val` | *Float* | :heavy_check_mark: | A float32 property. | 2.2222222 | -| `int32EnumVal` | [SimpleObjectCamelCaseInt32EnumVal](../../models/shared/SimpleObjectCamelCaseInt32EnumVal.md) | :heavy_check_mark: | An int32 enum property. | 69 | -| `int32Val` | *Integer* | :heavy_check_mark: | An int32 property. | 1 | -| `intEnumVal` | [SimpleObjectCamelCaseIntEnumVal](../../models/shared/SimpleObjectCamelCaseIntEnumVal.md) | :heavy_check_mark: | An integer enum property. | 3 | -| `intOptNullVal` | *Long* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | -| `intVal` | *Long* | :heavy_check_mark: | An integer property. | 999999 | -| `numOptNullVal` | *Double* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | -| `numVal` | *Double* | :heavy_check_mark: | A number property. | 1.1 | -| `strOptVal` | *String* | :heavy_minus_sign: | An optional string property. | optional example | -| `strVal` | *String* | :heavy_check_mark: | A string property. | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `anyVal` | *Object* | :heavy_check_mark: | An any property. | any example | +| `bigintStrVal` | *String* | :heavy_minus_sign: | N/A | | +| `bigintVal` | *Long* | :heavy_minus_sign: | N/A | | +| `boolOptVal` | *Boolean* | :heavy_minus_sign: | An optional boolean property. | true | +| `boolVal` | *Boolean* | :heavy_check_mark: | A boolean property. | true | +| `dateTimeVal` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | +| `dateVal` | [LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html) | :heavy_check_mark: | A date property. | 2020-01-01 | +| `decimalVal` | *Double* | :heavy_minus_sign: | N/A | | +| `enumVal` | [Enum](../../models/shared/Enum.md) | :heavy_check_mark: | A string based enum | one | +| `float32Val` | *Float* | :heavy_check_mark: | A float32 property. | 2.2222222 | +| `int32EnumVal` | [Int32EnumVal](../../models/shared/Int32EnumVal.md) | :heavy_check_mark: | An int32 enum property. | 69 | +| `int32Val` | *Integer* | :heavy_check_mark: | An int32 property. | 1 | +| `intEnumVal` | [IntEnumVal](../../models/shared/IntEnumVal.md) | :heavy_check_mark: | An integer enum property. | 3 | +| `intOptNullVal` | *Long* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | +| `intVal` | *Long* | :heavy_check_mark: | An integer property. | 999999 | +| `numOptNullVal` | *Double* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | +| `numVal` | *Double* | :heavy_check_mark: | A number property. | 1.1 | +| `strOptVal` | *String* | :heavy_minus_sign: | An optional string property. | optional example | +| `strVal` | *String* | :heavy_check_mark: | A string property. | example | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md b/java-client-sdk/docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md deleted file mode 100755 index 6be009c74..000000000 --- a/java-client-sdk/docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseInt32EnumVal - -An int32 enum property. - - -## Values - -| Name | Value | -| ---------------------------- | ---------------------------- | -| `FIFTY_FIVE` | 55 | -| `SIXTY_NINE` | 69 | -| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md b/java-client-sdk/docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md deleted file mode 100755 index 13e4ff61c..000000000 --- a/java-client-sdk/docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseIntEnumVal - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `First` | 1 | -| `Second` | 2 | -| `Third` | 3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/SimpleObjectInt32Enum.md b/java-client-sdk/docs/models/shared/SimpleObjectInt32Enum.md deleted file mode 100755 index 640bd271d..000000000 --- a/java-client-sdk/docs/models/shared/SimpleObjectInt32Enum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectInt32Enum - -An int32 enum property. - - -## Values - -| Name | Value | -| ---------------------------- | ---------------------------- | -| `FIFTY_FIVE` | 55 | -| `SIXTY_NINE` | 69 | -| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/SimpleObjectIntEnum.md b/java-client-sdk/docs/models/shared/SimpleObjectIntEnum.md deleted file mode 100755 index 90d7f4ecb..000000000 --- a/java-client-sdk/docs/models/shared/SimpleObjectIntEnum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectIntEnum - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `First` | 1 | -| `Second` | 2 | -| `Third` | 3 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/Slides.md b/java-client-sdk/docs/models/shared/Slides.md new file mode 100755 index 000000000..a4c2771f2 --- /dev/null +++ b/java-client-sdk/docs/models/shared/Slides.md @@ -0,0 +1,10 @@ +# Slides + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `items` | List<*String*> | :heavy_minus_sign: | N/A | +| `title` | *String* | :heavy_check_mark: | N/A | +| `type` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/Slideshow.md b/java-client-sdk/docs/models/shared/Slideshow.md new file mode 100755 index 000000000..465bebc25 --- /dev/null +++ b/java-client-sdk/docs/models/shared/Slideshow.md @@ -0,0 +1,11 @@ +# Slideshow + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | +| `author` | *String* | :heavy_check_mark: | N/A | +| `date` | *String* | :heavy_check_mark: | N/A | +| `slides` | List<[Slides](../../models/shared/Slides.md)> | :heavy_check_mark: | N/A | +| `title` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/Type.md b/java-client-sdk/docs/models/shared/Type.md new file mode 100755 index 000000000..85fb069ba --- /dev/null +++ b/java-client-sdk/docs/models/shared/Type.md @@ -0,0 +1,8 @@ +# Type + + +## Values + +| Name | Value | +| ------ | ------ | +| `OBJ1` | obj1 | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/TypedObject1.md b/java-client-sdk/docs/models/shared/TypedObject1.md index 9e74e10c0..3b09cd896 100755 --- a/java-client-sdk/docs/models/shared/TypedObject1.md +++ b/java-client-sdk/docs/models/shared/TypedObject1.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| `type` | [TypedObject1Type](../../models/shared/TypedObject1Type.md) | :heavy_check_mark: | N/A | -| `value` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | +| `type` | [Type](../../models/shared/Type.md) | :heavy_check_mark: | N/A | +| `value` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/java-client-sdk/docs/models/shared/TypedObject1Type.md b/java-client-sdk/docs/models/shared/TypedObject1Type.md deleted file mode 100755 index be9a3ff43..000000000 --- a/java-client-sdk/docs/models/shared/TypedObject1Type.md +++ /dev/null @@ -1,8 +0,0 @@ -# TypedObject1Type - - -## Values - -| Name | Value | -| ------ | ------ | -| `OBJ1` | obj1 | \ No newline at end of file diff --git a/java-client-sdk/docs/sdks/auth/README.md b/java-client-sdk/docs/sdks/auth/README.md index 19ddc3242..a0226b61f 100755 --- a/java-client-sdk/docs/sdks/auth/README.md +++ b/java-client-sdk/docs/sdks/auth/README.md @@ -1,5 +1,5 @@ # Auth -(*auth*) +(*.auth*) ## Overview diff --git a/java-client-sdk/docs/sdks/authnew/README.md b/java-client-sdk/docs/sdks/authnew/README.md index e14a2fa26..33af2c295 100755 --- a/java-client-sdk/docs/sdks/authnew/README.md +++ b/java-client-sdk/docs/sdks/authnew/README.md @@ -1,5 +1,5 @@ # AuthNew -(*authNew*) +(*.authNew*) ## Overview @@ -29,8 +29,8 @@ package hello.world; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.ApiKeyAuthGlobalNewResponse; import org.openapis.openapi.models.shared.AuthServiceRequestBody; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyBasicAuth; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth; +import org.openapis.openapi.models.shared.BasicAuth; +import org.openapis.openapi.models.shared.HeaderAuth; import org.openapis.openapi.models.shared.Security; public class Application { @@ -45,9 +45,9 @@ public class Application { .build(); org.openapis.openapi.models.shared.AuthServiceRequestBody req = new AuthServiceRequestBody(){{ - basicAuth = new AuthServiceRequestBodyBasicAuth("string", "string"); - headerAuth = new org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth[]{{ - add(new AuthServiceRequestBodyHeaderAuth("string", "string"){{ + basicAuth = new BasicAuth("string", "string"); + headerAuth = new org.openapis.openapi.models.shared.HeaderAuth[]{{ + add(new HeaderAuth("string", "string"){{ expectedValue = "string"; headerName = "string"; }}), @@ -89,8 +89,8 @@ package hello.world; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.AuthGlobalResponse; import org.openapis.openapi.models.shared.AuthServiceRequestBody; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyBasicAuth; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth; +import org.openapis.openapi.models.shared.BasicAuth; +import org.openapis.openapi.models.shared.HeaderAuth; import org.openapis.openapi.models.shared.Security; public class Application { @@ -105,9 +105,9 @@ public class Application { .build(); org.openapis.openapi.models.shared.AuthServiceRequestBody req = new AuthServiceRequestBody(){{ - basicAuth = new AuthServiceRequestBodyBasicAuth("string", "string"); - headerAuth = new org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth[]{{ - add(new AuthServiceRequestBodyHeaderAuth("string", "string"){{ + basicAuth = new BasicAuth("string", "string"); + headerAuth = new org.openapis.openapi.models.shared.HeaderAuth[]{{ + add(new HeaderAuth("string", "string"){{ expectedValue = "string"; headerName = "string"; }}), @@ -150,8 +150,8 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.BasicAuthNewResponse; import org.openapis.openapi.models.operations.BasicAuthNewSecurity; import org.openapis.openapi.models.shared.AuthServiceRequestBody; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyBasicAuth; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth; +import org.openapis.openapi.models.shared.BasicAuth; +import org.openapis.openapi.models.shared.HeaderAuth; import org.openapis.openapi.models.shared.Security; public class Application { @@ -163,9 +163,9 @@ public class Application { .build(); org.openapis.openapi.models.shared.AuthServiceRequestBody req = new AuthServiceRequestBody(){{ - basicAuth = new AuthServiceRequestBodyBasicAuth("string", "string"); - headerAuth = new org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth[]{{ - add(new AuthServiceRequestBodyHeaderAuth("string", "string"){{ + basicAuth = new BasicAuth("string", "string"); + headerAuth = new org.openapis.openapi.models.shared.HeaderAuth[]{{ + add(new HeaderAuth("string", "string"){{ expectedValue = "string"; headerName = "string"; }}), @@ -212,8 +212,8 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.MultipleMixedOptionsAuthResponse; import org.openapis.openapi.models.operations.MultipleMixedOptionsAuthSecurity; import org.openapis.openapi.models.shared.AuthServiceRequestBody; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyBasicAuth; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth; +import org.openapis.openapi.models.shared.BasicAuth; +import org.openapis.openapi.models.shared.HeaderAuth; import org.openapis.openapi.models.shared.SchemeBasicAuth; import org.openapis.openapi.models.shared.Security; @@ -226,9 +226,9 @@ public class Application { .build(); org.openapis.openapi.models.shared.AuthServiceRequestBody req = new AuthServiceRequestBody(){{ - basicAuth = new AuthServiceRequestBodyBasicAuth("string", "string"); - headerAuth = new org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth[]{{ - add(new AuthServiceRequestBodyHeaderAuth("string", "string"){{ + basicAuth = new BasicAuth("string", "string"); + headerAuth = new org.openapis.openapi.models.shared.HeaderAuth[]{{ + add(new HeaderAuth("string", "string"){{ expectedValue = "string"; headerName = "string"; }}), @@ -274,8 +274,8 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.MultipleMixedSchemeAuthResponse; import org.openapis.openapi.models.operations.MultipleMixedSchemeAuthSecurity; import org.openapis.openapi.models.shared.AuthServiceRequestBody; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyBasicAuth; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth; +import org.openapis.openapi.models.shared.BasicAuth; +import org.openapis.openapi.models.shared.HeaderAuth; import org.openapis.openapi.models.shared.SchemeBasicAuth; import org.openapis.openapi.models.shared.Security; @@ -288,9 +288,9 @@ public class Application { .build(); org.openapis.openapi.models.shared.AuthServiceRequestBody req = new AuthServiceRequestBody(){{ - basicAuth = new AuthServiceRequestBodyBasicAuth("string", "string"); - headerAuth = new org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth[]{{ - add(new AuthServiceRequestBodyHeaderAuth("string", "string"){{ + basicAuth = new BasicAuth("string", "string"); + headerAuth = new org.openapis.openapi.models.shared.HeaderAuth[]{{ + add(new HeaderAuth("string", "string"){{ expectedValue = "string"; headerName = "string"; }}), @@ -342,8 +342,8 @@ import org.openapis.openapi.models.operations.MultipleOptionsWithMixedSchemesAut import org.openapis.openapi.models.operations.MultipleOptionsWithMixedSchemesAuthSecurityOption1; import org.openapis.openapi.models.operations.MultipleOptionsWithMixedSchemesAuthSecurityOption2; import org.openapis.openapi.models.shared.AuthServiceRequestBody; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyBasicAuth; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth; +import org.openapis.openapi.models.shared.BasicAuth; +import org.openapis.openapi.models.shared.HeaderAuth; import org.openapis.openapi.models.shared.SchemeBasicAuth; import org.openapis.openapi.models.shared.Security; @@ -356,9 +356,9 @@ public class Application { .build(); org.openapis.openapi.models.shared.AuthServiceRequestBody req = new AuthServiceRequestBody(){{ - basicAuth = new AuthServiceRequestBodyBasicAuth("string", "string"); - headerAuth = new org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth[]{{ - add(new AuthServiceRequestBodyHeaderAuth("string", "string"){{ + basicAuth = new BasicAuth("string", "string"); + headerAuth = new org.openapis.openapi.models.shared.HeaderAuth[]{{ + add(new HeaderAuth("string", "string"){{ expectedValue = "string"; headerName = "string"; }}), @@ -409,8 +409,8 @@ import org.openapis.openapi.models.operations.MultipleOptionsWithSimpleSchemesAu import org.openapis.openapi.models.operations.MultipleOptionsWithSimpleSchemesAuthSecurityOption1; import org.openapis.openapi.models.operations.MultipleOptionsWithSimpleSchemesAuthSecurityOption2; import org.openapis.openapi.models.shared.AuthServiceRequestBody; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyBasicAuth; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth; +import org.openapis.openapi.models.shared.BasicAuth; +import org.openapis.openapi.models.shared.HeaderAuth; import org.openapis.openapi.models.shared.Security; public class Application { @@ -422,9 +422,9 @@ public class Application { .build(); org.openapis.openapi.models.shared.AuthServiceRequestBody req = new AuthServiceRequestBody(){{ - basicAuth = new AuthServiceRequestBodyBasicAuth("string", "string"); - headerAuth = new org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth[]{{ - add(new AuthServiceRequestBodyHeaderAuth("string", "string"){{ + basicAuth = new BasicAuth("string", "string"); + headerAuth = new org.openapis.openapi.models.shared.HeaderAuth[]{{ + add(new HeaderAuth("string", "string"){{ expectedValue = "string"; headerName = "string"; }}), @@ -473,8 +473,8 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.MultipleSimpleOptionsAuthResponse; import org.openapis.openapi.models.operations.MultipleSimpleOptionsAuthSecurity; import org.openapis.openapi.models.shared.AuthServiceRequestBody; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyBasicAuth; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth; +import org.openapis.openapi.models.shared.BasicAuth; +import org.openapis.openapi.models.shared.HeaderAuth; import org.openapis.openapi.models.shared.Security; public class Application { @@ -486,9 +486,9 @@ public class Application { .build(); org.openapis.openapi.models.shared.AuthServiceRequestBody req = new AuthServiceRequestBody(){{ - basicAuth = new AuthServiceRequestBodyBasicAuth("string", "string"); - headerAuth = new org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth[]{{ - add(new AuthServiceRequestBodyHeaderAuth("string", "string"){{ + basicAuth = new BasicAuth("string", "string"); + headerAuth = new org.openapis.openapi.models.shared.HeaderAuth[]{{ + add(new HeaderAuth("string", "string"){{ expectedValue = "string"; headerName = "string"; }}), @@ -534,8 +534,8 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.MultipleSimpleSchemeAuthResponse; import org.openapis.openapi.models.operations.MultipleSimpleSchemeAuthSecurity; import org.openapis.openapi.models.shared.AuthServiceRequestBody; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyBasicAuth; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth; +import org.openapis.openapi.models.shared.BasicAuth; +import org.openapis.openapi.models.shared.HeaderAuth; import org.openapis.openapi.models.shared.Security; public class Application { @@ -547,9 +547,9 @@ public class Application { .build(); org.openapis.openapi.models.shared.AuthServiceRequestBody req = new AuthServiceRequestBody(){{ - basicAuth = new AuthServiceRequestBodyBasicAuth("string", "string"); - headerAuth = new org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth[]{{ - add(new AuthServiceRequestBodyHeaderAuth("string", "string"){{ + basicAuth = new BasicAuth("string", "string"); + headerAuth = new org.openapis.openapi.models.shared.HeaderAuth[]{{ + add(new HeaderAuth("string", "string"){{ expectedValue = "string"; headerName = "string"; }}), @@ -596,8 +596,8 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.Oauth2AuthNewResponse; import org.openapis.openapi.models.operations.Oauth2AuthNewSecurity; import org.openapis.openapi.models.shared.AuthServiceRequestBody; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyBasicAuth; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth; +import org.openapis.openapi.models.shared.BasicAuth; +import org.openapis.openapi.models.shared.HeaderAuth; import org.openapis.openapi.models.shared.Security; public class Application { @@ -609,9 +609,9 @@ public class Application { .build(); org.openapis.openapi.models.shared.AuthServiceRequestBody req = new AuthServiceRequestBody(){{ - basicAuth = new AuthServiceRequestBodyBasicAuth("string", "string"); - headerAuth = new org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth[]{{ - add(new AuthServiceRequestBodyHeaderAuth("string", "string"){{ + basicAuth = new BasicAuth("string", "string"); + headerAuth = new org.openapis.openapi.models.shared.HeaderAuth[]{{ + add(new HeaderAuth("string", "string"){{ expectedValue = "string"; headerName = "string"; }}), @@ -657,8 +657,8 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.OpenIdConnectAuthNewResponse; import org.openapis.openapi.models.operations.OpenIdConnectAuthNewSecurity; import org.openapis.openapi.models.shared.AuthServiceRequestBody; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyBasicAuth; -import org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth; +import org.openapis.openapi.models.shared.BasicAuth; +import org.openapis.openapi.models.shared.HeaderAuth; import org.openapis.openapi.models.shared.Security; public class Application { @@ -670,9 +670,9 @@ public class Application { .build(); org.openapis.openapi.models.shared.AuthServiceRequestBody req = new AuthServiceRequestBody(){{ - basicAuth = new AuthServiceRequestBodyBasicAuth("string", "string"); - headerAuth = new org.openapis.openapi.models.shared.AuthServiceRequestBodyHeaderAuth[]{{ - add(new AuthServiceRequestBodyHeaderAuth("string", "string"){{ + basicAuth = new BasicAuth("string", "string"); + headerAuth = new org.openapis.openapi.models.shared.HeaderAuth[]{{ + add(new HeaderAuth("string", "string"){{ expectedValue = "string"; headerName = "string"; }}), diff --git a/java-client-sdk/docs/sdks/documentation/README.md b/java-client-sdk/docs/sdks/documentation/README.md index 7befe3c36..0d1e835b0 100755 --- a/java-client-sdk/docs/sdks/documentation/README.md +++ b/java-client-sdk/docs/sdks/documentation/README.md @@ -1,5 +1,5 @@ # Documentation -(*documentation*) +(*.documentation*) ## Overview diff --git a/java-client-sdk/docs/sdks/errors/README.md b/java-client-sdk/docs/sdks/errors/README.md index 5466f99a3..9cc6c59e0 100755 --- a/java-client-sdk/docs/sdks/errors/README.md +++ b/java-client-sdk/docs/sdks/errors/README.md @@ -1,5 +1,5 @@ # Errors -(*errors*) +(*.errors*) ## Overview diff --git a/java-client-sdk/docs/sdks/first/README.md b/java-client-sdk/docs/sdks/first/README.md index b1ae90c8c..8936df397 100755 --- a/java-client-sdk/docs/sdks/first/README.md +++ b/java-client-sdk/docs/sdks/first/README.md @@ -1,5 +1,5 @@ # First -(*first*) +(*.first*) ### Available Operations diff --git a/java-client-sdk/docs/sdks/flattening/README.md b/java-client-sdk/docs/sdks/flattening/README.md index dcc12cec0..e30522163 100755 --- a/java-client-sdk/docs/sdks/flattening/README.md +++ b/java-client-sdk/docs/sdks/flattening/README.md @@ -1,5 +1,5 @@ # Flattening -(*flattening*) +(*.flattening*) ## Overview @@ -26,10 +26,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.ComponentBodyAndParamConflictRequest; import org.openapis.openapi.models.operations.ComponentBodyAndParamConflictResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -42,7 +42,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - ComponentBodyAndParamConflictResponse res = sdk.flattening.componentBodyAndParamConflict(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + ComponentBodyAndParamConflictResponse res = sdk.flattening.componentBodyAndParamConflict(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -56,8 +56,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -99,10 +99,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.ComponentBodyAndParamNoConflictRequest; import org.openapis.openapi.models.operations.ComponentBodyAndParamNoConflictResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -115,7 +115,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - ComponentBodyAndParamNoConflictResponse res = sdk.flattening.componentBodyAndParamNoConflict("string", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + ComponentBodyAndParamNoConflictResponse res = sdk.flattening.componentBodyAndParamNoConflict("string", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -129,8 +129,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; diff --git a/java-client-sdk/docs/sdks/generation/README.md b/java-client-sdk/docs/sdks/generation/README.md index 8de87873f..b46f05383 100755 --- a/java-client-sdk/docs/sdks/generation/README.md +++ b/java-client-sdk/docs/sdks/generation/README.md @@ -1,5 +1,5 @@ # Generation -(*generation*) +(*.generation*) ## Overview @@ -300,8 +300,8 @@ package hello.world; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.DeprecatedFieldInSchemaPostResponse; +import org.openapis.openapi.models.shared.DeprecatedEnum; import org.openapis.openapi.models.shared.DeprecatedFieldInObject; -import org.openapis.openapi.models.shared.DeprecatedFieldInObjectDeprecatedEnum; import org.openapis.openapi.models.shared.Security; public class Application { @@ -316,7 +316,7 @@ public class Application { .build(); org.openapis.openapi.models.shared.DeprecatedFieldInObject req = new DeprecatedFieldInObject(){{ - deprecatedEnum = DeprecatedFieldInObjectDeprecatedEnum.B; + deprecatedEnum = DeprecatedEnum.B; deprecatedField = "string"; newField = "string"; }}; @@ -369,7 +369,7 @@ public class Application { DeprecatedObjectInSchemaGetResponse res = sdk.generation.deprecatedObjectInSchemaGet(); - if (res.deprecatedObjectInSchemaGet200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -598,7 +598,7 @@ public class Application { GetGlobalNameOverrideResponse res = sdk.generation.globalNameOverridden(); - if (res.getGlobalNameOverride200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -642,7 +642,7 @@ public class Application { IgnoredGenerationGetResponse res = sdk.generation.ignoredGenerationGet(); - if (res.ignoredGenerationGet200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -666,8 +666,8 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.IgnoresPostApplicationJSON; import org.openapis.openapi.models.operations.IgnoresPostRequest; +import org.openapis.openapi.models.operations.IgnoresPostRequestBody; import org.openapis.openapi.models.operations.IgnoresPostResponse; import org.openapis.openapi.models.shared.Security; @@ -682,7 +682,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - IgnoresPostResponse res = sdk.generation.ignoresPost(new IgnoresPostApplicationJSON(){{}}, "string"); + IgnoresPostResponse res = sdk.generation.ignoresPost(new IgnoresPostRequestBody(){{}}, "string"); if (res.httpBinSimpleJsonObject != null) { // handle response @@ -696,10 +696,10 @@ public class Application { ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [org.openapis.openapi.models.operations.IgnoresPostApplicationJSON](../../models/operations/IgnoresPostApplicationJSON.md) | :heavy_check_mark: | N/A | -| `testParam` | *String* | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | +| `requestBody` | [org.openapis.openapi.models.operations.IgnoresPostRequestBody](../../models/operations/IgnoresPostRequestBody.md) | :heavy_check_mark: | N/A | +| `testParam` | *String* | :heavy_minus_sign: | N/A | ### Response @@ -715,7 +715,7 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.NameOverrideGetEnumNameOverride; +import org.openapis.openapi.models.operations.EnumNameOverride; import org.openapis.openapi.models.operations.NameOverrideGetRequest; import org.openapis.openapi.models.operations.NameOverrideGetResponse; import org.openapis.openapi.models.shared.Security; @@ -731,7 +731,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - NameOverrideGetResponse res = sdk.generation.nameOverride(NameOverrideGetEnumNameOverride.VALUE3, "example"); + NameOverrideGetResponse res = sdk.generation.nameOverride(EnumNameOverride.VALUE3, "example"); if (res.overriddenResponse != null) { // handle response @@ -745,10 +745,10 @@ public class Application { ### Parameters -| Parameter | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | -| `testEnumQueryParam` | [org.openapis.openapi.models.operations.NameOverrideGetEnumNameOverride](../../models/operations/NameOverrideGetEnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | -| `testQueryParam` | *String* | :heavy_check_mark: | N/A | example | +| Parameter | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `testEnumQueryParam` | [org.openapis.openapi.models.operations.EnumNameOverride](../../models/operations/EnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | +| `testQueryParam` | *String* | :heavy_check_mark: | N/A | example | ### Response @@ -845,7 +845,7 @@ package hello.world; import java.time.LocalDate; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.TypedParameterGenerationGetObj; +import org.openapis.openapi.models.operations.Obj; import org.openapis.openapi.models.operations.TypedParameterGenerationGetRequest; import org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse; import org.openapis.openapi.models.shared.Security; @@ -861,7 +861,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - TypedParameterGenerationGetResponse res = sdk.generation.typedParameterGenerationGet(879275L, LocalDate.parse("2023-11-18"), 3346.96d, new TypedParameterGenerationGetObj(false, 8948.31d, "string"){{ + TypedParameterGenerationGetResponse res = sdk.generation.typedParameterGenerationGet(879275L, LocalDate.parse("2023-11-18"), 3346.96d, new Obj(false, 8948.31d, "string"){{ bool = false; num = 4778.06d; str = "string"; @@ -879,12 +879,12 @@ public class Application { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | -| `bigint` | *Long* | :heavy_minus_sign: | N/A | -| `date` | [LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html) | :heavy_minus_sign: | N/A | -| `decimal` | *Double* | :heavy_minus_sign: | N/A | -| `obj` | [org.openapis.openapi.models.operations.TypedParameterGenerationGetObj](../../models/operations/TypedParameterGenerationGetObj.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | +| `bigint` | *Long* | :heavy_minus_sign: | N/A | +| `date` | [LocalDate](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDate.html) | :heavy_minus_sign: | N/A | +| `decimal` | *Double* | :heavy_minus_sign: | N/A | +| `obj` | [org.openapis.openapi.models.operations.Obj](../../models/operations/Obj.md) | :heavy_minus_sign: | N/A | ### Response @@ -907,8 +907,8 @@ package hello.world; import java.time.LocalDate; import java.time.OffsetDateTime; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.UsageExamplePostEnumParameter; -import org.openapis.openapi.models.operations.UsageExamplePostOptEnumParameter; +import org.openapis.openapi.models.operations.EnumParameter; +import org.openapis.openapi.models.operations.OptEnumParameter; import org.openapis.openapi.models.operations.UsageExamplePostRequest; import org.openapis.openapi.models.operations.UsageExamplePostRequestBody; import org.openapis.openapi.models.operations.UsageExamplePostResponse; @@ -916,10 +916,10 @@ import org.openapis.openapi.models.operations.UsageExamplePostSecurity; import org.openapis.openapi.models.shared.Enum; import org.openapis.openapi.models.shared.FakerFormattedStrings; import org.openapis.openapi.models.shared.FakerStrings; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -929,7 +929,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - UsageExamplePostRequest req = new UsageExamplePostRequest(168827L, "string", false, LocalDate.parse("2022-05-05"), OffsetDateTime.parse("2023-06-11T00:39:45.412Z"), OffsetDateTime.parse("2022-07-22T13:16:48.221Z"), 2679.33d, "string", 5223.72d, UsageExamplePostEnumParameter.VALUE1, 0d, 6946.59f, 2286.22d, 102975L, 566999, "example 1"){{ + UsageExamplePostRequest req = new UsageExamplePostRequest(168827L, "string", false, LocalDate.parse("2022-05-05"), OffsetDateTime.parse("2023-06-11T00:39:45.412Z"), OffsetDateTime.parse("2022-07-22T13:16:48.221Z"), 2679.33d, "string", 5223.72d, EnumParameter.VALUE1, 0d, 6946.59f, 2286.22d, 102975L, 566999, "example 1"){{ requestBody = new UsageExamplePostRequestBody(){{ fakerFormattedStrings = new FakerFormattedStrings(){{ addressFormat = "2344 Aufderhar Corner"; @@ -1006,7 +1006,7 @@ public class Application { username = "Mable76"; uuid = "16b919d6-51cd-4e97-81e2-5221b7b6969f"; }}; - simpleObject = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + simpleObject = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -1021,7 +1021,7 @@ public class Application { bigintStrParameterOptional = "string"; decimalParameterOptional = 5944.32d; decimalStrParameterOptional = "string"; - optEnumParameter = UsageExamplePostOptEnumParameter.VALUE3; + optEnumParameter = OptEnumParameter.VALUE3; }}; UsageExamplePostResponse res = sdk.generation.usageExamplePost(req, new UsageExamplePostSecurity("YOUR_PASSWORD", "YOUR_USERNAME"){{ @@ -1029,7 +1029,7 @@ public class Application { username = "YOUR_USERNAME"; }}); - if (res.usageExamplePost200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { diff --git a/java-client-sdk/docs/sdks/globals/README.md b/java-client-sdk/docs/sdks/globals/README.md index 4d3e9fe2b..fbeca35af 100755 --- a/java-client-sdk/docs/sdks/globals/README.md +++ b/java-client-sdk/docs/sdks/globals/README.md @@ -1,5 +1,5 @@ # Globals -(*globals*) +(*.globals*) ## Overview diff --git a/java-client-sdk/docs/sdks/nest/README.md b/java-client-sdk/docs/sdks/nest/README.md index 30ece9317..fea0cec1f 100755 --- a/java-client-sdk/docs/sdks/nest/README.md +++ b/java-client-sdk/docs/sdks/nest/README.md @@ -1,5 +1,5 @@ # Nest -(*nest*) +(*.nest*) ### Available Operations diff --git a/java-client-sdk/docs/sdks/nested/README.md b/java-client-sdk/docs/sdks/nested/README.md index 51fc6ad63..9803117e1 100755 --- a/java-client-sdk/docs/sdks/nested/README.md +++ b/java-client-sdk/docs/sdks/nested/README.md @@ -1,5 +1,5 @@ # Nested -(*nested*) +(*.nested*) ### Available Operations diff --git a/java-client-sdk/docs/sdks/nestedfirst/README.md b/java-client-sdk/docs/sdks/nestedfirst/README.md deleted file mode 100755 index b99c6c76f..000000000 --- a/java-client-sdk/docs/sdks/nestedfirst/README.md +++ /dev/null @@ -1,46 +0,0 @@ -# NestedFirst -(*nested.first*) - -### Available Operations - -* [get](#get) - -## get - -### Example Usage - -```java -package hello.world; - -import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.NestedFirstGetResponse; -import org.openapis.openapi.models.shared.Security; - -public class Application { - public static void main(String[] args) { - try { - SDK sdk = SDK.builder() - .setSecurity(new Security(){{ - apiKeyAuth = "Token YOUR_API_KEY"; - }}) - .setGlobalPathParam(100L) - .setGlobalQueryParam("some example global query param") - .build(); - - NestedFirstGetResponse res = sdk.nested.first.get(); - - if (res.statusCode == 200) { - // handle response - } - } catch (Exception e) { - // handle exception - } - } -} -``` - - -### Response - -**[org.openapis.openapi.models.operations.NestedFirstGetResponse](../../models/operations/NestedFirstGetResponse.md)** - diff --git a/java-client-sdk/docs/sdks/nestedsecond/README.md b/java-client-sdk/docs/sdks/nestedsecond/README.md deleted file mode 100755 index bac81ec7c..000000000 --- a/java-client-sdk/docs/sdks/nestedsecond/README.md +++ /dev/null @@ -1,46 +0,0 @@ -# NestedSecond -(*nested.second*) - -### Available Operations - -* [get](#get) - -## get - -### Example Usage - -```java -package hello.world; - -import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.NestedSecondGetResponse; -import org.openapis.openapi.models.shared.Security; - -public class Application { - public static void main(String[] args) { - try { - SDK sdk = SDK.builder() - .setSecurity(new Security(){{ - apiKeyAuth = "Token YOUR_API_KEY"; - }}) - .setGlobalPathParam(100L) - .setGlobalQueryParam("some example global query param") - .build(); - - NestedSecondGetResponse res = sdk.nested.second.get(); - - if (res.statusCode == 200) { - // handle response - } - } catch (Exception e) { - // handle exception - } - } -} -``` - - -### Response - -**[org.openapis.openapi.models.operations.NestedSecondGetResponse](../../models/operations/NestedSecondGetResponse.md)** - diff --git a/java-client-sdk/docs/sdks/nestfirst/README.md b/java-client-sdk/docs/sdks/nestfirst/README.md deleted file mode 100755 index 97e04ab3c..000000000 --- a/java-client-sdk/docs/sdks/nestfirst/README.md +++ /dev/null @@ -1,46 +0,0 @@ -# NestFirst -(*nest.first*) - -### Available Operations - -* [get](#get) - -## get - -### Example Usage - -```java -package hello.world; - -import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.NestFirstGetResponse; -import org.openapis.openapi.models.shared.Security; - -public class Application { - public static void main(String[] args) { - try { - SDK sdk = SDK.builder() - .setSecurity(new Security(){{ - apiKeyAuth = "Token YOUR_API_KEY"; - }}) - .setGlobalPathParam(100L) - .setGlobalQueryParam("some example global query param") - .build(); - - NestFirstGetResponse res = sdk.nest.first.get(); - - if (res.statusCode == 200) { - // handle response - } - } catch (Exception e) { - // handle exception - } - } -} -``` - - -### Response - -**[org.openapis.openapi.models.operations.NestFirstGetResponse](../../models/operations/NestFirstGetResponse.md)** - diff --git a/java-client-sdk/docs/sdks/pagination/README.md b/java-client-sdk/docs/sdks/pagination/README.md index 35e680a9e..bda34d0b0 100755 --- a/java-client-sdk/docs/sdks/pagination/README.md +++ b/java-client-sdk/docs/sdks/pagination/README.md @@ -1,5 +1,5 @@ # Pagination -(*pagination*) +(*.pagination*) ## Overview diff --git a/java-client-sdk/docs/sdks/parameters/README.md b/java-client-sdk/docs/sdks/parameters/README.md index 32d3d27e8..cfa8d89d3 100755 --- a/java-client-sdk/docs/sdks/parameters/README.md +++ b/java-client-sdk/docs/sdks/parameters/README.md @@ -1,5 +1,5 @@ # Parameters -(*parameters*) +(*.parameters*) ## Overview @@ -55,8 +55,8 @@ public class Application { .build(); DeepObjectQueryParamsMapResponse res = sdk.parameters.deepObjectQueryParamsMap(new java.util.HashMap(){{ - put("test2", "value2"); put("test", "value"); + put("test2", "value2"); }}, new java.util.HashMap(){{ put("test", new String[]{{ add("test"), @@ -101,14 +101,14 @@ package hello.world; import java.time.LocalDate; import java.time.OffsetDateTime; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.DeepObjectQueryParamsObjectObjArrParam; import org.openapis.openapi.models.operations.DeepObjectQueryParamsObjectRequest; import org.openapis.openapi.models.operations.DeepObjectQueryParamsObjectResponse; +import org.openapis.openapi.models.operations.ObjArrParam; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -121,7 +121,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - DeepObjectQueryParamsObjectResponse res = sdk.parameters.deepObjectQueryParamsObject(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + DeepObjectQueryParamsObjectResponse res = sdk.parameters.deepObjectQueryParamsObject(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -135,12 +135,12 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; - }}, new DeepObjectQueryParamsObjectObjArrParam(){{ + }}, new ObjArrParam(){{ arr = new String[]{{ add("test"), add("test2"), @@ -159,10 +159,10 @@ public class Application { ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| `objParam` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `objArrParam` | [org.openapis.openapi.models.operations.DeepObjectQueryParamsObjectObjArrParam](../../models/operations/DeepObjectQueryParamsObjectObjArrParam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `objParam` | [org.openapis.openapi.models.shared.SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `objArrParam` | [org.openapis.openapi.models.operations.ObjArrParam](../../models/operations/ObjArrParam.md) | :heavy_minus_sign: | N/A | ### Response @@ -279,10 +279,10 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.FormQueryParamsCamelObjectObjParam; -import org.openapis.openapi.models.operations.FormQueryParamsCamelObjectObjParamExploded; import org.openapis.openapi.models.operations.FormQueryParamsCamelObjectRequest; import org.openapis.openapi.models.operations.FormQueryParamsCamelObjectResponse; +import org.openapis.openapi.models.operations.ObjParam; +import org.openapis.openapi.models.operations.ObjParamExploded; import org.openapis.openapi.models.shared.Security; public class Application { @@ -296,10 +296,10 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - FormQueryParamsCamelObjectResponse res = sdk.parameters.formQueryParamsCamelObject(new FormQueryParamsCamelObjectObjParamExploded(){{ + FormQueryParamsCamelObjectResponse res = sdk.parameters.formQueryParamsCamelObject(new ObjParamExploded(){{ itemCount = "10"; searchTerm = "foo"; - }}, new FormQueryParamsCamelObjectObjParam(){{ + }}, new ObjParam(){{ encodedCount = "11"; encodedTerm = "bar"; }}); @@ -316,10 +316,10 @@ public class Application { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `objParamExploded` | [org.openapis.openapi.models.operations.FormQueryParamsCamelObjectObjParamExploded](../../models/operations/FormQueryParamsCamelObjectObjParamExploded.md) | :heavy_check_mark: | N/A | -| `objParam` | [org.openapis.openapi.models.operations.FormQueryParamsCamelObjectObjParam](../../models/operations/FormQueryParamsCamelObjectObjParam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `objParamExploded` | [org.openapis.openapi.models.operations.ObjParamExploded](../../models/operations/ObjParamExploded.md) | :heavy_check_mark: | N/A | +| `objParam` | [org.openapis.openapi.models.operations.ObjParam](../../models/operations/ObjParam.md) | :heavy_minus_sign: | N/A | ### Response @@ -394,10 +394,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.FormQueryParamsObjectRequest; import org.openapis.openapi.models.operations.FormQueryParamsObjectResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -410,7 +410,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - FormQueryParamsObjectResponse res = sdk.parameters.formQueryParamsObject(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + FormQueryParamsObjectResponse res = sdk.parameters.formQueryParamsObject(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -424,12 +424,12 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; - }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -443,8 +443,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -657,8 +657,8 @@ public class Application { .build(); HeaderParamsMapResponse res = sdk.parameters.headerParamsMap(new java.util.HashMap(){{ - put("key2", "value2"); put("key1", "value1"); + put("key2", "value2"); }}, new java.util.HashMap(){{ put("test1", "val1"); put("test2", "val2"); @@ -700,10 +700,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.HeaderParamsObjectRequest; import org.openapis.openapi.models.operations.HeaderParamsObjectResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -716,7 +716,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - HeaderParamsObjectResponse res = sdk.parameters.headerParamsObject(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + HeaderParamsObjectResponse res = sdk.parameters.headerParamsObject(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -730,12 +730,12 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; - }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -749,8 +749,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -843,10 +843,10 @@ import org.openapis.openapi.models.operations.JsonQueryParamsObjectRequest; import org.openapis.openapi.models.operations.JsonQueryParamsObjectResponse; import org.openapis.openapi.models.shared.DeepObject; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -860,7 +860,7 @@ public class Application { .build(); JsonQueryParamsObjectResponse res = sdk.parameters.jsonQueryParamsObject(new DeepObject("anyOf[0]", new org.openapis.openapi.models.shared.SimpleObject[]{{ - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -874,13 +874,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}), - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -894,14 +894,14 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}), }}, true, 1L, new java.util.HashMap(){{ - put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -915,13 +915,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}); - put("key2", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key2", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -935,13 +935,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}); - }}, 1.1d, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + }}, 1.1d, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -953,7 +953,7 @@ public class Application { }}, "test"){{ any = "anyOf[0]"; arr = new org.openapis.openapi.models.shared.SimpleObject[]{{ - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -967,13 +967,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}), - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -987,8 +987,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -997,7 +997,7 @@ public class Application { bool = true; int_ = 1L; map = new java.util.HashMap(){{ - put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1011,13 +1011,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}); - put("key2", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key2", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1031,15 +1031,15 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}); }}; num = 1.1d; - obj = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + obj = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1053,14 +1053,14 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}; str = "test"; - }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1074,8 +1074,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -1215,10 +1215,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.MixedQueryParamsRequest; import org.openapis.openapi.models.operations.MixedQueryParamsResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -1231,7 +1231,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - MixedQueryParamsResponse res = sdk.parameters.mixedQueryParams(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + MixedQueryParamsResponse res = sdk.parameters.mixedQueryParams(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1245,12 +1245,12 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; - }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1264,12 +1264,12 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; - }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1283,8 +1283,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -1327,10 +1327,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.PathParameterJsonRequest; import org.openapis.openapi.models.operations.PathParameterJsonResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -1343,7 +1343,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - PathParameterJsonResponse res = sdk.parameters.pathParameterJson(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + PathParameterJsonResponse res = sdk.parameters.pathParameterJson(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1357,8 +1357,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -1399,10 +1399,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.PipeDelimitedQueryParamsArrayRequest; import org.openapis.openapi.models.operations.PipeDelimitedQueryParamsArrayResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -1422,9 +1422,9 @@ public class Application { add(1L), add(2L), }}, new java.util.HashMap(){{ - put("key2", "val2"); put("key1", "val1"); - }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key2", "val2"); + }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1438,8 +1438,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -1544,8 +1544,8 @@ public class Application { .build(); SimplePathParameterMapsResponse res = sdk.parameters.simplePathParameterMaps(new java.util.HashMap(){{ - put("test", "value"); put("test2", "value2"); + put("test", "value"); }}, new java.util.HashMap(){{ put("test", 1L); put("test2", 2L); @@ -1587,10 +1587,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.SimplePathParameterObjectsRequest; import org.openapis.openapi.models.operations.SimplePathParameterObjectsResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -1603,7 +1603,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - SimplePathParameterObjectsResponse res = sdk.parameters.simplePathParameterObjects(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + SimplePathParameterObjectsResponse res = sdk.parameters.simplePathParameterObjects(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1617,12 +1617,12 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; - }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + }}, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1636,8 +1636,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; diff --git a/java-client-sdk/docs/sdks/requestbodies/README.md b/java-client-sdk/docs/sdks/requestbodies/README.md index 784fb9a2b..de917dc19 100755 --- a/java-client-sdk/docs/sdks/requestbodies/README.md +++ b/java-client-sdk/docs/sdks/requestbodies/README.md @@ -1,5 +1,5 @@ # RequestBodies -(*requestBodies*) +(*.requestBodies*) ## Overview @@ -148,11 +148,11 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; +import org.openapis.openapi.models.operations.NullableOptionalObj; import org.openapis.openapi.models.operations.NullableRequiredEmptyObjectPostRequestBody; -import org.openapis.openapi.models.operations.NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj; -import org.openapis.openapi.models.operations.NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj; -import org.openapis.openapi.models.operations.NullableRequiredEmptyObjectPostRequestBodyRequiredObj; import org.openapis.openapi.models.operations.NullableRequiredEmptyObjectPostResponse; +import org.openapis.openapi.models.operations.NullableRequiredObj; +import org.openapis.openapi.models.operations.RequiredObj; import org.openapis.openapi.models.shared.Security; public class Application { @@ -166,13 +166,13 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - NullableRequiredEmptyObjectPostRequestBody req = new NullableRequiredEmptyObjectPostRequestBody(new NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj(), new NullableRequiredEmptyObjectPostRequestBodyRequiredObj()){{ - nullableOptionalObj = new NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj(); + NullableRequiredEmptyObjectPostRequestBody req = new NullableRequiredEmptyObjectPostRequestBody(new NullableRequiredObj(), new RequiredObj()){{ + nullableOptionalObj = new NullableOptionalObj(); }}; NullableRequiredEmptyObjectPostResponse res = sdk.requestBodies.nullableRequiredEmptyObjectPost(req); - if (res.nullableRequiredEmptyObjectPost200ApplicationJSONString != null) { + if (res.res != null) { // handle response } } catch (Exception e) { @@ -202,8 +202,8 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; +import org.openapis.openapi.models.operations.NullableRequiredEnum; import org.openapis.openapi.models.operations.NullableRequiredPropertyPostRequestBody; -import org.openapis.openapi.models.operations.NullableRequiredPropertyPostRequestBodyNullableRequiredEnum; import org.openapis.openapi.models.operations.NullableRequiredPropertyPostResponse; import org.openapis.openapi.models.shared.Security; @@ -220,13 +220,13 @@ public class Application { NullableRequiredPropertyPostRequestBody req = new NullableRequiredPropertyPostRequestBody(new Double[]{{ add(2355.17d), -}}, NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.SECOND, 50266L){{ +}}, NullableRequiredEnum.SECOND, 50266L){{ nullableOptionalInt = 282026L; }}; NullableRequiredPropertyPostResponse res = sdk.requestBodies.nullableRequiredPropertyPost(req); - if (res.nullableRequiredPropertyPost200ApplicationJSONString != null) { + if (res.res != null) { // handle response } } catch (Exception e) { @@ -282,7 +282,7 @@ optional = "string"; NullableRequiredSharedObjectPostResponse res = sdk.requestBodies.nullableRequiredSharedObjectPost(req); - if (res.nullableRequiredSharedObjectPost200ApplicationJSONString != null) { + if (res.res != null) { // handle response } } catch (Exception e) { @@ -316,10 +316,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -333,7 +333,7 @@ public class Application { .build(); org.openapis.openapi.models.. req = new org.openapis.openapi.models.shared.SimpleObject[]{{ - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -347,8 +347,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -357,7 +357,7 @@ public class Application { RequestBodyPostApplicationJsonArrayResponse res = sdk.requestBodies.requestBodyPostApplicationJsonArray(req); - if (res.simpleObjects != null) { + if (res.res != null) { // handle response } } catch (Exception e) { @@ -392,10 +392,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayCamelCaseResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32EnumVal; +import org.openapis.openapi.models.shared.IntEnumVal; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObjectCamelCase; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseInt32EnumVal; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseIntEnumVal; public class Application { public static void main(String[] args) { @@ -409,7 +409,7 @@ public class Application { .build(); org.openapis.openapi.models.. req = new org.openapis.openapi.models.shared.SimpleObjectCamelCase[]{{ - add(new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ + add(new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ anyVal = "any example"; boolOptVal = true; boolVal = true; @@ -417,9 +417,9 @@ public class Application { dateVal = LocalDate.parse("2020-01-01"); enumVal = Enum.ONE; float32Val = 2.2222222f; - int32EnumVal = SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE; + int32EnumVal = Int32EnumVal.SIXTY_NINE; int32Val = 1; - intEnumVal = SimpleObjectCamelCaseIntEnumVal.Third; + intEnumVal = IntEnumVal.Third; intOptNullVal = 999999L; intVal = 999999L; numOptNullVal = 1.1d; @@ -431,7 +431,7 @@ public class Application { RequestBodyPostApplicationJsonArrayCamelCaseResponse res = sdk.requestBodies.requestBodyPostApplicationJsonArrayCamelCase(req); - if (res.simpleObjectCamelCases != null) { + if (res.res != null) { // handle response } } catch (Exception e) { @@ -466,10 +466,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayObjResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -483,7 +483,7 @@ public class Application { .build(); org.openapis.openapi.models.. req = new org.openapis.openapi.models.shared.SimpleObject[]{{ - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -497,8 +497,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -541,10 +541,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayObjCamelCaseResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32EnumVal; +import org.openapis.openapi.models.shared.IntEnumVal; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObjectCamelCase; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseInt32EnumVal; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseIntEnumVal; public class Application { public static void main(String[] args) { @@ -558,7 +558,7 @@ public class Application { .build(); org.openapis.openapi.models.. req = new org.openapis.openapi.models.shared.SimpleObjectCamelCase[]{{ - add(new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ + add(new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ anyVal = "any example"; boolOptVal = true; boolVal = true; @@ -566,9 +566,9 @@ public class Application { dateVal = LocalDate.parse("2020-01-01"); enumVal = Enum.ONE; float32Val = 2.2222222f; - int32EnumVal = SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE; + int32EnumVal = Int32EnumVal.SIXTY_NINE; int32Val = 1; - intEnumVal = SimpleObjectCamelCaseIntEnumVal.Third; + intEnumVal = IntEnumVal.Third; intOptNullVal = 999999L; intVal = 999999L; numOptNullVal = 1.1d; @@ -614,10 +614,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfArrayResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -632,7 +632,7 @@ public class Application { org.openapis.openapi.models.. req = new org.openapis.openapi.models.shared.SimpleObject[][]{{ add(new org.openapis.openapi.models.shared.SimpleObject[]{{ - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -646,8 +646,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -657,7 +657,7 @@ public class Application { RequestBodyPostApplicationJsonArrayOfArrayResponse res = sdk.requestBodies.requestBodyPostApplicationJsonArrayOfArray(req); - if (res.arrs != null) { + if (res.res != null) { // handle response } } catch (Exception e) { @@ -692,10 +692,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32EnumVal; +import org.openapis.openapi.models.shared.IntEnumVal; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObjectCamelCase; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseInt32EnumVal; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseIntEnumVal; public class Application { public static void main(String[] args) { @@ -710,7 +710,7 @@ public class Application { org.openapis.openapi.models.. req = new org.openapis.openapi.models.shared.SimpleObjectCamelCase[][]{{ add(new org.openapis.openapi.models.shared.SimpleObjectCamelCase[]{{ - add(new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ + add(new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ anyVal = "any example"; boolOptVal = true; boolVal = true; @@ -718,9 +718,9 @@ public class Application { dateVal = LocalDate.parse("2020-01-01"); enumVal = Enum.ONE; float32Val = 2.2222222f; - int32EnumVal = SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE; + int32EnumVal = Int32EnumVal.SIXTY_NINE; int32Val = 1; - intEnumVal = SimpleObjectCamelCaseIntEnumVal.Third; + intEnumVal = IntEnumVal.Third; intOptNullVal = 999999L; intVal = 999999L; numOptNullVal = 1.1d; @@ -733,7 +733,7 @@ public class Application { RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse res = sdk.requestBodies.requestBodyPostApplicationJsonArrayOfArrayCamelCase(req); - if (res.arrs != null) { + if (res.res != null) { // handle response } } catch (Exception e) { @@ -786,7 +786,7 @@ public class Application { RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse res = sdk.requestBodies.requestBodyPostApplicationJsonArrayOfArrayOfPrimitive(req); - if (res.arrs != null) { + if (res.res != null) { // handle response } } catch (Exception e) { @@ -821,10 +821,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfMapResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -839,7 +839,7 @@ public class Application { org.openapis.openapi.models.. req = new java.util.HashMap[]{{ add(new java.util.HashMap(){{ - put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -853,8 +853,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -864,7 +864,7 @@ public class Application { RequestBodyPostApplicationJsonArrayOfMapResponse res = sdk.requestBodies.requestBodyPostApplicationJsonArrayOfMap(req); - if (res.maps != null) { + if (res.res != null) { // handle response } } catch (Exception e) { @@ -899,10 +899,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32EnumVal; +import org.openapis.openapi.models.shared.IntEnumVal; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObjectCamelCase; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseInt32EnumVal; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseIntEnumVal; public class Application { public static void main(String[] args) { @@ -917,7 +917,7 @@ public class Application { org.openapis.openapi.models.. req = new java.util.HashMap[]{{ add(new java.util.HashMap(){{ - put("key", new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ + put("key", new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ anyVal = "any example"; boolOptVal = true; boolVal = true; @@ -925,9 +925,9 @@ public class Application { dateVal = LocalDate.parse("2020-01-01"); enumVal = Enum.ONE; float32Val = 2.2222222f; - int32EnumVal = SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE; + int32EnumVal = Int32EnumVal.SIXTY_NINE; int32Val = 1; - intEnumVal = SimpleObjectCamelCaseIntEnumVal.Third; + intEnumVal = IntEnumVal.Third; intOptNullVal = 999999L; intVal = 999999L; numOptNullVal = 1.1d; @@ -940,7 +940,7 @@ public class Application { RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse res = sdk.requestBodies.requestBodyPostApplicationJsonArrayOfMapCamelCase(req); - if (res.maps != null) { + if (res.res != null) { // handle response } } catch (Exception e) { @@ -991,7 +991,7 @@ public class Application { RequestBodyPostApplicationJsonArrayOfPrimitiveResponse res = sdk.requestBodies.requestBodyPostApplicationJsonArrayOfPrimitive(req); - if (res.strings != null) { + if (res.res != null) { // handle response } } catch (Exception e) { @@ -1027,10 +1027,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonDeepResponse; import org.openapis.openapi.models.shared.DeepObject; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -1044,7 +1044,7 @@ public class Application { .build(); org.openapis.openapi.models.shared.DeepObject req = new DeepObject("anyOf[0]", new org.openapis.openapi.models.shared.SimpleObject[]{{ - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1058,13 +1058,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}), - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1078,14 +1078,14 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}), }}, true, 1L, new java.util.HashMap(){{ - put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1099,13 +1099,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}); - put("key2", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key2", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1119,13 +1119,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}); -}}, 1.1d, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ +}}, 1.1d, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -1175,10 +1175,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonDeepCamelCaseResponse; import org.openapis.openapi.models.shared.DeepObjectCamelCase; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32EnumVal; +import org.openapis.openapi.models.shared.IntEnumVal; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObjectCamelCase; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseInt32EnumVal; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseIntEnumVal; public class Application { public static void main(String[] args) { @@ -1192,7 +1192,7 @@ public class Application { .build(); org.openapis.openapi.models.shared.DeepObjectCamelCase req = new DeepObjectCamelCase("string", new org.openapis.openapi.models.shared.SimpleObjectCamelCase[]{{ - add(new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ + add(new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ anyVal = "any example"; boolOptVal = true; boolVal = true; @@ -1200,9 +1200,9 @@ public class Application { dateVal = LocalDate.parse("2020-01-01"); enumVal = Enum.ONE; float32Val = 2.2222222f; - int32EnumVal = SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE; + int32EnumVal = Int32EnumVal.SIXTY_NINE; int32Val = 1; - intEnumVal = SimpleObjectCamelCaseIntEnumVal.Third; + intEnumVal = IntEnumVal.Third; intOptNullVal = 999999L; intVal = 999999L; numOptNullVal = 1.1d; @@ -1211,7 +1211,7 @@ public class Application { strVal = "example"; }}), }}, false, 66469L, new java.util.HashMap(){{ - put("key", new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ + put("key", new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ anyVal = "any example"; boolOptVal = true; boolVal = true; @@ -1219,9 +1219,9 @@ public class Application { dateVal = LocalDate.parse("2020-01-01"); enumVal = Enum.ONE; float32Val = 2.2222222f; - int32EnumVal = SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE; + int32EnumVal = Int32EnumVal.SIXTY_NINE; int32Val = 1; - intEnumVal = SimpleObjectCamelCaseIntEnumVal.Third; + intEnumVal = IntEnumVal.Third; intOptNullVal = 999999L; intVal = 999999L; numOptNullVal = 1.1d; @@ -1229,7 +1229,7 @@ public class Application { strOptVal = "optional example"; strVal = "example"; }}); -}}, 9629.09d, new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ +}}, 9629.09d, new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ bigintStrVal = "string"; bigintVal = 206440L; boolOptVal = true; @@ -1277,10 +1277,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonMapResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -1294,7 +1294,7 @@ public class Application { .build(); org.openapis.openapi.models.. req = new java.util.HashMap(){{ - put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1308,8 +1308,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -1353,10 +1353,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonMapCamelCaseResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32EnumVal; +import org.openapis.openapi.models.shared.IntEnumVal; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObjectCamelCase; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseInt32EnumVal; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseIntEnumVal; public class Application { public static void main(String[] args) { @@ -1370,7 +1370,7 @@ public class Application { .build(); org.openapis.openapi.models.. req = new java.util.HashMap(){{ - put("key", new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ + put("key", new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ anyVal = "any example"; boolOptVal = true; boolVal = true; @@ -1378,9 +1378,9 @@ public class Application { dateVal = LocalDate.parse("2020-01-01"); enumVal = Enum.ONE; float32Val = 2.2222222f; - int32EnumVal = SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE; + int32EnumVal = Int32EnumVal.SIXTY_NINE; int32Val = 1; - intEnumVal = SimpleObjectCamelCaseIntEnumVal.Third; + intEnumVal = IntEnumVal.Third; intOptNullVal = 999999L; intVal = 999999L; numOptNullVal = 1.1d; @@ -1427,10 +1427,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonMapObjResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -1444,7 +1444,7 @@ public class Application { .build(); org.openapis.openapi.models.. req = new java.util.HashMap(){{ - put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1458,8 +1458,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -1502,10 +1502,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonMapObjCamelCaseResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32EnumVal; +import org.openapis.openapi.models.shared.IntEnumVal; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObjectCamelCase; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseInt32EnumVal; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseIntEnumVal; public class Application { public static void main(String[] args) { @@ -1519,7 +1519,7 @@ public class Application { .build(); org.openapis.openapi.models.. req = new java.util.HashMap(){{ - put("key", new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ + put("key", new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ anyVal = "any example"; boolOptVal = true; boolVal = true; @@ -1527,9 +1527,9 @@ public class Application { dateVal = LocalDate.parse("2020-01-01"); enumVal = Enum.ONE; float32Val = 2.2222222f; - int32EnumVal = SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE; + int32EnumVal = Int32EnumVal.SIXTY_NINE; int32Val = 1; - intEnumVal = SimpleObjectCamelCaseIntEnumVal.Third; + intEnumVal = IntEnumVal.Third; intOptNullVal = 999999L; intVal = 999999L; numOptNullVal = 1.1d; @@ -1575,10 +1575,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonMapOfArrayResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -1593,7 +1593,7 @@ public class Application { org.openapis.openapi.models.. req = new java.util.HashMap(){{ put("key", new org.openapis.openapi.models.shared.SimpleObject[]{{ - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1607,8 +1607,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -1653,10 +1653,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32EnumVal; +import org.openapis.openapi.models.shared.IntEnumVal; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObjectCamelCase; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseInt32EnumVal; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseIntEnumVal; public class Application { public static void main(String[] args) { @@ -1671,7 +1671,7 @@ public class Application { org.openapis.openapi.models.. req = new java.util.HashMap(){{ put("key", new org.openapis.openapi.models.shared.SimpleObjectCamelCase[]{{ - add(new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ + add(new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ anyVal = "any example"; boolOptVal = true; boolVal = true; @@ -1679,9 +1679,9 @@ public class Application { dateVal = LocalDate.parse("2020-01-01"); enumVal = Enum.ONE; float32Val = 2.2222222f; - int32EnumVal = SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE; + int32EnumVal = Int32EnumVal.SIXTY_NINE; int32Val = 1; - intEnumVal = SimpleObjectCamelCaseIntEnumVal.Third; + intEnumVal = IntEnumVal.Third; intOptNullVal = 999999L; intVal = 999999L; numOptNullVal = 1.1d; @@ -1729,10 +1729,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonMapOfMapResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -1747,7 +1747,7 @@ public class Application { org.openapis.openapi.models.. req = new java.util.HashMap>(){{ put("key", new java.util.HashMap(){{ - put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -1761,8 +1761,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -1807,10 +1807,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonMapOfMapCamelCaseResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32EnumVal; +import org.openapis.openapi.models.shared.IntEnumVal; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObjectCamelCase; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseInt32EnumVal; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseIntEnumVal; public class Application { public static void main(String[] args) { @@ -1825,7 +1825,7 @@ public class Application { org.openapis.openapi.models.. req = new java.util.HashMap>(){{ put("key", new java.util.HashMap(){{ - put("key", new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ + put("key", new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ anyVal = "any example"; boolOptVal = true; boolVal = true; @@ -1833,9 +1833,9 @@ public class Application { dateVal = LocalDate.parse("2020-01-01"); enumVal = Enum.ONE; float32Val = 2.2222222f; - int32EnumVal = SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE; + int32EnumVal = Int32EnumVal.SIXTY_NINE; int32Val = 1; - intEnumVal = SimpleObjectCamelCaseIntEnumVal.Third; + intEnumVal = IntEnumVal.Third; intOptNullVal = 999999L; intVal = 999999L; numOptNullVal = 1.1d; @@ -1987,10 +1987,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonMultipleJsonFilteredResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -2003,7 +2003,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.shared.SimpleObject req = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + org.openapis.openapi.models.shared.SimpleObject req = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -2050,10 +2050,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonSimpleResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -2066,7 +2066,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.shared.SimpleObject req = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + org.openapis.openapi.models.shared.SimpleObject req = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -2113,10 +2113,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonSimpleCamelCaseResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32EnumVal; +import org.openapis.openapi.models.shared.IntEnumVal; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObjectCamelCase; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseInt32EnumVal; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseIntEnumVal; public class Application { public static void main(String[] args) { @@ -2129,7 +2129,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.shared.SimpleObjectCamelCase req = new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, 1, SimpleObjectCamelCaseIntEnumVal.Third, 999999L, 1.1d, "example"){{ + org.openapis.openapi.models.shared.SimpleObjectCamelCase req = new SimpleObjectCamelCase("any example", true, OffsetDateTime.parse("2020-01-01T00:00:00Z"), LocalDate.parse("2020-01-01"), Enum.ONE, 2.2222222f, Int32EnumVal.SIXTY_NINE, 1, IntEnumVal.Third, 999999L, 1.1d, "example"){{ bigintStrVal = "string"; bigintVal = 281697L; boolOptVal = true; @@ -2191,7 +2191,7 @@ public class Application { RequestBodyPostComplexNumberTypesResponse res = sdk.requestBodies.requestBodyPostComplexNumberTypes(req); - if (res.requestBodyPostComplexNumberTypes200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -2224,11 +2224,11 @@ import java.time.LocalDate; import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostDefaultsAndConstsResponse; +import org.openapis.openapi.models.shared.ConstEnumInt; +import org.openapis.openapi.models.shared.ConstEnumStr; +import org.openapis.openapi.models.shared.DefaultEnumInt; +import org.openapis.openapi.models.shared.DefaultEnumStr; import org.openapis.openapi.models.shared.DefaultsAndConsts; -import org.openapis.openapi.models.shared.DefaultsAndConstsConstEnumInt; -import org.openapis.openapi.models.shared.DefaultsAndConstsConstEnumStr; -import org.openapis.openapi.models.shared.DefaultsAndConstsDefaultEnumInt; -import org.openapis.openapi.models.shared.DefaultsAndConstsDefaultEnumStr; import org.openapis.openapi.models.shared.Security; public class Application { @@ -2242,7 +2242,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.shared.DefaultsAndConsts req = new DefaultsAndConsts(559205L, "string", false, LocalDate.parse("2021-09-13"), OffsetDateTime.parse("2022-12-15T04:16:08.794Z"), 9160.69d, "string", DefaultsAndConstsConstEnumInt.ONE, DefaultsAndConstsConstEnumStr.THREE, 299545L, 4612.63d, "string", "string", "string"){{ + org.openapis.openapi.models.shared.DefaultsAndConsts req = new DefaultsAndConsts(559205L, "string", false, LocalDate.parse("2021-09-13"), OffsetDateTime.parse("2022-12-15T04:16:08.794Z"), 9160.69d, "string", ConstEnumInt.ONE, ConstEnumStr.THREE, 299545L, 4612.63d, "string", "string", "string"){{ defaultBigInt = 450379L; defaultBigIntStr = "string"; defaultBool = false; @@ -2250,8 +2250,8 @@ public class Application { defaultDateTime = OffsetDateTime.parse("2021-10-01T11:08:55.738Z"); defaultDecimal = 4585.94d; defaultDecimalStr = "string"; - defaultEnumInt = DefaultsAndConstsDefaultEnumInt.TWO; - defaultEnumStr = DefaultsAndConstsDefaultEnumStr.ONE; + defaultEnumInt = DefaultEnumInt.TWO; + defaultEnumStr = DefaultEnumStr.ONE; defaultInt = 788517L; defaultNum = 639.73d; defaultStr = "string"; @@ -2261,7 +2261,7 @@ public class Application { RequestBodyPostDefaultsAndConstsResponse res = sdk.requestBodies.requestBodyPostDefaultsAndConsts(req); - if (res.requestBodyPostDefaultsAndConsts200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -2291,9 +2291,9 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; +import org.openapis.openapi.models.operations.Empty; +import org.openapis.openapi.models.operations.EmptyWithEmptyProperties; import org.openapis.openapi.models.operations.RequestBodyPostEmptyObjectRequestBody; -import org.openapis.openapi.models.operations.RequestBodyPostEmptyObjectRequestBodyEmpty; -import org.openapis.openapi.models.operations.RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties; import org.openapis.openapi.models.operations.RequestBodyPostEmptyObjectResponse; import org.openapis.openapi.models.shared.Security; @@ -2309,13 +2309,13 @@ public class Application { .build(); RequestBodyPostEmptyObjectRequestBody req = new RequestBodyPostEmptyObjectRequestBody(){{ - empty = new RequestBodyPostEmptyObjectRequestBodyEmpty(); - emptyWithEmptyProperties = new RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties(); + empty = new Empty(); + emptyWithEmptyProperties = new EmptyWithEmptyProperties(); }}; RequestBodyPostEmptyObjectResponse res = sdk.requestBodies.requestBodyPostEmptyObject(req); - if (res.requestBodyPostEmptyObject200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -2350,10 +2350,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostFormDeepResponse; import org.openapis.openapi.models.shared.DeepObject; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -2367,7 +2367,7 @@ public class Application { .build(); org.openapis.openapi.models.shared.DeepObject req = new DeepObject("anyOf[0]", new org.openapis.openapi.models.shared.SimpleObject[]{{ - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -2381,13 +2381,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}), - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -2401,14 +2401,14 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}), }}, true, 1L, new java.util.HashMap(){{ - put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -2422,13 +2422,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}); - put("key2", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key2", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -2442,13 +2442,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}); -}}, 1.1d, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ +}}, 1.1d, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -2547,10 +2547,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostFormSimpleResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -2563,7 +2563,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.shared.SimpleObject req = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + org.openapis.openapi.models.shared.SimpleObject req = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -2626,7 +2626,7 @@ public class Application { RequestBodyPostJsonDataTypesArrayBigIntResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesArrayBigInt(req); - if (res.requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -2676,7 +2676,7 @@ public class Application { RequestBodyPostJsonDataTypesArrayDateResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesArrayDate(req); - if (res.requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -2726,7 +2726,7 @@ public class Application { RequestBodyPostJsonDataTypesArrayDecimalStrResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesArrayDecimalStr(req); - if (res.requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -2774,7 +2774,7 @@ public class Application { RequestBodyPostJsonDataTypesBigIntResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesBigInt(req); - if (res.requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -2822,7 +2822,7 @@ public class Application { RequestBodyPostJsonDataTypesBigIntStrResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesBigIntStr(req); - if (res.requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -2870,7 +2870,7 @@ public class Application { RequestBodyPostJsonDataTypesBooleanResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesBoolean(req); - if (res.requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -2918,7 +2918,7 @@ public class Application { RequestBodyPostJsonDataTypesDateResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesDate(req); - if (res.requestBodyPostJSONDataTypesDate200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -2966,7 +2966,7 @@ public class Application { RequestBodyPostJsonDataTypesDateTimeResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesDateTime(req); - if (res.requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3014,7 +3014,7 @@ public class Application { RequestBodyPostJsonDataTypesDecimalResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesDecimal(req); - if (res.requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3062,7 +3062,7 @@ public class Application { RequestBodyPostJsonDataTypesDecimalStrResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesDecimalStr(req); - if (res.requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3110,7 +3110,7 @@ public class Application { RequestBodyPostJsonDataTypesFloat32Response res = sdk.requestBodies.requestBodyPostJsonDataTypesFloat32(req); - if (res.requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3158,7 +3158,7 @@ public class Application { RequestBodyPostJsonDataTypesInt32Response res = sdk.requestBodies.requestBodyPostJsonDataTypesInt32(req); - if (res.requestBodyPostJSONDataTypesInt32200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3206,7 +3206,7 @@ public class Application { RequestBodyPostJsonDataTypesIntegerResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesInteger(req); - if (res.requestBodyPostJSONDataTypesInteger200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3256,7 +3256,7 @@ public class Application { RequestBodyPostJsonDataTypesMapBigIntStrResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesMapBigIntStr(req); - if (res.requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3306,7 +3306,7 @@ public class Application { RequestBodyPostJsonDataTypesMapDateTimeResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesMapDateTime(req); - if (res.requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3356,7 +3356,7 @@ public class Application { RequestBodyPostJsonDataTypesMapDecimalResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesMapDecimal(req); - if (res.requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3404,7 +3404,7 @@ public class Application { RequestBodyPostJsonDataTypesNumberResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesNumber(req); - if (res.requestBodyPostJSONDataTypesNumber200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3452,7 +3452,7 @@ public class Application { RequestBodyPostJsonDataTypesStringResponse res = sdk.requestBodies.requestBodyPostJsonDataTypesString(req); - if (res.requestBodyPostJSONDataTypesString200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3486,10 +3486,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesComponentFilteredResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -3502,7 +3502,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.shared.SimpleObject req = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + org.openapis.openapi.models.shared.SimpleObject req = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -3545,7 +3545,7 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON; +import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody; import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesInlineFilteredResponse; import org.openapis.openapi.models.shared.Security; @@ -3560,7 +3560,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON req = new RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON(false, 3558.41d, "string"); + RequestBodyPostMultipleContentTypesInlineFilteredRequestBody req = new RequestBodyPostMultipleContentTypesInlineFilteredRequestBody(false, 3558.41d, "string"); RequestBodyPostMultipleContentTypesInlineFilteredResponse res = sdk.requestBodies.requestBodyPostMultipleContentTypesInlineFiltered(req); @@ -3576,9 +3576,9 @@ public class Application { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `request` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3594,8 +3594,8 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded; import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamFormRequest; +import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody; import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamFormResponse; import org.openapis.openapi.models.shared.Security; @@ -3610,7 +3610,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - RequestBodyPostMultipleContentTypesSplitParamFormResponse res = sdk.requestBodies.requestBodyPostMultipleContentTypesSplitParamForm(new RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded(false, 1802.67d, "string"){{ + RequestBodyPostMultipleContentTypesSplitParamFormResponse res = sdk.requestBodies.requestBodyPostMultipleContentTypesSplitParamForm(new RequestBodyPostMultipleContentTypesSplitParamFormRequestBody(false, 1802.67d, "string"){{ bool3 = false; num3 = 8693.24d; str3 = "string"; @@ -3628,10 +3628,10 @@ public class Application { ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md) | :heavy_check_mark: | N/A | -| `paramStr` | *String* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *String* | :heavy_check_mark: | N/A | ### Response @@ -3647,8 +3647,8 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON; import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequest; +import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody; import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamJsonResponse; import org.openapis.openapi.models.shared.Security; @@ -3663,7 +3663,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - RequestBodyPostMultipleContentTypesSplitParamJsonResponse res = sdk.requestBodies.requestBodyPostMultipleContentTypesSplitParamJson(new RequestBodyPostMultipleContentTypesSplitParamApplicationJSON(false, 5784.1d, "string"){{ + RequestBodyPostMultipleContentTypesSplitParamJsonResponse res = sdk.requestBodies.requestBodyPostMultipleContentTypesSplitParamJson(new RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody(false, 5784.1d, "string"){{ bool = false; num = 9771.91d; str = "string"; @@ -3683,7 +3683,7 @@ public class Application { | Parameter | Type | Required | Description | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md) | :heavy_check_mark: | N/A | +| `requestBody` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md) | :heavy_check_mark: | N/A | | `paramStr` | *String* | :heavy_check_mark: | N/A | @@ -3700,8 +3700,8 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData; import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequest; +import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody; import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartResponse; import org.openapis.openapi.models.shared.Security; @@ -3716,7 +3716,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - RequestBodyPostMultipleContentTypesSplitParamMultipartResponse res = sdk.requestBodies.requestBodyPostMultipleContentTypesSplitParamMultipart(new RequestBodyPostMultipleContentTypesSplitParamMultipartFormData(false, 6115.78d, "string"){{ + RequestBodyPostMultipleContentTypesSplitParamMultipartResponse res = sdk.requestBodies.requestBodyPostMultipleContentTypesSplitParamMultipart(new RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody(false, 6115.78d, "string"){{ bool2 = false; num2 = 7000.76d; str2 = "string"; @@ -3734,10 +3734,10 @@ public class Application { ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md) | :heavy_check_mark: | N/A | -| `paramStr` | *String* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *String* | :heavy_check_mark: | N/A | ### Response @@ -3753,7 +3753,7 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded; +import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody; import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitFormResponse; import org.openapis.openapi.models.shared.Security; @@ -3768,7 +3768,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded req = new RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded(false, 7842.07d, "string"); + RequestBodyPostMultipleContentTypesSplitFormRequestBody req = new RequestBodyPostMultipleContentTypesSplitFormRequestBody(false, 7842.07d, "string"); RequestBodyPostMultipleContentTypesSplitFormResponse res = sdk.requestBodies.requestBodyPostMultipleContentTypesSplitForm(req); @@ -3784,9 +3784,9 @@ public class Application { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded](../../models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `request` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3802,7 +3802,7 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON; +import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitJsonRequestBody; import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitJsonResponse; import org.openapis.openapi.models.shared.Security; @@ -3817,7 +3817,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - RequestBodyPostMultipleContentTypesSplitApplicationJSON req = new RequestBodyPostMultipleContentTypesSplitApplicationJSON(false, 2445.56d, "string"); + RequestBodyPostMultipleContentTypesSplitJsonRequestBody req = new RequestBodyPostMultipleContentTypesSplitJsonRequestBody(false, 2445.56d, "string"); RequestBodyPostMultipleContentTypesSplitJsonResponse res = sdk.requestBodies.requestBodyPostMultipleContentTypesSplitJson(req); @@ -3835,7 +3835,7 @@ public class Application { | Parameter | Type | Required | Description | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `request` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md) | :heavy_check_mark: | The request object to use for the request. | +| `request` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitJsonRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3851,7 +3851,7 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; -import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData; +import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody; import org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitMultipartResponse; import org.openapis.openapi.models.shared.Security; @@ -3866,7 +3866,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - RequestBodyPostMultipleContentTypesSplitMultipartFormData req = new RequestBodyPostMultipleContentTypesSplitMultipartFormData(false, 2079.2d, "string"); + RequestBodyPostMultipleContentTypesSplitMultipartRequestBody req = new RequestBodyPostMultipleContentTypesSplitMultipartRequestBody(false, 2079.2d, "string"); RequestBodyPostMultipleContentTypesSplitMultipartResponse res = sdk.requestBodies.requestBodyPostMultipleContentTypesSplitMultipart(req); @@ -3882,9 +3882,9 @@ public class Application { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData](../../models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request` | [org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3918,7 +3918,7 @@ public class Application { RequestBodyPostNotNullableNotRequiredStringBodyResponse res = sdk.requestBodies.requestBodyPostNotNullableNotRequiredStringBody(req); - if (res.requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -3968,7 +3968,7 @@ public class Application { RequestBodyPostNullArrayResponse res = sdk.requestBodies.requestBodyPostNullArray(req); - if (res.requestBodyPostNullArray200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -4018,7 +4018,7 @@ public class Application { RequestBodyPostNullDictionaryResponse res = sdk.requestBodies.requestBodyPostNullDictionary(req); - if (res.requestBodyPostNullDictionary200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -4066,7 +4066,7 @@ public class Application { RequestBodyPostNullableNotRequiredStringBodyResponse res = sdk.requestBodies.requestBodyPostNullableNotRequiredStringBody(req); - if (res.requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -4114,7 +4114,7 @@ public class Application { RequestBodyPostNullableRequiredStringBodyResponse res = sdk.requestBodies.requestBodyPostNullableRequiredStringBody(req); - if (res.requestBodyPostNullableRequiredStringBody200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -4158,7 +4158,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.. req = "9sS}}O%}aJ".getBytes(); + org.openapis.openapi.models.. req = "0x5DbFFb1Ff9".getBytes(); RequestBodyPutBytesResponse res = sdk.requestBodies.requestBodyPutBytes(req); @@ -4207,7 +4207,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - RequestBodyPutBytesWithParamsResponse res = sdk.requestBodies.requestBodyPutBytesWithParams("o%jIWe4_P6".getBytes(), "string"); + RequestBodyPutBytesWithParamsResponse res = sdk.requestBodies.requestBodyPutBytesWithParams("0xC1B9cA4eb5".getBytes(), "string"); if (res.res != null) { // handle response @@ -4245,10 +4245,10 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPutMultipartDeepResponse; import org.openapis.openapi.models.shared.DeepObject; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -4262,7 +4262,7 @@ public class Application { .build(); org.openapis.openapi.models.shared.DeepObject req = new DeepObject("anyOf[0]", new org.openapis.openapi.models.shared.SimpleObject[]{{ - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -4276,13 +4276,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}), - add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + add(new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -4296,14 +4296,14 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}), }}, true, 1L, new java.util.HashMap(){{ - put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -4317,13 +4317,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}); - put("key2", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key2", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -4337,13 +4337,13 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; }}); -}}, 1.1d, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ +}}, 1.1d, new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -4388,8 +4388,8 @@ strOpt = "testOptional"; package hello.world; import org.openapis.openapi.SDK; +import org.openapis.openapi.models.operations.DifferentFileName; import org.openapis.openapi.models.operations.RequestBodyPutMultipartDifferentFileNameRequestBody; -import org.openapis.openapi.models.operations.RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName; import org.openapis.openapi.models.operations.RequestBodyPutMultipartDifferentFileNameResponse; import org.openapis.openapi.models.shared.Security; @@ -4405,7 +4405,7 @@ public class Application { .build(); RequestBodyPutMultipartDifferentFileNameRequestBody req = new RequestBodyPutMultipartDifferentFileNameRequestBody(){{ - differentFileName = new RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName("Y}'H[5/Z[,".getBytes(), "string"); + differentFileName = new DifferentFileName("0xdF19d43dd2".getBytes(), "string"); }}; RequestBodyPutMultipartDifferentFileNameResponse res = sdk.requestBodies.requestBodyPutMultipartDifferentFileName(req); @@ -4440,8 +4440,8 @@ public class Application { package hello.world; import org.openapis.openapi.SDK; +import org.openapis.openapi.models.operations.File; import org.openapis.openapi.models.operations.RequestBodyPutMultipartFileRequestBody; -import org.openapis.openapi.models.operations.RequestBodyPutMultipartFileRequestBodyFile; import org.openapis.openapi.models.operations.RequestBodyPutMultipartFileResponse; import org.openapis.openapi.models.shared.Security; @@ -4457,7 +4457,7 @@ public class Application { .build(); RequestBodyPutMultipartFileRequestBody req = new RequestBodyPutMultipartFileRequestBody(){{ - file = new RequestBodyPutMultipartFileRequestBodyFile("OJa,v`.FW-".getBytes(), "string"); + file = new File("0xa9f2Ee38c3".getBytes(), "string"); }}; RequestBodyPutMultipartFileResponse res = sdk.requestBodies.requestBodyPutMultipartFile(req); @@ -4496,10 +4496,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyPutMultipartSimpleResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -4512,7 +4512,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.shared.SimpleObject req = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + org.openapis.openapi.models.shared.SimpleObject req = new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ bigint = 8821239038968084L; bigintStr = "9223372036854775808"; boolOpt = true; @@ -4652,7 +4652,7 @@ package hello.world; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.RequestBodyReadAndWriteResponse; -import org.openapis.openapi.models.shared.ReadWriteObjectInput; +import org.openapis.openapi.models.shared.ReadWriteObject; import org.openapis.openapi.models.shared.Security; public class Application { @@ -4666,7 +4666,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.shared.ReadWriteObjectInput req = new ReadWriteObjectInput(797612L, 89374L, 459345L); + org.openapis.openapi.models.shared.ReadWriteObject req = new ReadWriteObject(797612L, 89374L, 459345L); RequestBodyReadAndWriteResponse res = sdk.requestBodies.requestBodyReadAndWrite(req); @@ -4682,10 +4682,10 @@ public class Application { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | -| `request` | [org.openapis.openapi.models.shared.ReadWriteObjectInput](../../models/shared/ReadWriteObjectInput.md) | :heavy_check_mark: | The request object to use for the request. | -| `serverURL` | *String* | :heavy_minus_sign: | An optional server URL to use. | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `request` | [org.openapis.openapi.models.shared.ReadWriteObject](../../models/shared/ReadWriteObject.md) | :heavy_check_mark: | The request object to use for the request. | +| `serverURL` | *String* | :heavy_minus_sign: | An optional server URL to use. | ### Response diff --git a/java-client-sdk/docs/sdks/resource/README.md b/java-client-sdk/docs/sdks/resource/README.md index 000ddb5b1..6dbb0c6bd 100755 --- a/java-client-sdk/docs/sdks/resource/README.md +++ b/java-client-sdk/docs/sdks/resource/README.md @@ -1,5 +1,5 @@ # Resource -(*resource*) +(*.resource*) ### Available Operations @@ -17,8 +17,8 @@ package hello.world; import org.openapis.openapi.SDK; +import org.openapis.openapi.models.operations.CreateFileFile; import org.openapis.openapi.models.operations.CreateFileRequestBody; -import org.openapis.openapi.models.operations.CreateFileRequestBodyFile; import org.openapis.openapi.models.operations.CreateFileResponse; import org.openapis.openapi.models.shared.Security; @@ -34,7 +34,7 @@ public class Application { .build(); CreateFileRequestBody req = new CreateFileRequestBody(){{ - file = new CreateFileRequestBodyFile("`'$Z`(L/RH".getBytes(), "string"); + file = new CreateFileFile("0xf10df1a3b9".getBytes(), "string"); }}; CreateFileResponse res = sdk.resource.createFile(req); @@ -71,10 +71,10 @@ package hello.world; import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.CreateResourceResponse; +import org.openapis.openapi.models.shared.Chocolates; +import org.openapis.openapi.models.shared.EnumNumber; +import org.openapis.openapi.models.shared.EnumStr; import org.openapis.openapi.models.shared.ExampleResource; -import org.openapis.openapi.models.shared.ExampleResourceChocolates; -import org.openapis.openapi.models.shared.ExampleResourceEnumNumber; -import org.openapis.openapi.models.shared.ExampleResourceEnumStr; import org.openapis.openapi.models.shared.Security; public class Application { @@ -88,8 +88,8 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.shared.ExampleResource req = new ExampleResource(new org.openapis.openapi.models.shared.ExampleResourceChocolates[]{{ - add(new ExampleResourceChocolates("string"){{ + org.openapis.openapi.models.shared.ExampleResource req = new ExampleResource(new org.openapis.openapi.models.shared.Chocolates[]{{ + add(new Chocolates("string"){{ description = "Digitized optimal archive"; }}), }}, "string", "string", "string"){{ @@ -100,8 +100,8 @@ public class Application { add("string"), }}; createdAt = OffsetDateTime.parse("2021-10-25T14:40:21.269Z"); - enumNumber = ExampleResourceEnumNumber.THREE; - enumStr = ExampleResourceEnumStr.TWO; + enumNumber = EnumNumber.THREE; + enumStr = EnumStr.TWO; mapOfInteger = new java.util.HashMap(){{ put("key", 125983L); }}; diff --git a/java-client-sdk/docs/sdks/responsebodies/README.md b/java-client-sdk/docs/sdks/responsebodies/README.md index 0156dd2da..b4948c900 100755 --- a/java-client-sdk/docs/sdks/responsebodies/README.md +++ b/java-client-sdk/docs/sdks/responsebodies/README.md @@ -1,5 +1,5 @@ # ResponseBodies -(*responseBodies*) +(*.responseBodies*) ## Overview @@ -47,7 +47,7 @@ public class Application { ResponseBodyAdditionalPropertiesComplexNumbersPostResponse res = sdk.responseBodies.responseBodyAdditionalPropertiesComplexNumbersPost(req); - if (res.responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -97,7 +97,7 @@ public class Application { ResponseBodyAdditionalPropertiesDatePostResponse res = sdk.responseBodies.responseBodyAdditionalPropertiesDatePost(req); - if (res.responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -131,10 +131,10 @@ import java.time.OffsetDateTime; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesObjectPostResponse; import org.openapis.openapi.models.shared.Enum; +import org.openapis.openapi.models.shared.Int32Enum; +import org.openapis.openapi.models.shared.IntEnum; import org.openapis.openapi.models.shared.Security; import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Application { public static void main(String[] args) { @@ -148,7 +148,7 @@ public class Application { .build(); org.openapis.openapi.models.. req = new java.util.HashMap(){{ - put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1d, "test"){{ + put("key", new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, 1L, 1, Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1d, "test"){{ any = "any"; bigint = 8821239038968084L; bigintStr = "9223372036854775808"; @@ -162,8 +162,8 @@ public class Application { float32 = 1.1f; int_ = 1L; int32 = 1; - int32Enum = SimpleObjectInt32Enum.FIFTY_FIVE; - intEnum = SimpleObjectIntEnum.Second; + int32Enum = Int32Enum.FIFTY_FIVE; + intEnum = IntEnum.Second; num = 1.1d; str = "test"; strOpt = "testOptional"; @@ -172,7 +172,7 @@ public class Application { ResponseBodyAdditionalPropertiesObjectPostResponse res = sdk.responseBodies.responseBodyAdditionalPropertiesObjectPost(req); - if (res.responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -222,7 +222,7 @@ public class Application { ResponseBodyAdditionalPropertiesPostResponse res = sdk.responseBodies.responseBodyAdditionalPropertiesPost(req); - if (res.responseBodyAdditionalPropertiesPost200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -539,7 +539,7 @@ public class Application { ResponseBodyZeroValueComplexTypePtrsPostResponse res = sdk.responseBodies.responseBodyZeroValueComplexTypePtrsPost(req); - if (res.responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { diff --git a/java-client-sdk/docs/sdks/retries/README.md b/java-client-sdk/docs/sdks/retries/README.md index 9ceea9374..d71a1561b 100755 --- a/java-client-sdk/docs/sdks/retries/README.md +++ b/java-client-sdk/docs/sdks/retries/README.md @@ -1,5 +1,5 @@ # Retries -(*retries*) +(*.retries*) ## Overview diff --git a/java-client-sdk/docs/sdks/sdk/README.md b/java-client-sdk/docs/sdks/sdk/README.md index 0a9a49bc0..d1d4bc3bd 100755 --- a/java-client-sdk/docs/sdks/sdk/README.md +++ b/java-client-sdk/docs/sdks/sdk/README.md @@ -37,9 +37,9 @@ public class Application { org.openapis.openapi.models.. req = "string"; - PutAnythingIgnoredGenerationResponse res = sdk.sdk.putAnythingIgnoredGeneration(req); + PutAnythingIgnoredGenerationResponse res = sdk.putAnythingIgnoredGeneration(req); - if (res.putAnythingIgnoredGeneration200ApplicationJSONObject != null) { + if (res.object != null) { // handle response } } catch (Exception e) { @@ -83,7 +83,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - ResponseBodyJsonGetResponse res = sdk.sdk.responseBodyJsonGet(); + ResponseBodyJsonGetResponse res = sdk.responseBodyJsonGet(); if (res.httpBinSimpleJsonObject != null) { // handle response diff --git a/java-client-sdk/docs/sdks/sdkfirst/README.md b/java-client-sdk/docs/sdks/sdkfirst/README.md new file mode 100755 index 000000000..b88b34932 --- /dev/null +++ b/java-client-sdk/docs/sdks/sdkfirst/README.md @@ -0,0 +1,46 @@ +# SDKFirst +(*.nest.first*) + +### Available Operations + +* [get](#get) + +## get + +### Example Usage + +```java +package hello.world; + +import org.openapis.openapi.SDK; +import org.openapis.openapi.models.operations.NestFirstGetResponse; +import org.openapis.openapi.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + SDK sdk = SDK.builder() + .setSecurity(new Security(){{ + apiKeyAuth = "Token YOUR_API_KEY"; + }}) + .setGlobalPathParam(100L) + .setGlobalQueryParam("some example global query param") + .build(); + + NestFirstGetResponse res = sdk.nest.first.get(); + + if (res.statusCode == 200) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + + +### Response + +**[org.openapis.openapi.models.operations.NestFirstGetResponse](../../models/operations/NestFirstGetResponse.md)** + diff --git a/java-client-sdk/docs/sdks/sdknestedfirst/README.md b/java-client-sdk/docs/sdks/sdknestedfirst/README.md new file mode 100755 index 000000000..879839147 --- /dev/null +++ b/java-client-sdk/docs/sdks/sdknestedfirst/README.md @@ -0,0 +1,46 @@ +# SDKNestedFirst +(*.nested.first*) + +### Available Operations + +* [get](#get) + +## get + +### Example Usage + +```java +package hello.world; + +import org.openapis.openapi.SDK; +import org.openapis.openapi.models.operations.NestedFirstGetResponse; +import org.openapis.openapi.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + SDK sdk = SDK.builder() + .setSecurity(new Security(){{ + apiKeyAuth = "Token YOUR_API_KEY"; + }}) + .setGlobalPathParam(100L) + .setGlobalQueryParam("some example global query param") + .build(); + + NestedFirstGetResponse res = sdk.nested.first.get(); + + if (res.statusCode == 200) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + + +### Response + +**[org.openapis.openapi.models.operations.NestedFirstGetResponse](../../models/operations/NestedFirstGetResponse.md)** + diff --git a/java-client-sdk/docs/sdks/sdksecond/README.md b/java-client-sdk/docs/sdks/sdksecond/README.md new file mode 100755 index 000000000..7dc2a3dc5 --- /dev/null +++ b/java-client-sdk/docs/sdks/sdksecond/README.md @@ -0,0 +1,46 @@ +# SDKSecond +(*.nested.second*) + +### Available Operations + +* [get](#get) + +## get + +### Example Usage + +```java +package hello.world; + +import org.openapis.openapi.SDK; +import org.openapis.openapi.models.operations.NestedSecondGetResponse; +import org.openapis.openapi.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + SDK sdk = SDK.builder() + .setSecurity(new Security(){{ + apiKeyAuth = "Token YOUR_API_KEY"; + }}) + .setGlobalPathParam(100L) + .setGlobalQueryParam("some example global query param") + .build(); + + NestedSecondGetResponse res = sdk.nested.second.get(); + + if (res.statusCode == 200) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + + +### Response + +**[org.openapis.openapi.models.operations.NestedSecondGetResponse](../../models/operations/NestedSecondGetResponse.md)** + diff --git a/java-client-sdk/docs/sdks/second/README.md b/java-client-sdk/docs/sdks/second/README.md index 531304836..6180445cb 100755 --- a/java-client-sdk/docs/sdks/second/README.md +++ b/java-client-sdk/docs/sdks/second/README.md @@ -1,5 +1,5 @@ # Second -(*second*) +(*.second*) ### Available Operations diff --git a/java-client-sdk/docs/sdks/servers/README.md b/java-client-sdk/docs/sdks/servers/README.md index 63f25c937..6b9b5ba83 100755 --- a/java-client-sdk/docs/sdks/servers/README.md +++ b/java-client-sdk/docs/sdks/servers/README.md @@ -1,5 +1,5 @@ # Servers -(*servers*) +(*.servers*) ## Overview diff --git a/java-client-sdk/docs/sdks/telemetry/README.md b/java-client-sdk/docs/sdks/telemetry/README.md index 2942bdedc..7232f28b6 100755 --- a/java-client-sdk/docs/sdks/telemetry/README.md +++ b/java-client-sdk/docs/sdks/telemetry/README.md @@ -1,5 +1,5 @@ # Telemetry -(*telemetry*) +(*.telemetry*) ## Overview diff --git a/java-client-sdk/docs/sdks/unions/README.md b/java-client-sdk/docs/sdks/unions/README.md index be39503cc..96d494c43 100755 --- a/java-client-sdk/docs/sdks/unions/README.md +++ b/java-client-sdk/docs/sdks/unions/README.md @@ -1,5 +1,5 @@ # Unions -(*unions*) +(*.unions*) ## Overview @@ -130,8 +130,8 @@ import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.NullableOneOfRefInObjectPostResponse; import org.openapis.openapi.models.shared.NullableOneOfRefInObject; import org.openapis.openapi.models.shared.Security; +import org.openapis.openapi.models.shared.Type; import org.openapis.openapi.models.shared.TypedObject1; -import org.openapis.openapi.models.shared.TypedObject1Type; public class Application { public static void main(String[] args) { @@ -144,7 +144,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.shared.NullableOneOfRefInObject req = new NullableOneOfRefInObject(new TypedObject1(TypedObject1Type.OBJ1, "string"), "string", "string"); + org.openapis.openapi.models.shared.NullableOneOfRefInObject req = new NullableOneOfRefInObject(new TypedObject1(Type.OBJ1, "string"), "string", "string"); NullableOneOfRefInObjectPostResponse res = sdk.unions.nullableOneOfRefInObjectPost(req); @@ -277,8 +277,8 @@ package hello.world; import org.openapis.openapi.SDK; import org.openapis.openapi.models.operations.NullableTypedObjectPostResponse; import org.openapis.openapi.models.shared.Security; +import org.openapis.openapi.models.shared.Type; import org.openapis.openapi.models.shared.TypedObject1; -import org.openapis.openapi.models.shared.TypedObject1Type; public class Application { public static void main(String[] args) { @@ -291,7 +291,7 @@ public class Application { .setGlobalQueryParam("some example global query param") .build(); - org.openapis.openapi.models.shared.TypedObject1 req = new TypedObject1(TypedObject1Type.OBJ1, "string"); + org.openapis.openapi.models.shared.TypedObject1 req = new TypedObject1(Type.OBJ1, "string"); NullableTypedObjectPostResponse res = sdk.unions.nullableTypedObjectPost(req); diff --git a/java-client-sdk/files.gen b/java-client-sdk/files.gen index 65e9ae6ba..9d3e860a3 100755 --- a/java-client-sdk/files.gen +++ b/java-client-sdk/files.gen @@ -1,27 +1,27 @@ lib/src/main/java/org/openapis/openapi/SDKConfiguration.java -lib/src/main/java/org/openapis/openapi/Auth.java -lib/src/main/java/org/openapis/openapi/AuthNew.java -lib/src/main/java/org/openapis/openapi/Documentation.java +lib/src/main/java/org/openapis/openapi/Generation.java lib/src/main/java/org/openapis/openapi/Errors.java -lib/src/main/java/org/openapis/openapi/First.java +lib/src/main/java/org/openapis/openapi/Unions.java lib/src/main/java/org/openapis/openapi/Flattening.java -lib/src/main/java/org/openapis/openapi/Generation.java lib/src/main/java/org/openapis/openapi/Globals.java -lib/src/main/java/org/openapis/openapi/NestFirst.java +lib/src/main/java/org/openapis/openapi/Parameters.java +lib/src/main/java/org/openapis/openapi/SDKFirst.java lib/src/main/java/org/openapis/openapi/Nest.java -lib/src/main/java/org/openapis/openapi/NestedFirst.java -lib/src/main/java/org/openapis/openapi/NestedSecond.java +lib/src/main/java/org/openapis/openapi/SDKNestedFirst.java +lib/src/main/java/org/openapis/openapi/SDKSecond.java lib/src/main/java/org/openapis/openapi/Nested.java -lib/src/main/java/org/openapis/openapi/Pagination.java -lib/src/main/java/org/openapis/openapi/Parameters.java lib/src/main/java/org/openapis/openapi/RequestBodies.java -lib/src/main/java/org/openapis/openapi/Resource.java lib/src/main/java/org/openapis/openapi/ResponseBodies.java -lib/src/main/java/org/openapis/openapi/Retries.java -lib/src/main/java/org/openapis/openapi/Second.java lib/src/main/java/org/openapis/openapi/Servers.java lib/src/main/java/org/openapis/openapi/Telemetry.java -lib/src/main/java/org/openapis/openapi/Unions.java +lib/src/main/java/org/openapis/openapi/AuthNew.java +lib/src/main/java/org/openapis/openapi/Auth.java +lib/src/main/java/org/openapis/openapi/Documentation.java +lib/src/main/java/org/openapis/openapi/Resource.java +lib/src/main/java/org/openapis/openapi/First.java +lib/src/main/java/org/openapis/openapi/Second.java +lib/src/main/java/org/openapis/openapi/Pagination.java +lib/src/main/java/org/openapis/openapi/Retries.java lib/src/main/java/org/openapis/openapi/SDK.java .gitattributes gradle/wrapper/gradle-wrapper.jar @@ -73,83 +73,7 @@ lib/src/test/java/org/openapis/openapisimple_security/AuthTests.java ../../testprojects/java/gradlew.bat ../../testprojects/java/gradlew ../../testprojects/java/settings.gradle -lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthToken.java -lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthGlobalToken.java -lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthGlobalResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthUser.java -lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/BearerAuthSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/BearerAuthToken.java -lib/src/main/java/org/openapis/openapi/models/operations/BearerAuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/GlobalBearerAuthToken.java -lib/src/main/java/org/openapis/openapi/models/operations/GlobalBearerAuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/Oauth2AuthSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/Oauth2AuthToken.java -lib/src/main/java/org/openapis/openapi/models/operations/Oauth2AuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/Oauth2OverrideSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/Oauth2OverrideRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/Oauth2OverrideToken.java -lib/src/main/java/org/openapis/openapi/models/operations/Oauth2OverrideResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/OpenIdConnectAuthSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/OpenIdConnectAuthToken.java -lib/src/main/java/org/openapis/openapi/models/operations/OpenIdConnectAuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthGlobalNewResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/AuthGlobalResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthNewSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthNewResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleMixedOptionsAuthSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleMixedOptionsAuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleMixedSchemeAuthSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleMixedSchemeAuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithMixedSchemesAuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithSimpleSchemesAuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleSimpleOptionsAuthSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleSimpleOptionsAuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleSimpleSchemeAuthSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/MultipleSimpleSchemeAuthResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/Oauth2AuthNewSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/Oauth2AuthNewResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/OpenIdConnectAuthNewSecurity.java -lib/src/main/java/org/openapis/openapi/models/operations/OpenIdConnectAuthNewResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/GetDocumentationPerLanguageRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/GetDocumentationPerLanguageResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ConnectionErrorGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/StatusGetErrorRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/StatusGetErrorResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.java -lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/GroupFirstGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamConflictRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamConflictRes.java -lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamConflictResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamNoConflictRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamNoConflictRes.java -lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamNoConflictResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ConflictingParamsRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/ConflictingParamsRes.java -lib/src/main/java/org/openapis/openapi/models/operations/ConflictingParamsResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictRequestBody.java -lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictResJson.java -lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictRes.java -lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictRequestBody.java -lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictResJson.java -lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictRes.java -lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/TypeFromAnchor.java +lib/src/main/java/org/openapis/openapi/models/operations/AnchorTypesGetTypeFromAnchor.java lib/src/main/java/org/openapis/openapi/models/operations/AnchorTypesGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/ArrayCircularReferenceGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/CircularReferenceGetResponse.java @@ -160,7 +84,7 @@ lib/src/main/java/org/openapis/openapi/models/operations/DateTimeParamWithDefaul lib/src/main/java/org/openapis/openapi/models/operations/DecimalParamWithDefaultRequest.java lib/src/main/java/org/openapis/openapi/models/operations/DecimalParamWithDefaultResponse.java lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedFieldInSchemaPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGetResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedOperationNoCommentsGetRequest.java lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedOperationNoCommentsGetResponse.java @@ -168,123 +92,158 @@ lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedOperationWith lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedOperationWithCommentsGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/EmptyObjectGetRequest.java lib/src/main/java/org/openapis/openapi/models/operations/EmptyObjectGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.java +lib/src/main/java/org/openapis/openapi/models/operations/EmptyResponseObjectWithCommentGetResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/EmptyResponseObjectWithCommentGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverride200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverrideResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverrideResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGet200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGetResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostRequest.java lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetEnumNameOverride.java +lib/src/main/java/org/openapis/openapi/models/operations/EnumNameOverride.java lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/OverriddenResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetOverriddenResponse.java lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/ObjectCircularReferenceGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/OneOfCircularReferenceGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/TypedParameterGenerationGetObj.java +lib/src/main/java/org/openapis/openapi/models/operations/Obj.java lib/src/main/java/org/openapis/openapi/models/operations/TypedParameterGenerationGetRequest.java lib/src/main/java/org/openapis/openapi/models/operations/TypedParameterGenerationGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostSecurity.java lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostRequestBody.java -lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostEnumParameter.java -lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostOptEnumParameter.java +lib/src/main/java/org/openapis/openapi/models/operations/EnumParameter.java +lib/src/main/java/org/openapis/openapi/models/operations/OptEnumParameter.java lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePost200ApplicationJSONJSON.java -lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePost200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostJson.java +lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/ConnectionErrorGetResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/StatusGetErrorRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/StatusGetErrorResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsResponseBody.java +lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/FlattenedTypedObjectPostRes.java +lib/src/main/java/org/openapis/openapi/models/operations/FlattenedTypedObjectPostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/MixedTypeOneOfPostRes.java +lib/src/main/java/org/openapis/openapi/models/operations/MixedTypeOneOfPostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfRefInObjectPostRes.java +lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfRefInObjectPostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfSchemaPostRes.java +lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfSchemaPostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfTypeInObjectPostRes.java +lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfTypeInObjectPostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/NullableTypedObjectPostRes.java +lib/src/main/java/org/openapis/openapi/models/operations/NullableTypedObjectPostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/PrimitiveTypeOneOfPostRes.java +lib/src/main/java/org/openapis/openapi/models/operations/PrimitiveTypeOneOfPostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/StronglyTypedOneOfPostRes.java +lib/src/main/java/org/openapis/openapi/models/operations/StronglyTypedOneOfPostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/TypedObjectNullableOneOfPostRes.java +lib/src/main/java/org/openapis/openapi/models/operations/TypedObjectNullableOneOfPostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/TypedObjectOneOfPostRes.java +lib/src/main/java/org/openapis/openapi/models/operations/TypedObjectOneOfPostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/UnionBigIntDecimalRes.java +lib/src/main/java/org/openapis/openapi/models/operations/UnionBigIntDecimalResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/UnionDateNullRes.java +lib/src/main/java/org/openapis/openapi/models/operations/UnionDateNullResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/UnionDateTimeBigIntRes.java +lib/src/main/java/org/openapis/openapi/models/operations/UnionDateTimeBigIntResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/UnionDateTimeNullRes.java +lib/src/main/java/org/openapis/openapi/models/operations/UnionDateTimeNullResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/WeaklyTypedOneOfPostRes.java +lib/src/main/java/org/openapis/openapi/models/operations/WeaklyTypedOneOfPostResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamConflictRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamConflictRes.java +lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamConflictResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamNoConflictRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamNoConflictRes.java +lib/src/main/java/org/openapis/openapi/models/operations/ComponentBodyAndParamNoConflictResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/ConflictingParamsRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/ConflictingParamsRes.java +lib/src/main/java/org/openapis/openapi/models/operations/ConflictingParamsResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictRequestBody.java +lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/Json.java +lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictRes.java +lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictRequestBody.java +lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictJson.java +lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictRes.java +lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictResponse.java lib/src/main/java/org/openapis/openapi/models/operations/GlobalPathParameterGetRequest.java lib/src/main/java/org/openapis/openapi/models/operations/GlobalPathParameterGetRes.java lib/src/main/java/org/openapis/openapi/models/operations/GlobalPathParameterGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/GlobalsQueryParameterGetRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/GlobalsQueryParameterGetResArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/Args.java lib/src/main/java/org/openapis/openapi/models/operations/GlobalsQueryParameterGetRes.java lib/src/main/java/org/openapis/openapi/models/operations/GlobalsQueryParameterGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/NestFirstGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/NestedFirstGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/NestedSecondGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/NestedGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorBodyRequestBody.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorBodyRes.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorBodyResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorParamsRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorParamsRes.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorParamsResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetOffsetBodyRes.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetOffsetBodyResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetOffsetParamsRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetOffsetParamsRes.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetOffsetParamsResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetPageBodyRes.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetPageBodyResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetPageParamsRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetPageParamsRes.java -lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetPageParamsResponse.java lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsMapRequest.java lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsMapRes.java lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsMapResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectObjArrParam.java +lib/src/main/java/org/openapis/openapi/models/operations/ObjArrParam.java lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectResArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectArgs.java lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectRes.java lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectResponse.java lib/src/main/java/org/openapis/openapi/models/operations/DuplicateParamRequest.java lib/src/main/java/org/openapis/openapi/models/operations/DuplicateParamDuplicateParamResponse.java lib/src/main/java/org/openapis/openapi/models/operations/DuplicateParamResponse.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayResArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayArgs.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayRes.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectObjParam.java -lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectObjParamExploded.java +lib/src/main/java/org/openapis/openapi/models/operations/ObjParam.java +lib/src/main/java/org/openapis/openapi/models/operations/ObjParamExploded.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectResArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectArgs.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectRes.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectResponse.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsMapRequest.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsMapRes.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsMapResponse.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectResArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectArgs.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectRes.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectResponse.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveResArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveArgs.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveRes.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveResponse.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectResArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectArgs.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectRes.java lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectResponse.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsArrayRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsArrayResHeaders.java +lib/src/main/java/org/openapis/openapi/models/operations/Headers.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsArrayRes.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsArrayResponse.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapResHeaders.java +lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapHeaders.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapRes.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapResponse.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectResHeaders.java +lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectHeaders.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectRes.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectResponse.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveResHeaders.java +lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveHeaders.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveRes.java lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveResponse.java lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectResArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectArgs.java lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectRes.java lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectResponse.java lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseResArgs.java -lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseResHeaders.java +lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseHeaders.java lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseRes.java lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseResponse.java lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesResArgs.java -lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesResHeaders.java +lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesHeaders.java lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesRes.java lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesResponse.java lib/src/main/java/org/openapis/openapi/models/operations/MixedQueryParamsRequest.java @@ -294,7 +253,7 @@ lib/src/main/java/org/openapis/openapi/models/operations/PathParameterJsonReques lib/src/main/java/org/openapis/openapi/models/operations/PathParameterJsonRes.java lib/src/main/java/org/openapis/openapi/models/operations/PathParameterJsonResponse.java lib/src/main/java/org/openapis/openapi/models/operations/PipeDelimitedQueryParamsArrayRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/PipeDelimitedQueryParamsArrayResArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/PipeDelimitedQueryParamsArrayArgs.java lib/src/main/java/org/openapis/openapi/models/operations/PipeDelimitedQueryParamsArrayRes.java lib/src/main/java/org/openapis/openapi/models/operations/PipeDelimitedQueryParamsArrayResponse.java lib/src/main/java/org/openapis/openapi/models/operations/SimplePathParameterArraysRequest.java @@ -309,14 +268,18 @@ lib/src/main/java/org/openapis/openapi/models/operations/SimplePathParameterObje lib/src/main/java/org/openapis/openapi/models/operations/SimplePathParameterPrimitivesRequest.java lib/src/main/java/org/openapis/openapi/models/operations/SimplePathParameterPrimitivesRes.java lib/src/main/java/org/openapis/openapi/models/operations/SimplePathParameterPrimitivesResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/NestFirstGetResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/NestedFirstGetResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/NestedSecondGetResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/NestedGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/NullableObjectPostRes.java lib/src/main/java/org/openapis/openapi/models/operations/NullableObjectPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.java +lib/src/main/java/org/openapis/openapi/models/operations/NullableOptionalObj.java +lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredObj.java +lib/src/main/java/org/openapis/openapi/models/operations/RequiredObj.java lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.java +lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEnum.java lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredPropertyPostRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredPropertyPostResponse.java lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredSharedObjectPostRequestBody.java @@ -352,123 +315,123 @@ lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicat lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostComplexNumberTypesRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostComplexNumberTypesResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostComplexNumberTypesResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostDefaultsAndConstsResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.java +lib/src/main/java/org/openapis/openapi/models/operations/Empty.java +lib/src/main/java/org/openapis/openapi/models/operations/EmptyWithEmptyProperties.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObjectRequestBody.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObjectEmpty.java +lib/src/main/java/org/openapis/openapi/models/operations/EmptyRespWithEmptyProperies.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObjectResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObjectResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormDeepResForm.java +lib/src/main/java/org/openapis/openapi/models/operations/Form.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormDeepRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormDeepResponse.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormMapPrimitiveRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormMapPrimitiveResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleResForm.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleResHeaders.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleForm.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleHeaders.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesDateResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesFloat32Response.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesInt32Response.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesNumberResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesStringResponse.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitFormRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitFormResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullArray200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullArrayResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullArrayResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullDictionaryResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullDictionaryResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutBytesRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutBytesResponse.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutBytesWithParamsRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutBytesWithParamsResArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutBytesWithParamsArgs.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutBytesWithParamsRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutBytesWithParamsResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartDeepResForm.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartDeepForm.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartDeepRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartDeepResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.java +lib/src/main/java/org/openapis/openapi/models/operations/DifferentFileName.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartDifferentFileNameRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartDifferentFileNameResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartFileRequestBodyFile.java +lib/src/main/java/org/openapis/openapi/models/operations/File.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartFileRequestBody.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartFileRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartFileResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartSimpleResForm.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartSimpleResHeaders.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartSimpleForm.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartSimpleHeaders.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartSimpleRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutMultipartSimpleResponse.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutStringRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutStringResponse.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutStringWithParamsRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutStringWithParamsResArgs.java +lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutStringWithParamsArgs.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutStringWithParamsRes.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPutStringWithParamsResponse.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyReadAndWriteResponse.java @@ -478,23 +441,13 @@ lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyReadWriteOnl lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyWriteOnlyResponse.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyWriteOnlyOutputResponse.java lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyWriteOnlyUnionResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/CreateFileRequestBodyFile.java -lib/src/main/java/org/openapis/openapi/models/operations/CreateFileRequestBody.java -lib/src/main/java/org/openapis/openapi/models/operations/CreateFileResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/CreateResourceResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/DeleteResourceRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/DeleteResourceResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/GetResourceRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/GetResourceResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/UpdateResourceRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/UpdateResourceResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPostResponse.java lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyBytesGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyEmptyWithHeadersRequest.java @@ -503,12 +456,8 @@ lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyOptionalGet lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyReadOnlyResponse.java lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyStringGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyXmlGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.java +lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.java lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/RetriesGetRequest.java -lib/src/main/java/org/openapis/openapi/models/operations/RetriesGetRetries.java -lib/src/main/java/org/openapis/openapi/models/operations/RetriesGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/GroupSecondGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/SelectGlobalServerResponse.java lib/src/main/java/org/openapis/openapi/models/operations/SelectServerWithIDResponse.java lib/src/main/java/org/openapis/openapi/models/operations/ServerWithProtocolTemplateResponse.java @@ -520,103 +469,154 @@ lib/src/main/java/org/openapis/openapi/models/operations/TelemetrySpeakeasyUserA lib/src/main/java/org/openapis/openapi/models/operations/TelemetrySpeakeasyUserAgentGetResponse.java lib/src/main/java/org/openapis/openapi/models/operations/TelemetryUserAgentGetRes.java lib/src/main/java/org/openapis/openapi/models/operations/TelemetryUserAgentGetResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/FlattenedTypedObjectPostRes.java -lib/src/main/java/org/openapis/openapi/models/operations/FlattenedTypedObjectPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/MixedTypeOneOfPostRes.java -lib/src/main/java/org/openapis/openapi/models/operations/MixedTypeOneOfPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfRefInObjectPostRes.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfRefInObjectPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfSchemaPostRes.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfSchemaPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfTypeInObjectPostRes.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableOneOfTypeInObjectPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableTypedObjectPostRes.java -lib/src/main/java/org/openapis/openapi/models/operations/NullableTypedObjectPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/PrimitiveTypeOneOfPostRes.java -lib/src/main/java/org/openapis/openapi/models/operations/PrimitiveTypeOneOfPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/StronglyTypedOneOfPostRes.java -lib/src/main/java/org/openapis/openapi/models/operations/StronglyTypedOneOfPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/TypedObjectNullableOneOfPostRes.java -lib/src/main/java/org/openapis/openapi/models/operations/TypedObjectNullableOneOfPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/TypedObjectOneOfPostRes.java -lib/src/main/java/org/openapis/openapi/models/operations/TypedObjectOneOfPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/UnionBigIntDecimalRes.java -lib/src/main/java/org/openapis/openapi/models/operations/UnionBigIntDecimalResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/UnionDateNullRes.java -lib/src/main/java/org/openapis/openapi/models/operations/UnionDateNullResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/UnionDateTimeBigIntRes.java -lib/src/main/java/org/openapis/openapi/models/operations/UnionDateTimeBigIntResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/UnionDateTimeNullRes.java -lib/src/main/java/org/openapis/openapi/models/operations/UnionDateTimeNullResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/WeaklyTypedOneOfPostRes.java -lib/src/main/java/org/openapis/openapi/models/operations/WeaklyTypedOneOfPostResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.java -lib/src/main/java/org/openapis/openapi/models/operations/PutAnythingIgnoredGenerationResponse.java -lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyJsonGetResponse.java -lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBodyBasicAuth.java -lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBodyHeaderAuth.java -lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBody.java -lib/src/main/java/org/openapis/openapi/models/shared/SchemeBasicAuth.java -lib/src/main/java/org/openapis/openapi/models/shared/Security.java -lib/src/main/java/org/openapis/openapi/models/shared/ErrorType.java -lib/src/main/java/org/openapis/openapi/models/shared/Error.java -lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectInt32Enum.java -lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectIntEnum.java -lib/src/main/java/org/openapis/openapi/models/shared/SimpleObject.java -lib/src/main/java/org/openapis/openapi/models/shared/Enum.java -lib/src/main/java/org/openapis/openapi/models/shared/ArrayCircularReferenceObject.java -lib/src/main/java/org/openapis/openapi/models/shared/ValidCircularReferenceObject.java -lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedFieldInObjectDeprecatedEnum.java -lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedFieldInObject.java -lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedObject.java -lib/src/main/java/org/openapis/openapi/models/shared/EmptyObjectParam.java -lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.java -lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObjectSlideshow.java -lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObject.java -lib/src/main/java/org/openapis/openapi/models/shared/ObjectCircularReferenceObject.java -lib/src/main/java/org/openapis/openapi/models/shared/OneOfCircularReferenceObject.java -lib/src/main/java/org/openapis/openapi/models/shared/FakerStrings.java -lib/src/main/java/org/openapis/openapi/models/shared/FakerFormattedStrings.java -lib/src/main/java/org/openapis/openapi/models/shared/LimitOffsetConfig.java -lib/src/main/java/org/openapis/openapi/models/shared/RefQueryParamObjExploded.java -lib/src/main/java/org/openapis/openapi/models/shared/RefQueryParamObj.java -lib/src/main/java/org/openapis/openapi/models/shared/DeepObject.java -lib/src/main/java/org/openapis/openapi/models/shared/NullableObject.java -lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCaseInt32EnumVal.java -lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCaseIntEnumVal.java -lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCase.java -lib/src/main/java/org/openapis/openapi/models/shared/ArrObjValue.java -lib/src/main/java/org/openapis/openapi/models/shared/ArrObjValueCamelCase.java -lib/src/main/java/org/openapis/openapi/models/shared/DeepObjectCamelCase.java -lib/src/main/java/org/openapis/openapi/models/shared/MapObjValue.java -lib/src/main/java/org/openapis/openapi/models/shared/MapObjValueCamelCase.java -lib/src/main/java/org/openapis/openapi/models/shared/ComplexNumberTypes.java -lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsOutputConstEnumInt.java -lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsOutputConstEnumStr.java -lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsOutputDefaultEnumInt.java -lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsOutputDefaultEnumStr.java -lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsOutput.java -lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsConstEnumInt.java -lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsConstEnumStr.java -lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsDefaultEnumInt.java -lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsDefaultEnumStr.java -lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConsts.java -lib/src/main/java/org/openapis/openapi/models/shared/ReadWriteObjectInput.java -lib/src/main/java/org/openapis/openapi/models/shared/ReadWriteObjectOutput.java -lib/src/main/java/org/openapis/openapi/models/shared/ReadOnlyObject.java -lib/src/main/java/org/openapis/openapi/models/shared/ReadOnlyObjectInput.java -lib/src/main/java/org/openapis/openapi/models/shared/WriteOnlyObject.java -lib/src/main/java/org/openapis/openapi/models/shared/WriteOnlyObjectOutput.java -lib/src/main/java/org/openapis/openapi/models/shared/FileResource.java -lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceChocolates.java -lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceEnumNumber.java -lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceEnumStr.java -lib/src/main/java/org/openapis/openapi/models/shared/ExampleResource.java -lib/src/main/java/org/openapis/openapi/models/shared/TypedObject1Type.java -lib/src/main/java/org/openapis/openapi/models/shared/TypedObject1.java -lib/src/main/java/org/openapis/openapi/models/shared/ObjWithZeroValueComplexTypePtrs.java +lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthGlobalNewResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/AuthGlobalResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthNewSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthNewResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleMixedOptionsAuthSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleMixedOptionsAuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleMixedSchemeAuthSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleMixedSchemeAuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithMixedSchemesAuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleOptionsWithSimpleSchemesAuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleSimpleOptionsAuthSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleSimpleOptionsAuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleSimpleSchemeAuthSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/MultipleSimpleSchemeAuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/Oauth2AuthNewSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/Oauth2AuthNewResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/OpenIdConnectAuthNewSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/OpenIdConnectAuthNewResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthToken.java +lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthGlobalToken.java +lib/src/main/java/org/openapis/openapi/models/operations/ApiKeyAuthGlobalResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthUser.java +lib/src/main/java/org/openapis/openapi/models/operations/BasicAuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/BearerAuthSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/BearerAuthToken.java +lib/src/main/java/org/openapis/openapi/models/operations/BearerAuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/GlobalBearerAuthToken.java +lib/src/main/java/org/openapis/openapi/models/operations/GlobalBearerAuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/Oauth2AuthSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/Oauth2AuthToken.java +lib/src/main/java/org/openapis/openapi/models/operations/Oauth2AuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/Oauth2OverrideSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/Oauth2OverrideRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/Oauth2OverrideToken.java +lib/src/main/java/org/openapis/openapi/models/operations/Oauth2OverrideResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/OpenIdConnectAuthSecurity.java +lib/src/main/java/org/openapis/openapi/models/operations/OpenIdConnectAuthToken.java +lib/src/main/java/org/openapis/openapi/models/operations/OpenIdConnectAuthResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/GetDocumentationPerLanguageRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/GetDocumentationPerLanguageResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/CreateFileFile.java +lib/src/main/java/org/openapis/openapi/models/operations/CreateFileRequestBody.java +lib/src/main/java/org/openapis/openapi/models/operations/CreateFileResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/CreateResourceResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/DeleteResourceRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/DeleteResourceResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/GetResourceRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/GetResourceResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/UpdateResourceRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/UpdateResourceResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/GroupFirstGetResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/GroupSecondGetResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorBodyRequestBody.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorBodyRes.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorBodyResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorParamsRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorParamsRes.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationCursorParamsResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetOffsetBodyRes.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetOffsetBodyResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetOffsetParamsRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetOffsetParamsRes.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetOffsetParamsResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetPageBodyRes.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetPageBodyResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetPageParamsRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetPageParamsRes.java +lib/src/main/java/org/openapis/openapi/models/operations/PaginationLimitOffsetPageParamsResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/RetriesGetRequest.java +lib/src/main/java/org/openapis/openapi/models/operations/RetriesGetRetries.java +lib/src/main/java/org/openapis/openapi/models/operations/RetriesGetResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/PutAnythingIgnoredGenerationResponseBody.java +lib/src/main/java/org/openapis/openapi/models/operations/PutAnythingIgnoredGenerationResponse.java +lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyJsonGetResponse.java +lib/src/main/java/org/openapis/openapi/models/shared/Int32Enum.java +lib/src/main/java/org/openapis/openapi/models/shared/IntEnum.java +lib/src/main/java/org/openapis/openapi/models/shared/SimpleObject.java +lib/src/main/java/org/openapis/openapi/models/shared/Enum.java +lib/src/main/java/org/openapis/openapi/models/shared/ArrayCircularReferenceObject.java +lib/src/main/java/org/openapis/openapi/models/shared/ValidCircularReferenceObject.java +lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedEnum.java +lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedFieldInObject.java +lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedObject.java +lib/src/main/java/org/openapis/openapi/models/shared/EmptyObjectParam.java +lib/src/main/java/org/openapis/openapi/models/shared/Slides.java +lib/src/main/java/org/openapis/openapi/models/shared/Slideshow.java +lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObject.java +lib/src/main/java/org/openapis/openapi/models/shared/ObjectCircularReferenceObject.java +lib/src/main/java/org/openapis/openapi/models/shared/OneOfCircularReferenceObject.java +lib/src/main/java/org/openapis/openapi/models/shared/FakerStrings.java +lib/src/main/java/org/openapis/openapi/models/shared/FakerFormattedStrings.java +lib/src/main/java/org/openapis/openapi/models/shared/ErrorType.java +lib/src/main/java/org/openapis/openapi/models/shared/Error.java lib/src/main/java/org/openapis/openapi/models/shared/NullableOneOfRefInObject.java +lib/src/main/java/org/openapis/openapi/models/shared/Type.java +lib/src/main/java/org/openapis/openapi/models/shared/TypedObject1.java lib/src/main/java/org/openapis/openapi/models/shared/NullableOneOfTypeInObject.java +lib/src/main/java/org/openapis/openapi/models/shared/RefQueryParamObjExploded.java +lib/src/main/java/org/openapis/openapi/models/shared/RefQueryParamObj.java +lib/src/main/java/org/openapis/openapi/models/shared/DeepObject.java +lib/src/main/java/org/openapis/openapi/models/shared/NullableObject.java +lib/src/main/java/org/openapis/openapi/models/shared/Int32EnumVal.java +lib/src/main/java/org/openapis/openapi/models/shared/IntEnumVal.java +lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCase.java +lib/src/main/java/org/openapis/openapi/models/shared/ArrObjValue.java +lib/src/main/java/org/openapis/openapi/models/shared/ArrObjValueCamelCase.java +lib/src/main/java/org/openapis/openapi/models/shared/DeepObjectCamelCase.java +lib/src/main/java/org/openapis/openapi/models/shared/MapObjValue.java +lib/src/main/java/org/openapis/openapi/models/shared/MapObjValueCamelCase.java +lib/src/main/java/org/openapis/openapi/models/shared/ComplexNumberTypes.java +lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsOutputConstEnumInt.java +lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsOutputConstEnumStr.java +lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsOutputDefaultEnumInt.java +lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsOutputDefaultEnumStr.java +lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsOutput.java +lib/src/main/java/org/openapis/openapi/models/shared/ConstEnumInt.java +lib/src/main/java/org/openapis/openapi/models/shared/ConstEnumStr.java +lib/src/main/java/org/openapis/openapi/models/shared/DefaultEnumInt.java +lib/src/main/java/org/openapis/openapi/models/shared/DefaultEnumStr.java +lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConsts.java +lib/src/main/java/org/openapis/openapi/models/shared/ReadWriteObject.java +lib/src/main/java/org/openapis/openapi/models/shared/ReadWriteObjectOutput.java +lib/src/main/java/org/openapis/openapi/models/shared/ReadOnlyObject.java +lib/src/main/java/org/openapis/openapi/models/shared/ReadOnlyObjectInput.java +lib/src/main/java/org/openapis/openapi/models/shared/WriteOnlyObject.java +lib/src/main/java/org/openapis/openapi/models/shared/WriteOnlyObjectOutput.java +lib/src/main/java/org/openapis/openapi/models/shared/ObjWithZeroValueComplexTypePtrs.java +lib/src/main/java/org/openapis/openapi/models/shared/BasicAuth.java +lib/src/main/java/org/openapis/openapi/models/shared/HeaderAuth.java +lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBody.java +lib/src/main/java/org/openapis/openapi/models/shared/SchemeBasicAuth.java +lib/src/main/java/org/openapis/openapi/models/shared/Security.java +lib/src/main/java/org/openapis/openapi/models/shared/FileResource.java +lib/src/main/java/org/openapis/openapi/models/shared/Chocolates.java +lib/src/main/java/org/openapis/openapi/models/shared/EnumNumber.java +lib/src/main/java/org/openapis/openapi/models/shared/EnumStr.java +lib/src/main/java/org/openapis/openapi/models/shared/ExampleResource.java +lib/src/main/java/org/openapis/openapi/models/shared/LimitOffsetConfig.java lib/src/main/java/org/openapis/openapi/models/shared/AllOfToAllOf.java lib/src/main/java/org/openapis/openapi/models/shared/OneOfGenerationStressTest.java lib/src/main/java/org/openapis/openapi/models/shared/UnsupportedEnums.java @@ -625,83 +625,7 @@ lib/src/main/java/org/openapis/openapi/models/callbacks/IgnoredGenerationGetSing lib/src/main/java/org/openapis/openapi/models/callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.java lib/src/main/java/org/openapis/openapi/models/callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.java USAGE.md -docs/models/operations/ApiKeyAuthSecurity.md -docs/models/operations/ApiKeyAuthToken.md -docs/models/operations/ApiKeyAuthResponse.md -docs/models/operations/ApiKeyAuthGlobalToken.md -docs/models/operations/ApiKeyAuthGlobalResponse.md -docs/models/operations/BasicAuthSecurity.md -docs/models/operations/BasicAuthRequest.md -docs/models/operations/BasicAuthUser.md -docs/models/operations/BasicAuthResponse.md -docs/models/operations/BearerAuthSecurity.md -docs/models/operations/BearerAuthToken.md -docs/models/operations/BearerAuthResponse.md -docs/models/operations/GlobalBearerAuthToken.md -docs/models/operations/GlobalBearerAuthResponse.md -docs/models/operations/Oauth2AuthSecurity.md -docs/models/operations/Oauth2AuthToken.md -docs/models/operations/Oauth2AuthResponse.md -docs/models/operations/Oauth2OverrideSecurity.md -docs/models/operations/Oauth2OverrideRequest.md -docs/models/operations/Oauth2OverrideToken.md -docs/models/operations/Oauth2OverrideResponse.md -docs/models/operations/OpenIdConnectAuthSecurity.md -docs/models/operations/OpenIdConnectAuthToken.md -docs/models/operations/OpenIdConnectAuthResponse.md -docs/models/operations/ApiKeyAuthGlobalNewResponse.md -docs/models/operations/AuthGlobalResponse.md -docs/models/operations/BasicAuthNewSecurity.md -docs/models/operations/BasicAuthNewResponse.md -docs/models/operations/MultipleMixedOptionsAuthSecurity.md -docs/models/operations/MultipleMixedOptionsAuthResponse.md -docs/models/operations/MultipleMixedSchemeAuthSecurity.md -docs/models/operations/MultipleMixedSchemeAuthResponse.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthResponse.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthResponse.md -docs/models/operations/MultipleSimpleOptionsAuthSecurity.md -docs/models/operations/MultipleSimpleOptionsAuthResponse.md -docs/models/operations/MultipleSimpleSchemeAuthSecurity.md -docs/models/operations/MultipleSimpleSchemeAuthResponse.md -docs/models/operations/Oauth2AuthNewSecurity.md -docs/models/operations/Oauth2AuthNewResponse.md -docs/models/operations/OpenIdConnectAuthNewSecurity.md -docs/models/operations/OpenIdConnectAuthNewResponse.md -docs/models/operations/GetDocumentationPerLanguageRequest.md -docs/models/operations/GetDocumentationPerLanguageResponse.md -docs/models/operations/ConnectionErrorGetResponse.md -docs/models/operations/StatusGetErrorRequest.md -docs/models/operations/StatusGetErrorResponse.md -docs/models/operations/StatusGetXSpeakeasyErrorsRequest.md -docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md -docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md -docs/models/operations/GroupFirstGetResponse.md -docs/models/operations/ComponentBodyAndParamConflictRequest.md -docs/models/operations/ComponentBodyAndParamConflictRes.md -docs/models/operations/ComponentBodyAndParamConflictResponse.md -docs/models/operations/ComponentBodyAndParamNoConflictRequest.md -docs/models/operations/ComponentBodyAndParamNoConflictRes.md -docs/models/operations/ComponentBodyAndParamNoConflictResponse.md -docs/models/operations/ConflictingParamsRequest.md -docs/models/operations/ConflictingParamsRes.md -docs/models/operations/ConflictingParamsResponse.md -docs/models/operations/InlineBodyAndParamConflictRequestBody.md -docs/models/operations/InlineBodyAndParamConflictRequest.md -docs/models/operations/InlineBodyAndParamConflictResJson.md -docs/models/operations/InlineBodyAndParamConflictRes.md -docs/models/operations/InlineBodyAndParamConflictResponse.md -docs/models/operations/InlineBodyAndParamNoConflictRequestBody.md -docs/models/operations/InlineBodyAndParamNoConflictRequest.md -docs/models/operations/InlineBodyAndParamNoConflictResJson.md -docs/models/operations/InlineBodyAndParamNoConflictRes.md -docs/models/operations/InlineBodyAndParamNoConflictResponse.md -docs/models/operations/TypeFromAnchor.md +docs/models/operations/AnchorTypesGetTypeFromAnchor.md docs/models/operations/AnchorTypesGetResponse.md docs/models/operations/ArrayCircularReferenceGetResponse.md docs/models/operations/CircularReferenceGetResponse.md @@ -712,7 +636,7 @@ docs/models/operations/DateTimeParamWithDefaultResponse.md docs/models/operations/DecimalParamWithDefaultRequest.md docs/models/operations/DecimalParamWithDefaultResponse.md docs/models/operations/DeprecatedFieldInSchemaPostResponse.md -docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md +docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md docs/models/operations/DeprecatedObjectInSchemaGetResponse.md docs/models/operations/DeprecatedOperationNoCommentsGetRequest.md docs/models/operations/DeprecatedOperationNoCommentsGetResponse.md @@ -720,123 +644,158 @@ docs/models/operations/DeprecatedOperationWithCommentsGetRequest.md docs/models/operations/DeprecatedOperationWithCommentsGetResponse.md docs/models/operations/EmptyObjectGetRequest.md docs/models/operations/EmptyObjectGetResponse.md -docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md +docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md docs/models/operations/EmptyResponseObjectWithCommentGetResponse.md -docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md +docs/models/operations/GetGlobalNameOverrideResponseBody.md docs/models/operations/GetGlobalNameOverrideResponse.md -docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md +docs/models/operations/IgnoredGenerationGetResponseBody.md docs/models/operations/IgnoredGenerationGetResponse.md -docs/models/operations/IgnoresPostApplicationJSON.md +docs/models/operations/IgnoresPostRequestBody.md docs/models/operations/IgnoresPostRequest.md docs/models/operations/IgnoresPostResponse.md -docs/models/operations/NameOverrideGetEnumNameOverride.md +docs/models/operations/EnumNameOverride.md docs/models/operations/NameOverrideGetRequest.md -docs/models/operations/OverriddenResponse.md +docs/models/operations/NameOverrideGetOverriddenResponse.md docs/models/operations/NameOverrideGetResponse.md docs/models/operations/ObjectCircularReferenceGetResponse.md docs/models/operations/OneOfCircularReferenceGetResponse.md -docs/models/operations/TypedParameterGenerationGetObj.md +docs/models/operations/Obj.md docs/models/operations/TypedParameterGenerationGetRequest.md docs/models/operations/TypedParameterGenerationGetResponse.md docs/models/operations/UsageExamplePostSecurity.md docs/models/operations/UsageExamplePostRequestBody.md -docs/models/operations/UsageExamplePostEnumParameter.md -docs/models/operations/UsageExamplePostOptEnumParameter.md +docs/models/operations/EnumParameter.md +docs/models/operations/OptEnumParameter.md docs/models/operations/UsageExamplePostRequest.md -docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md -docs/models/operations/UsageExamplePost200ApplicationJSON.md +docs/models/operations/UsageExamplePostJson.md +docs/models/operations/UsageExamplePostResponseBody.md docs/models/operations/UsageExamplePostResponse.md +docs/models/operations/ConnectionErrorGetResponse.md +docs/models/operations/StatusGetErrorRequest.md +docs/models/operations/StatusGetErrorResponse.md +docs/models/operations/StatusGetXSpeakeasyErrorsRequest.md +docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md +docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md +docs/models/operations/FlattenedTypedObjectPostRes.md +docs/models/operations/FlattenedTypedObjectPostResponse.md +docs/models/operations/MixedTypeOneOfPostRes.md +docs/models/operations/MixedTypeOneOfPostResponse.md +docs/models/operations/NullableOneOfRefInObjectPostRes.md +docs/models/operations/NullableOneOfRefInObjectPostResponse.md +docs/models/operations/NullableOneOfSchemaPostRes.md +docs/models/operations/NullableOneOfSchemaPostResponse.md +docs/models/operations/NullableOneOfTypeInObjectPostRes.md +docs/models/operations/NullableOneOfTypeInObjectPostResponse.md +docs/models/operations/NullableTypedObjectPostRes.md +docs/models/operations/NullableTypedObjectPostResponse.md +docs/models/operations/PrimitiveTypeOneOfPostRes.md +docs/models/operations/PrimitiveTypeOneOfPostResponse.md +docs/models/operations/StronglyTypedOneOfPostRes.md +docs/models/operations/StronglyTypedOneOfPostResponse.md +docs/models/operations/TypedObjectNullableOneOfPostRes.md +docs/models/operations/TypedObjectNullableOneOfPostResponse.md +docs/models/operations/TypedObjectOneOfPostRes.md +docs/models/operations/TypedObjectOneOfPostResponse.md +docs/models/operations/UnionBigIntDecimalRes.md +docs/models/operations/UnionBigIntDecimalResponse.md +docs/models/operations/UnionDateNullRes.md +docs/models/operations/UnionDateNullResponse.md +docs/models/operations/UnionDateTimeBigIntRes.md +docs/models/operations/UnionDateTimeBigIntResponse.md +docs/models/operations/UnionDateTimeNullRes.md +docs/models/operations/UnionDateTimeNullResponse.md +docs/models/operations/WeaklyTypedOneOfPostRes.md +docs/models/operations/WeaklyTypedOneOfPostResponse.md +docs/models/operations/ComponentBodyAndParamConflictRequest.md +docs/models/operations/ComponentBodyAndParamConflictRes.md +docs/models/operations/ComponentBodyAndParamConflictResponse.md +docs/models/operations/ComponentBodyAndParamNoConflictRequest.md +docs/models/operations/ComponentBodyAndParamNoConflictRes.md +docs/models/operations/ComponentBodyAndParamNoConflictResponse.md +docs/models/operations/ConflictingParamsRequest.md +docs/models/operations/ConflictingParamsRes.md +docs/models/operations/ConflictingParamsResponse.md +docs/models/operations/InlineBodyAndParamConflictRequestBody.md +docs/models/operations/InlineBodyAndParamConflictRequest.md +docs/models/operations/Json.md +docs/models/operations/InlineBodyAndParamConflictRes.md +docs/models/operations/InlineBodyAndParamConflictResponse.md +docs/models/operations/InlineBodyAndParamNoConflictRequestBody.md +docs/models/operations/InlineBodyAndParamNoConflictRequest.md +docs/models/operations/InlineBodyAndParamNoConflictJson.md +docs/models/operations/InlineBodyAndParamNoConflictRes.md +docs/models/operations/InlineBodyAndParamNoConflictResponse.md docs/models/operations/GlobalPathParameterGetRequest.md docs/models/operations/GlobalPathParameterGetRes.md docs/models/operations/GlobalPathParameterGetResponse.md docs/models/operations/GlobalsQueryParameterGetRequest.md -docs/models/operations/GlobalsQueryParameterGetResArgs.md +docs/models/operations/Args.md docs/models/operations/GlobalsQueryParameterGetRes.md docs/models/operations/GlobalsQueryParameterGetResponse.md -docs/models/operations/NestFirstGetResponse.md -docs/models/operations/NestedFirstGetResponse.md -docs/models/operations/NestedSecondGetResponse.md -docs/models/operations/NestedGetResponse.md -docs/models/operations/PaginationCursorBodyRequestBody.md -docs/models/operations/PaginationCursorBodyRes.md -docs/models/operations/PaginationCursorBodyResponse.md -docs/models/operations/PaginationCursorParamsRequest.md -docs/models/operations/PaginationCursorParamsRes.md -docs/models/operations/PaginationCursorParamsResponse.md -docs/models/operations/PaginationLimitOffsetOffsetBodyRes.md -docs/models/operations/PaginationLimitOffsetOffsetBodyResponse.md -docs/models/operations/PaginationLimitOffsetOffsetParamsRequest.md -docs/models/operations/PaginationLimitOffsetOffsetParamsRes.md -docs/models/operations/PaginationLimitOffsetOffsetParamsResponse.md -docs/models/operations/PaginationLimitOffsetPageBodyRes.md -docs/models/operations/PaginationLimitOffsetPageBodyResponse.md -docs/models/operations/PaginationLimitOffsetPageParamsRequest.md -docs/models/operations/PaginationLimitOffsetPageParamsRes.md -docs/models/operations/PaginationLimitOffsetPageParamsResponse.md docs/models/operations/DeepObjectQueryParamsMapRequest.md docs/models/operations/DeepObjectQueryParamsMapRes.md docs/models/operations/DeepObjectQueryParamsMapResponse.md -docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md +docs/models/operations/ObjArrParam.md docs/models/operations/DeepObjectQueryParamsObjectRequest.md -docs/models/operations/DeepObjectQueryParamsObjectResArgs.md +docs/models/operations/DeepObjectQueryParamsObjectArgs.md docs/models/operations/DeepObjectQueryParamsObjectRes.md docs/models/operations/DeepObjectQueryParamsObjectResponse.md docs/models/operations/DuplicateParamRequest.md docs/models/operations/DuplicateParamDuplicateParamResponse.md docs/models/operations/DuplicateParamResponse.md docs/models/operations/FormQueryParamsArrayRequest.md -docs/models/operations/FormQueryParamsArrayResArgs.md +docs/models/operations/FormQueryParamsArrayArgs.md docs/models/operations/FormQueryParamsArrayRes.md docs/models/operations/FormQueryParamsArrayResponse.md -docs/models/operations/FormQueryParamsCamelObjectObjParam.md -docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md +docs/models/operations/ObjParam.md +docs/models/operations/ObjParamExploded.md docs/models/operations/FormQueryParamsCamelObjectRequest.md -docs/models/operations/FormQueryParamsCamelObjectResArgs.md +docs/models/operations/FormQueryParamsCamelObjectArgs.md docs/models/operations/FormQueryParamsCamelObjectRes.md docs/models/operations/FormQueryParamsCamelObjectResponse.md docs/models/operations/FormQueryParamsMapRequest.md docs/models/operations/FormQueryParamsMapRes.md docs/models/operations/FormQueryParamsMapResponse.md docs/models/operations/FormQueryParamsObjectRequest.md -docs/models/operations/FormQueryParamsObjectResArgs.md +docs/models/operations/FormQueryParamsObjectArgs.md docs/models/operations/FormQueryParamsObjectRes.md docs/models/operations/FormQueryParamsObjectResponse.md docs/models/operations/FormQueryParamsPrimitiveRequest.md -docs/models/operations/FormQueryParamsPrimitiveResArgs.md +docs/models/operations/FormQueryParamsPrimitiveArgs.md docs/models/operations/FormQueryParamsPrimitiveRes.md docs/models/operations/FormQueryParamsPrimitiveResponse.md docs/models/operations/FormQueryParamsRefParamObjectRequest.md -docs/models/operations/FormQueryParamsRefParamObjectResArgs.md +docs/models/operations/FormQueryParamsRefParamObjectArgs.md docs/models/operations/FormQueryParamsRefParamObjectRes.md docs/models/operations/FormQueryParamsRefParamObjectResponse.md docs/models/operations/HeaderParamsArrayRequest.md -docs/models/operations/HeaderParamsArrayResHeaders.md +docs/models/operations/Headers.md docs/models/operations/HeaderParamsArrayRes.md docs/models/operations/HeaderParamsArrayResponse.md docs/models/operations/HeaderParamsMapRequest.md -docs/models/operations/HeaderParamsMapResHeaders.md +docs/models/operations/HeaderParamsMapHeaders.md docs/models/operations/HeaderParamsMapRes.md docs/models/operations/HeaderParamsMapResponse.md docs/models/operations/HeaderParamsObjectRequest.md -docs/models/operations/HeaderParamsObjectResHeaders.md +docs/models/operations/HeaderParamsObjectHeaders.md docs/models/operations/HeaderParamsObjectRes.md docs/models/operations/HeaderParamsObjectResponse.md docs/models/operations/HeaderParamsPrimitiveRequest.md -docs/models/operations/HeaderParamsPrimitiveResHeaders.md +docs/models/operations/HeaderParamsPrimitiveHeaders.md docs/models/operations/HeaderParamsPrimitiveRes.md docs/models/operations/HeaderParamsPrimitiveResponse.md docs/models/operations/JsonQueryParamsObjectRequest.md -docs/models/operations/JsonQueryParamsObjectResArgs.md +docs/models/operations/JsonQueryParamsObjectArgs.md docs/models/operations/JsonQueryParamsObjectRes.md docs/models/operations/JsonQueryParamsObjectResponse.md docs/models/operations/MixedParametersCamelCaseRequest.md -docs/models/operations/MixedParametersCamelCaseResArgs.md -docs/models/operations/MixedParametersCamelCaseResHeaders.md +docs/models/operations/MixedParametersCamelCaseArgs.md +docs/models/operations/MixedParametersCamelCaseHeaders.md docs/models/operations/MixedParametersCamelCaseRes.md docs/models/operations/MixedParametersCamelCaseResponse.md docs/models/operations/MixedParametersPrimitivesRequest.md -docs/models/operations/MixedParametersPrimitivesResArgs.md -docs/models/operations/MixedParametersPrimitivesResHeaders.md +docs/models/operations/MixedParametersPrimitivesArgs.md +docs/models/operations/MixedParametersPrimitivesHeaders.md docs/models/operations/MixedParametersPrimitivesRes.md docs/models/operations/MixedParametersPrimitivesResponse.md docs/models/operations/MixedQueryParamsRequest.md @@ -846,7 +805,7 @@ docs/models/operations/PathParameterJsonRequest.md docs/models/operations/PathParameterJsonRes.md docs/models/operations/PathParameterJsonResponse.md docs/models/operations/PipeDelimitedQueryParamsArrayRequest.md -docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md +docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md docs/models/operations/PipeDelimitedQueryParamsArrayRes.md docs/models/operations/PipeDelimitedQueryParamsArrayResponse.md docs/models/operations/SimplePathParameterArraysRequest.md @@ -861,14 +820,18 @@ docs/models/operations/SimplePathParameterObjectsResponse.md docs/models/operations/SimplePathParameterPrimitivesRequest.md docs/models/operations/SimplePathParameterPrimitivesRes.md docs/models/operations/SimplePathParameterPrimitivesResponse.md +docs/models/operations/NestFirstGetResponse.md +docs/models/operations/NestedFirstGetResponse.md +docs/models/operations/NestedSecondGetResponse.md +docs/models/operations/NestedGetResponse.md docs/models/operations/NullableObjectPostRes.md docs/models/operations/NullableObjectPostResponse.md -docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md -docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md -docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md +docs/models/operations/NullableOptionalObj.md +docs/models/operations/NullableRequiredObj.md +docs/models/operations/RequiredObj.md docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md docs/models/operations/NullableRequiredEmptyObjectPostResponse.md -docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md +docs/models/operations/NullableRequiredEnum.md docs/models/operations/NullableRequiredPropertyPostRequestBody.md docs/models/operations/NullableRequiredPropertyPostResponse.md docs/models/operations/NullableRequiredSharedObjectPostRequestBody.md @@ -904,123 +867,123 @@ docs/models/operations/RequestBodyPostApplicationJsonSimpleResponse.md docs/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.md docs/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.md docs/models/operations/RequestBodyPostComplexNumberTypesRequest.md -docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md +docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md -docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md +docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md -docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md -docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md +docs/models/operations/Empty.md +docs/models/operations/EmptyWithEmptyProperties.md docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md -docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md -docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md -docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md +docs/models/operations/RequestBodyPostEmptyObjectEmpty.md +docs/models/operations/EmptyRespWithEmptyProperies.md +docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md docs/models/operations/RequestBodyPostEmptyObjectResponse.md -docs/models/operations/RequestBodyPostFormDeepResForm.md +docs/models/operations/Form.md docs/models/operations/RequestBodyPostFormDeepRes.md docs/models/operations/RequestBodyPostFormDeepResponse.md docs/models/operations/RequestBodyPostFormMapPrimitiveRes.md docs/models/operations/RequestBodyPostFormMapPrimitiveResponse.md -docs/models/operations/RequestBodyPostFormSimpleResForm.md -docs/models/operations/RequestBodyPostFormSimpleResHeaders.md +docs/models/operations/RequestBodyPostFormSimpleForm.md +docs/models/operations/RequestBodyPostFormSimpleHeaders.md docs/models/operations/RequestBodyPostFormSimpleRes.md docs/models/operations/RequestBodyPostFormSimpleResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md -docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md -docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md docs/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.md docs/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md +docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.md docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.md -docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md +docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md -docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullArrayResponseBody.md docs/models/operations/RequestBodyPostNullArrayResponse.md -docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md docs/models/operations/RequestBodyPostNullDictionaryResponse.md -docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md -docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md docs/models/operations/RequestBodyPutBytesRes.md docs/models/operations/RequestBodyPutBytesResponse.md docs/models/operations/RequestBodyPutBytesWithParamsRequest.md -docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md +docs/models/operations/RequestBodyPutBytesWithParamsArgs.md docs/models/operations/RequestBodyPutBytesWithParamsRes.md docs/models/operations/RequestBodyPutBytesWithParamsResponse.md -docs/models/operations/RequestBodyPutMultipartDeepResForm.md +docs/models/operations/RequestBodyPutMultipartDeepForm.md docs/models/operations/RequestBodyPutMultipartDeepRes.md docs/models/operations/RequestBodyPutMultipartDeepResponse.md -docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md +docs/models/operations/DifferentFileName.md docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md docs/models/operations/RequestBodyPutMultipartDifferentFileNameRes.md docs/models/operations/RequestBodyPutMultipartDifferentFileNameResponse.md -docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md +docs/models/operations/File.md docs/models/operations/RequestBodyPutMultipartFileRequestBody.md docs/models/operations/RequestBodyPutMultipartFileRes.md docs/models/operations/RequestBodyPutMultipartFileResponse.md -docs/models/operations/RequestBodyPutMultipartSimpleResForm.md -docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md +docs/models/operations/RequestBodyPutMultipartSimpleForm.md +docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md docs/models/operations/RequestBodyPutMultipartSimpleRes.md docs/models/operations/RequestBodyPutMultipartSimpleResponse.md docs/models/operations/RequestBodyPutStringRes.md docs/models/operations/RequestBodyPutStringResponse.md docs/models/operations/RequestBodyPutStringWithParamsRequest.md -docs/models/operations/RequestBodyPutStringWithParamsResArgs.md +docs/models/operations/RequestBodyPutStringWithParamsArgs.md docs/models/operations/RequestBodyPutStringWithParamsRes.md docs/models/operations/RequestBodyPutStringWithParamsResponse.md docs/models/operations/RequestBodyReadAndWriteResponse.md @@ -1030,23 +993,13 @@ docs/models/operations/RequestBodyReadWriteOnlyUnionResponse.md docs/models/operations/RequestBodyWriteOnlyResponse.md docs/models/operations/RequestBodyWriteOnlyOutputResponse.md docs/models/operations/RequestBodyWriteOnlyUnionResponse.md -docs/models/operations/CreateFileRequestBodyFile.md -docs/models/operations/CreateFileRequestBody.md -docs/models/operations/CreateFileResponse.md -docs/models/operations/CreateResourceResponse.md -docs/models/operations/DeleteResourceRequest.md -docs/models/operations/DeleteResourceResponse.md -docs/models/operations/GetResourceRequest.md -docs/models/operations/GetResourceResponse.md -docs/models/operations/UpdateResourceRequest.md -docs/models/operations/UpdateResourceResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md docs/models/operations/ResponseBodyBytesGetResponse.md docs/models/operations/ResponseBodyEmptyWithHeadersRequest.md @@ -1055,12 +1008,8 @@ docs/models/operations/ResponseBodyOptionalGetResponse.md docs/models/operations/ResponseBodyReadOnlyResponse.md docs/models/operations/ResponseBodyStringGetResponse.md docs/models/operations/ResponseBodyXmlGetResponse.md -docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md +docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md -docs/models/operations/RetriesGetRequest.md -docs/models/operations/RetriesGetRetries.md -docs/models/operations/RetriesGetResponse.md -docs/models/operations/GroupSecondGetResponse.md docs/models/operations/SelectGlobalServerResponse.md docs/models/operations/SelectServerWithIDResponse.md docs/models/operations/ServerWithProtocolTemplateResponse.md @@ -1072,70 +1021,119 @@ docs/models/operations/TelemetrySpeakeasyUserAgentGetRes.md docs/models/operations/TelemetrySpeakeasyUserAgentGetResponse.md docs/models/operations/TelemetryUserAgentGetRes.md docs/models/operations/TelemetryUserAgentGetResponse.md -docs/models/operations/FlattenedTypedObjectPostRes.md -docs/models/operations/FlattenedTypedObjectPostResponse.md -docs/models/operations/MixedTypeOneOfPostRes.md -docs/models/operations/MixedTypeOneOfPostResponse.md -docs/models/operations/NullableOneOfRefInObjectPostRes.md -docs/models/operations/NullableOneOfRefInObjectPostResponse.md -docs/models/operations/NullableOneOfSchemaPostRes.md -docs/models/operations/NullableOneOfSchemaPostResponse.md -docs/models/operations/NullableOneOfTypeInObjectPostRes.md -docs/models/operations/NullableOneOfTypeInObjectPostResponse.md -docs/models/operations/NullableTypedObjectPostRes.md -docs/models/operations/NullableTypedObjectPostResponse.md -docs/models/operations/PrimitiveTypeOneOfPostRes.md -docs/models/operations/PrimitiveTypeOneOfPostResponse.md -docs/models/operations/StronglyTypedOneOfPostRes.md -docs/models/operations/StronglyTypedOneOfPostResponse.md -docs/models/operations/TypedObjectNullableOneOfPostRes.md -docs/models/operations/TypedObjectNullableOneOfPostResponse.md -docs/models/operations/TypedObjectOneOfPostRes.md -docs/models/operations/TypedObjectOneOfPostResponse.md -docs/models/operations/UnionBigIntDecimalRes.md -docs/models/operations/UnionBigIntDecimalResponse.md -docs/models/operations/UnionDateNullRes.md -docs/models/operations/UnionDateNullResponse.md -docs/models/operations/UnionDateTimeBigIntRes.md -docs/models/operations/UnionDateTimeBigIntResponse.md -docs/models/operations/UnionDateTimeNullRes.md -docs/models/operations/UnionDateTimeNullResponse.md -docs/models/operations/WeaklyTypedOneOfPostRes.md -docs/models/operations/WeaklyTypedOneOfPostResponse.md -docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md +docs/models/operations/ApiKeyAuthGlobalNewResponse.md +docs/models/operations/AuthGlobalResponse.md +docs/models/operations/BasicAuthNewSecurity.md +docs/models/operations/BasicAuthNewResponse.md +docs/models/operations/MultipleMixedOptionsAuthSecurity.md +docs/models/operations/MultipleMixedOptionsAuthResponse.md +docs/models/operations/MultipleMixedSchemeAuthSecurity.md +docs/models/operations/MultipleMixedSchemeAuthResponse.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthResponse.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthResponse.md +docs/models/operations/MultipleSimpleOptionsAuthSecurity.md +docs/models/operations/MultipleSimpleOptionsAuthResponse.md +docs/models/operations/MultipleSimpleSchemeAuthSecurity.md +docs/models/operations/MultipleSimpleSchemeAuthResponse.md +docs/models/operations/Oauth2AuthNewSecurity.md +docs/models/operations/Oauth2AuthNewResponse.md +docs/models/operations/OpenIdConnectAuthNewSecurity.md +docs/models/operations/OpenIdConnectAuthNewResponse.md +docs/models/operations/ApiKeyAuthSecurity.md +docs/models/operations/ApiKeyAuthToken.md +docs/models/operations/ApiKeyAuthResponse.md +docs/models/operations/ApiKeyAuthGlobalToken.md +docs/models/operations/ApiKeyAuthGlobalResponse.md +docs/models/operations/BasicAuthSecurity.md +docs/models/operations/BasicAuthRequest.md +docs/models/operations/BasicAuthUser.md +docs/models/operations/BasicAuthResponse.md +docs/models/operations/BearerAuthSecurity.md +docs/models/operations/BearerAuthToken.md +docs/models/operations/BearerAuthResponse.md +docs/models/operations/GlobalBearerAuthToken.md +docs/models/operations/GlobalBearerAuthResponse.md +docs/models/operations/Oauth2AuthSecurity.md +docs/models/operations/Oauth2AuthToken.md +docs/models/operations/Oauth2AuthResponse.md +docs/models/operations/Oauth2OverrideSecurity.md +docs/models/operations/Oauth2OverrideRequest.md +docs/models/operations/Oauth2OverrideToken.md +docs/models/operations/Oauth2OverrideResponse.md +docs/models/operations/OpenIdConnectAuthSecurity.md +docs/models/operations/OpenIdConnectAuthToken.md +docs/models/operations/OpenIdConnectAuthResponse.md +docs/models/operations/GetDocumentationPerLanguageRequest.md +docs/models/operations/GetDocumentationPerLanguageResponse.md +docs/models/operations/CreateFileFile.md +docs/models/operations/CreateFileRequestBody.md +docs/models/operations/CreateFileResponse.md +docs/models/operations/CreateResourceResponse.md +docs/models/operations/DeleteResourceRequest.md +docs/models/operations/DeleteResourceResponse.md +docs/models/operations/GetResourceRequest.md +docs/models/operations/GetResourceResponse.md +docs/models/operations/UpdateResourceRequest.md +docs/models/operations/UpdateResourceResponse.md +docs/models/operations/GroupFirstGetResponse.md +docs/models/operations/GroupSecondGetResponse.md +docs/models/operations/PaginationCursorBodyRequestBody.md +docs/models/operations/PaginationCursorBodyRes.md +docs/models/operations/PaginationCursorBodyResponse.md +docs/models/operations/PaginationCursorParamsRequest.md +docs/models/operations/PaginationCursorParamsRes.md +docs/models/operations/PaginationCursorParamsResponse.md +docs/models/operations/PaginationLimitOffsetOffsetBodyRes.md +docs/models/operations/PaginationLimitOffsetOffsetBodyResponse.md +docs/models/operations/PaginationLimitOffsetOffsetParamsRequest.md +docs/models/operations/PaginationLimitOffsetOffsetParamsRes.md +docs/models/operations/PaginationLimitOffsetOffsetParamsResponse.md +docs/models/operations/PaginationLimitOffsetPageBodyRes.md +docs/models/operations/PaginationLimitOffsetPageBodyResponse.md +docs/models/operations/PaginationLimitOffsetPageParamsRequest.md +docs/models/operations/PaginationLimitOffsetPageParamsRes.md +docs/models/operations/PaginationLimitOffsetPageParamsResponse.md +docs/models/operations/RetriesGetRequest.md +docs/models/operations/RetriesGetRetries.md +docs/models/operations/RetriesGetResponse.md +docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md docs/models/operations/PutAnythingIgnoredGenerationResponse.md docs/models/operations/ResponseBodyJsonGetResponse.md -docs/models/shared/AuthServiceRequestBodyBasicAuth.md -docs/models/shared/AuthServiceRequestBodyHeaderAuth.md -docs/models/shared/AuthServiceRequestBody.md -docs/models/shared/SchemeBasicAuth.md -docs/models/shared/Security.md -docs/models/shared/ErrorType.md -docs/models/shared/Error.md -docs/models/shared/SimpleObjectInt32Enum.md -docs/models/shared/SimpleObjectIntEnum.md +docs/models/shared/Int32Enum.md +docs/models/shared/IntEnum.md docs/models/shared/SimpleObject.md docs/models/shared/Enum.md docs/models/shared/ArrayCircularReferenceObject.md docs/models/shared/ValidCircularReferenceObject.md -docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md +docs/models/shared/DeprecatedEnum.md docs/models/shared/DeprecatedFieldInObject.md docs/models/shared/DeprecatedObject.md docs/models/shared/EmptyObjectParam.md -docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md -docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md +docs/models/shared/Slides.md +docs/models/shared/Slideshow.md docs/models/shared/HttpBinSimpleJsonObject.md docs/models/shared/ObjectCircularReferenceObject.md docs/models/shared/OneOfCircularReferenceObject.md docs/models/shared/FakerStrings.md docs/models/shared/FakerFormattedStrings.md -docs/models/shared/LimitOffsetConfig.md +docs/models/shared/ErrorType.md +docs/models/shared/Error.md +docs/models/shared/NullableOneOfRefInObject.md +docs/models/shared/Type.md +docs/models/shared/TypedObject1.md +docs/models/shared/NullableOneOfTypeInObject.md docs/models/shared/RefQueryParamObjExploded.md docs/models/shared/RefQueryParamObj.md docs/models/shared/DeepObject.md docs/models/shared/NullableObject.md -docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md -docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md +docs/models/shared/Int32EnumVal.md +docs/models/shared/IntEnumVal.md docs/models/shared/SimpleObjectCamelCase.md docs/models/shared/ArrObjValue.md docs/models/shared/ArrObjValueCamelCase.md @@ -1148,27 +1146,29 @@ docs/models/shared/DefaultsAndConstsOutputConstEnumStr.md docs/models/shared/DefaultsAndConstsOutputDefaultEnumInt.md docs/models/shared/DefaultsAndConstsOutputDefaultEnumStr.md docs/models/shared/DefaultsAndConstsOutput.md -docs/models/shared/DefaultsAndConstsConstEnumInt.md -docs/models/shared/DefaultsAndConstsConstEnumStr.md -docs/models/shared/DefaultsAndConstsDefaultEnumInt.md -docs/models/shared/DefaultsAndConstsDefaultEnumStr.md +docs/models/shared/ConstEnumInt.md +docs/models/shared/ConstEnumStr.md +docs/models/shared/DefaultEnumInt.md +docs/models/shared/DefaultEnumStr.md docs/models/shared/DefaultsAndConsts.md -docs/models/shared/ReadWriteObjectInput.md +docs/models/shared/ReadWriteObject.md docs/models/shared/ReadWriteObjectOutput.md docs/models/shared/ReadOnlyObject.md docs/models/shared/ReadOnlyObjectInput.md docs/models/shared/WriteOnlyObject.md docs/models/shared/WriteOnlyObjectOutput.md +docs/models/shared/ObjWithZeroValueComplexTypePtrs.md +docs/models/shared/BasicAuth.md +docs/models/shared/HeaderAuth.md +docs/models/shared/AuthServiceRequestBody.md +docs/models/shared/SchemeBasicAuth.md +docs/models/shared/Security.md docs/models/shared/FileResource.md -docs/models/shared/ExampleResourceChocolates.md -docs/models/shared/ExampleResourceEnumNumber.md -docs/models/shared/ExampleResourceEnumStr.md +docs/models/shared/Chocolates.md +docs/models/shared/EnumNumber.md +docs/models/shared/EnumStr.md docs/models/shared/ExampleResource.md -docs/models/shared/TypedObject1Type.md -docs/models/shared/TypedObject1.md -docs/models/shared/ObjWithZeroValueComplexTypePtrs.md -docs/models/shared/NullableOneOfRefInObject.md -docs/models/shared/NullableOneOfTypeInObject.md +docs/models/shared/LimitOffsetConfig.md docs/models/shared/AllOfToAllOf.md docs/models/shared/OneOfGenerationStressTest.md docs/models/shared/UnsupportedEnums.md @@ -1177,26 +1177,26 @@ docs/models/callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequest docs/models/callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.md docs/models/callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.md docs/sdks/sdk/README.md -docs/sdks/auth/README.md -docs/sdks/authnew/README.md -docs/sdks/documentation/README.md +docs/sdks/generation/README.md docs/sdks/errors/README.md -docs/sdks/first/README.md +docs/sdks/unions/README.md docs/sdks/flattening/README.md -docs/sdks/generation/README.md docs/sdks/globals/README.md +docs/sdks/parameters/README.md docs/sdks/nest/README.md -docs/sdks/nestfirst/README.md +docs/sdks/sdkfirst/README.md docs/sdks/nested/README.md -docs/sdks/nestedfirst/README.md -docs/sdks/nestedsecond/README.md -docs/sdks/pagination/README.md -docs/sdks/parameters/README.md +docs/sdks/sdknestedfirst/README.md +docs/sdks/sdksecond/README.md docs/sdks/requestbodies/README.md -docs/sdks/resource/README.md docs/sdks/responsebodies/README.md -docs/sdks/retries/README.md -docs/sdks/second/README.md docs/sdks/servers/README.md docs/sdks/telemetry/README.md -docs/sdks/unions/README.md \ No newline at end of file +docs/sdks/authnew/README.md +docs/sdks/auth/README.md +docs/sdks/documentation/README.md +docs/sdks/resource/README.md +docs/sdks/first/README.md +docs/sdks/second/README.md +docs/sdks/pagination/README.md +docs/sdks/retries/README.md \ No newline at end of file diff --git a/java-client-sdk/gen.yaml b/java-client-sdk/gen.yaml index 910549f79..00a193bef 100755 --- a/java-client-sdk/gen.yaml +++ b/java-client-sdk/gen.yaml @@ -2,15 +2,15 @@ configVersion: 1.0.0 management: docChecksum: 0c1717dc8f9e83b99bad896fa719645c docVersion: 0.1.0 - speakeasyVersion: 1.112.1 - generationVersion: 2.173.0 + speakeasyVersion: 1.114.1 + generationVersion: 2.181.1 generation: comments: {} sdkClassName: SDK repoURL: https://github.com/speakeasy-api/openapi-generation-tests.git features: java: - core: 2.94.0 + core: 3.0.1 deprecations: 2.81.1 docs: 0.0.3 enums: 2.81.1 @@ -28,13 +28,21 @@ features: nameOverrides: 2.81.1 serverIDs: 2.81.1 java: - version: 1.38.2 + version: 2.0.0 artifactID: openapi companyEmail: info@mycompany.com companyName: My Company companyURL: www.mycompany.com githubURL: github.com/owner/repo groupID: org.openapis + imports: + option: openapi + paths: + callbacks: models/callbacks + errors: models/errors + operations: models/operations + shared: models/shared + webhooks: models/webhooks maxMethodParams: 5 ossrhURL: https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ projectName: openapi diff --git a/java-client-sdk/gradlew.bat b/java-client-sdk/gradlew.bat index f127cfd49..53a6b238d 100755 --- a/java-client-sdk/gradlew.bat +++ b/java-client-sdk/gradlew.bat @@ -1,91 +1,91 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%"=="" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%"=="" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if %ERRORLEVEL% equ 0 goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if %ERRORLEVEL% equ 0 goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -set EXIT_CODE=%ERRORLEVEL% -if %EXIT_CODE% equ 0 set EXIT_CODE=1 -if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% -exit /b %EXIT_CODE% - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/java-client-sdk/lib/build.gradle b/java-client-sdk/lib/build.gradle index acf0c8ff6..1391e3228 100755 --- a/java-client-sdk/lib/build.gradle +++ b/java-client-sdk/lib/build.gradle @@ -57,7 +57,7 @@ publishing { maven(MavenPublication) { groupId = 'org.openapis' artifactId = 'openapi' - version = '1.38.2' + version = '2.0.0' from components.java diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/Errors.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/Errors.java index 586b0be01..47ef39332 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/Errors.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/Errors.java @@ -129,7 +129,7 @@ public org.openapis.openapi.models.operations.StatusGetXSpeakeasyErrorsResponse org.openapis.openapi.models.operations.StatusGetXSpeakeasyErrorsResponse res = new org.openapis.openapi.models.operations.StatusGetXSpeakeasyErrorsResponse(contentType, httpRes.statusCode()) {{ error = null; - statusGetXSpeakeasyErrors501ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; @@ -145,8 +145,8 @@ else if (httpRes.statusCode() == 500) { else if (httpRes.statusCode() == 501) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.StatusGetXSpeakeasyErrors501ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.StatusGetXSpeakeasyErrors501ApplicationJSON.class); - res.statusGetXSpeakeasyErrors501ApplicationJSONObject = out; + org.openapis.openapi.models.operations.StatusGetXSpeakeasyErrorsResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.StatusGetXSpeakeasyErrorsResponseBody.class); + res.object = out; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/Generation.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/Generation.java index 6432dd3cf..576997e29 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/Generation.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/Generation.java @@ -51,7 +51,7 @@ public org.openapis.openapi.models.operations.AnchorTypesGetResponse anchorTypes if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.TypeFromAnchor out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.TypeFromAnchor.class); + org.openapis.openapi.models.operations.AnchorTypesGetTypeFromAnchor out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.AnchorTypesGetTypeFromAnchor.class); res.typeFromAnchor = out; } } @@ -280,15 +280,15 @@ public org.openapis.openapi.models.operations.DeprecatedObjectInSchemaGetRespons String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.DeprecatedObjectInSchemaGetResponse res = new org.openapis.openapi.models.operations.DeprecatedObjectInSchemaGetResponse(contentType, httpRes.statusCode()) {{ - deprecatedObjectInSchemaGet200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.DeprecatedObjectInSchemaGet200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.DeprecatedObjectInSchemaGet200ApplicationJSON.class); - res.deprecatedObjectInSchemaGet200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.DeprecatedObjectInSchemaGetResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.DeprecatedObjectInSchemaGetResponseBody.class); + res.object = out; } } @@ -496,15 +496,15 @@ public org.openapis.openapi.models.operations.GetGlobalNameOverrideResponse glob String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.GetGlobalNameOverrideResponse res = new org.openapis.openapi.models.operations.GetGlobalNameOverrideResponse(contentType, httpRes.statusCode()) {{ - getGlobalNameOverride200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.GetGlobalNameOverride200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.GetGlobalNameOverride200ApplicationJSON.class); - res.getGlobalNameOverride200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.GetGlobalNameOverrideResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.GetGlobalNameOverrideResponseBody.class); + res.object = out; } } @@ -529,26 +529,26 @@ public org.openapis.openapi.models.operations.IgnoredGenerationGetResponse ignor String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.IgnoredGenerationGetResponse res = new org.openapis.openapi.models.operations.IgnoredGenerationGetResponse(contentType, httpRes.statusCode()) {{ - ignoredGenerationGet200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.IgnoredGenerationGet200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.IgnoredGenerationGet200ApplicationJSON.class); - res.ignoredGenerationGet200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.IgnoredGenerationGetResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.IgnoredGenerationGetResponseBody.class); + res.object = out; } } return res; } - public org.openapis.openapi.models.operations.IgnoresPostResponse ignoresPost(org.openapis.openapi.models.operations.IgnoresPostApplicationJSON requestBody) throws Exception { + public org.openapis.openapi.models.operations.IgnoresPostResponse ignoresPost(org.openapis.openapi.models.operations.IgnoresPostRequestBody requestBody) throws Exception { return this.ignoresPost(requestBody, null); } - public org.openapis.openapi.models.operations.IgnoresPostResponse ignoresPost(org.openapis.openapi.models.operations.IgnoresPostApplicationJSON requestBody, String testParam) throws Exception { + public org.openapis.openapi.models.operations.IgnoresPostResponse ignoresPost(org.openapis.openapi.models.operations.IgnoresPostRequestBody requestBody, String testParam) throws Exception { org.openapis.openapi.models.operations.IgnoresPostRequest request = new org.openapis.openapi.models.operations.IgnoresPostRequest(requestBody); request.testParam=testParam; @@ -595,7 +595,7 @@ public org.openapis.openapi.models.operations.IgnoresPostResponse ignoresPost(or return res; } - public org.openapis.openapi.models.operations.NameOverrideGetResponse nameOverride(org.openapis.openapi.models.operations.NameOverrideGetEnumNameOverride testEnumQueryParam, String testQueryParam) throws Exception { + public org.openapis.openapi.models.operations.NameOverrideGetResponse nameOverride(org.openapis.openapi.models.operations.EnumNameOverride testEnumQueryParam, String testQueryParam) throws Exception { org.openapis.openapi.models.operations.NameOverrideGetRequest request = new org.openapis.openapi.models.operations.NameOverrideGetRequest(testEnumQueryParam, testQueryParam); String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); @@ -628,7 +628,7 @@ public org.openapis.openapi.models.operations.NameOverrideGetResponse nameOverri if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.OverriddenResponse out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.OverriddenResponse.class); + org.openapis.openapi.models.operations.NameOverrideGetOverriddenResponse out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.NameOverrideGetOverriddenResponse.class); res.overriddenResponse = out; } } @@ -706,7 +706,7 @@ public org.openapis.openapi.models.operations.TypedParameterGenerationGetRespons return this.typedParameterGenerationGet(null, null, null, null); } - public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(org.openapis.openapi.models.operations.TypedParameterGenerationGetObj obj) throws Exception { + public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(org.openapis.openapi.models.operations.Obj obj) throws Exception { return this.typedParameterGenerationGet(null, null, null, obj); } @@ -714,7 +714,7 @@ public org.openapis.openapi.models.operations.TypedParameterGenerationGetRespons return this.typedParameterGenerationGet(null, null, decimal, null); } - public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(Double decimal, org.openapis.openapi.models.operations.TypedParameterGenerationGetObj obj) throws Exception { + public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(Double decimal, org.openapis.openapi.models.operations.Obj obj) throws Exception { return this.typedParameterGenerationGet(null, null, decimal, obj); } @@ -722,7 +722,7 @@ public org.openapis.openapi.models.operations.TypedParameterGenerationGetRespons return this.typedParameterGenerationGet(null, date, null, null); } - public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(LocalDate date, org.openapis.openapi.models.operations.TypedParameterGenerationGetObj obj) throws Exception { + public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(LocalDate date, org.openapis.openapi.models.operations.Obj obj) throws Exception { return this.typedParameterGenerationGet(null, date, null, obj); } @@ -730,7 +730,7 @@ public org.openapis.openapi.models.operations.TypedParameterGenerationGetRespons return this.typedParameterGenerationGet(null, date, decimal, null); } - public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(LocalDate date, Double decimal, org.openapis.openapi.models.operations.TypedParameterGenerationGetObj obj) throws Exception { + public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(LocalDate date, Double decimal, org.openapis.openapi.models.operations.Obj obj) throws Exception { return this.typedParameterGenerationGet(null, date, decimal, obj); } @@ -738,7 +738,7 @@ public org.openapis.openapi.models.operations.TypedParameterGenerationGetRespons return this.typedParameterGenerationGet(bigint, null, null, null); } - public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(Long bigint, org.openapis.openapi.models.operations.TypedParameterGenerationGetObj obj) throws Exception { + public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(Long bigint, org.openapis.openapi.models.operations.Obj obj) throws Exception { return this.typedParameterGenerationGet(bigint, null, null, obj); } @@ -746,7 +746,7 @@ public org.openapis.openapi.models.operations.TypedParameterGenerationGetRespons return this.typedParameterGenerationGet(bigint, null, decimal, null); } - public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(Long bigint, Double decimal, org.openapis.openapi.models.operations.TypedParameterGenerationGetObj obj) throws Exception { + public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(Long bigint, Double decimal, org.openapis.openapi.models.operations.Obj obj) throws Exception { return this.typedParameterGenerationGet(bigint, null, decimal, obj); } @@ -754,7 +754,7 @@ public org.openapis.openapi.models.operations.TypedParameterGenerationGetRespons return this.typedParameterGenerationGet(bigint, date, null, null); } - public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(Long bigint, LocalDate date, org.openapis.openapi.models.operations.TypedParameterGenerationGetObj obj) throws Exception { + public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(Long bigint, LocalDate date, org.openapis.openapi.models.operations.Obj obj) throws Exception { return this.typedParameterGenerationGet(bigint, date, null, obj); } @@ -762,7 +762,7 @@ public org.openapis.openapi.models.operations.TypedParameterGenerationGetRespons return this.typedParameterGenerationGet(bigint, date, decimal, null); } - public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(Long bigint, LocalDate date, Double decimal, org.openapis.openapi.models.operations.TypedParameterGenerationGetObj obj) throws Exception { + public org.openapis.openapi.models.operations.TypedParameterGenerationGetResponse typedParameterGenerationGet(Long bigint, LocalDate date, Double decimal, org.openapis.openapi.models.operations.Obj obj) throws Exception { org.openapis.openapi.models.operations.TypedParameterGenerationGetRequest request = new org.openapis.openapi.models.operations.TypedParameterGenerationGetRequest(); request.bigint=bigint; request.date=date; @@ -836,15 +836,15 @@ public org.openapis.openapi.models.operations.UsageExamplePostResponse usageExam String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.UsageExamplePostResponse res = new org.openapis.openapi.models.operations.UsageExamplePostResponse(contentType, httpRes.statusCode()) {{ - usageExamplePost200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.UsageExamplePost200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.UsageExamplePost200ApplicationJSON.class); - res.usageExamplePost200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.UsageExamplePostResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.UsageExamplePostResponseBody.class); + res.object = out; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/Nest.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/Nest.java index f6dce81ab..b36520c1b 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/Nest.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/Nest.java @@ -7,13 +7,13 @@ public class Nest { - public NestFirst first; + public SDKFirst first; private SDKConfiguration sdkConfiguration; public Nest(SDKConfiguration sdkConfiguration) { this.sdkConfiguration = sdkConfiguration; - this.first = new NestFirst(this.sdkConfiguration); + this.first = new SDKFirst(this.sdkConfiguration); } } \ No newline at end of file diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/NestFirst.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/NestFirst.java deleted file mode 100755 index 3e4116277..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/NestFirst.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi; - -import java.net.http.HttpResponse; -import org.openapis.openapi.utils.HTTPClient; -import org.openapis.openapi.utils.HTTPRequest; - -public class NestFirst { - - private SDKConfiguration sdkConfiguration; - - public NestFirst(SDKConfiguration sdkConfiguration) { - this.sdkConfiguration = sdkConfiguration; - } - - public org.openapis.openapi.models.operations.NestFirstGetResponse get() throws Exception { - String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); - String url = org.openapis.openapi.utils.Utils.generateURL(baseUrl, "/anything/nest/first"); - - HTTPRequest req = new HTTPRequest(); - req.setMethod("GET"); - req.setURL(url); - - req.addHeader("Accept", "*/*"); - req.addHeader("x-speakeasy-user-agent", this.sdkConfiguration.userAgent); - - HTTPClient client = this.sdkConfiguration.securityClient; - - HttpResponse httpRes = client.send(req); - - String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); - - org.openapis.openapi.models.operations.NestFirstGetResponse res = new org.openapis.openapi.models.operations.NestFirstGetResponse(contentType, httpRes.statusCode()) {{ - }}; - res.rawResponse = httpRes; - - if (httpRes.statusCode() == 200) { - } - - return res; - } -} \ No newline at end of file diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/Nested.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/Nested.java index 23577d819..a2c1031fd 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/Nested.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/Nested.java @@ -9,17 +9,17 @@ import org.openapis.openapi.utils.HTTPRequest; public class Nested { - public NestedFirst first; - public NestedSecond second; + public SDKNestedFirst first; + public SDKSecond second; private SDKConfiguration sdkConfiguration; public Nested(SDKConfiguration sdkConfiguration) { this.sdkConfiguration = sdkConfiguration; - this.first = new NestedFirst(this.sdkConfiguration); + this.first = new SDKNestedFirst(this.sdkConfiguration); - this.second = new NestedSecond(this.sdkConfiguration); + this.second = new SDKSecond(this.sdkConfiguration); } public org.openapis.openapi.models.operations.NestedGetResponse get() throws Exception { diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/NestedFirst.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/NestedFirst.java deleted file mode 100755 index bf49496a4..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/NestedFirst.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi; - -import java.net.http.HttpResponse; -import org.openapis.openapi.utils.HTTPClient; -import org.openapis.openapi.utils.HTTPRequest; - -public class NestedFirst { - - private SDKConfiguration sdkConfiguration; - - public NestedFirst(SDKConfiguration sdkConfiguration) { - this.sdkConfiguration = sdkConfiguration; - } - - public org.openapis.openapi.models.operations.NestedFirstGetResponse get() throws Exception { - String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); - String url = org.openapis.openapi.utils.Utils.generateURL(baseUrl, "/anything/nested/first"); - - HTTPRequest req = new HTTPRequest(); - req.setMethod("GET"); - req.setURL(url); - - req.addHeader("Accept", "*/*"); - req.addHeader("x-speakeasy-user-agent", this.sdkConfiguration.userAgent); - - HTTPClient client = this.sdkConfiguration.securityClient; - - HttpResponse httpRes = client.send(req); - - String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); - - org.openapis.openapi.models.operations.NestedFirstGetResponse res = new org.openapis.openapi.models.operations.NestedFirstGetResponse(contentType, httpRes.statusCode()) {{ - }}; - res.rawResponse = httpRes; - - if (httpRes.statusCode() == 200) { - } - - return res; - } -} \ No newline at end of file diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/NestedSecond.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/NestedSecond.java deleted file mode 100755 index f3165fcfb..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/NestedSecond.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi; - -import java.net.http.HttpResponse; -import org.openapis.openapi.utils.HTTPClient; -import org.openapis.openapi.utils.HTTPRequest; - -public class NestedSecond { - - private SDKConfiguration sdkConfiguration; - - public NestedSecond(SDKConfiguration sdkConfiguration) { - this.sdkConfiguration = sdkConfiguration; - } - - public org.openapis.openapi.models.operations.NestedSecondGetResponse get() throws Exception { - String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); - String url = org.openapis.openapi.utils.Utils.generateURL(baseUrl, "/anything/nested/second"); - - HTTPRequest req = new HTTPRequest(); - req.setMethod("GET"); - req.setURL(url); - - req.addHeader("Accept", "*/*"); - req.addHeader("x-speakeasy-user-agent", this.sdkConfiguration.userAgent); - - HTTPClient client = this.sdkConfiguration.securityClient; - - HttpResponse httpRes = client.send(req); - - String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); - - org.openapis.openapi.models.operations.NestedSecondGetResponse res = new org.openapis.openapi.models.operations.NestedSecondGetResponse(contentType, httpRes.statusCode()) {{ - }}; - res.rawResponse = httpRes; - - if (httpRes.statusCode() == 200) { - } - - return res; - } -} \ No newline at end of file diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/Parameters.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/Parameters.java index 312c79024..9ffa7aedd 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/Parameters.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/Parameters.java @@ -75,7 +75,7 @@ public org.openapis.openapi.models.operations.DeepObjectQueryParamsObjectRespons return this.deepObjectQueryParamsObject(objParam, null); } - public org.openapis.openapi.models.operations.DeepObjectQueryParamsObjectResponse deepObjectQueryParamsObject(org.openapis.openapi.models.shared.SimpleObject objParam, org.openapis.openapi.models.operations.DeepObjectQueryParamsObjectObjArrParam objArrParam) throws Exception { + public org.openapis.openapi.models.operations.DeepObjectQueryParamsObjectResponse deepObjectQueryParamsObject(org.openapis.openapi.models.shared.SimpleObject objParam, org.openapis.openapi.models.operations.ObjArrParam objArrParam) throws Exception { org.openapis.openapi.models.operations.DeepObjectQueryParamsObjectRequest request = new org.openapis.openapi.models.operations.DeepObjectQueryParamsObjectRequest(objParam); request.objArrParam=objArrParam; @@ -203,11 +203,11 @@ public org.openapis.openapi.models.operations.FormQueryParamsArrayResponse formQ return res; } - public org.openapis.openapi.models.operations.FormQueryParamsCamelObjectResponse formQueryParamsCamelObject(org.openapis.openapi.models.operations.FormQueryParamsCamelObjectObjParamExploded objParamExploded) throws Exception { + public org.openapis.openapi.models.operations.FormQueryParamsCamelObjectResponse formQueryParamsCamelObject(org.openapis.openapi.models.operations.ObjParamExploded objParamExploded) throws Exception { return this.formQueryParamsCamelObject(objParamExploded, null); } - public org.openapis.openapi.models.operations.FormQueryParamsCamelObjectResponse formQueryParamsCamelObject(org.openapis.openapi.models.operations.FormQueryParamsCamelObjectObjParamExploded objParamExploded, org.openapis.openapi.models.operations.FormQueryParamsCamelObjectObjParam objParam) throws Exception { + public org.openapis.openapi.models.operations.FormQueryParamsCamelObjectResponse formQueryParamsCamelObject(org.openapis.openapi.models.operations.ObjParamExploded objParamExploded, org.openapis.openapi.models.operations.ObjParam objParam) throws Exception { org.openapis.openapi.models.operations.FormQueryParamsCamelObjectRequest request = new org.openapis.openapi.models.operations.FormQueryParamsCamelObjectRequest(objParamExploded); request.objParam=objParam; diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/RequestBodies.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/RequestBodies.java index 2f57d7859..b12d3d551 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/RequestBodies.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/RequestBodies.java @@ -249,14 +249,14 @@ public org.openapis.openapi.models.operations.NullableRequiredEmptyObjectPostRes String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.NullableRequiredEmptyObjectPostResponse res = new org.openapis.openapi.models.operations.NullableRequiredEmptyObjectPostResponse(contentType, httpRes.statusCode()) {{ - nullableRequiredEmptyObjectPost200ApplicationJSONString = null; + res = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { String out = new String(httpRes.body(), StandardCharsets.UTF_8); - res.nullableRequiredEmptyObjectPost200ApplicationJSONString = out; + res.res = out; } } @@ -286,14 +286,14 @@ public org.openapis.openapi.models.operations.NullableRequiredPropertyPostRespon String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.NullableRequiredPropertyPostResponse res = new org.openapis.openapi.models.operations.NullableRequiredPropertyPostResponse(contentType, httpRes.statusCode()) {{ - nullableRequiredPropertyPost200ApplicationJSONString = null; + res = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { String out = new String(httpRes.body(), StandardCharsets.UTF_8); - res.nullableRequiredPropertyPost200ApplicationJSONString = out; + res.res = out; } } @@ -323,14 +323,14 @@ public org.openapis.openapi.models.operations.NullableRequiredSharedObjectPostRe String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.NullableRequiredSharedObjectPostResponse res = new org.openapis.openapi.models.operations.NullableRequiredSharedObjectPostResponse(contentType, httpRes.statusCode()) {{ - nullableRequiredSharedObjectPost200ApplicationJSONString = null; + res = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { String out = new String(httpRes.body(), StandardCharsets.UTF_8); - res.nullableRequiredSharedObjectPost200ApplicationJSONString = out; + res.res = out; } } @@ -368,7 +368,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayResponse res = new org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayResponse(contentType, httpRes.statusCode()) {{ - simpleObjects = null; + res = null; }}; res.rawResponse = httpRes; @@ -376,7 +376,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); org.openapis.openapi.models.shared.SimpleObject[] out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.shared.SimpleObject[].class); - res.simpleObjects = out; + res.res = out; } } @@ -414,7 +414,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayCamelCaseResponse res = new org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayCamelCaseResponse(contentType, httpRes.statusCode()) {{ - simpleObjectCamelCases = null; + res = null; }}; res.rawResponse = httpRes; @@ -422,7 +422,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); org.openapis.openapi.models.shared.SimpleObjectCamelCase[] out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.shared.SimpleObjectCamelCase[].class); - res.simpleObjectCamelCases = out; + res.res = out; } } @@ -536,7 +536,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfArrayResponse res = new org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfArrayResponse(contentType, httpRes.statusCode()) {{ - arrs = null; + res = null; }}; res.rawResponse = httpRes; @@ -544,7 +544,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); org.openapis.openapi.models.shared.SimpleObject[][] out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.shared.SimpleObject[][].class); - res.arrs = out; + res.res = out; } } @@ -582,7 +582,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse res = new org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse(contentType, httpRes.statusCode()) {{ - arrs = null; + res = null; }}; res.rawResponse = httpRes; @@ -590,7 +590,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); org.openapis.openapi.models.shared.SimpleObjectCamelCase[][] out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.shared.SimpleObjectCamelCase[][].class); - res.arrs = out; + res.res = out; } } @@ -628,7 +628,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse res = new org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse(contentType, httpRes.statusCode()) {{ - arrs = null; + res = null; }}; res.rawResponse = httpRes; @@ -636,7 +636,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); String[][] out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), String[][].class); - res.arrs = out; + res.res = out; } } @@ -674,7 +674,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfMapResponse res = new org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfMapResponse(contentType, httpRes.statusCode()) {{ - maps = null; + res = null; }}; res.rawResponse = httpRes; @@ -682,7 +682,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); java.util.Map[] out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), new TypeReference[]>() {}); - res.maps = out; + res.res = out; } } @@ -720,7 +720,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse res = new org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse(contentType, httpRes.statusCode()) {{ - maps = null; + res = null; }}; res.rawResponse = httpRes; @@ -728,7 +728,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); java.util.Map[] out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), new TypeReference[]>() {}); - res.maps = out; + res.res = out; } } @@ -766,7 +766,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfPrimitiveResponse res = new org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArrayOfPrimitiveResponse(contentType, httpRes.statusCode()) {{ - strings = null; + res = null; }}; res.rawResponse = httpRes; @@ -774,7 +774,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostApplicationJsonArra if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); String[] out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), String[].class); - res.strings = out; + res.res = out; } } @@ -1444,15 +1444,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostComplexNumberTypesR String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostComplexNumberTypesResponse res = new org.openapis.openapi.models.operations.RequestBodyPostComplexNumberTypesResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostComplexNumberTypes200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostComplexNumberTypes200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostComplexNumberTypes200ApplicationJSON.class); - res.requestBodyPostComplexNumberTypes200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostComplexNumberTypesResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostComplexNumberTypesResponseBody.class); + res.object = out; } } @@ -1482,15 +1482,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostDefaultsAndConstsRe String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostDefaultsAndConstsResponse res = new org.openapis.openapi.models.operations.RequestBodyPostDefaultsAndConstsResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostDefaultsAndConsts200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostDefaultsAndConsts200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostDefaultsAndConsts200ApplicationJSON.class); - res.requestBodyPostDefaultsAndConsts200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostDefaultsAndConstsResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostDefaultsAndConstsResponseBody.class); + res.object = out; } } @@ -1520,15 +1520,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostEmptyObjectResponse String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostEmptyObjectResponse res = new org.openapis.openapi.models.operations.RequestBodyPostEmptyObjectResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostEmptyObject200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostEmptyObject200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostEmptyObject200ApplicationJSON.class); - res.requestBodyPostEmptyObject200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostEmptyObjectResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostEmptyObjectResponseBody.class); + res.object = out; } } @@ -1672,15 +1672,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayB String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayBigIntResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayBigIntResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayBigIntResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayBigIntResponseBody.class); + res.object = out; } } @@ -1710,15 +1710,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayD String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayDateResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayDateResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayDateResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayDateResponseBody.class); + res.object = out; } } @@ -1748,15 +1748,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayD String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayDecimalStrResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayDecimalStrResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.class); + res.object = out; } } @@ -1786,15 +1786,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBigInt String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBigIntResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBigIntResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesBigInt200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBigIntResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBigIntResponseBody.class); + res.object = out; } } @@ -1824,15 +1824,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBigInt String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBigIntStrResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBigIntStrResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBigIntStrResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBigIntStrResponseBody.class); + res.object = out; } } @@ -1862,15 +1862,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBoolea String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBooleanResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBooleanResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesBoolean200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBooleanResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesBooleanResponseBody.class); + res.object = out; } } @@ -1900,15 +1900,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDateRe String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDateResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDateResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesDate200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesDate200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesDate200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesDate200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDateResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDateResponseBody.class); + res.object = out; } } @@ -1938,15 +1938,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDateTi String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDateTimeResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDateTimeResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesDateTime200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDateTimeResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDateTimeResponseBody.class); + res.object = out; } } @@ -1976,15 +1976,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDecima String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDecimalResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDecimalResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesDecimal200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDecimalResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDecimalResponseBody.class); + res.object = out; } } @@ -2014,15 +2014,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDecima String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDecimalStrResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDecimalStrResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDecimalStrResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesDecimalStrResponseBody.class); + res.object = out; } } @@ -2052,15 +2052,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesFloat3 String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesFloat32Response res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesFloat32Response(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesFloat32200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesFloat32ResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesFloat32ResponseBody.class); + res.object = out; } } @@ -2090,15 +2090,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesInt32R String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesInt32Response res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesInt32Response(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesInt32200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesInt32200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesInt32200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesInt32200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesInt32ResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesInt32ResponseBody.class); + res.object = out; } } @@ -2128,15 +2128,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesIntege String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesIntegerResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesIntegerResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesInteger200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesInteger200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesInteger200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesInteger200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesIntegerResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesIntegerResponseBody.class); + res.object = out; } } @@ -2166,15 +2166,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapBig String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapBigIntStrResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapBigIntStrResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapBigIntStrResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.class); + res.object = out; } } @@ -2204,15 +2204,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapDat String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapDateTimeResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapDateTimeResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapDateTimeResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapDateTimeResponseBody.class); + res.object = out; } } @@ -2242,15 +2242,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapDec String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapDecimalResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapDecimalResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapDecimalResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesMapDecimalResponseBody.class); + res.object = out; } } @@ -2280,15 +2280,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesNumber String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesNumberResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesNumberResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesNumber200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesNumber200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesNumber200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesNumber200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesNumberResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesNumberResponseBody.class); + res.object = out; } } @@ -2318,15 +2318,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesString String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesStringResponse res = new org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesStringResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostJSONDataTypesString200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesString200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJSONDataTypesString200ApplicationJSON.class); - res.requestBodyPostJSONDataTypesString200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesStringResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostJsonDataTypesStringResponseBody.class); + res.object = out; } } @@ -2371,7 +2371,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentType return res; } - public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesInlineFilteredResponse requestBodyPostMultipleContentTypesInlineFiltered(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON request) throws Exception { + public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesInlineFilteredResponse requestBodyPostMultipleContentTypesInlineFiltered(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody request) throws Exception { String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); String url = org.openapis.openapi.utils.Utils.generateURL(baseUrl, "/anything/requestBodies/post/multiple/contentTypes/inline/filtered"); @@ -2409,7 +2409,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentType return res; } - public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamFormResponse requestBodyPostMultipleContentTypesSplitParamForm(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded requestBody, String paramStr) throws Exception { + public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamFormResponse requestBodyPostMultipleContentTypesSplitParamForm(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody requestBody, String paramStr) throws Exception { org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamFormRequest request = new org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamFormRequest(requestBody, paramStr); String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); @@ -2455,7 +2455,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentType return res; } - public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamJsonResponse requestBodyPostMultipleContentTypesSplitParamJson(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON requestBody, String paramStr) throws Exception { + public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamJsonResponse requestBodyPostMultipleContentTypesSplitParamJson(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody requestBody, String paramStr) throws Exception { org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequest request = new org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequest(requestBody, paramStr); String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); @@ -2501,7 +2501,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentType return res; } - public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartResponse requestBodyPostMultipleContentTypesSplitParamMultipart(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData requestBody, String paramStr) throws Exception { + public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartResponse requestBodyPostMultipleContentTypesSplitParamMultipart(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody requestBody, String paramStr) throws Exception { org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequest request = new org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequest(requestBody, paramStr); String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); @@ -2547,7 +2547,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentType return res; } - public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitFormResponse requestBodyPostMultipleContentTypesSplitForm(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded request) throws Exception { + public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitFormResponse requestBodyPostMultipleContentTypesSplitForm(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody request) throws Exception { String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); String url = org.openapis.openapi.utils.Utils.generateURL(baseUrl, "/anything/requestBodies/post/multiple/contentTypes/split"); @@ -2585,7 +2585,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentType return res; } - public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitJsonResponse requestBodyPostMultipleContentTypesSplitJson(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON request) throws Exception { + public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitJsonResponse requestBodyPostMultipleContentTypesSplitJson(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitJsonRequestBody request) throws Exception { String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); String url = org.openapis.openapi.utils.Utils.generateURL(baseUrl, "/anything/requestBodies/post/multiple/contentTypes/split"); @@ -2623,7 +2623,7 @@ public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentType return res; } - public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitMultipartResponse requestBodyPostMultipleContentTypesSplitMultipart(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData request) throws Exception { + public org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitMultipartResponse requestBodyPostMultipleContentTypesSplitMultipart(org.openapis.openapi.models.operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody request) throws Exception { String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); String url = org.openapis.openapi.utils.Utils.generateURL(baseUrl, "/anything/requestBodies/post/multiple/contentTypes/split"); @@ -2681,15 +2681,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostNotNullableNotRequi String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostNotNullableNotRequiredStringBodyResponse res = new org.openapis.openapi.models.operations.RequestBodyPostNotNullableNotRequiredStringBodyResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.class); - res.requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.class); + res.object = out; } } @@ -2719,15 +2719,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostNullArrayResponse r String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostNullArrayResponse res = new org.openapis.openapi.models.operations.RequestBodyPostNullArrayResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostNullArray200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostNullArray200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostNullArray200ApplicationJSON.class); - res.requestBodyPostNullArray200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostNullArrayResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostNullArrayResponseBody.class); + res.object = out; } } @@ -2757,15 +2757,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostNullDictionaryRespo String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostNullDictionaryResponse res = new org.openapis.openapi.models.operations.RequestBodyPostNullDictionaryResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostNullDictionary200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostNullDictionary200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostNullDictionary200ApplicationJSON.class); - res.requestBodyPostNullDictionary200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostNullDictionaryResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostNullDictionaryResponseBody.class); + res.object = out; } } @@ -2792,15 +2792,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostNullableNotRequired String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostNullableNotRequiredStringBodyResponse res = new org.openapis.openapi.models.operations.RequestBodyPostNullableNotRequiredStringBodyResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.class); - res.requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody.class); + res.object = out; } } @@ -2830,15 +2830,15 @@ public org.openapis.openapi.models.operations.RequestBodyPostNullableRequiredStr String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.RequestBodyPostNullableRequiredStringBodyResponse res = new org.openapis.openapi.models.operations.RequestBodyPostNullableRequiredStringBodyResponse(contentType, httpRes.statusCode()) {{ - requestBodyPostNullableRequiredStringBody200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.RequestBodyPostNullableRequiredStringBody200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostNullableRequiredStringBody200ApplicationJSON.class); - res.requestBodyPostNullableRequiredStringBody200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.RequestBodyPostNullableRequiredStringBodyResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.RequestBodyPostNullableRequiredStringBodyResponseBody.class); + res.object = out; } } @@ -3165,11 +3165,11 @@ public org.openapis.openapi.models.operations.RequestBodyPutStringWithParamsResp return res; } - public org.openapis.openapi.models.operations.RequestBodyReadAndWriteResponse requestBodyReadAndWrite(org.openapis.openapi.models.shared.ReadWriteObjectInput request) throws Exception { + public org.openapis.openapi.models.operations.RequestBodyReadAndWriteResponse requestBodyReadAndWrite(org.openapis.openapi.models.shared.ReadWriteObject request) throws Exception { return this.requestBodyReadAndWrite(request, null); } - public org.openapis.openapi.models.operations.RequestBodyReadAndWriteResponse requestBodyReadAndWrite(org.openapis.openapi.models.shared.ReadWriteObjectInput request, String serverURL) throws Exception { + public org.openapis.openapi.models.operations.RequestBodyReadAndWriteResponse requestBodyReadAndWrite(org.openapis.openapi.models.shared.ReadWriteObject request, String serverURL) throws Exception { String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(REQUEST_BODY_READ_AND_WRITE_SERVERS[0], new java.util.HashMap()); if (serverURL != null && !serverURL.isBlank()) { baseUrl = serverURL; diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/ResponseBodies.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/ResponseBodies.java index 01aa2bad3..c51855165 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/ResponseBodies.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/ResponseBodies.java @@ -64,15 +64,15 @@ public org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesCo String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponse res = new org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponse(contentType, httpRes.statusCode()) {{ - responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.class); - res.responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.class); + res.object = out; } } @@ -102,15 +102,15 @@ public org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesDa String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesDatePostResponse res = new org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesDatePostResponse(contentType, httpRes.statusCode()) {{ - responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.class); - res.responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesDatePostResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesDatePostResponseBody.class); + res.object = out; } } @@ -140,15 +140,15 @@ public org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesOb String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesObjectPostResponse res = new org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesObjectPostResponse(contentType, httpRes.statusCode()) {{ - responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.class); - res.responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody.class); + res.object = out; } } @@ -178,15 +178,15 @@ public org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesPo String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesPostResponse res = new org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesPostResponse(contentType, httpRes.statusCode()) {{ - responseBodyAdditionalPropertiesPost200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesPost200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesPost200ApplicationJSON.class); - res.responseBodyAdditionalPropertiesPost200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesPostResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.ResponseBodyAdditionalPropertiesPostResponseBody.class); + res.object = out; } } @@ -289,7 +289,7 @@ public org.openapis.openapi.models.operations.ResponseBodyOptionalGetResponse re org.openapis.openapi.models.operations.ResponseBodyOptionalGetResponse res = new org.openapis.openapi.models.operations.ResponseBodyOptionalGetResponse(contentType, httpRes.statusCode()) {{ typedObject1 = null; - responseBodyOptionalGet200TextPlainString = null; + res = null; }}; res.rawResponse = httpRes; @@ -301,7 +301,7 @@ public org.openapis.openapi.models.operations.ResponseBodyOptionalGetResponse re } if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "text/plain")) { String out = new String(httpRes.body(), StandardCharsets.UTF_8); - res.responseBodyOptionalGet200TextPlainString = out; + res.res = out; } } @@ -436,15 +436,15 @@ public org.openapis.openapi.models.operations.ResponseBodyZeroValueComplexTypePt String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.ResponseBodyZeroValueComplexTypePtrsPostResponse res = new org.openapis.openapi.models.operations.ResponseBodyZeroValueComplexTypePtrsPostResponse(contentType, httpRes.statusCode()) {{ - responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.class); - res.responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody.class); + res.object = out; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDK.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDK.java index caf9653eb..dbad40026 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDK.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDK.java @@ -50,58 +50,39 @@ public class SDK { /** - * Endpoints for testing authentication. - */ - public Auth auth; - /** - * Endpoints for testing authentication. - */ - public AuthNew authNew; - /** - * Testing for documentation extensions and tooling. + * Endpoints for purely testing valid generation behavior. */ - public Documentation documentation; + public Generation generation; /** * Endpoints for testing error responses. */ public Errors errors; - public First first; /** - * Endpoints for testing flattening through request body and parameter combinations. + * Endpoints for testing union types. */ - public Flattening flattening; + public Unions unions; /** - * Endpoints for purely testing valid generation behavior. + * Endpoints for testing flattening through request body and parameter combinations. */ - public Generation generation; + public Flattening flattening; /** * Endpoints for testing global parameters. */ public Globals globals; - public Nest nest; - public Nested nested; - /** - * Endpoints for testing the pagination extension - */ - public Pagination pagination; /** * Endpoints for testing parameters. */ public Parameters parameters; + public Nest nest; + public Nested nested; /** * Endpoints for testing request bodies. */ public RequestBodies requestBodies; - public Resource resource; /** * Endpoints for testing response bodies. */ public ResponseBodies responseBodies; - /** - * Endpoints for testing retries. - */ - public Retries retries; - public Second second; /** * Endpoints for testing servers. */ @@ -111,9 +92,28 @@ public class SDK { */ public Telemetry telemetry; /** - * Endpoints for testing union types. + * Endpoints for testing authentication. + */ + public AuthNew authNew; + /** + * Endpoints for testing authentication. + */ + public Auth auth; + /** + * Testing for documentation extensions and tooling. + */ + public Documentation documentation; + public Resource resource; + public First first; + public Second second; + /** + * Endpoints for testing the pagination extension + */ + public Pagination pagination; + /** + * Endpoints for testing retries. */ - public Unions unions; + public Retries retries; private SDKConfiguration sdkConfiguration; @@ -330,45 +330,45 @@ public static Builder builder() { private SDK(SDKConfiguration sdkConfiguration) throws Exception { this.sdkConfiguration = sdkConfiguration; - this.auth = new Auth(this.sdkConfiguration); - - this.authNew = new AuthNew(this.sdkConfiguration); - - this.documentation = new Documentation(this.sdkConfiguration); + this.generation = new Generation(this.sdkConfiguration); this.errors = new Errors(this.sdkConfiguration); - this.first = new First(this.sdkConfiguration); + this.unions = new Unions(this.sdkConfiguration); this.flattening = new Flattening(this.sdkConfiguration); - this.generation = new Generation(this.sdkConfiguration); - this.globals = new Globals(this.sdkConfiguration); + this.parameters = new Parameters(this.sdkConfiguration); + this.nest = new Nest(this.sdkConfiguration); this.nested = new Nested(this.sdkConfiguration); - this.pagination = new Pagination(this.sdkConfiguration); + this.requestBodies = new RequestBodies(this.sdkConfiguration); - this.parameters = new Parameters(this.sdkConfiguration); + this.responseBodies = new ResponseBodies(this.sdkConfiguration); - this.requestBodies = new RequestBodies(this.sdkConfiguration); + this.servers = new Servers(this.sdkConfiguration); - this.resource = new Resource(this.sdkConfiguration); + this.telemetry = new Telemetry(this.sdkConfiguration); - this.responseBodies = new ResponseBodies(this.sdkConfiguration); + this.authNew = new AuthNew(this.sdkConfiguration); - this.retries = new Retries(this.sdkConfiguration); + this.auth = new Auth(this.sdkConfiguration); - this.second = new Second(this.sdkConfiguration); + this.documentation = new Documentation(this.sdkConfiguration); - this.servers = new Servers(this.sdkConfiguration); + this.resource = new Resource(this.sdkConfiguration); - this.telemetry = new Telemetry(this.sdkConfiguration); + this.first = new First(this.sdkConfiguration); - this.unions = new Unions(this.sdkConfiguration); + this.second = new Second(this.sdkConfiguration); + + this.pagination = new Pagination(this.sdkConfiguration); + + this.retries = new Retries(this.sdkConfiguration); } public org.openapis.openapi.models.operations.PutAnythingIgnoredGenerationResponse putAnythingIgnoredGeneration(String request) throws Exception { @@ -394,15 +394,15 @@ public org.openapis.openapi.models.operations.PutAnythingIgnoredGenerationRespon String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); org.openapis.openapi.models.operations.PutAnythingIgnoredGenerationResponse res = new org.openapis.openapi.models.operations.PutAnythingIgnoredGenerationResponse(contentType, httpRes.statusCode()) {{ - putAnythingIgnoredGeneration200ApplicationJSONObject = null; + object = null; }}; res.rawResponse = httpRes; if (httpRes.statusCode() == 200) { if (org.openapis.openapi.utils.Utils.matchContentType(contentType, "application/json")) { ObjectMapper mapper = JSON.getMapper(); - org.openapis.openapi.models.operations.PutAnythingIgnoredGeneration200ApplicationJSON out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.PutAnythingIgnoredGeneration200ApplicationJSON.class); - res.putAnythingIgnoredGeneration200ApplicationJSONObject = out; + org.openapis.openapi.models.operations.PutAnythingIgnoredGenerationResponseBody out = mapper.readValue(new String(httpRes.body(), StandardCharsets.UTF_8), org.openapis.openapi.models.operations.PutAnythingIgnoredGenerationResponseBody.class); + res.object = out; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKConfiguration.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKConfiguration.java index 21d748ebc..bac6f7165 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKConfiguration.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKConfiguration.java @@ -35,9 +35,9 @@ class SDKConfiguration { }}; public String language = "java"; public String openapiDocVersion = "0.1.0"; - public String sdkVersion = "1.38.2"; - public String genVersion = "2.173.0"; - public String userAgent = "speakeasy-sdk/java 1.38.2 2.173.0 0.1.0 "; + public String sdkVersion = "2.0.0"; + public String genVersion = "2.181.1"; + public String userAgent = "speakeasy-sdk/java 2.0.0 2.181.1 0.1.0 "; public Map>> globals = new HashMap>>(){{ put("parameters", new HashMap>()); }}; diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKFirst.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKFirst.java new file mode 100755 index 000000000..ac40466c1 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKFirst.java @@ -0,0 +1,45 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi; + +import java.net.http.HttpResponse; +import org.openapis.openapi.utils.HTTPClient; +import org.openapis.openapi.utils.HTTPRequest; + +public class SDKFirst { + + private SDKConfiguration sdkConfiguration; + + public SDKFirst(SDKConfiguration sdkConfiguration) { + this.sdkConfiguration = sdkConfiguration; + } + + public org.openapis.openapi.models.operations.NestFirstGetResponse get() throws Exception { + String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); + String url = org.openapis.openapi.utils.Utils.generateURL(baseUrl, "/anything/nest/first"); + + HTTPRequest req = new HTTPRequest(); + req.setMethod("GET"); + req.setURL(url); + + req.addHeader("Accept", "*/*"); + req.addHeader("x-speakeasy-user-agent", this.sdkConfiguration.userAgent); + + HTTPClient client = this.sdkConfiguration.securityClient; + + HttpResponse httpRes = client.send(req); + + String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); + + org.openapis.openapi.models.operations.NestFirstGetResponse res = new org.openapis.openapi.models.operations.NestFirstGetResponse(contentType, httpRes.statusCode()) {{ + }}; + res.rawResponse = httpRes; + + if (httpRes.statusCode() == 200) { + } + + return res; + } +} \ No newline at end of file diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKNestedFirst.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKNestedFirst.java new file mode 100755 index 000000000..e90632eb4 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKNestedFirst.java @@ -0,0 +1,45 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi; + +import java.net.http.HttpResponse; +import org.openapis.openapi.utils.HTTPClient; +import org.openapis.openapi.utils.HTTPRequest; + +public class SDKNestedFirst { + + private SDKConfiguration sdkConfiguration; + + public SDKNestedFirst(SDKConfiguration sdkConfiguration) { + this.sdkConfiguration = sdkConfiguration; + } + + public org.openapis.openapi.models.operations.NestedFirstGetResponse get() throws Exception { + String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); + String url = org.openapis.openapi.utils.Utils.generateURL(baseUrl, "/anything/nested/first"); + + HTTPRequest req = new HTTPRequest(); + req.setMethod("GET"); + req.setURL(url); + + req.addHeader("Accept", "*/*"); + req.addHeader("x-speakeasy-user-agent", this.sdkConfiguration.userAgent); + + HTTPClient client = this.sdkConfiguration.securityClient; + + HttpResponse httpRes = client.send(req); + + String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); + + org.openapis.openapi.models.operations.NestedFirstGetResponse res = new org.openapis.openapi.models.operations.NestedFirstGetResponse(contentType, httpRes.statusCode()) {{ + }}; + res.rawResponse = httpRes; + + if (httpRes.statusCode() == 200) { + } + + return res; + } +} \ No newline at end of file diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKSecond.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKSecond.java new file mode 100755 index 000000000..4a855ef55 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/SDKSecond.java @@ -0,0 +1,45 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi; + +import java.net.http.HttpResponse; +import org.openapis.openapi.utils.HTTPClient; +import org.openapis.openapi.utils.HTTPRequest; + +public class SDKSecond { + + private SDKConfiguration sdkConfiguration; + + public SDKSecond(SDKConfiguration sdkConfiguration) { + this.sdkConfiguration = sdkConfiguration; + } + + public org.openapis.openapi.models.operations.NestedSecondGetResponse get() throws Exception { + String baseUrl = org.openapis.openapi.utils.Utils.templateUrl(this.sdkConfiguration.serverUrl, this.sdkConfiguration.getServerVariableDefaults()); + String url = org.openapis.openapi.utils.Utils.generateURL(baseUrl, "/anything/nested/second"); + + HTTPRequest req = new HTTPRequest(); + req.setMethod("GET"); + req.setURL(url); + + req.addHeader("Accept", "*/*"); + req.addHeader("x-speakeasy-user-agent", this.sdkConfiguration.userAgent); + + HTTPClient client = this.sdkConfiguration.securityClient; + + HttpResponse httpRes = client.send(req); + + String contentType = httpRes.headers().firstValue("Content-Type").orElse("application/octet-stream"); + + org.openapis.openapi.models.operations.NestedSecondGetResponse res = new org.openapis.openapi.models.operations.NestedSecondGetResponse(contentType, httpRes.statusCode()) {{ + }}; + res.rawResponse = httpRes; + + if (httpRes.statusCode() == 200) { + } + + return res; + } +} \ No newline at end of file diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/AnchorTypesGetResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/AnchorTypesGetResponse.java index 731df0773..fea276d9f 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/AnchorTypesGetResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/AnchorTypesGetResponse.java @@ -46,9 +46,9 @@ public AnchorTypesGetResponse withRawResponse(HttpResponse rawResponse) * A successful response that contains the simpleObject sent in the request body */ - public TypeFromAnchor typeFromAnchor; + public AnchorTypesGetTypeFromAnchor typeFromAnchor; - public AnchorTypesGetResponse withTypeFromAnchor(TypeFromAnchor typeFromAnchor) { + public AnchorTypesGetResponse withTypeFromAnchor(AnchorTypesGetTypeFromAnchor typeFromAnchor) { this.typeFromAnchor = typeFromAnchor; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/AnchorTypesGetTypeFromAnchor.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/AnchorTypesGetTypeFromAnchor.java new file mode 100755 index 000000000..f1b14b5cf --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/AnchorTypesGetTypeFromAnchor.java @@ -0,0 +1,30 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * AnchorTypesGetTypeFromAnchor - 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. + */ + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("json") + public org.openapis.openapi.models.shared.SimpleObject json; + + public AnchorTypesGetTypeFromAnchor withJson(org.openapis.openapi.models.shared.SimpleObject json) { + this.json = json; + return this; + } + + public AnchorTypesGetTypeFromAnchor(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Args.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Args.java new file mode 100755 index 000000000..c6ba4c38e --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Args.java @@ -0,0 +1,22 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class Args { + @JsonProperty("globalQueryParam") + public String globalQueryParam; + + public Args withGlobalQueryParam(String globalQueryParam) { + this.globalQueryParam = globalQueryParam; + return this; + } + + public Args(@JsonProperty("globalQueryParam") String globalQueryParam) { + this.globalQueryParam = globalQueryParam; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/CreateFileFile.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/CreateFileFile.java new file mode 100755 index 000000000..10ca1a09a --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/CreateFileFile.java @@ -0,0 +1,32 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; +import org.openapis.openapi.utils.SpeakeasyMetadata; + + +public class CreateFileFile { + @SpeakeasyMetadata("multipartForm:content") + public byte[] content; + + public CreateFileFile withContent(byte[] content) { + this.content = content; + return this; + } + + @SpeakeasyMetadata("multipartForm:name=file") + public String fileName; + + public CreateFileFile withFileName(String fileName) { + this.fileName = fileName; + return this; + } + + public CreateFileFile(@JsonProperty("content") byte[] content, @JsonProperty("fileName") String fileName) { + this.content = content; + this.fileName = fileName; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/CreateFileRequestBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/CreateFileRequestBody.java index 74a1c4a90..ef83724ff 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/CreateFileRequestBody.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/CreateFileRequestBody.java @@ -9,9 +9,9 @@ public class CreateFileRequestBody { @SpeakeasyMetadata("multipartForm:file") - public CreateFileRequestBodyFile file; + public CreateFileFile file; - public CreateFileRequestBody withFile(CreateFileRequestBodyFile file) { + public CreateFileRequestBody withFile(CreateFileFile file) { this.file = file; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/CreateFileRequestBodyFile.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/CreateFileRequestBodyFile.java deleted file mode 100755 index 625e1454f..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/CreateFileRequestBodyFile.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; -import org.openapis.openapi.utils.SpeakeasyMetadata; - - -public class CreateFileRequestBodyFile { - @SpeakeasyMetadata("multipartForm:content") - public byte[] content; - - public CreateFileRequestBodyFile withContent(byte[] content) { - this.content = content; - return this; - } - - @SpeakeasyMetadata("multipartForm:name=file") - public String file; - - public CreateFileRequestBodyFile withFile(String file) { - this.file = file; - return this; - } - - public CreateFileRequestBodyFile(@JsonProperty("content") byte[] content, @JsonProperty("file") String file) { - this.content = content; - this.file = file; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectArgs.java new file mode 100755 index 000000000..27f06574a --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectArgs.java @@ -0,0 +1,186 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class DeepObjectQueryParamsObjectArgs { + @JsonProperty("objArrParam[arr]") + public String[] objArrParamArr; + + public DeepObjectQueryParamsObjectArgs withObjArrParamArr(String[] objArrParamArr) { + this.objArrParamArr = objArrParamArr; + return this; + } + + @JsonProperty("objParam[any]") + public String objParamAny; + + public DeepObjectQueryParamsObjectArgs withObjParamAny(String objParamAny) { + this.objParamAny = objParamAny; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("objParam[bigintStr]") + public String objParamBigintStr; + + public DeepObjectQueryParamsObjectArgs withObjParamBigintStr(String objParamBigintStr) { + this.objParamBigintStr = objParamBigintStr; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("objParam[bigint]") + public String objParamBigint; + + public DeepObjectQueryParamsObjectArgs withObjParamBigint(String objParamBigint) { + this.objParamBigint = objParamBigint; + return this; + } + + @JsonProperty("objParam[boolOpt]") + public String objParamBoolOpt; + + public DeepObjectQueryParamsObjectArgs withObjParamBoolOpt(String objParamBoolOpt) { + this.objParamBoolOpt = objParamBoolOpt; + return this; + } + + @JsonProperty("objParam[bool]") + public String objParamBool; + + public DeepObjectQueryParamsObjectArgs withObjParamBool(String objParamBool) { + this.objParamBool = objParamBool; + return this; + } + + @JsonProperty("objParam[dateTime]") + public String objParamDateTime; + + public DeepObjectQueryParamsObjectArgs withObjParamDateTime(String objParamDateTime) { + this.objParamDateTime = objParamDateTime; + return this; + } + + @JsonProperty("objParam[date]") + public String objParamDate; + + public DeepObjectQueryParamsObjectArgs withObjParamDate(String objParamDate) { + this.objParamDate = objParamDate; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("objParam[decimalStr]") + public String objParamDecimalStr; + + public DeepObjectQueryParamsObjectArgs withObjParamDecimalStr(String objParamDecimalStr) { + this.objParamDecimalStr = objParamDecimalStr; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("objParam[decimal]") + public String objParamDecimal; + + public DeepObjectQueryParamsObjectArgs withObjParamDecimal(String objParamDecimal) { + this.objParamDecimal = objParamDecimal; + return this; + } + + @JsonProperty("objParam[enum]") + public String objParamEnum; + + public DeepObjectQueryParamsObjectArgs withObjParamEnum(String objParamEnum) { + this.objParamEnum = objParamEnum; + return this; + } + + @JsonProperty("objParam[float32]") + public String objParamFloat32; + + public DeepObjectQueryParamsObjectArgs withObjParamFloat32(String objParamFloat32) { + this.objParamFloat32 = objParamFloat32; + return this; + } + + @JsonProperty("objParam[int32Enum]") + public String objParamInt32Enum; + + public DeepObjectQueryParamsObjectArgs withObjParamInt32Enum(String objParamInt32Enum) { + this.objParamInt32Enum = objParamInt32Enum; + return this; + } + + @JsonProperty("objParam[int32]") + public String objParamInt32; + + public DeepObjectQueryParamsObjectArgs withObjParamInt32(String objParamInt32) { + this.objParamInt32 = objParamInt32; + return this; + } + + @JsonProperty("objParam[intEnum]") + public String objParamIntEnum; + + public DeepObjectQueryParamsObjectArgs withObjParamIntEnum(String objParamIntEnum) { + this.objParamIntEnum = objParamIntEnum; + return this; + } + + @JsonProperty("objParam[int]") + public String objParamInt; + + public DeepObjectQueryParamsObjectArgs withObjParamInt(String objParamInt) { + this.objParamInt = objParamInt; + return this; + } + + @JsonProperty("objParam[num]") + public String objParamNum; + + public DeepObjectQueryParamsObjectArgs withObjParamNum(String objParamNum) { + this.objParamNum = objParamNum; + return this; + } + + @JsonProperty("objParam[strOpt]") + public String objParamStrOpt; + + public DeepObjectQueryParamsObjectArgs withObjParamStrOpt(String objParamStrOpt) { + this.objParamStrOpt = objParamStrOpt; + return this; + } + + @JsonProperty("objParam[str]") + public String objParamStr; + + public DeepObjectQueryParamsObjectArgs withObjParamStr(String objParamStr) { + this.objParamStr = objParamStr; + return this; + } + + public DeepObjectQueryParamsObjectArgs(@JsonProperty("objArrParam[arr]") String[] objArrParamArr, @JsonProperty("objParam[any]") String objParamAny, @JsonProperty("objParam[boolOpt]") String objParamBoolOpt, @JsonProperty("objParam[bool]") String objParamBool, @JsonProperty("objParam[dateTime]") String objParamDateTime, @JsonProperty("objParam[date]") String objParamDate, @JsonProperty("objParam[enum]") String objParamEnum, @JsonProperty("objParam[float32]") String objParamFloat32, @JsonProperty("objParam[int32Enum]") String objParamInt32Enum, @JsonProperty("objParam[int32]") String objParamInt32, @JsonProperty("objParam[intEnum]") String objParamIntEnum, @JsonProperty("objParam[int]") String objParamInt, @JsonProperty("objParam[num]") String objParamNum, @JsonProperty("objParam[strOpt]") String objParamStrOpt, @JsonProperty("objParam[str]") String objParamStr) { + this.objArrParamArr = objArrParamArr; + this.objParamAny = objParamAny; + this.objParamBoolOpt = objParamBoolOpt; + this.objParamBool = objParamBool; + this.objParamDateTime = objParamDateTime; + this.objParamDate = objParamDate; + this.objParamEnum = objParamEnum; + this.objParamFloat32 = objParamFloat32; + this.objParamInt32Enum = objParamInt32Enum; + this.objParamInt32 = objParamInt32; + this.objParamIntEnum = objParamIntEnum; + this.objParamInt = objParamInt; + this.objParamNum = objParamNum; + this.objParamStrOpt = objParamStrOpt; + this.objParamStr = objParamStr; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectObjArrParam.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectObjArrParam.java deleted file mode 100755 index 9945673ae..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectObjArrParam.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import org.openapis.openapi.utils.SpeakeasyMetadata; - -/** - * DeepObjectQueryParamsObjectObjArrParam - */ - -public class DeepObjectQueryParamsObjectObjArrParam { - @SpeakeasyMetadata("queryParam:name=arr") - public String[] arr; - - public DeepObjectQueryParamsObjectObjArrParam withArr(String[] arr) { - this.arr = arr; - return this; - } - - public DeepObjectQueryParamsObjectObjArrParam(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectRequest.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectRequest.java index f97771107..eba943b85 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectRequest.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectRequest.java @@ -21,9 +21,9 @@ public DeepObjectQueryParamsObjectRequest withObjParam(org.openapis.openapi.mode } @SpeakeasyMetadata("queryParam:style=deepObject,explode=true,name=objArrParam") - public DeepObjectQueryParamsObjectObjArrParam objArrParam; + public ObjArrParam objArrParam; - public DeepObjectQueryParamsObjectRequest withObjArrParam(DeepObjectQueryParamsObjectObjArrParam objArrParam) { + public DeepObjectQueryParamsObjectRequest withObjArrParam(ObjArrParam objArrParam) { this.objArrParam = objArrParam; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectRes.java index 1fe7fa485..d1f474723 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectRes.java @@ -12,9 +12,9 @@ public class DeepObjectQueryParamsObjectRes { @JsonProperty("args") - public DeepObjectQueryParamsObjectResArgs args; + public DeepObjectQueryParamsObjectArgs args; - public DeepObjectQueryParamsObjectRes withArgs(DeepObjectQueryParamsObjectResArgs args) { + public DeepObjectQueryParamsObjectRes withArgs(DeepObjectQueryParamsObjectArgs args) { this.args = args; return this; } @@ -27,7 +27,7 @@ public DeepObjectQueryParamsObjectRes withUrl(String url) { return this; } - public DeepObjectQueryParamsObjectRes(@JsonProperty("args") DeepObjectQueryParamsObjectResArgs args, @JsonProperty("url") String url) { + public DeepObjectQueryParamsObjectRes(@JsonProperty("args") DeepObjectQueryParamsObjectArgs args, @JsonProperty("url") String url) { this.args = args; this.url = url; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectResArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectResArgs.java deleted file mode 100755 index 6b0e1f60d..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeepObjectQueryParamsObjectResArgs.java +++ /dev/null @@ -1,186 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class DeepObjectQueryParamsObjectResArgs { - @JsonProperty("objArrParam[arr]") - public String[] objArrParamArr; - - public DeepObjectQueryParamsObjectResArgs withObjArrParamArr(String[] objArrParamArr) { - this.objArrParamArr = objArrParamArr; - return this; - } - - @JsonProperty("objParam[any]") - public String objParamAny; - - public DeepObjectQueryParamsObjectResArgs withObjParamAny(String objParamAny) { - this.objParamAny = objParamAny; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("objParam[bigintStr]") - public String objParamBigintStr; - - public DeepObjectQueryParamsObjectResArgs withObjParamBigintStr(String objParamBigintStr) { - this.objParamBigintStr = objParamBigintStr; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("objParam[bigint]") - public String objParamBigint; - - public DeepObjectQueryParamsObjectResArgs withObjParamBigint(String objParamBigint) { - this.objParamBigint = objParamBigint; - return this; - } - - @JsonProperty("objParam[boolOpt]") - public String objParamBoolOpt; - - public DeepObjectQueryParamsObjectResArgs withObjParamBoolOpt(String objParamBoolOpt) { - this.objParamBoolOpt = objParamBoolOpt; - return this; - } - - @JsonProperty("objParam[bool]") - public String objParamBool; - - public DeepObjectQueryParamsObjectResArgs withObjParamBool(String objParamBool) { - this.objParamBool = objParamBool; - return this; - } - - @JsonProperty("objParam[dateTime]") - public String objParamDateTime; - - public DeepObjectQueryParamsObjectResArgs withObjParamDateTime(String objParamDateTime) { - this.objParamDateTime = objParamDateTime; - return this; - } - - @JsonProperty("objParam[date]") - public String objParamDate; - - public DeepObjectQueryParamsObjectResArgs withObjParamDate(String objParamDate) { - this.objParamDate = objParamDate; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("objParam[decimalStr]") - public String objParamDecimalStr; - - public DeepObjectQueryParamsObjectResArgs withObjParamDecimalStr(String objParamDecimalStr) { - this.objParamDecimalStr = objParamDecimalStr; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("objParam[decimal]") - public String objParamDecimal; - - public DeepObjectQueryParamsObjectResArgs withObjParamDecimal(String objParamDecimal) { - this.objParamDecimal = objParamDecimal; - return this; - } - - @JsonProperty("objParam[enum]") - public String objParamEnum; - - public DeepObjectQueryParamsObjectResArgs withObjParamEnum(String objParamEnum) { - this.objParamEnum = objParamEnum; - return this; - } - - @JsonProperty("objParam[float32]") - public String objParamFloat32; - - public DeepObjectQueryParamsObjectResArgs withObjParamFloat32(String objParamFloat32) { - this.objParamFloat32 = objParamFloat32; - return this; - } - - @JsonProperty("objParam[int32Enum]") - public String objParamInt32Enum; - - public DeepObjectQueryParamsObjectResArgs withObjParamInt32Enum(String objParamInt32Enum) { - this.objParamInt32Enum = objParamInt32Enum; - return this; - } - - @JsonProperty("objParam[int32]") - public String objParamInt32; - - public DeepObjectQueryParamsObjectResArgs withObjParamInt32(String objParamInt32) { - this.objParamInt32 = objParamInt32; - return this; - } - - @JsonProperty("objParam[intEnum]") - public String objParamIntEnum; - - public DeepObjectQueryParamsObjectResArgs withObjParamIntEnum(String objParamIntEnum) { - this.objParamIntEnum = objParamIntEnum; - return this; - } - - @JsonProperty("objParam[int]") - public String objParamInt; - - public DeepObjectQueryParamsObjectResArgs withObjParamInt(String objParamInt) { - this.objParamInt = objParamInt; - return this; - } - - @JsonProperty("objParam[num]") - public String objParamNum; - - public DeepObjectQueryParamsObjectResArgs withObjParamNum(String objParamNum) { - this.objParamNum = objParamNum; - return this; - } - - @JsonProperty("objParam[strOpt]") - public String objParamStrOpt; - - public DeepObjectQueryParamsObjectResArgs withObjParamStrOpt(String objParamStrOpt) { - this.objParamStrOpt = objParamStrOpt; - return this; - } - - @JsonProperty("objParam[str]") - public String objParamStr; - - public DeepObjectQueryParamsObjectResArgs withObjParamStr(String objParamStr) { - this.objParamStr = objParamStr; - return this; - } - - public DeepObjectQueryParamsObjectResArgs(@JsonProperty("objArrParam[arr]") String[] objArrParamArr, @JsonProperty("objParam[any]") String objParamAny, @JsonProperty("objParam[boolOpt]") String objParamBoolOpt, @JsonProperty("objParam[bool]") String objParamBool, @JsonProperty("objParam[dateTime]") String objParamDateTime, @JsonProperty("objParam[date]") String objParamDate, @JsonProperty("objParam[enum]") String objParamEnum, @JsonProperty("objParam[float32]") String objParamFloat32, @JsonProperty("objParam[int32Enum]") String objParamInt32Enum, @JsonProperty("objParam[int32]") String objParamInt32, @JsonProperty("objParam[intEnum]") String objParamIntEnum, @JsonProperty("objParam[int]") String objParamInt, @JsonProperty("objParam[num]") String objParamNum, @JsonProperty("objParam[strOpt]") String objParamStrOpt, @JsonProperty("objParam[str]") String objParamStr) { - this.objArrParamArr = objArrParamArr; - this.objParamAny = objParamAny; - this.objParamBoolOpt = objParamBoolOpt; - this.objParamBool = objParamBool; - this.objParamDateTime = objParamDateTime; - this.objParamDate = objParamDate; - this.objParamEnum = objParamEnum; - this.objParamFloat32 = objParamFloat32; - this.objParamInt32Enum = objParamInt32Enum; - this.objParamInt32 = objParamInt32; - this.objParamIntEnum = objParamIntEnum; - this.objParamInt = objParamInt; - this.objParamNum = objParamNum; - this.objParamStrOpt = objParamStrOpt; - this.objParamStr = objParamStr; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.java deleted file mode 100755 index b554bcabf..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * DeprecatedObjectInSchemaGet200ApplicationJSON - A successful response that contains a deprecatedObject sent in the request body - */ - -public class DeprecatedObjectInSchemaGet200ApplicationJSON { - /** - * @deprecated field: This object is deprecated. - */ - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("json") - @Deprecated - public org.openapis.openapi.models.shared.DeprecatedObject json; - - @Deprecated - public DeprecatedObjectInSchemaGet200ApplicationJSON withJson(org.openapis.openapi.models.shared.DeprecatedObject json) { - this.json = json; - return this; - } - - public DeprecatedObjectInSchemaGet200ApplicationJSON(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGetResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGetResponse.java index 0013d5531..01f1d50c1 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGetResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGetResponse.java @@ -46,10 +46,10 @@ public DeprecatedObjectInSchemaGetResponse withRawResponse(HttpResponse * A successful response that contains a deprecatedObject sent in the request body */ - public DeprecatedObjectInSchemaGet200ApplicationJSON deprecatedObjectInSchemaGet200ApplicationJSONObject; + public DeprecatedObjectInSchemaGetResponseBody object; - public DeprecatedObjectInSchemaGetResponse withDeprecatedObjectInSchemaGet200ApplicationJSONObject(DeprecatedObjectInSchemaGet200ApplicationJSON deprecatedObjectInSchemaGet200ApplicationJSONObject) { - this.deprecatedObjectInSchemaGet200ApplicationJSONObject = deprecatedObjectInSchemaGet200ApplicationJSONObject; + public DeprecatedObjectInSchemaGetResponse withObject(DeprecatedObjectInSchemaGetResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGetResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGetResponseBody.java new file mode 100755 index 000000000..994c33403 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DeprecatedObjectInSchemaGetResponseBody.java @@ -0,0 +1,31 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * DeprecatedObjectInSchemaGetResponseBody - A successful response that contains a deprecatedObject sent in the request body + */ + +public class DeprecatedObjectInSchemaGetResponseBody { + /** + * @deprecated field: This object is deprecated. + */ + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("json") + @Deprecated + public org.openapis.openapi.models.shared.DeprecatedObject json; + + @Deprecated + public DeprecatedObjectInSchemaGetResponseBody withJson(org.openapis.openapi.models.shared.DeprecatedObject json) { + this.json = json; + return this; + } + + public DeprecatedObjectInSchemaGetResponseBody(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DifferentFileName.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DifferentFileName.java new file mode 100755 index 000000000..8bfae9863 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/DifferentFileName.java @@ -0,0 +1,32 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; +import org.openapis.openapi.utils.SpeakeasyMetadata; + + +public class DifferentFileName { + @SpeakeasyMetadata("multipartForm:content") + public byte[] content; + + public DifferentFileName withContent(byte[] content) { + this.content = content; + return this; + } + + @SpeakeasyMetadata("multipartForm:name=differentFileName") + public String fileName; + + public DifferentFileName withFileName(String fileName) { + this.fileName = fileName; + return this; + } + + public DifferentFileName(@JsonProperty("content") byte[] content, @JsonProperty("fileName") String fileName) { + this.content = content; + this.fileName = fileName; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Empty.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Empty.java new file mode 100755 index 000000000..b11c8fa63 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Empty.java @@ -0,0 +1,12 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + + + + +public class Empty { + public Empty(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyRespWithEmptyProperies.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyRespWithEmptyProperies.java new file mode 100755 index 000000000..cafad7e78 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyRespWithEmptyProperies.java @@ -0,0 +1,12 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + + + + +public class EmptyRespWithEmptyProperies { + public EmptyRespWithEmptyProperies(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.java deleted file mode 100755 index 1e97a4f07..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.java +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - - - -/** - * EmptyResponseObjectWithCommentGet200ApplicationOctetStream - OK - */ - -public class EmptyResponseObjectWithCommentGet200ApplicationOctetStream { - public EmptyResponseObjectWithCommentGet200ApplicationOctetStream(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyResponseObjectWithCommentGetResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyResponseObjectWithCommentGetResponseBody.java new file mode 100755 index 000000000..ecf7cbdb7 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyResponseObjectWithCommentGetResponseBody.java @@ -0,0 +1,15 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + + + +/** + * EmptyResponseObjectWithCommentGetResponseBody - OK + */ + +public class EmptyResponseObjectWithCommentGetResponseBody { + public EmptyResponseObjectWithCommentGetResponseBody(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyWithEmptyProperties.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyWithEmptyProperties.java new file mode 100755 index 000000000..d3299bc71 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EmptyWithEmptyProperties.java @@ -0,0 +1,12 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + + + + +public class EmptyWithEmptyProperties { + public EmptyWithEmptyProperties(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EnumNameOverride.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EnumNameOverride.java new file mode 100755 index 000000000..9cd7b0320 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EnumNameOverride.java @@ -0,0 +1,23 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonValue; + +/** + * EnumNameOverride - An enum type + */ +public enum EnumNameOverride { + VALUE1("value1"), + VALUE2("value2"), + VALUE3("value3"); + + @JsonValue + public final String value; + + private EnumNameOverride(String value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EnumParameter.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EnumParameter.java new file mode 100755 index 000000000..a691303a1 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/EnumParameter.java @@ -0,0 +1,23 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonValue; + +/** + * EnumParameter - An enum type + */ +public enum EnumParameter { + VALUE1("value1"), + VALUE2("value2"), + VALUE3("value3"); + + @JsonValue + public final String value; + + private EnumParameter(String value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/File.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/File.java new file mode 100755 index 000000000..ece45723d --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/File.java @@ -0,0 +1,32 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; +import org.openapis.openapi.utils.SpeakeasyMetadata; + + +public class File { + @SpeakeasyMetadata("multipartForm:content") + public byte[] content; + + public File withContent(byte[] content) { + this.content = content; + return this; + } + + @SpeakeasyMetadata("multipartForm:name=file") + public String fileName; + + public File withFileName(String fileName) { + this.fileName = fileName; + return this; + } + + public File(@JsonProperty("content") byte[] content, @JsonProperty("fileName") String fileName) { + this.content = content; + this.fileName = fileName; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Form.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Form.java new file mode 100755 index 000000000..35450eebe --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Form.java @@ -0,0 +1,76 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class Form { + @JsonProperty("arr") + public String arr; + + public Form withArr(String arr) { + this.arr = arr; + return this; + } + + @JsonProperty("bool") + public String bool; + + public Form withBool(String bool) { + this.bool = bool; + return this; + } + + @JsonProperty("int") + public String int_; + + public Form withInt(String int_) { + this.int_ = int_; + return this; + } + + @JsonProperty("map") + public String map; + + public Form withMap(String map) { + this.map = map; + return this; + } + + @JsonProperty("num") + public String num; + + public Form withNum(String num) { + this.num = num; + return this; + } + + @JsonProperty("obj") + public String obj; + + public Form withObj(String obj) { + this.obj = obj; + return this; + } + + @JsonProperty("str") + public String str; + + public Form withStr(String str) { + this.str = str; + return this; + } + + public Form(@JsonProperty("arr") String arr, @JsonProperty("bool") String bool, @JsonProperty("int") String int_, @JsonProperty("map") String map, @JsonProperty("num") String num, @JsonProperty("obj") String obj, @JsonProperty("str") String str) { + this.arr = arr; + this.bool = bool; + this.int_ = int_; + this.map = map; + this.num = num; + this.obj = obj; + this.str = str; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayArgs.java new file mode 100755 index 000000000..dffe8fba8 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayArgs.java @@ -0,0 +1,31 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class FormQueryParamsArrayArgs { + @JsonProperty("arrParam") + public String arrParam; + + public FormQueryParamsArrayArgs withArrParam(String arrParam) { + this.arrParam = arrParam; + return this; + } + + @JsonProperty("arrParamExploded") + public String[] arrParamExploded; + + public FormQueryParamsArrayArgs withArrParamExploded(String[] arrParamExploded) { + this.arrParamExploded = arrParamExploded; + return this; + } + + public FormQueryParamsArrayArgs(@JsonProperty("arrParam") String arrParam, @JsonProperty("arrParamExploded") String[] arrParamExploded) { + this.arrParam = arrParam; + this.arrParamExploded = arrParamExploded; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayRes.java index 551c4e4ec..153233075 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayRes.java @@ -12,9 +12,9 @@ public class FormQueryParamsArrayRes { @JsonProperty("args") - public FormQueryParamsArrayResArgs args; + public FormQueryParamsArrayArgs args; - public FormQueryParamsArrayRes withArgs(FormQueryParamsArrayResArgs args) { + public FormQueryParamsArrayRes withArgs(FormQueryParamsArrayArgs args) { this.args = args; return this; } @@ -27,7 +27,7 @@ public FormQueryParamsArrayRes withUrl(String url) { return this; } - public FormQueryParamsArrayRes(@JsonProperty("args") FormQueryParamsArrayResArgs args, @JsonProperty("url") String url) { + public FormQueryParamsArrayRes(@JsonProperty("args") FormQueryParamsArrayArgs args, @JsonProperty("url") String url) { this.args = args; this.url = url; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayResArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayResArgs.java deleted file mode 100755 index 02dae18f0..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsArrayResArgs.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class FormQueryParamsArrayResArgs { - @JsonProperty("arrParam") - public String arrParam; - - public FormQueryParamsArrayResArgs withArrParam(String arrParam) { - this.arrParam = arrParam; - return this; - } - - @JsonProperty("arrParamExploded") - public String[] arrParamExploded; - - public FormQueryParamsArrayResArgs withArrParamExploded(String[] arrParamExploded) { - this.arrParamExploded = arrParamExploded; - return this; - } - - public FormQueryParamsArrayResArgs(@JsonProperty("arrParam") String arrParam, @JsonProperty("arrParamExploded") String[] arrParamExploded) { - this.arrParam = arrParam; - this.arrParamExploded = arrParamExploded; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectArgs.java new file mode 100755 index 000000000..0a73da221 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectArgs.java @@ -0,0 +1,31 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class FormQueryParamsCamelObjectArgs { + @JsonProperty("item_count") + public String itemCount; + + public FormQueryParamsCamelObjectArgs withItemCount(String itemCount) { + this.itemCount = itemCount; + return this; + } + + @JsonProperty("search_term") + public String searchTerm; + + public FormQueryParamsCamelObjectArgs withSearchTerm(String searchTerm) { + this.searchTerm = searchTerm; + return this; + } + + public FormQueryParamsCamelObjectArgs(@JsonProperty("item_count") String itemCount, @JsonProperty("search_term") String searchTerm) { + this.itemCount = itemCount; + this.searchTerm = searchTerm; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectObjParam.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectObjParam.java deleted file mode 100755 index 62bf99238..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectObjParam.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import org.openapis.openapi.utils.SpeakeasyMetadata; - -/** - * FormQueryParamsCamelObjectObjParam - */ - -public class FormQueryParamsCamelObjectObjParam { - @SpeakeasyMetadata("queryParam:name=encoded_count") - public String encodedCount; - - public FormQueryParamsCamelObjectObjParam withEncodedCount(String encodedCount) { - this.encodedCount = encodedCount; - return this; - } - - @SpeakeasyMetadata("queryParam:name=encoded_term") - public String encodedTerm; - - public FormQueryParamsCamelObjectObjParam withEncodedTerm(String encodedTerm) { - this.encodedTerm = encodedTerm; - return this; - } - - public FormQueryParamsCamelObjectObjParam(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectObjParamExploded.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectObjParamExploded.java deleted file mode 100755 index a2a92d83c..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectObjParamExploded.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import org.openapis.openapi.utils.SpeakeasyMetadata; - -/** - * FormQueryParamsCamelObjectObjParamExploded - */ - -public class FormQueryParamsCamelObjectObjParamExploded { - @SpeakeasyMetadata("queryParam:name=item_count") - public String itemCount; - - public FormQueryParamsCamelObjectObjParamExploded withItemCount(String itemCount) { - this.itemCount = itemCount; - return this; - } - - @SpeakeasyMetadata("queryParam:name=search_term") - public String searchTerm; - - public FormQueryParamsCamelObjectObjParamExploded withSearchTerm(String searchTerm) { - this.searchTerm = searchTerm; - return this; - } - - public FormQueryParamsCamelObjectObjParamExploded(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectRequest.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectRequest.java index 219e7c67f..a19b1df17 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectRequest.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectRequest.java @@ -10,22 +10,22 @@ public class FormQueryParamsCamelObjectRequest { @SpeakeasyMetadata("queryParam:style=form,explode=true,name=obj_param_exploded") - public FormQueryParamsCamelObjectObjParamExploded objParamExploded; + public ObjParamExploded objParamExploded; - public FormQueryParamsCamelObjectRequest withObjParamExploded(FormQueryParamsCamelObjectObjParamExploded objParamExploded) { + public FormQueryParamsCamelObjectRequest withObjParamExploded(ObjParamExploded objParamExploded) { this.objParamExploded = objParamExploded; return this; } @SpeakeasyMetadata("queryParam:style=form,explode=false,name=obj_param") - public FormQueryParamsCamelObjectObjParam objParam; + public ObjParam objParam; - public FormQueryParamsCamelObjectRequest withObjParam(FormQueryParamsCamelObjectObjParam objParam) { + public FormQueryParamsCamelObjectRequest withObjParam(ObjParam objParam) { this.objParam = objParam; return this; } - public FormQueryParamsCamelObjectRequest(@JsonProperty("obj_param_exploded") FormQueryParamsCamelObjectObjParamExploded objParamExploded) { + public FormQueryParamsCamelObjectRequest(@JsonProperty("obj_param_exploded") ObjParamExploded objParamExploded) { this.objParamExploded = objParamExploded; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectRes.java index 5145e3fc8..29334beda 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectRes.java @@ -12,9 +12,9 @@ public class FormQueryParamsCamelObjectRes { @JsonProperty("args") - public FormQueryParamsCamelObjectResArgs args; + public FormQueryParamsCamelObjectArgs args; - public FormQueryParamsCamelObjectRes withArgs(FormQueryParamsCamelObjectResArgs args) { + public FormQueryParamsCamelObjectRes withArgs(FormQueryParamsCamelObjectArgs args) { this.args = args; return this; } @@ -27,7 +27,7 @@ public FormQueryParamsCamelObjectRes withUrl(String url) { return this; } - public FormQueryParamsCamelObjectRes(@JsonProperty("args") FormQueryParamsCamelObjectResArgs args, @JsonProperty("url") String url) { + public FormQueryParamsCamelObjectRes(@JsonProperty("args") FormQueryParamsCamelObjectArgs args, @JsonProperty("url") String url) { this.args = args; this.url = url; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectResArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectResArgs.java deleted file mode 100755 index 99ed6fa01..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsCamelObjectResArgs.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class FormQueryParamsCamelObjectResArgs { - @JsonProperty("item_count") - public String itemCount; - - public FormQueryParamsCamelObjectResArgs withItemCount(String itemCount) { - this.itemCount = itemCount; - return this; - } - - @JsonProperty("search_term") - public String searchTerm; - - public FormQueryParamsCamelObjectResArgs withSearchTerm(String searchTerm) { - this.searchTerm = searchTerm; - return this; - } - - public FormQueryParamsCamelObjectResArgs(@JsonProperty("item_count") String itemCount, @JsonProperty("search_term") String searchTerm) { - this.itemCount = itemCount; - this.searchTerm = searchTerm; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectArgs.java new file mode 100755 index 000000000..7d7fbdff4 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectArgs.java @@ -0,0 +1,204 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class FormQueryParamsObjectArgs { + @JsonProperty("any") + public String any; + + public FormQueryParamsObjectArgs withAny(String any) { + this.any = any; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("bigint") + public String bigint; + + public FormQueryParamsObjectArgs withBigint(String bigint) { + this.bigint = bigint; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("bigintStr") + public String bigintStr; + + public FormQueryParamsObjectArgs withBigintStr(String bigintStr) { + this.bigintStr = bigintStr; + return this; + } + + @JsonProperty("bool") + public String bool; + + public FormQueryParamsObjectArgs withBool(String bool) { + this.bool = bool; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("boolOpt") + public String boolOpt; + + public FormQueryParamsObjectArgs withBoolOpt(String boolOpt) { + this.boolOpt = boolOpt; + return this; + } + + @JsonProperty("date") + public String date; + + public FormQueryParamsObjectArgs withDate(String date) { + this.date = date; + return this; + } + + @JsonProperty("dateTime") + public String dateTime; + + public FormQueryParamsObjectArgs withDateTime(String dateTime) { + this.dateTime = dateTime; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("decimal") + public String decimal; + + public FormQueryParamsObjectArgs withDecimal(String decimal) { + this.decimal = decimal; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("decimalStr") + public String decimalStr; + + public FormQueryParamsObjectArgs withDecimalStr(String decimalStr) { + this.decimalStr = decimalStr; + return this; + } + + @JsonProperty("enum") + public String enum_; + + public FormQueryParamsObjectArgs withEnum(String enum_) { + this.enum_ = enum_; + return this; + } + + @JsonProperty("float32") + public String float32; + + public FormQueryParamsObjectArgs withFloat32(String float32) { + this.float32 = float32; + return this; + } + + @JsonProperty("int") + public String int_; + + public FormQueryParamsObjectArgs withInt(String int_) { + this.int_ = int_; + return this; + } + + @JsonProperty("int32") + public String int32; + + public FormQueryParamsObjectArgs withInt32(String int32) { + this.int32 = int32; + return this; + } + + @JsonProperty("int32Enum") + public String int32Enum; + + public FormQueryParamsObjectArgs withInt32Enum(String int32Enum) { + this.int32Enum = int32Enum; + return this; + } + + @JsonProperty("intEnum") + public String intEnum; + + public FormQueryParamsObjectArgs withIntEnum(String intEnum) { + this.intEnum = intEnum; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("intOptNull") + public String intOptNull; + + public FormQueryParamsObjectArgs withIntOptNull(String intOptNull) { + this.intOptNull = intOptNull; + return this; + } + + @JsonProperty("num") + public String num; + + public FormQueryParamsObjectArgs withNum(String num) { + this.num = num; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("numOptNull") + public String numOptNull; + + public FormQueryParamsObjectArgs withNumOptNull(String numOptNull) { + this.numOptNull = numOptNull; + return this; + } + + @JsonProperty("objParam") + public String objParam; + + public FormQueryParamsObjectArgs withObjParam(String objParam) { + this.objParam = objParam; + return this; + } + + @JsonProperty("str") + public String str; + + public FormQueryParamsObjectArgs withStr(String str) { + this.str = str; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("strOpt") + public String strOpt; + + public FormQueryParamsObjectArgs withStrOpt(String strOpt) { + this.strOpt = strOpt; + return this; + } + + public FormQueryParamsObjectArgs(@JsonProperty("any") String any, @JsonProperty("bool") String bool, @JsonProperty("date") String date, @JsonProperty("dateTime") String dateTime, @JsonProperty("enum") String enum_, @JsonProperty("float32") String float32, @JsonProperty("int") String int_, @JsonProperty("int32") String int32, @JsonProperty("int32Enum") String int32Enum, @JsonProperty("intEnum") String intEnum, @JsonProperty("num") String num, @JsonProperty("objParam") String objParam, @JsonProperty("str") String str) { + this.any = any; + this.bool = bool; + this.date = date; + this.dateTime = dateTime; + this.enum_ = enum_; + this.float32 = float32; + this.int_ = int_; + this.int32 = int32; + this.int32Enum = int32Enum; + this.intEnum = intEnum; + this.num = num; + this.objParam = objParam; + this.str = str; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectRes.java index f8a2dcfa2..dfc6fed6e 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectRes.java @@ -12,9 +12,9 @@ public class FormQueryParamsObjectRes { @JsonProperty("args") - public FormQueryParamsObjectResArgs args; + public FormQueryParamsObjectArgs args; - public FormQueryParamsObjectRes withArgs(FormQueryParamsObjectResArgs args) { + public FormQueryParamsObjectRes withArgs(FormQueryParamsObjectArgs args) { this.args = args; return this; } @@ -27,7 +27,7 @@ public FormQueryParamsObjectRes withUrl(String url) { return this; } - public FormQueryParamsObjectRes(@JsonProperty("args") FormQueryParamsObjectResArgs args, @JsonProperty("url") String url) { + public FormQueryParamsObjectRes(@JsonProperty("args") FormQueryParamsObjectArgs args, @JsonProperty("url") String url) { this.args = args; this.url = url; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectResArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectResArgs.java deleted file mode 100755 index 531151bef..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsObjectResArgs.java +++ /dev/null @@ -1,204 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class FormQueryParamsObjectResArgs { - @JsonProperty("any") - public String any; - - public FormQueryParamsObjectResArgs withAny(String any) { - this.any = any; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("bigint") - public String bigint; - - public FormQueryParamsObjectResArgs withBigint(String bigint) { - this.bigint = bigint; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("bigintStr") - public String bigintStr; - - public FormQueryParamsObjectResArgs withBigintStr(String bigintStr) { - this.bigintStr = bigintStr; - return this; - } - - @JsonProperty("bool") - public String bool; - - public FormQueryParamsObjectResArgs withBool(String bool) { - this.bool = bool; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("boolOpt") - public String boolOpt; - - public FormQueryParamsObjectResArgs withBoolOpt(String boolOpt) { - this.boolOpt = boolOpt; - return this; - } - - @JsonProperty("date") - public String date; - - public FormQueryParamsObjectResArgs withDate(String date) { - this.date = date; - return this; - } - - @JsonProperty("dateTime") - public String dateTime; - - public FormQueryParamsObjectResArgs withDateTime(String dateTime) { - this.dateTime = dateTime; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("decimal") - public String decimal; - - public FormQueryParamsObjectResArgs withDecimal(String decimal) { - this.decimal = decimal; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("decimalStr") - public String decimalStr; - - public FormQueryParamsObjectResArgs withDecimalStr(String decimalStr) { - this.decimalStr = decimalStr; - return this; - } - - @JsonProperty("enum") - public String enum_; - - public FormQueryParamsObjectResArgs withEnum(String enum_) { - this.enum_ = enum_; - return this; - } - - @JsonProperty("float32") - public String float32; - - public FormQueryParamsObjectResArgs withFloat32(String float32) { - this.float32 = float32; - return this; - } - - @JsonProperty("int") - public String int_; - - public FormQueryParamsObjectResArgs withInt(String int_) { - this.int_ = int_; - return this; - } - - @JsonProperty("int32") - public String int32; - - public FormQueryParamsObjectResArgs withInt32(String int32) { - this.int32 = int32; - return this; - } - - @JsonProperty("int32Enum") - public String int32Enum; - - public FormQueryParamsObjectResArgs withInt32Enum(String int32Enum) { - this.int32Enum = int32Enum; - return this; - } - - @JsonProperty("intEnum") - public String intEnum; - - public FormQueryParamsObjectResArgs withIntEnum(String intEnum) { - this.intEnum = intEnum; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("intOptNull") - public String intOptNull; - - public FormQueryParamsObjectResArgs withIntOptNull(String intOptNull) { - this.intOptNull = intOptNull; - return this; - } - - @JsonProperty("num") - public String num; - - public FormQueryParamsObjectResArgs withNum(String num) { - this.num = num; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("numOptNull") - public String numOptNull; - - public FormQueryParamsObjectResArgs withNumOptNull(String numOptNull) { - this.numOptNull = numOptNull; - return this; - } - - @JsonProperty("objParam") - public String objParam; - - public FormQueryParamsObjectResArgs withObjParam(String objParam) { - this.objParam = objParam; - return this; - } - - @JsonProperty("str") - public String str; - - public FormQueryParamsObjectResArgs withStr(String str) { - this.str = str; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("strOpt") - public String strOpt; - - public FormQueryParamsObjectResArgs withStrOpt(String strOpt) { - this.strOpt = strOpt; - return this; - } - - public FormQueryParamsObjectResArgs(@JsonProperty("any") String any, @JsonProperty("bool") String bool, @JsonProperty("date") String date, @JsonProperty("dateTime") String dateTime, @JsonProperty("enum") String enum_, @JsonProperty("float32") String float32, @JsonProperty("int") String int_, @JsonProperty("int32") String int32, @JsonProperty("int32Enum") String int32Enum, @JsonProperty("intEnum") String intEnum, @JsonProperty("num") String num, @JsonProperty("objParam") String objParam, @JsonProperty("str") String str) { - this.any = any; - this.bool = bool; - this.date = date; - this.dateTime = dateTime; - this.enum_ = enum_; - this.float32 = float32; - this.int_ = int_; - this.int32 = int32; - this.int32Enum = int32Enum; - this.intEnum = intEnum; - this.num = num; - this.objParam = objParam; - this.str = str; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveArgs.java new file mode 100755 index 000000000..a0e3b717c --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveArgs.java @@ -0,0 +1,49 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class FormQueryParamsPrimitiveArgs { + @JsonProperty("boolParam") + public String boolParam; + + public FormQueryParamsPrimitiveArgs withBoolParam(String boolParam) { + this.boolParam = boolParam; + return this; + } + + @JsonProperty("intParam") + public String intParam; + + public FormQueryParamsPrimitiveArgs withIntParam(String intParam) { + this.intParam = intParam; + return this; + } + + @JsonProperty("numParam") + public String numParam; + + public FormQueryParamsPrimitiveArgs withNumParam(String numParam) { + this.numParam = numParam; + return this; + } + + @JsonProperty("strParam") + public String strParam; + + public FormQueryParamsPrimitiveArgs withStrParam(String strParam) { + this.strParam = strParam; + return this; + } + + public FormQueryParamsPrimitiveArgs(@JsonProperty("boolParam") String boolParam, @JsonProperty("intParam") String intParam, @JsonProperty("numParam") String numParam, @JsonProperty("strParam") String strParam) { + this.boolParam = boolParam; + this.intParam = intParam; + this.numParam = numParam; + this.strParam = strParam; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveRes.java index ccacb9d65..c398202dc 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveRes.java @@ -12,9 +12,9 @@ public class FormQueryParamsPrimitiveRes { @JsonProperty("args") - public FormQueryParamsPrimitiveResArgs args; + public FormQueryParamsPrimitiveArgs args; - public FormQueryParamsPrimitiveRes withArgs(FormQueryParamsPrimitiveResArgs args) { + public FormQueryParamsPrimitiveRes withArgs(FormQueryParamsPrimitiveArgs args) { this.args = args; return this; } @@ -27,7 +27,7 @@ public FormQueryParamsPrimitiveRes withUrl(String url) { return this; } - public FormQueryParamsPrimitiveRes(@JsonProperty("args") FormQueryParamsPrimitiveResArgs args, @JsonProperty("url") String url) { + public FormQueryParamsPrimitiveRes(@JsonProperty("args") FormQueryParamsPrimitiveArgs args, @JsonProperty("url") String url) { this.args = args; this.url = url; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveResArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveResArgs.java deleted file mode 100755 index 65e982aa1..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsPrimitiveResArgs.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class FormQueryParamsPrimitiveResArgs { - @JsonProperty("boolParam") - public String boolParam; - - public FormQueryParamsPrimitiveResArgs withBoolParam(String boolParam) { - this.boolParam = boolParam; - return this; - } - - @JsonProperty("intParam") - public String intParam; - - public FormQueryParamsPrimitiveResArgs withIntParam(String intParam) { - this.intParam = intParam; - return this; - } - - @JsonProperty("numParam") - public String numParam; - - public FormQueryParamsPrimitiveResArgs withNumParam(String numParam) { - this.numParam = numParam; - return this; - } - - @JsonProperty("strParam") - public String strParam; - - public FormQueryParamsPrimitiveResArgs withStrParam(String strParam) { - this.strParam = strParam; - return this; - } - - public FormQueryParamsPrimitiveResArgs(@JsonProperty("boolParam") String boolParam, @JsonProperty("intParam") String intParam, @JsonProperty("numParam") String numParam, @JsonProperty("strParam") String strParam) { - this.boolParam = boolParam; - this.intParam = intParam; - this.numParam = numParam; - this.strParam = strParam; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectArgs.java new file mode 100755 index 000000000..6f24956e0 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectArgs.java @@ -0,0 +1,58 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class FormQueryParamsRefParamObjectArgs { + @JsonProperty("bool") + public String bool; + + public FormQueryParamsRefParamObjectArgs withBool(String bool) { + this.bool = bool; + return this; + } + + @JsonProperty("int") + public String int_; + + public FormQueryParamsRefParamObjectArgs withInt(String int_) { + this.int_ = int_; + return this; + } + + @JsonProperty("num") + public String num; + + public FormQueryParamsRefParamObjectArgs withNum(String num) { + this.num = num; + return this; + } + + @JsonProperty("refObjParam") + public String refObjParam; + + public FormQueryParamsRefParamObjectArgs withRefObjParam(String refObjParam) { + this.refObjParam = refObjParam; + return this; + } + + @JsonProperty("str") + public String str; + + public FormQueryParamsRefParamObjectArgs withStr(String str) { + this.str = str; + return this; + } + + public FormQueryParamsRefParamObjectArgs(@JsonProperty("bool") String bool, @JsonProperty("int") String int_, @JsonProperty("num") String num, @JsonProperty("refObjParam") String refObjParam, @JsonProperty("str") String str) { + this.bool = bool; + this.int_ = int_; + this.num = num; + this.refObjParam = refObjParam; + this.str = str; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectRes.java index 87be3842d..7b91f1d47 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectRes.java @@ -12,9 +12,9 @@ public class FormQueryParamsRefParamObjectRes { @JsonProperty("args") - public FormQueryParamsRefParamObjectResArgs args; + public FormQueryParamsRefParamObjectArgs args; - public FormQueryParamsRefParamObjectRes withArgs(FormQueryParamsRefParamObjectResArgs args) { + public FormQueryParamsRefParamObjectRes withArgs(FormQueryParamsRefParamObjectArgs args) { this.args = args; return this; } @@ -27,7 +27,7 @@ public FormQueryParamsRefParamObjectRes withUrl(String url) { return this; } - public FormQueryParamsRefParamObjectRes(@JsonProperty("args") FormQueryParamsRefParamObjectResArgs args, @JsonProperty("url") String url) { + public FormQueryParamsRefParamObjectRes(@JsonProperty("args") FormQueryParamsRefParamObjectArgs args, @JsonProperty("url") String url) { this.args = args; this.url = url; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectResArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectResArgs.java deleted file mode 100755 index 0960a39bc..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/FormQueryParamsRefParamObjectResArgs.java +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class FormQueryParamsRefParamObjectResArgs { - @JsonProperty("bool") - public String bool; - - public FormQueryParamsRefParamObjectResArgs withBool(String bool) { - this.bool = bool; - return this; - } - - @JsonProperty("int") - public String int_; - - public FormQueryParamsRefParamObjectResArgs withInt(String int_) { - this.int_ = int_; - return this; - } - - @JsonProperty("num") - public String num; - - public FormQueryParamsRefParamObjectResArgs withNum(String num) { - this.num = num; - return this; - } - - @JsonProperty("refObjParam") - public String refObjParam; - - public FormQueryParamsRefParamObjectResArgs withRefObjParam(String refObjParam) { - this.refObjParam = refObjParam; - return this; - } - - @JsonProperty("str") - public String str; - - public FormQueryParamsRefParamObjectResArgs withStr(String str) { - this.str = str; - return this; - } - - public FormQueryParamsRefParamObjectResArgs(@JsonProperty("bool") String bool, @JsonProperty("int") String int_, @JsonProperty("num") String num, @JsonProperty("refObjParam") String refObjParam, @JsonProperty("str") String str) { - this.bool = bool; - this.int_ = int_; - this.num = num; - this.refObjParam = refObjParam; - this.str = str; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverride200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverride200ApplicationJSON.java deleted file mode 100755 index da114cff2..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverride200ApplicationJSON.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * GetGlobalNameOverride200ApplicationJSON - A successful response that contains the simpleObject sent in the request body - */ - -public class GetGlobalNameOverride200ApplicationJSON { - /** - * 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. - */ - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("json") - public org.openapis.openapi.models.shared.SimpleObject json; - - public GetGlobalNameOverride200ApplicationJSON withJson(org.openapis.openapi.models.shared.SimpleObject json) { - this.json = json; - return this; - } - - public GetGlobalNameOverride200ApplicationJSON(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverrideResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverrideResponse.java index d312684b8..1e56fe291 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverrideResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverrideResponse.java @@ -46,10 +46,10 @@ public GetGlobalNameOverrideResponse withRawResponse(HttpResponse rawRes * A successful response that contains the simpleObject sent in the request body */ - public GetGlobalNameOverride200ApplicationJSON getGlobalNameOverride200ApplicationJSONObject; + public GetGlobalNameOverrideResponseBody object; - public GetGlobalNameOverrideResponse withGetGlobalNameOverride200ApplicationJSONObject(GetGlobalNameOverride200ApplicationJSON getGlobalNameOverride200ApplicationJSONObject) { - this.getGlobalNameOverride200ApplicationJSONObject = getGlobalNameOverride200ApplicationJSONObject; + public GetGlobalNameOverrideResponse withObject(GetGlobalNameOverrideResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverrideResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverrideResponseBody.java new file mode 100755 index 000000000..cc3b7d945 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GetGlobalNameOverrideResponseBody.java @@ -0,0 +1,30 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * GetGlobalNameOverrideResponseBody - 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. + */ + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("json") + public org.openapis.openapi.models.shared.SimpleObject json; + + public GetGlobalNameOverrideResponseBody withJson(org.openapis.openapi.models.shared.SimpleObject json) { + this.json = json; + return this; + } + + public GetGlobalNameOverrideResponseBody(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GlobalsQueryParameterGetRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GlobalsQueryParameterGetRes.java index df3018cf6..ef60b7a84 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GlobalsQueryParameterGetRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GlobalsQueryParameterGetRes.java @@ -12,14 +12,14 @@ public class GlobalsQueryParameterGetRes { @JsonProperty("args") - public GlobalsQueryParameterGetResArgs args; + public Args args; - public GlobalsQueryParameterGetRes withArgs(GlobalsQueryParameterGetResArgs args) { + public GlobalsQueryParameterGetRes withArgs(Args args) { this.args = args; return this; } - public GlobalsQueryParameterGetRes(@JsonProperty("args") GlobalsQueryParameterGetResArgs args) { + public GlobalsQueryParameterGetRes(@JsonProperty("args") Args args) { this.args = args; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GlobalsQueryParameterGetResArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GlobalsQueryParameterGetResArgs.java deleted file mode 100755 index 615205dc5..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/GlobalsQueryParameterGetResArgs.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class GlobalsQueryParameterGetResArgs { - @JsonProperty("globalQueryParam") - public String globalQueryParam; - - public GlobalsQueryParameterGetResArgs withGlobalQueryParam(String globalQueryParam) { - this.globalQueryParam = globalQueryParam; - return this; - } - - public GlobalsQueryParameterGetResArgs(@JsonProperty("globalQueryParam") String globalQueryParam) { - this.globalQueryParam = globalQueryParam; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsArrayRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsArrayRes.java index 31f3fd887..4872ae1b6 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsArrayRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsArrayRes.java @@ -12,14 +12,14 @@ public class HeaderParamsArrayRes { @JsonProperty("headers") - public HeaderParamsArrayResHeaders headers; + public Headers headers; - public HeaderParamsArrayRes withHeaders(HeaderParamsArrayResHeaders headers) { + public HeaderParamsArrayRes withHeaders(Headers headers) { this.headers = headers; return this; } - public HeaderParamsArrayRes(@JsonProperty("headers") HeaderParamsArrayResHeaders headers) { + public HeaderParamsArrayRes(@JsonProperty("headers") Headers headers) { this.headers = headers; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsArrayResHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsArrayResHeaders.java deleted file mode 100755 index 204008aef..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsArrayResHeaders.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class HeaderParamsArrayResHeaders { - @JsonProperty("X-Header-Array") - public String xHeaderArray; - - public HeaderParamsArrayResHeaders withXHeaderArray(String xHeaderArray) { - this.xHeaderArray = xHeaderArray; - return this; - } - - public HeaderParamsArrayResHeaders(@JsonProperty("X-Header-Array") String xHeaderArray) { - this.xHeaderArray = xHeaderArray; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapHeaders.java new file mode 100755 index 000000000..dd0944f71 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapHeaders.java @@ -0,0 +1,31 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class HeaderParamsMapHeaders { + @JsonProperty("X-Header-Map") + public String xHeaderMap; + + public HeaderParamsMapHeaders withXHeaderMap(String xHeaderMap) { + this.xHeaderMap = xHeaderMap; + return this; + } + + @JsonProperty("X-Header-Map-Explode") + public String xHeaderMapExplode; + + public HeaderParamsMapHeaders withXHeaderMapExplode(String xHeaderMapExplode) { + this.xHeaderMapExplode = xHeaderMapExplode; + return this; + } + + public HeaderParamsMapHeaders(@JsonProperty("X-Header-Map") String xHeaderMap, @JsonProperty("X-Header-Map-Explode") String xHeaderMapExplode) { + this.xHeaderMap = xHeaderMap; + this.xHeaderMapExplode = xHeaderMapExplode; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapRes.java index 621f44fc1..a4b3b8d3c 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapRes.java @@ -12,14 +12,14 @@ public class HeaderParamsMapRes { @JsonProperty("headers") - public HeaderParamsMapResHeaders headers; + public HeaderParamsMapHeaders headers; - public HeaderParamsMapRes withHeaders(HeaderParamsMapResHeaders headers) { + public HeaderParamsMapRes withHeaders(HeaderParamsMapHeaders headers) { this.headers = headers; return this; } - public HeaderParamsMapRes(@JsonProperty("headers") HeaderParamsMapResHeaders headers) { + public HeaderParamsMapRes(@JsonProperty("headers") HeaderParamsMapHeaders headers) { this.headers = headers; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapResHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapResHeaders.java deleted file mode 100755 index 7981047cc..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsMapResHeaders.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class HeaderParamsMapResHeaders { - @JsonProperty("X-Header-Map") - public String xHeaderMap; - - public HeaderParamsMapResHeaders withXHeaderMap(String xHeaderMap) { - this.xHeaderMap = xHeaderMap; - return this; - } - - @JsonProperty("X-Header-Map-Explode") - public String xHeaderMapExplode; - - public HeaderParamsMapResHeaders withXHeaderMapExplode(String xHeaderMapExplode) { - this.xHeaderMapExplode = xHeaderMapExplode; - return this; - } - - public HeaderParamsMapResHeaders(@JsonProperty("X-Header-Map") String xHeaderMap, @JsonProperty("X-Header-Map-Explode") String xHeaderMapExplode) { - this.xHeaderMap = xHeaderMap; - this.xHeaderMapExplode = xHeaderMapExplode; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectHeaders.java new file mode 100755 index 000000000..8635986e8 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectHeaders.java @@ -0,0 +1,31 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class HeaderParamsObjectHeaders { + @JsonProperty("X-Header-Obj") + public String xHeaderObj; + + public HeaderParamsObjectHeaders withXHeaderObj(String xHeaderObj) { + this.xHeaderObj = xHeaderObj; + return this; + } + + @JsonProperty("X-Header-Obj-Explode") + public String xHeaderObjExplode; + + public HeaderParamsObjectHeaders withXHeaderObjExplode(String xHeaderObjExplode) { + this.xHeaderObjExplode = xHeaderObjExplode; + return this; + } + + public HeaderParamsObjectHeaders(@JsonProperty("X-Header-Obj") String xHeaderObj, @JsonProperty("X-Header-Obj-Explode") String xHeaderObjExplode) { + this.xHeaderObj = xHeaderObj; + this.xHeaderObjExplode = xHeaderObjExplode; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectRes.java index 6d0b97756..89f95a8b6 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectRes.java @@ -12,14 +12,14 @@ public class HeaderParamsObjectRes { @JsonProperty("headers") - public HeaderParamsObjectResHeaders headers; + public HeaderParamsObjectHeaders headers; - public HeaderParamsObjectRes withHeaders(HeaderParamsObjectResHeaders headers) { + public HeaderParamsObjectRes withHeaders(HeaderParamsObjectHeaders headers) { this.headers = headers; return this; } - public HeaderParamsObjectRes(@JsonProperty("headers") HeaderParamsObjectResHeaders headers) { + public HeaderParamsObjectRes(@JsonProperty("headers") HeaderParamsObjectHeaders headers) { this.headers = headers; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectResHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectResHeaders.java deleted file mode 100755 index c1f585e2f..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsObjectResHeaders.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class HeaderParamsObjectResHeaders { - @JsonProperty("X-Header-Obj") - public String xHeaderObj; - - public HeaderParamsObjectResHeaders withXHeaderObj(String xHeaderObj) { - this.xHeaderObj = xHeaderObj; - return this; - } - - @JsonProperty("X-Header-Obj-Explode") - public String xHeaderObjExplode; - - public HeaderParamsObjectResHeaders withXHeaderObjExplode(String xHeaderObjExplode) { - this.xHeaderObjExplode = xHeaderObjExplode; - return this; - } - - public HeaderParamsObjectResHeaders(@JsonProperty("X-Header-Obj") String xHeaderObj, @JsonProperty("X-Header-Obj-Explode") String xHeaderObjExplode) { - this.xHeaderObj = xHeaderObj; - this.xHeaderObjExplode = xHeaderObjExplode; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveHeaders.java new file mode 100755 index 000000000..b8fa8f668 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveHeaders.java @@ -0,0 +1,49 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class HeaderParamsPrimitiveHeaders { + @JsonProperty("X-Header-Boolean") + public String xHeaderBoolean; + + public HeaderParamsPrimitiveHeaders withXHeaderBoolean(String xHeaderBoolean) { + this.xHeaderBoolean = xHeaderBoolean; + return this; + } + + @JsonProperty("X-Header-Integer") + public String xHeaderInteger; + + public HeaderParamsPrimitiveHeaders withXHeaderInteger(String xHeaderInteger) { + this.xHeaderInteger = xHeaderInteger; + return this; + } + + @JsonProperty("X-Header-Number") + public String xHeaderNumber; + + public HeaderParamsPrimitiveHeaders withXHeaderNumber(String xHeaderNumber) { + this.xHeaderNumber = xHeaderNumber; + return this; + } + + @JsonProperty("X-Header-String") + public String xHeaderString; + + public HeaderParamsPrimitiveHeaders withXHeaderString(String xHeaderString) { + this.xHeaderString = xHeaderString; + return this; + } + + public HeaderParamsPrimitiveHeaders(@JsonProperty("X-Header-Boolean") String xHeaderBoolean, @JsonProperty("X-Header-Integer") String xHeaderInteger, @JsonProperty("X-Header-Number") String xHeaderNumber, @JsonProperty("X-Header-String") String xHeaderString) { + this.xHeaderBoolean = xHeaderBoolean; + this.xHeaderInteger = xHeaderInteger; + this.xHeaderNumber = xHeaderNumber; + this.xHeaderString = xHeaderString; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveRes.java index 7d91ffdd8..81a4947eb 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveRes.java @@ -12,14 +12,14 @@ public class HeaderParamsPrimitiveRes { @JsonProperty("headers") - public HeaderParamsPrimitiveResHeaders headers; + public HeaderParamsPrimitiveHeaders headers; - public HeaderParamsPrimitiveRes withHeaders(HeaderParamsPrimitiveResHeaders headers) { + public HeaderParamsPrimitiveRes withHeaders(HeaderParamsPrimitiveHeaders headers) { this.headers = headers; return this; } - public HeaderParamsPrimitiveRes(@JsonProperty("headers") HeaderParamsPrimitiveResHeaders headers) { + public HeaderParamsPrimitiveRes(@JsonProperty("headers") HeaderParamsPrimitiveHeaders headers) { this.headers = headers; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveResHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveResHeaders.java deleted file mode 100755 index 056a390c3..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/HeaderParamsPrimitiveResHeaders.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class HeaderParamsPrimitiveResHeaders { - @JsonProperty("X-Header-Boolean") - public String xHeaderBoolean; - - public HeaderParamsPrimitiveResHeaders withXHeaderBoolean(String xHeaderBoolean) { - this.xHeaderBoolean = xHeaderBoolean; - return this; - } - - @JsonProperty("X-Header-Integer") - public String xHeaderInteger; - - public HeaderParamsPrimitiveResHeaders withXHeaderInteger(String xHeaderInteger) { - this.xHeaderInteger = xHeaderInteger; - return this; - } - - @JsonProperty("X-Header-Number") - public String xHeaderNumber; - - public HeaderParamsPrimitiveResHeaders withXHeaderNumber(String xHeaderNumber) { - this.xHeaderNumber = xHeaderNumber; - return this; - } - - @JsonProperty("X-Header-String") - public String xHeaderString; - - public HeaderParamsPrimitiveResHeaders withXHeaderString(String xHeaderString) { - this.xHeaderString = xHeaderString; - return this; - } - - public HeaderParamsPrimitiveResHeaders(@JsonProperty("X-Header-Boolean") String xHeaderBoolean, @JsonProperty("X-Header-Integer") String xHeaderInteger, @JsonProperty("X-Header-Number") String xHeaderNumber, @JsonProperty("X-Header-String") String xHeaderString) { - this.xHeaderBoolean = xHeaderBoolean; - this.xHeaderInteger = xHeaderInteger; - this.xHeaderNumber = xHeaderNumber; - this.xHeaderString = xHeaderString; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Headers.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Headers.java new file mode 100755 index 000000000..06d721618 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Headers.java @@ -0,0 +1,22 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class Headers { + @JsonProperty("X-Header-Array") + public String xHeaderArray; + + public Headers withXHeaderArray(String xHeaderArray) { + this.xHeaderArray = xHeaderArray; + return this; + } + + public Headers(@JsonProperty("X-Header-Array") String xHeaderArray) { + this.xHeaderArray = xHeaderArray; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGet200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGet200ApplicationJSON.java deleted file mode 100755 index b777da015..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGet200ApplicationJSON.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * IgnoredGenerationGet200ApplicationJSON - A successful response that contains the simpleObject sent in the request body - */ - -public class IgnoredGenerationGet200ApplicationJSON { - /** - * 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. - */ - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("json") - public org.openapis.openapi.models.shared.SimpleObject json; - - public IgnoredGenerationGet200ApplicationJSON withJson(org.openapis.openapi.models.shared.SimpleObject json) { - this.json = json; - return this; - } - - public IgnoredGenerationGet200ApplicationJSON(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGetResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGetResponse.java index f2aa6e8ff..71192d172 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGetResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGetResponse.java @@ -46,10 +46,10 @@ public IgnoredGenerationGetResponse withRawResponse(HttpResponse rawResp * A successful response that contains the simpleObject sent in the request body */ - public IgnoredGenerationGet200ApplicationJSON ignoredGenerationGet200ApplicationJSONObject; + public IgnoredGenerationGetResponseBody object; - public IgnoredGenerationGetResponse withIgnoredGenerationGet200ApplicationJSONObject(IgnoredGenerationGet200ApplicationJSON ignoredGenerationGet200ApplicationJSONObject) { - this.ignoredGenerationGet200ApplicationJSONObject = ignoredGenerationGet200ApplicationJSONObject; + public IgnoredGenerationGetResponse withObject(IgnoredGenerationGetResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGetResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGetResponseBody.java new file mode 100755 index 000000000..5da6e4f51 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoredGenerationGetResponseBody.java @@ -0,0 +1,30 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * IgnoredGenerationGetResponseBody - 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. + */ + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("json") + public org.openapis.openapi.models.shared.SimpleObject json; + + public IgnoredGenerationGetResponseBody withJson(org.openapis.openapi.models.shared.SimpleObject json) { + this.json = json; + return this; + } + + public IgnoredGenerationGetResponseBody(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostApplicationJSON.java deleted file mode 100755 index f790906eb..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostApplicationJSON.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class IgnoresPostApplicationJSON { - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("callbackUrl") - public String callbackUrl; - - public IgnoresPostApplicationJSON withCallbackUrl(String callbackUrl) { - this.callbackUrl = callbackUrl; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("testProp") - public String testProp; - - public IgnoresPostApplicationJSON withTestProp(String testProp) { - this.testProp = testProp; - return this; - } - - public IgnoresPostApplicationJSON(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostRequest.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostRequest.java index 1a8a6e1c1..7a4293307 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostRequest.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostRequest.java @@ -10,9 +10,9 @@ public class IgnoresPostRequest { @SpeakeasyMetadata("request:mediaType=application/json") - public IgnoresPostApplicationJSON requestBody; + public IgnoresPostRequestBody requestBody; - public IgnoresPostRequest withRequestBody(IgnoresPostApplicationJSON requestBody) { + public IgnoresPostRequest withRequestBody(IgnoresPostRequestBody requestBody) { this.requestBody = requestBody; return this; } @@ -25,7 +25,7 @@ public IgnoresPostRequest withTestParam(String testParam) { return this; } - public IgnoresPostRequest(@JsonProperty("RequestBody") IgnoresPostApplicationJSON requestBody) { + public IgnoresPostRequest(@JsonProperty("RequestBody") IgnoresPostRequestBody requestBody) { this.requestBody = requestBody; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostRequestBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostRequestBody.java new file mode 100755 index 000000000..7385ccb69 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/IgnoresPostRequestBody.java @@ -0,0 +1,32 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class IgnoresPostRequestBody { + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("callbackUrl") + public String callbackUrl; + + public IgnoresPostRequestBody withCallbackUrl(String callbackUrl) { + this.callbackUrl = callbackUrl; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("testProp") + public String testProp; + + public IgnoresPostRequestBody withTestProp(String testProp) { + this.testProp = testProp; + return this; + } + + public IgnoresPostRequestBody(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictRes.java index f9da6c97d..4ca3a0606 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictRes.java @@ -20,14 +20,14 @@ public InlineBodyAndParamConflictRes withArgs(java.util.Map args } @JsonProperty("json") - public InlineBodyAndParamConflictResJson json; + public Json json; - public InlineBodyAndParamConflictRes withJson(InlineBodyAndParamConflictResJson json) { + public InlineBodyAndParamConflictRes withJson(Json json) { this.json = json; return this; } - public InlineBodyAndParamConflictRes(@JsonProperty("args") java.util.Map args, @JsonProperty("json") InlineBodyAndParamConflictResJson json) { + public InlineBodyAndParamConflictRes(@JsonProperty("args") java.util.Map args, @JsonProperty("json") Json json) { this.args = args; this.json = json; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictResJson.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictResJson.java deleted file mode 100755 index 514ec6d93..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamConflictResJson.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class InlineBodyAndParamConflictResJson { - @JsonProperty("str") - public String str; - - public InlineBodyAndParamConflictResJson withStr(String str) { - this.str = str; - return this; - } - - public InlineBodyAndParamConflictResJson(@JsonProperty("str") String str) { - this.str = str; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictJson.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictJson.java new file mode 100755 index 000000000..099cfb19f --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictJson.java @@ -0,0 +1,22 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class InlineBodyAndParamNoConflictJson { + @JsonProperty("bodyStr") + public String bodyStr; + + public InlineBodyAndParamNoConflictJson withBodyStr(String bodyStr) { + this.bodyStr = bodyStr; + return this; + } + + public InlineBodyAndParamNoConflictJson(@JsonProperty("bodyStr") String bodyStr) { + this.bodyStr = bodyStr; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictRes.java index e2c5a648c..8e64f8454 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictRes.java @@ -20,14 +20,14 @@ public InlineBodyAndParamNoConflictRes withArgs(java.util.Map ar } @JsonProperty("json") - public InlineBodyAndParamNoConflictResJson json; + public InlineBodyAndParamNoConflictJson json; - public InlineBodyAndParamNoConflictRes withJson(InlineBodyAndParamNoConflictResJson json) { + public InlineBodyAndParamNoConflictRes withJson(InlineBodyAndParamNoConflictJson json) { this.json = json; return this; } - public InlineBodyAndParamNoConflictRes(@JsonProperty("args") java.util.Map args, @JsonProperty("json") InlineBodyAndParamNoConflictResJson json) { + public InlineBodyAndParamNoConflictRes(@JsonProperty("args") java.util.Map args, @JsonProperty("json") InlineBodyAndParamNoConflictJson json) { this.args = args; this.json = json; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictResJson.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictResJson.java deleted file mode 100755 index 9e57d57c4..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/InlineBodyAndParamNoConflictResJson.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class InlineBodyAndParamNoConflictResJson { - @JsonProperty("bodyStr") - public String bodyStr; - - public InlineBodyAndParamNoConflictResJson withBodyStr(String bodyStr) { - this.bodyStr = bodyStr; - return this; - } - - public InlineBodyAndParamNoConflictResJson(@JsonProperty("bodyStr") String bodyStr) { - this.bodyStr = bodyStr; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Json.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Json.java new file mode 100755 index 000000000..9afc8d415 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/Json.java @@ -0,0 +1,22 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class Json { + @JsonProperty("str") + public String str; + + public Json withStr(String str) { + this.str = str; + return this; + } + + public Json(@JsonProperty("str") String str) { + this.str = str; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectArgs.java new file mode 100755 index 000000000..91b451635 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectArgs.java @@ -0,0 +1,31 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class JsonQueryParamsObjectArgs { + @JsonProperty("deepObjParam") + public String deepObjParam; + + public JsonQueryParamsObjectArgs withDeepObjParam(String deepObjParam) { + this.deepObjParam = deepObjParam; + return this; + } + + @JsonProperty("simpleObjParam") + public String simpleObjParam; + + public JsonQueryParamsObjectArgs withSimpleObjParam(String simpleObjParam) { + this.simpleObjParam = simpleObjParam; + return this; + } + + public JsonQueryParamsObjectArgs(@JsonProperty("deepObjParam") String deepObjParam, @JsonProperty("simpleObjParam") String simpleObjParam) { + this.deepObjParam = deepObjParam; + this.simpleObjParam = simpleObjParam; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectRes.java index 5e07656c4..a7904e78b 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectRes.java @@ -12,9 +12,9 @@ public class JsonQueryParamsObjectRes { @JsonProperty("args") - public JsonQueryParamsObjectResArgs args; + public JsonQueryParamsObjectArgs args; - public JsonQueryParamsObjectRes withArgs(JsonQueryParamsObjectResArgs args) { + public JsonQueryParamsObjectRes withArgs(JsonQueryParamsObjectArgs args) { this.args = args; return this; } @@ -27,7 +27,7 @@ public JsonQueryParamsObjectRes withUrl(String url) { return this; } - public JsonQueryParamsObjectRes(@JsonProperty("args") JsonQueryParamsObjectResArgs args, @JsonProperty("url") String url) { + public JsonQueryParamsObjectRes(@JsonProperty("args") JsonQueryParamsObjectArgs args, @JsonProperty("url") String url) { this.args = args; this.url = url; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectResArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectResArgs.java deleted file mode 100755 index 9c14d8e2c..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/JsonQueryParamsObjectResArgs.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class JsonQueryParamsObjectResArgs { - @JsonProperty("deepObjParam") - public String deepObjParam; - - public JsonQueryParamsObjectResArgs withDeepObjParam(String deepObjParam) { - this.deepObjParam = deepObjParam; - return this; - } - - @JsonProperty("simpleObjParam") - public String simpleObjParam; - - public JsonQueryParamsObjectResArgs withSimpleObjParam(String simpleObjParam) { - this.simpleObjParam = simpleObjParam; - return this; - } - - public JsonQueryParamsObjectResArgs(@JsonProperty("deepObjParam") String deepObjParam, @JsonProperty("simpleObjParam") String simpleObjParam) { - this.deepObjParam = deepObjParam; - this.simpleObjParam = simpleObjParam; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseArgs.java new file mode 100755 index 000000000..6151a4e91 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseArgs.java @@ -0,0 +1,22 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class MixedParametersCamelCaseArgs { + @JsonProperty("query_string_param") + public String queryStringParam; + + public MixedParametersCamelCaseArgs withQueryStringParam(String queryStringParam) { + this.queryStringParam = queryStringParam; + return this; + } + + public MixedParametersCamelCaseArgs(@JsonProperty("query_string_param") String queryStringParam) { + this.queryStringParam = queryStringParam; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseHeaders.java new file mode 100755 index 000000000..06187f585 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseHeaders.java @@ -0,0 +1,22 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class MixedParametersCamelCaseHeaders { + @JsonProperty("Header-Param") + public String headerParam; + + public MixedParametersCamelCaseHeaders withHeaderParam(String headerParam) { + this.headerParam = headerParam; + return this; + } + + public MixedParametersCamelCaseHeaders(@JsonProperty("Header-Param") String headerParam) { + this.headerParam = headerParam; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseRes.java index 34f6c99cf..6f4ef5ab3 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseRes.java @@ -12,17 +12,17 @@ public class MixedParametersCamelCaseRes { @JsonProperty("args") - public MixedParametersCamelCaseResArgs args; + public MixedParametersCamelCaseArgs args; - public MixedParametersCamelCaseRes withArgs(MixedParametersCamelCaseResArgs args) { + public MixedParametersCamelCaseRes withArgs(MixedParametersCamelCaseArgs args) { this.args = args; return this; } @JsonProperty("headers") - public MixedParametersCamelCaseResHeaders headers; + public MixedParametersCamelCaseHeaders headers; - public MixedParametersCamelCaseRes withHeaders(MixedParametersCamelCaseResHeaders headers) { + public MixedParametersCamelCaseRes withHeaders(MixedParametersCamelCaseHeaders headers) { this.headers = headers; return this; } @@ -35,7 +35,7 @@ public MixedParametersCamelCaseRes withUrl(String url) { return this; } - public MixedParametersCamelCaseRes(@JsonProperty("args") MixedParametersCamelCaseResArgs args, @JsonProperty("headers") MixedParametersCamelCaseResHeaders headers, @JsonProperty("url") String url) { + public MixedParametersCamelCaseRes(@JsonProperty("args") MixedParametersCamelCaseArgs args, @JsonProperty("headers") MixedParametersCamelCaseHeaders headers, @JsonProperty("url") String url) { this.args = args; this.headers = headers; this.url = url; diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseResArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseResArgs.java deleted file mode 100755 index c51af21e9..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseResArgs.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class MixedParametersCamelCaseResArgs { - @JsonProperty("query_string_param") - public String queryStringParam; - - public MixedParametersCamelCaseResArgs withQueryStringParam(String queryStringParam) { - this.queryStringParam = queryStringParam; - return this; - } - - public MixedParametersCamelCaseResArgs(@JsonProperty("query_string_param") String queryStringParam) { - this.queryStringParam = queryStringParam; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseResHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseResHeaders.java deleted file mode 100755 index 4c8e6135b..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersCamelCaseResHeaders.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class MixedParametersCamelCaseResHeaders { - @JsonProperty("Header-Param") - public String headerParam; - - public MixedParametersCamelCaseResHeaders withHeaderParam(String headerParam) { - this.headerParam = headerParam; - return this; - } - - public MixedParametersCamelCaseResHeaders(@JsonProperty("Header-Param") String headerParam) { - this.headerParam = headerParam; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesArgs.java new file mode 100755 index 000000000..47b14d96a --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesArgs.java @@ -0,0 +1,22 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class MixedParametersPrimitivesArgs { + @JsonProperty("queryStringParam") + public String queryStringParam; + + public MixedParametersPrimitivesArgs withQueryStringParam(String queryStringParam) { + this.queryStringParam = queryStringParam; + return this; + } + + public MixedParametersPrimitivesArgs(@JsonProperty("queryStringParam") String queryStringParam) { + this.queryStringParam = queryStringParam; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesHeaders.java new file mode 100755 index 000000000..31f19f29d --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesHeaders.java @@ -0,0 +1,22 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class MixedParametersPrimitivesHeaders { + @JsonProperty("Headerparam") + public String headerparam; + + public MixedParametersPrimitivesHeaders withHeaderparam(String headerparam) { + this.headerparam = headerparam; + return this; + } + + public MixedParametersPrimitivesHeaders(@JsonProperty("Headerparam") String headerparam) { + this.headerparam = headerparam; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesRes.java index cb709943c..1a49faa07 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesRes.java @@ -12,17 +12,17 @@ public class MixedParametersPrimitivesRes { @JsonProperty("args") - public MixedParametersPrimitivesResArgs args; + public MixedParametersPrimitivesArgs args; - public MixedParametersPrimitivesRes withArgs(MixedParametersPrimitivesResArgs args) { + public MixedParametersPrimitivesRes withArgs(MixedParametersPrimitivesArgs args) { this.args = args; return this; } @JsonProperty("headers") - public MixedParametersPrimitivesResHeaders headers; + public MixedParametersPrimitivesHeaders headers; - public MixedParametersPrimitivesRes withHeaders(MixedParametersPrimitivesResHeaders headers) { + public MixedParametersPrimitivesRes withHeaders(MixedParametersPrimitivesHeaders headers) { this.headers = headers; return this; } @@ -35,7 +35,7 @@ public MixedParametersPrimitivesRes withUrl(String url) { return this; } - public MixedParametersPrimitivesRes(@JsonProperty("args") MixedParametersPrimitivesResArgs args, @JsonProperty("headers") MixedParametersPrimitivesResHeaders headers, @JsonProperty("url") String url) { + public MixedParametersPrimitivesRes(@JsonProperty("args") MixedParametersPrimitivesArgs args, @JsonProperty("headers") MixedParametersPrimitivesHeaders headers, @JsonProperty("url") String url) { this.args = args; this.headers = headers; this.url = url; diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesResArgs.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesResArgs.java deleted file mode 100755 index b3821512b..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesResArgs.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class MixedParametersPrimitivesResArgs { - @JsonProperty("queryStringParam") - public String queryStringParam; - - public MixedParametersPrimitivesResArgs withQueryStringParam(String queryStringParam) { - this.queryStringParam = queryStringParam; - return this; - } - - public MixedParametersPrimitivesResArgs(@JsonProperty("queryStringParam") String queryStringParam) { - this.queryStringParam = queryStringParam; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesResHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesResHeaders.java deleted file mode 100755 index 5429625e9..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/MixedParametersPrimitivesResHeaders.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class MixedParametersPrimitivesResHeaders { - @JsonProperty("Headerparam") - public String headerparam; - - public MixedParametersPrimitivesResHeaders withHeaderparam(String headerparam) { - this.headerparam = headerparam; - return this; - } - - public MixedParametersPrimitivesResHeaders(@JsonProperty("Headerparam") String headerparam) { - this.headerparam = headerparam; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetEnumNameOverride.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetEnumNameOverride.java deleted file mode 100755 index 959782826..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetEnumNameOverride.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonValue; - -/** - * NameOverrideGetEnumNameOverride - An enum type - */ -public enum NameOverrideGetEnumNameOverride { - VALUE1("value1"), - VALUE2("value2"), - VALUE3("value3"); - - @JsonValue - public final String value; - - private NameOverrideGetEnumNameOverride(String value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetOverriddenResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetOverriddenResponse.java new file mode 100755 index 000000000..86c05773c --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetOverriddenResponse.java @@ -0,0 +1,30 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * NameOverrideGetOverriddenResponse - 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. + */ + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("json") + public org.openapis.openapi.models.shared.SimpleObject json; + + public NameOverrideGetOverriddenResponse withJson(org.openapis.openapi.models.shared.SimpleObject json) { + this.json = json; + return this; + } + + public NameOverrideGetOverriddenResponse(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetRequest.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetRequest.java index ea336c1b0..c8fdef155 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetRequest.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetRequest.java @@ -13,9 +13,9 @@ public class NameOverrideGetRequest { * An enum type */ @SpeakeasyMetadata("queryParam:style=form,explode=true,name=enumNameOverride") - public NameOverrideGetEnumNameOverride testEnumQueryParam; + public EnumNameOverride testEnumQueryParam; - public NameOverrideGetRequest withTestEnumQueryParam(NameOverrideGetEnumNameOverride testEnumQueryParam) { + public NameOverrideGetRequest withTestEnumQueryParam(EnumNameOverride testEnumQueryParam) { this.testEnumQueryParam = testEnumQueryParam; return this; } @@ -28,7 +28,7 @@ public NameOverrideGetRequest withTestQueryParam(String testQueryParam) { return this; } - public NameOverrideGetRequest(@JsonProperty("testEnumQueryParam") NameOverrideGetEnumNameOverride testEnumQueryParam, @JsonProperty("testQueryParam") String testQueryParam) { + public NameOverrideGetRequest(@JsonProperty("testEnumQueryParam") EnumNameOverride testEnumQueryParam, @JsonProperty("testQueryParam") String testQueryParam) { this.testEnumQueryParam = testEnumQueryParam; this.testQueryParam = testQueryParam; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetResponse.java index 2de7b7332..4f5f4454c 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NameOverrideGetResponse.java @@ -46,9 +46,9 @@ public NameOverrideGetResponse withRawResponse(HttpResponse rawResponse) * A successful response that contains the simpleObject sent in the request body */ - public OverriddenResponse overriddenResponse; + public NameOverrideGetOverriddenResponse overriddenResponse; - public NameOverrideGetResponse withOverriddenResponse(OverriddenResponse overriddenResponse) { + public NameOverrideGetResponse withOverriddenResponse(NameOverrideGetOverriddenResponse overriddenResponse) { this.overriddenResponse = overriddenResponse; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableOptionalObj.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableOptionalObj.java new file mode 100755 index 000000000..5c6260724 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableOptionalObj.java @@ -0,0 +1,12 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + + + + +public class NullableOptionalObj { + public NullableOptionalObj(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBody.java index cb9860c71..80801ce4f 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBody.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBody.java @@ -12,30 +12,30 @@ public class NullableRequiredEmptyObjectPostRequestBody { @JsonInclude(Include.NON_ABSENT) @JsonProperty("NullableOptionalObj") - public NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj nullableOptionalObj; + public NullableOptionalObj nullableOptionalObj; - public NullableRequiredEmptyObjectPostRequestBody withNullableOptionalObj(NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj nullableOptionalObj) { + public NullableRequiredEmptyObjectPostRequestBody withNullableOptionalObj(NullableOptionalObj nullableOptionalObj) { this.nullableOptionalObj = nullableOptionalObj; return this; } @JsonProperty("NullableRequiredObj") - public NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj nullableRequiredObj; + public NullableRequiredObj nullableRequiredObj; - public NullableRequiredEmptyObjectPostRequestBody withNullableRequiredObj(NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj nullableRequiredObj) { + public NullableRequiredEmptyObjectPostRequestBody withNullableRequiredObj(NullableRequiredObj nullableRequiredObj) { this.nullableRequiredObj = nullableRequiredObj; return this; } @JsonProperty("RequiredObj") - public NullableRequiredEmptyObjectPostRequestBodyRequiredObj requiredObj; + public RequiredObj requiredObj; - public NullableRequiredEmptyObjectPostRequestBody withRequiredObj(NullableRequiredEmptyObjectPostRequestBodyRequiredObj requiredObj) { + public NullableRequiredEmptyObjectPostRequestBody withRequiredObj(RequiredObj requiredObj) { this.requiredObj = requiredObj; return this; } - public NullableRequiredEmptyObjectPostRequestBody(@JsonProperty("NullableRequiredObj") NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj nullableRequiredObj, @JsonProperty("RequiredObj") NullableRequiredEmptyObjectPostRequestBodyRequiredObj requiredObj) { + public NullableRequiredEmptyObjectPostRequestBody(@JsonProperty("NullableRequiredObj") NullableRequiredObj nullableRequiredObj, @JsonProperty("RequiredObj") RequiredObj requiredObj) { this.nullableRequiredObj = nullableRequiredObj; this.requiredObj = requiredObj; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.java deleted file mode 100755 index 4e4d398f3..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.java +++ /dev/null @@ -1,12 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - - - - -public class NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj { - public NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.java deleted file mode 100755 index 7b2640001..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.java +++ /dev/null @@ -1,12 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - - - - -public class NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj { - public NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.java deleted file mode 100755 index e8b638769..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.java +++ /dev/null @@ -1,12 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - - - - -public class NullableRequiredEmptyObjectPostRequestBodyRequiredObj { - public NullableRequiredEmptyObjectPostRequestBodyRequiredObj(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostResponse.java index b036157d2..5cbfd923f 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredEmptyObjectPostResponse.java @@ -46,10 +46,10 @@ public NullableRequiredEmptyObjectPostResponse withRawResponse(HttpResponse * OK */ - public String nullableRequiredPropertyPost200ApplicationJSONString; + public String res; - public NullableRequiredPropertyPostResponse withNullableRequiredPropertyPost200ApplicationJSONString(String nullableRequiredPropertyPost200ApplicationJSONString) { - this.nullableRequiredPropertyPost200ApplicationJSONString = nullableRequiredPropertyPost200ApplicationJSONString; + public NullableRequiredPropertyPostResponse withRes(String res) { + this.res = res; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredSharedObjectPostResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredSharedObjectPostResponse.java index 50c3f8b84..1e2c68267 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredSharedObjectPostResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/NullableRequiredSharedObjectPostResponse.java @@ -46,10 +46,10 @@ public NullableRequiredSharedObjectPostResponse withRawResponse(HttpResponse * OK */ - public PutAnythingIgnoredGeneration200ApplicationJSON putAnythingIgnoredGeneration200ApplicationJSONObject; + public PutAnythingIgnoredGenerationResponseBody object; - public PutAnythingIgnoredGenerationResponse withPutAnythingIgnoredGeneration200ApplicationJSONObject(PutAnythingIgnoredGeneration200ApplicationJSON putAnythingIgnoredGeneration200ApplicationJSONObject) { - this.putAnythingIgnoredGeneration200ApplicationJSONObject = putAnythingIgnoredGeneration200ApplicationJSONObject; + public PutAnythingIgnoredGenerationResponse withObject(PutAnythingIgnoredGenerationResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/PutAnythingIgnoredGenerationResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/PutAnythingIgnoredGenerationResponseBody.java new file mode 100755 index 000000000..c8d428932 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/PutAnythingIgnoredGenerationResponseBody.java @@ -0,0 +1,26 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * PutAnythingIgnoredGenerationResponseBody - OK + */ + +public class PutAnythingIgnoredGenerationResponseBody { + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("json") + public String json; + + public PutAnythingIgnoredGenerationResponseBody withJson(String json) { + this.json = json; + return this; + } + + public PutAnythingIgnoredGenerationResponseBody(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.java index 287884725..04e23977d 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostApplicationJsonArrayCamelCaseResponse withRawResponse(Http * OK */ - public org.openapis.openapi.models.shared.SimpleObjectCamelCase[] simpleObjectCamelCases; + public org.openapis.openapi.models.shared.SimpleObjectCamelCase[] res; - public RequestBodyPostApplicationJsonArrayCamelCaseResponse withSimpleObjectCamelCases(org.openapis.openapi.models.shared.SimpleObjectCamelCase[] simpleObjectCamelCases) { - this.simpleObjectCamelCases = simpleObjectCamelCases; + public RequestBodyPostApplicationJsonArrayCamelCaseResponse withRes(org.openapis.openapi.models.shared.SimpleObjectCamelCase[] res) { + this.res = res; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.java index db04bb5b0..6a4b14a36 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse withRawRespon * OK */ - public org.openapis.openapi.models.shared.SimpleObjectCamelCase[][] arrs; + public org.openapis.openapi.models.shared.SimpleObjectCamelCase[][] res; - public RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse withArrs(org.openapis.openapi.models.shared.SimpleObjectCamelCase[][] arrs) { - this.arrs = arrs; + public RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse withRes(org.openapis.openapi.models.shared.SimpleObjectCamelCase[][] res) { + this.res = res; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.java index 3e0d821b8..1f029449d 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse withRawResp * OK */ - public String[][] arrs; + public String[][] res; - public RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse withArrs(String[][] arrs) { - this.arrs = arrs; + public RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse withRes(String[][] res) { + this.res = res; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.java index 55bc9fdba..def2ffde0 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostApplicationJsonArrayOfArrayResponse withRawResponse(HttpRe * OK */ - public org.openapis.openapi.models.shared.SimpleObject[][] arrs; + public org.openapis.openapi.models.shared.SimpleObject[][] res; - public RequestBodyPostApplicationJsonArrayOfArrayResponse withArrs(org.openapis.openapi.models.shared.SimpleObject[][] arrs) { - this.arrs = arrs; + public RequestBodyPostApplicationJsonArrayOfArrayResponse withRes(org.openapis.openapi.models.shared.SimpleObject[][] res) { + this.res = res; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.java index 2de0c642e..f2de0edfb 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse withRawResponse * OK */ - public java.util.Map[] maps; + public java.util.Map[] res; - public RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse withMaps(java.util.Map[] maps) { - this.maps = maps; + public RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse withRes(java.util.Map[] res) { + this.res = res; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.java index be262c617..4be249062 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostApplicationJsonArrayOfMapResponse withRawResponse(HttpResp * OK */ - public java.util.Map[] maps; + public java.util.Map[] res; - public RequestBodyPostApplicationJsonArrayOfMapResponse withMaps(java.util.Map[] maps) { - this.maps = maps; + public RequestBodyPostApplicationJsonArrayOfMapResponse withRes(java.util.Map[] res) { + this.res = res; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.java index eeb9c5e79..cfdd993fd 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostApplicationJsonArrayOfPrimitiveResponse withRawResponse(Ht * OK */ - public String[] strings; + public String[] res; - public RequestBodyPostApplicationJsonArrayOfPrimitiveResponse withStrings(String[] strings) { - this.strings = strings; + public RequestBodyPostApplicationJsonArrayOfPrimitiveResponse withRes(String[] res) { + this.res = res; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayResponse.java index 31341a692..1c584977b 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostApplicationJsonArrayResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostApplicationJsonArrayResponse withRawResponse(HttpResponse< * OK */ - public org.openapis.openapi.models.shared.SimpleObject[] simpleObjects; + public org.openapis.openapi.models.shared.SimpleObject[] res; - public RequestBodyPostApplicationJsonArrayResponse withSimpleObjects(org.openapis.openapi.models.shared.SimpleObject[] simpleObjects) { - this.simpleObjects = simpleObjects; + public RequestBodyPostApplicationJsonArrayResponse withRes(org.openapis.openapi.models.shared.SimpleObject[] res) { + this.res = res; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.java deleted file mode 100755 index fee330c4a..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostComplexNumberTypes200ApplicationJSON - OK - */ - -public class RequestBodyPostComplexNumberTypes200ApplicationJSON { - @JsonProperty("json") - public org.openapis.openapi.models.shared.ComplexNumberTypes json; - - public RequestBodyPostComplexNumberTypes200ApplicationJSON withJson(org.openapis.openapi.models.shared.ComplexNumberTypes json) { - this.json = json; - return this; - } - - @JsonProperty("url") - public String url; - - public RequestBodyPostComplexNumberTypes200ApplicationJSON withUrl(String url) { - this.url = url; - return this; - } - - public RequestBodyPostComplexNumberTypes200ApplicationJSON(@JsonProperty("json") org.openapis.openapi.models.shared.ComplexNumberTypes json, @JsonProperty("url") String url) { - this.json = json; - this.url = url; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostComplexNumberTypesResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostComplexNumberTypesResponse.java index 6570a1b8c..f098607a2 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostComplexNumberTypesResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostComplexNumberTypesResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostComplexNumberTypesResponse withRawResponse(HttpResponse r * OK */ - public RequestBodyPostEmptyObject200ApplicationJSON requestBodyPostEmptyObject200ApplicationJSONObject; + public RequestBodyPostEmptyObjectResponseBody object; - public RequestBodyPostEmptyObjectResponse withRequestBodyPostEmptyObject200ApplicationJSONObject(RequestBodyPostEmptyObject200ApplicationJSON requestBodyPostEmptyObject200ApplicationJSONObject) { - this.requestBodyPostEmptyObject200ApplicationJSONObject = requestBodyPostEmptyObject200ApplicationJSONObject; + public RequestBodyPostEmptyObjectResponse withObject(RequestBodyPostEmptyObjectResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObjectResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObjectResponseBody.java new file mode 100755 index 000000000..a62b73efa --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostEmptyObjectResponseBody.java @@ -0,0 +1,35 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * RequestBodyPostEmptyObjectResponseBody - OK + */ + +public class RequestBodyPostEmptyObjectResponseBody { + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("empty") + public RequestBodyPostEmptyObjectEmpty empty; + + public RequestBodyPostEmptyObjectResponseBody withEmpty(RequestBodyPostEmptyObjectEmpty empty) { + this.empty = empty; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("emptyRespWithEmptyProperies") + public EmptyRespWithEmptyProperies emptyRespWithEmptyProperies; + + public RequestBodyPostEmptyObjectResponseBody withEmptyRespWithEmptyProperies(EmptyRespWithEmptyProperies emptyRespWithEmptyProperies) { + this.emptyRespWithEmptyProperies = emptyRespWithEmptyProperies; + return this; + } + + public RequestBodyPostEmptyObjectResponseBody(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormDeepRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormDeepRes.java index dd357799f..4c0bb4317 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormDeepRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormDeepRes.java @@ -12,14 +12,14 @@ public class RequestBodyPostFormDeepRes { @JsonProperty("form") - public RequestBodyPostFormDeepResForm form; + public Form form; - public RequestBodyPostFormDeepRes withForm(RequestBodyPostFormDeepResForm form) { + public RequestBodyPostFormDeepRes withForm(Form form) { this.form = form; return this; } - public RequestBodyPostFormDeepRes(@JsonProperty("form") RequestBodyPostFormDeepResForm form) { + public RequestBodyPostFormDeepRes(@JsonProperty("form") Form form) { this.form = form; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormDeepResForm.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormDeepResForm.java deleted file mode 100755 index a4aa641d6..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormDeepResForm.java +++ /dev/null @@ -1,76 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class RequestBodyPostFormDeepResForm { - @JsonProperty("arr") - public String arr; - - public RequestBodyPostFormDeepResForm withArr(String arr) { - this.arr = arr; - return this; - } - - @JsonProperty("bool") - public String bool; - - public RequestBodyPostFormDeepResForm withBool(String bool) { - this.bool = bool; - return this; - } - - @JsonProperty("int") - public String int_; - - public RequestBodyPostFormDeepResForm withInt(String int_) { - this.int_ = int_; - return this; - } - - @JsonProperty("map") - public String map; - - public RequestBodyPostFormDeepResForm withMap(String map) { - this.map = map; - return this; - } - - @JsonProperty("num") - public String num; - - public RequestBodyPostFormDeepResForm withNum(String num) { - this.num = num; - return this; - } - - @JsonProperty("obj") - public String obj; - - public RequestBodyPostFormDeepResForm withObj(String obj) { - this.obj = obj; - return this; - } - - @JsonProperty("str") - public String str; - - public RequestBodyPostFormDeepResForm withStr(String str) { - this.str = str; - return this; - } - - public RequestBodyPostFormDeepResForm(@JsonProperty("arr") String arr, @JsonProperty("bool") String bool, @JsonProperty("int") String int_, @JsonProperty("map") String map, @JsonProperty("num") String num, @JsonProperty("obj") String obj, @JsonProperty("str") String str) { - this.arr = arr; - this.bool = bool; - this.int_ = int_; - this.map = map; - this.num = num; - this.obj = obj; - this.str = str; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleForm.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleForm.java new file mode 100755 index 000000000..e6f5d474f --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleForm.java @@ -0,0 +1,141 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class RequestBodyPostFormSimpleForm { + @JsonProperty("any") + public String any; + + public RequestBodyPostFormSimpleForm withAny(String any) { + this.any = any; + return this; + } + + @JsonProperty("bool") + public String bool; + + public RequestBodyPostFormSimpleForm withBool(String bool) { + this.bool = bool; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("boolOpt") + public String boolOpt; + + public RequestBodyPostFormSimpleForm withBoolOpt(String boolOpt) { + this.boolOpt = boolOpt; + return this; + } + + @JsonProperty("date") + public String date; + + public RequestBodyPostFormSimpleForm withDate(String date) { + this.date = date; + return this; + } + + @JsonProperty("dateTime") + public String dateTime; + + public RequestBodyPostFormSimpleForm withDateTime(String dateTime) { + this.dateTime = dateTime; + return this; + } + + @JsonProperty("enum") + public String enum_; + + public RequestBodyPostFormSimpleForm withEnum(String enum_) { + this.enum_ = enum_; + return this; + } + + @JsonProperty("float32") + public String float32; + + public RequestBodyPostFormSimpleForm withFloat32(String float32) { + this.float32 = float32; + return this; + } + + @JsonProperty("int") + public String int_; + + public RequestBodyPostFormSimpleForm withInt(String int_) { + this.int_ = int_; + return this; + } + + @JsonProperty("int32") + public String int32; + + public RequestBodyPostFormSimpleForm withInt32(String int32) { + this.int32 = int32; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("intOptNull") + public String intOptNull; + + public RequestBodyPostFormSimpleForm withIntOptNull(String intOptNull) { + this.intOptNull = intOptNull; + return this; + } + + @JsonProperty("num") + public String num; + + public RequestBodyPostFormSimpleForm withNum(String num) { + this.num = num; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("numOptNull") + public String numOptNull; + + public RequestBodyPostFormSimpleForm withNumOptNull(String numOptNull) { + this.numOptNull = numOptNull; + return this; + } + + @JsonProperty("str") + public String str; + + public RequestBodyPostFormSimpleForm withStr(String str) { + this.str = str; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("strOpt") + public String strOpt; + + public RequestBodyPostFormSimpleForm withStrOpt(String strOpt) { + this.strOpt = strOpt; + return this; + } + + public RequestBodyPostFormSimpleForm(@JsonProperty("any") String any, @JsonProperty("bool") String bool, @JsonProperty("date") String date, @JsonProperty("dateTime") String dateTime, @JsonProperty("enum") String enum_, @JsonProperty("float32") String float32, @JsonProperty("int") String int_, @JsonProperty("int32") String int32, @JsonProperty("num") String num, @JsonProperty("str") String str) { + this.any = any; + this.bool = bool; + this.date = date; + this.dateTime = dateTime; + this.enum_ = enum_; + this.float32 = float32; + this.int_ = int_; + this.int32 = int32; + this.num = num; + this.str = str; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleHeaders.java new file mode 100755 index 000000000..84924018a --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleHeaders.java @@ -0,0 +1,22 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class RequestBodyPostFormSimpleHeaders { + @JsonProperty("Content-Type") + public String contentType; + + public RequestBodyPostFormSimpleHeaders withContentType(String contentType) { + this.contentType = contentType; + return this; + } + + public RequestBodyPostFormSimpleHeaders(@JsonProperty("Content-Type") String contentType) { + this.contentType = contentType; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleRes.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleRes.java index 51374346c..9779ec684 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleRes.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleRes.java @@ -12,22 +12,22 @@ public class RequestBodyPostFormSimpleRes { @JsonProperty("form") - public RequestBodyPostFormSimpleResForm form; + public RequestBodyPostFormSimpleForm form; - public RequestBodyPostFormSimpleRes withForm(RequestBodyPostFormSimpleResForm form) { + public RequestBodyPostFormSimpleRes withForm(RequestBodyPostFormSimpleForm form) { this.form = form; return this; } @JsonProperty("headers") - public RequestBodyPostFormSimpleResHeaders headers; + public RequestBodyPostFormSimpleHeaders headers; - public RequestBodyPostFormSimpleRes withHeaders(RequestBodyPostFormSimpleResHeaders headers) { + public RequestBodyPostFormSimpleRes withHeaders(RequestBodyPostFormSimpleHeaders headers) { this.headers = headers; return this; } - public RequestBodyPostFormSimpleRes(@JsonProperty("form") RequestBodyPostFormSimpleResForm form, @JsonProperty("headers") RequestBodyPostFormSimpleResHeaders headers) { + public RequestBodyPostFormSimpleRes(@JsonProperty("form") RequestBodyPostFormSimpleForm form, @JsonProperty("headers") RequestBodyPostFormSimpleHeaders headers) { this.form = form; this.headers = headers; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleResForm.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleResForm.java deleted file mode 100755 index 2fb835b7b..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleResForm.java +++ /dev/null @@ -1,141 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class RequestBodyPostFormSimpleResForm { - @JsonProperty("any") - public String any; - - public RequestBodyPostFormSimpleResForm withAny(String any) { - this.any = any; - return this; - } - - @JsonProperty("bool") - public String bool; - - public RequestBodyPostFormSimpleResForm withBool(String bool) { - this.bool = bool; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("boolOpt") - public String boolOpt; - - public RequestBodyPostFormSimpleResForm withBoolOpt(String boolOpt) { - this.boolOpt = boolOpt; - return this; - } - - @JsonProperty("date") - public String date; - - public RequestBodyPostFormSimpleResForm withDate(String date) { - this.date = date; - return this; - } - - @JsonProperty("dateTime") - public String dateTime; - - public RequestBodyPostFormSimpleResForm withDateTime(String dateTime) { - this.dateTime = dateTime; - return this; - } - - @JsonProperty("enum") - public String enum_; - - public RequestBodyPostFormSimpleResForm withEnum(String enum_) { - this.enum_ = enum_; - return this; - } - - @JsonProperty("float32") - public String float32; - - public RequestBodyPostFormSimpleResForm withFloat32(String float32) { - this.float32 = float32; - return this; - } - - @JsonProperty("int") - public String int_; - - public RequestBodyPostFormSimpleResForm withInt(String int_) { - this.int_ = int_; - return this; - } - - @JsonProperty("int32") - public String int32; - - public RequestBodyPostFormSimpleResForm withInt32(String int32) { - this.int32 = int32; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("intOptNull") - public String intOptNull; - - public RequestBodyPostFormSimpleResForm withIntOptNull(String intOptNull) { - this.intOptNull = intOptNull; - return this; - } - - @JsonProperty("num") - public String num; - - public RequestBodyPostFormSimpleResForm withNum(String num) { - this.num = num; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("numOptNull") - public String numOptNull; - - public RequestBodyPostFormSimpleResForm withNumOptNull(String numOptNull) { - this.numOptNull = numOptNull; - return this; - } - - @JsonProperty("str") - public String str; - - public RequestBodyPostFormSimpleResForm withStr(String str) { - this.str = str; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("strOpt") - public String strOpt; - - public RequestBodyPostFormSimpleResForm withStrOpt(String strOpt) { - this.strOpt = strOpt; - return this; - } - - public RequestBodyPostFormSimpleResForm(@JsonProperty("any") String any, @JsonProperty("bool") String bool, @JsonProperty("date") String date, @JsonProperty("dateTime") String dateTime, @JsonProperty("enum") String enum_, @JsonProperty("float32") String float32, @JsonProperty("int") String int_, @JsonProperty("int32") String int32, @JsonProperty("num") String num, @JsonProperty("str") String str) { - this.any = any; - this.bool = bool; - this.date = date; - this.dateTime = dateTime; - this.enum_ = enum_; - this.float32 = float32; - this.int_ = int_; - this.int32 = int32; - this.num = num; - this.str = str; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleResHeaders.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleResHeaders.java deleted file mode 100755 index 9832dbae5..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostFormSimpleResHeaders.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class RequestBodyPostFormSimpleResHeaders { - @JsonProperty("Content-Type") - public String contentType; - - public RequestBodyPostFormSimpleResHeaders withContentType(String contentType) { - this.contentType = contentType; - return this; - } - - public RequestBodyPostFormSimpleResHeaders(@JsonProperty("Content-Type") String contentType) { - this.contentType = contentType; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.java deleted file mode 100755 index 32baa765f..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonProperty("json") - public Long[] json; - - public RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON withJson(Long[] json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") Long[] json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.java deleted file mode 100755 index 746002d2f..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; -import java.time.LocalDate; - -/** - * RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonProperty("json") - public LocalDate[] json; - - public RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON withJson(LocalDate[] json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") LocalDate[] json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.java deleted file mode 100755 index 12a4415f5..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonProperty("json") - public String[] json; - - public RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON withJson(String[] json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") String[] json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.java deleted file mode 100755 index 8ef5352ea..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesBigInt200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesBigInt200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesBigInt200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonProperty("json") - public Long json; - - public RequestBodyPostJSONDataTypesBigInt200ApplicationJSON withJson(Long json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesBigInt200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") Long json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.java deleted file mode 100755 index ef8d27d2c..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonProperty("json") - public String json; - - public RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON withJson(String json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") String json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.java deleted file mode 100755 index bbd4d3011..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesBoolean200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesBoolean200ApplicationJSON { - @JsonProperty("json") - public Boolean json; - - public RequestBodyPostJSONDataTypesBoolean200ApplicationJSON withJson(Boolean json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesBoolean200ApplicationJSON(@JsonProperty("json") Boolean json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.java deleted file mode 100755 index 9f58ad520..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonFormat; -import com.fasterxml.jackson.annotation.JsonProperty; -import java.time.LocalDate; - -/** - * RequestBodyPostJSONDataTypesDate200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesDate200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesDate200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd") - @JsonProperty("json") - public LocalDate json; - - public RequestBodyPostJSONDataTypesDate200ApplicationJSON withJson(LocalDate json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesDate200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") LocalDate json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.java deleted file mode 100755 index 3fd8ccfd5..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; -import com.fasterxml.jackson.databind.annotation.JsonDeserialize; -import com.fasterxml.jackson.databind.annotation.JsonSerialize; -import java.time.OffsetDateTime; -import org.openapis.openapi.utils.DateTimeDeserializer; -import org.openapis.openapi.utils.DateTimeSerializer; - -/** - * RequestBodyPostJSONDataTypesDateTime200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesDateTime200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesDateTime200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonSerialize(using = DateTimeSerializer.class) - @JsonDeserialize(using = DateTimeDeserializer.class) - @JsonProperty("json") - public OffsetDateTime json; - - public RequestBodyPostJSONDataTypesDateTime200ApplicationJSON withJson(OffsetDateTime json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesDateTime200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") OffsetDateTime json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.java deleted file mode 100755 index 66a2aa3f9..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesDecimal200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesDecimal200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesDecimal200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonProperty("json") - public Double json; - - public RequestBodyPostJSONDataTypesDecimal200ApplicationJSON withJson(Double json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesDecimal200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") Double json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.java deleted file mode 100755 index 9d12fad38..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonProperty("json") - public String json; - - public RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON withJson(String json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") String json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.java deleted file mode 100755 index 7141cd9c9..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesFloat32200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesFloat32200ApplicationJSON { - @JsonProperty("json") - public Double json; - - public RequestBodyPostJSONDataTypesFloat32200ApplicationJSON withJson(Double json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesFloat32200ApplicationJSON(@JsonProperty("json") Double json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.java deleted file mode 100755 index 23611692a..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesInt32200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesInt32200ApplicationJSON { - @JsonProperty("json") - public Integer json; - - public RequestBodyPostJSONDataTypesInt32200ApplicationJSON withJson(Integer json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesInt32200ApplicationJSON(@JsonProperty("json") Integer json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.java deleted file mode 100755 index a64ebf388..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesInteger200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesInteger200ApplicationJSON { - @JsonProperty("json") - public Long json; - - public RequestBodyPostJSONDataTypesInteger200ApplicationJSON withJson(Long json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesInteger200ApplicationJSON(@JsonProperty("json") Long json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.java deleted file mode 100755 index 714397b38..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonProperty("json") - public java.util.Map json; - - public RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON withJson(java.util.Map json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") java.util.Map json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.java deleted file mode 100755 index 144c8ef06..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; -import java.time.OffsetDateTime; - -/** - * RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonProperty("json") - public java.util.Map json; - - public RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON withJson(java.util.Map json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") java.util.Map json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.java deleted file mode 100755 index 5730afdb3..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - @JsonProperty("json") - public java.util.Map json; - - public RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON withJson(java.util.Map json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON(@JsonProperty("data") String data, @JsonProperty("json") java.util.Map json) { - this.data = data; - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.java deleted file mode 100755 index 955f61fba..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesNumber200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesNumber200ApplicationJSON { - @JsonProperty("json") - public Double json; - - public RequestBodyPostJSONDataTypesNumber200ApplicationJSON withJson(Double json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesNumber200ApplicationJSON(@JsonProperty("json") Double json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.java deleted file mode 100755 index a62ed359a..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostJSONDataTypesString200ApplicationJSON - OK - */ - -public class RequestBodyPostJSONDataTypesString200ApplicationJSON { - @JsonProperty("json") - public String json; - - public RequestBodyPostJSONDataTypesString200ApplicationJSON withJson(String json) { - this.json = json; - return this; - } - - public RequestBodyPostJSONDataTypesString200ApplicationJSON(@JsonProperty("json") String json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.java index db0de5bcb..62fac04a6 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostJsonDataTypesArrayBigIntResponse withRawResponse(HttpRespo * OK */ - public RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject; + public RequestBodyPostJsonDataTypesArrayBigIntResponseBody object; - public RequestBodyPostJsonDataTypesArrayBigIntResponse withRequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject(RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject) { - this.requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject = requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject; + public RequestBodyPostJsonDataTypesArrayBigIntResponse withObject(RequestBodyPostJsonDataTypesArrayBigIntResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.java new file mode 100755 index 000000000..5f519ed5b --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.java @@ -0,0 +1,34 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * RequestBodyPostJsonDataTypesArrayBigIntResponseBody - OK + */ + +public class RequestBodyPostJsonDataTypesArrayBigIntResponseBody { + @JsonProperty("data") + public String data; + + public RequestBodyPostJsonDataTypesArrayBigIntResponseBody withData(String data) { + this.data = data; + return this; + } + + @JsonProperty("json") + public Long[] json; + + public RequestBodyPostJsonDataTypesArrayBigIntResponseBody withJson(Long[] json) { + this.json = json; + return this; + } + + public RequestBodyPostJsonDataTypesArrayBigIntResponseBody(@JsonProperty("data") String data, @JsonProperty("json") Long[] json) { + this.data = data; + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.java index 9b042be9e..7751b6004 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostJsonDataTypesArrayDateResponse withRawResponse(HttpRespons * OK */ - public RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject; + public RequestBodyPostJsonDataTypesArrayDateResponseBody object; - public RequestBodyPostJsonDataTypesArrayDateResponse withRequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject(RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject) { - this.requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject = requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject; + public RequestBodyPostJsonDataTypesArrayDateResponse withObject(RequestBodyPostJsonDataTypesArrayDateResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.java new file mode 100755 index 000000000..85917d372 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.java @@ -0,0 +1,35 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; +import java.time.LocalDate; + +/** + * RequestBodyPostJsonDataTypesArrayDateResponseBody - OK + */ + +public class RequestBodyPostJsonDataTypesArrayDateResponseBody { + @JsonProperty("data") + public String data; + + public RequestBodyPostJsonDataTypesArrayDateResponseBody withData(String data) { + this.data = data; + return this; + } + + @JsonProperty("json") + public LocalDate[] json; + + public RequestBodyPostJsonDataTypesArrayDateResponseBody withJson(LocalDate[] json) { + this.json = json; + return this; + } + + public RequestBodyPostJsonDataTypesArrayDateResponseBody(@JsonProperty("data") String data, @JsonProperty("json") LocalDate[] json) { + this.data = data; + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.java index 6fd767559..f2942b912 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostJsonDataTypesArrayDecimalStrResponse withRawResponse(HttpR * OK */ - public RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject; + public RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody object; - public RequestBodyPostJsonDataTypesArrayDecimalStrResponse withRequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject(RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject) { - this.requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject = requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject; + public RequestBodyPostJsonDataTypesArrayDecimalStrResponse withObject(RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.java new file mode 100755 index 000000000..5db2c5226 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.java @@ -0,0 +1,34 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody - OK + */ + +public class RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody { + @JsonProperty("data") + public String data; + + public RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody withData(String data) { + this.data = data; + return this; + } + + @JsonProperty("json") + public String[] json; + + public RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody withJson(String[] json) { + this.json = json; + return this; + } + + public RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody(@JsonProperty("data") String data, @JsonProperty("json") String[] json) { + this.data = data; + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.java index 9ea7a8537..22d9d8022 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostJsonDataTypesBigIntResponse withRawResponse(HttpResponse json; + + public RequestBodyPostJsonDataTypesMapBigIntStrResponseBody withJson(java.util.Map json) { + this.json = json; + return this; + } + + public RequestBodyPostJsonDataTypesMapBigIntStrResponseBody(@JsonProperty("data") String data, @JsonProperty("json") java.util.Map json) { + this.data = data; + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.java index d239b69b5..c9df8cd03 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostJsonDataTypesMapDateTimeResponse withRawResponse(HttpRespo * OK */ - public RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject; + public RequestBodyPostJsonDataTypesMapDateTimeResponseBody object; - public RequestBodyPostJsonDataTypesMapDateTimeResponse withRequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject(RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject) { - this.requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject = requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject; + public RequestBodyPostJsonDataTypesMapDateTimeResponse withObject(RequestBodyPostJsonDataTypesMapDateTimeResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.java new file mode 100755 index 000000000..ffdf67d2f --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.java @@ -0,0 +1,35 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; +import java.time.OffsetDateTime; + +/** + * RequestBodyPostJsonDataTypesMapDateTimeResponseBody - OK + */ + +public class RequestBodyPostJsonDataTypesMapDateTimeResponseBody { + @JsonProperty("data") + public String data; + + public RequestBodyPostJsonDataTypesMapDateTimeResponseBody withData(String data) { + this.data = data; + return this; + } + + @JsonProperty("json") + public java.util.Map json; + + public RequestBodyPostJsonDataTypesMapDateTimeResponseBody withJson(java.util.Map json) { + this.json = json; + return this; + } + + public RequestBodyPostJsonDataTypesMapDateTimeResponseBody(@JsonProperty("data") String data, @JsonProperty("json") java.util.Map json) { + this.data = data; + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.java index 132bfcfe9..090947bb7 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostJsonDataTypesMapDecimalResponse withRawResponse(HttpRespon * OK */ - public RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject; + public RequestBodyPostJsonDataTypesMapDecimalResponseBody object; - public RequestBodyPostJsonDataTypesMapDecimalResponse withRequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject(RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject) { - this.requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject = requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject; + public RequestBodyPostJsonDataTypesMapDecimalResponse withObject(RequestBodyPostJsonDataTypesMapDecimalResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.java new file mode 100755 index 000000000..bfa206254 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.java @@ -0,0 +1,34 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * RequestBodyPostJsonDataTypesMapDecimalResponseBody - OK + */ + +public class RequestBodyPostJsonDataTypesMapDecimalResponseBody { + @JsonProperty("data") + public String data; + + public RequestBodyPostJsonDataTypesMapDecimalResponseBody withData(String data) { + this.data = data; + return this; + } + + @JsonProperty("json") + public java.util.Map json; + + public RequestBodyPostJsonDataTypesMapDecimalResponseBody withJson(java.util.Map json) { + this.json = json; + return this; + } + + public RequestBodyPostJsonDataTypesMapDecimalResponseBody(@JsonProperty("data") String data, @JsonProperty("json") java.util.Map json) { + this.data = data; + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesNumberResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesNumberResponse.java index 817a6777b..60752723f 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesNumberResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostJsonDataTypesNumberResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostJsonDataTypesNumberResponse withRawResponse(HttpResponse raw * OK */ - public RequestBodyPostNullArray200ApplicationJSON requestBodyPostNullArray200ApplicationJSONObject; + public RequestBodyPostNullArrayResponseBody object; - public RequestBodyPostNullArrayResponse withRequestBodyPostNullArray200ApplicationJSONObject(RequestBodyPostNullArray200ApplicationJSON requestBodyPostNullArray200ApplicationJSONObject) { - this.requestBodyPostNullArray200ApplicationJSONObject = requestBodyPostNullArray200ApplicationJSONObject; + public RequestBodyPostNullArrayResponse withObject(RequestBodyPostNullArrayResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullArrayResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullArrayResponseBody.java new file mode 100755 index 000000000..bac1c68b1 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullArrayResponseBody.java @@ -0,0 +1,25 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * RequestBodyPostNullArrayResponseBody - OK + */ + +public class RequestBodyPostNullArrayResponseBody { + @JsonProperty("data") + public String data; + + public RequestBodyPostNullArrayResponseBody withData(String data) { + this.data = data; + return this; + } + + public RequestBodyPostNullArrayResponseBody(@JsonProperty("data") String data) { + this.data = data; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.java deleted file mode 100755 index 83577c488..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * RequestBodyPostNullDictionary200ApplicationJSON - OK - */ - -public class RequestBodyPostNullDictionary200ApplicationJSON { - @JsonProperty("data") - public String data; - - public RequestBodyPostNullDictionary200ApplicationJSON withData(String data) { - this.data = data; - return this; - } - - public RequestBodyPostNullDictionary200ApplicationJSON(@JsonProperty("data") String data) { - this.data = data; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullDictionaryResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullDictionaryResponse.java index 297ca0e46..f3f308b01 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullDictionaryResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/RequestBodyPostNullDictionaryResponse.java @@ -46,10 +46,10 @@ public RequestBodyPostNullDictionaryResponse withRawResponse(HttpResponse json; - - public ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON withJson(java.util.Map json) { - this.json = json; - return this; - } - - public ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON(@JsonProperty("json") java.util.Map json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.java index bffe79225..7a863cb59 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.java @@ -46,10 +46,10 @@ public ResponseBodyAdditionalPropertiesComplexNumbersPostResponse withRawRespons * OK */ - public ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject; + public ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody object; - public ResponseBodyAdditionalPropertiesComplexNumbersPostResponse withResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject(ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject) { - this.responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject = responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject; + public ResponseBodyAdditionalPropertiesComplexNumbersPostResponse withObject(ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.java new file mode 100755 index 000000000..1f60d6aab --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.java @@ -0,0 +1,25 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody - OK + */ + +public class ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody { + @JsonProperty("json") + public java.util.Map json; + + public ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody withJson(java.util.Map json) { + this.json = json; + return this; + } + + public ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody(@JsonProperty("json") java.util.Map json) { + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.java deleted file mode 100755 index dbd6cc2e7..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; -import java.time.LocalDate; - -/** - * ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON - OK - */ - -public class ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON { - @JsonProperty("json") - public java.util.Map json; - - public ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON withJson(java.util.Map json) { - this.json = json; - return this; - } - - public ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON(@JsonProperty("json") java.util.Map json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.java index 064383583..aa1ff70e2 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.java @@ -46,10 +46,10 @@ public ResponseBodyAdditionalPropertiesDatePostResponse withRawResponse(HttpResp * OK */ - public ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject; + public ResponseBodyAdditionalPropertiesDatePostResponseBody object; - public ResponseBodyAdditionalPropertiesDatePostResponse withResponseBodyAdditionalPropertiesDatePost200ApplicationJSONObject(ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject) { - this.responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject = responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject; + public ResponseBodyAdditionalPropertiesDatePostResponse withObject(ResponseBodyAdditionalPropertiesDatePostResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.java new file mode 100755 index 000000000..70502449a --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.java @@ -0,0 +1,26 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; +import java.time.LocalDate; + +/** + * ResponseBodyAdditionalPropertiesDatePostResponseBody - OK + */ + +public class ResponseBodyAdditionalPropertiesDatePostResponseBody { + @JsonProperty("json") + public java.util.Map json; + + public ResponseBodyAdditionalPropertiesDatePostResponseBody withJson(java.util.Map json) { + this.json = json; + return this; + } + + public ResponseBodyAdditionalPropertiesDatePostResponseBody(@JsonProperty("json") java.util.Map json) { + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.java deleted file mode 100755 index a4d8f5a27..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON - OK - */ - -public class ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON { - @JsonProperty("json") - public java.util.Map json; - - public ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON withJson(java.util.Map json) { - this.json = json; - return this; - } - - public ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON(@JsonProperty("json") java.util.Map json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.java index 27f6af7d8..806d61170 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.java @@ -46,10 +46,10 @@ public ResponseBodyAdditionalPropertiesObjectPostResponse withRawResponse(HttpRe * OK */ - public ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject; + public ResponseBodyAdditionalPropertiesObjectPostResponseBody object; - public ResponseBodyAdditionalPropertiesObjectPostResponse withResponseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject(ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject) { - this.responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject = responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject; + public ResponseBodyAdditionalPropertiesObjectPostResponse withObject(ResponseBodyAdditionalPropertiesObjectPostResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.java new file mode 100755 index 000000000..058b232fc --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.java @@ -0,0 +1,25 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * ResponseBodyAdditionalPropertiesObjectPostResponseBody - OK + */ + +public class ResponseBodyAdditionalPropertiesObjectPostResponseBody { + @JsonProperty("json") + public java.util.Map json; + + public ResponseBodyAdditionalPropertiesObjectPostResponseBody withJson(java.util.Map json) { + this.json = json; + return this; + } + + public ResponseBodyAdditionalPropertiesObjectPostResponseBody(@JsonProperty("json") java.util.Map json) { + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.java deleted file mode 100755 index 9efc8daa2..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * ResponseBodyAdditionalPropertiesPost200ApplicationJSON - OK - */ - -public class ResponseBodyAdditionalPropertiesPost200ApplicationJSON { - @JsonProperty("json") - public java.util.Map json; - - public ResponseBodyAdditionalPropertiesPost200ApplicationJSON withJson(java.util.Map json) { - this.json = json; - return this; - } - - public ResponseBodyAdditionalPropertiesPost200ApplicationJSON(@JsonProperty("json") java.util.Map json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPostResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPostResponse.java index a3719154f..5592fae7c 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPostResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPostResponse.java @@ -46,10 +46,10 @@ public ResponseBodyAdditionalPropertiesPostResponse withRawResponse(HttpResponse * OK */ - public ResponseBodyAdditionalPropertiesPost200ApplicationJSON responseBodyAdditionalPropertiesPost200ApplicationJSONObject; + public ResponseBodyAdditionalPropertiesPostResponseBody object; - public ResponseBodyAdditionalPropertiesPostResponse withResponseBodyAdditionalPropertiesPost200ApplicationJSONObject(ResponseBodyAdditionalPropertiesPost200ApplicationJSON responseBodyAdditionalPropertiesPost200ApplicationJSONObject) { - this.responseBodyAdditionalPropertiesPost200ApplicationJSONObject = responseBodyAdditionalPropertiesPost200ApplicationJSONObject; + public ResponseBodyAdditionalPropertiesPostResponse withObject(ResponseBodyAdditionalPropertiesPostResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.java new file mode 100755 index 000000000..236b50e17 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.java @@ -0,0 +1,25 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * ResponseBodyAdditionalPropertiesPostResponseBody - OK + */ + +public class ResponseBodyAdditionalPropertiesPostResponseBody { + @JsonProperty("json") + public java.util.Map json; + + public ResponseBodyAdditionalPropertiesPostResponseBody withJson(java.util.Map json) { + this.json = json; + return this; + } + + public ResponseBodyAdditionalPropertiesPostResponseBody(@JsonProperty("json") java.util.Map json) { + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyOptionalGetResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyOptionalGetResponse.java index ad1fd8b9b..a9b418d09 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyOptionalGetResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyOptionalGetResponse.java @@ -46,10 +46,10 @@ public ResponseBodyOptionalGetResponse withRawResponse(HttpResponse rawR * OK */ - public String responseBodyOptionalGet200TextPlainString; + public String res; - public ResponseBodyOptionalGetResponse withResponseBodyOptionalGet200TextPlainString(String responseBodyOptionalGet200TextPlainString) { - this.responseBodyOptionalGet200TextPlainString = responseBodyOptionalGet200TextPlainString; + public ResponseBodyOptionalGetResponse withRes(String res) { + this.res = res; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.java deleted file mode 100755 index d2c397672..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON - OK - */ - -public class ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON { - @JsonProperty("json") - public org.openapis.openapi.models.shared.ObjWithZeroValueComplexTypePtrs json; - - public ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON withJson(org.openapis.openapi.models.shared.ObjWithZeroValueComplexTypePtrs json) { - this.json = json; - return this; - } - - public ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON(@JsonProperty("json") org.openapis.openapi.models.shared.ObjWithZeroValueComplexTypePtrs json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.java index bb9a14559..91fc55930 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.java @@ -46,10 +46,10 @@ public ResponseBodyZeroValueComplexTypePtrsPostResponse withRawResponse(HttpResp * OK */ - public ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject; + public ResponseBodyZeroValueComplexTypePtrsPostResponseBody object; - public ResponseBodyZeroValueComplexTypePtrsPostResponse withResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject(ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject) { - this.responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject = responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject; + public ResponseBodyZeroValueComplexTypePtrsPostResponse withObject(ResponseBodyZeroValueComplexTypePtrsPostResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.java new file mode 100755 index 000000000..906433cec --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.java @@ -0,0 +1,25 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * ResponseBodyZeroValueComplexTypePtrsPostResponseBody - OK + */ + +public class ResponseBodyZeroValueComplexTypePtrsPostResponseBody { + @JsonProperty("json") + public org.openapis.openapi.models.shared.ObjWithZeroValueComplexTypePtrs json; + + public ResponseBodyZeroValueComplexTypePtrsPostResponseBody withJson(org.openapis.openapi.models.shared.ObjWithZeroValueComplexTypePtrs json) { + this.json = json; + return this; + } + + public ResponseBodyZeroValueComplexTypePtrsPostResponseBody(@JsonProperty("json") org.openapis.openapi.models.shared.ObjWithZeroValueComplexTypePtrs json) { + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.java deleted file mode 100755 index b112f36c6..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * StatusGetXSpeakeasyErrors501ApplicationJSON - Not Implemented - */ - -public class StatusGetXSpeakeasyErrors501ApplicationJSON { - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("code") - public String code; - - public StatusGetXSpeakeasyErrors501ApplicationJSON withCode(String code) { - this.code = code; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("message") - public String message; - - public StatusGetXSpeakeasyErrors501ApplicationJSON withMessage(String message) { - this.message = message; - return this; - } - - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("type") - public org.openapis.openapi.models.shared.ErrorType type; - - public StatusGetXSpeakeasyErrors501ApplicationJSON withType(org.openapis.openapi.models.shared.ErrorType type) { - this.type = type; - return this; - } - - public StatusGetXSpeakeasyErrors501ApplicationJSON(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsResponse.java index 798b4cd5f..b1ccadb91 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsResponse.java @@ -57,10 +57,10 @@ public StatusGetXSpeakeasyErrorsResponse withError(org.openapis.openapi.models.s * Not Implemented */ - public StatusGetXSpeakeasyErrors501ApplicationJSON statusGetXSpeakeasyErrors501ApplicationJSONObject; + public StatusGetXSpeakeasyErrorsResponseBody object; - public StatusGetXSpeakeasyErrorsResponse withStatusGetXSpeakeasyErrors501ApplicationJSONObject(StatusGetXSpeakeasyErrors501ApplicationJSON statusGetXSpeakeasyErrors501ApplicationJSONObject) { - this.statusGetXSpeakeasyErrors501ApplicationJSONObject = statusGetXSpeakeasyErrors501ApplicationJSONObject; + public StatusGetXSpeakeasyErrorsResponse withObject(StatusGetXSpeakeasyErrorsResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsResponseBody.java new file mode 100755 index 000000000..47aa1f0b2 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/StatusGetXSpeakeasyErrorsResponseBody.java @@ -0,0 +1,44 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * StatusGetXSpeakeasyErrorsResponseBody - Not Implemented + */ + +public class StatusGetXSpeakeasyErrorsResponseBody { + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("code") + public String code; + + public StatusGetXSpeakeasyErrorsResponseBody withCode(String code) { + this.code = code; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("message") + public String message; + + public StatusGetXSpeakeasyErrorsResponseBody withMessage(String message) { + this.message = message; + return this; + } + + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("type") + public org.openapis.openapi.models.shared.ErrorType type; + + public StatusGetXSpeakeasyErrorsResponseBody withType(org.openapis.openapi.models.shared.ErrorType type) { + this.type = type; + return this; + } + + public StatusGetXSpeakeasyErrorsResponseBody(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/TypeFromAnchor.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/TypeFromAnchor.java deleted file mode 100755 index 83166edd7..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/TypeFromAnchor.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * TypeFromAnchor - A successful response that contains the simpleObject sent in the request body - */ - -public class TypeFromAnchor { - /** - * 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. - */ - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("json") - public org.openapis.openapi.models.shared.SimpleObject json; - - public TypeFromAnchor withJson(org.openapis.openapi.models.shared.SimpleObject json) { - this.json = json; - return this; - } - - public TypeFromAnchor(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/TypedParameterGenerationGetObj.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/TypedParameterGenerationGetObj.java deleted file mode 100755 index b9530fab6..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/TypedParameterGenerationGetObj.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; -import org.openapis.openapi.utils.SpeakeasyMetadata; - -/** - * TypedParameterGenerationGetObj - */ - -public class TypedParameterGenerationGetObj { - @SpeakeasyMetadata("queryParam:name=bool") - public Boolean bool; - - public TypedParameterGenerationGetObj withBool(Boolean bool) { - this.bool = bool; - return this; - } - - @SpeakeasyMetadata("queryParam:name=num") - public Double num; - - public TypedParameterGenerationGetObj withNum(Double num) { - this.num = num; - return this; - } - - @SpeakeasyMetadata("queryParam:name=str") - public String str; - - public TypedParameterGenerationGetObj withStr(String str) { - this.str = str; - return this; - } - - public TypedParameterGenerationGetObj(@JsonProperty("bool") Boolean bool, @JsonProperty("num") Double num, @JsonProperty("str") String str) { - this.bool = bool; - this.num = num; - this.str = str; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/TypedParameterGenerationGetRequest.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/TypedParameterGenerationGetRequest.java index 5741d29dc..b8d2dd49b 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/TypedParameterGenerationGetRequest.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/TypedParameterGenerationGetRequest.java @@ -34,9 +34,9 @@ public TypedParameterGenerationGetRequest withDecimal(Double decimal) { } @SpeakeasyMetadata("queryParam:style=form,explode=true,name=obj") - public TypedParameterGenerationGetObj obj; + public Obj obj; - public TypedParameterGenerationGetRequest withObj(TypedParameterGenerationGetObj obj) { + public TypedParameterGenerationGetRequest withObj(Obj obj) { this.obj = obj; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePost200ApplicationJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePost200ApplicationJSON.java deleted file mode 100755 index c5ae4ceb5..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePost200ApplicationJSON.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * UsageExamplePost200ApplicationJSON - A response body that contains the simpleObject sent in the request body - */ - -public class UsageExamplePost200ApplicationJSON { - @JsonProperty("json") - public UsageExamplePost200ApplicationJSONJSON json; - - public UsageExamplePost200ApplicationJSON withJson(UsageExamplePost200ApplicationJSONJSON json) { - this.json = json; - return this; - } - - public UsageExamplePost200ApplicationJSON(@JsonProperty("json") UsageExamplePost200ApplicationJSONJSON json) { - this.json = json; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePost200ApplicationJSONJSON.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePost200ApplicationJSONJSON.java deleted file mode 100755 index 2058ca8fe..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePost200ApplicationJSONJSON.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class UsageExamplePost200ApplicationJSONJSON { - /** - * A set of strings with format values that lead to relevant examples being generated for them - */ - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("fakerFormattedStrings") - public org.openapis.openapi.models.shared.FakerFormattedStrings fakerFormattedStrings; - - public UsageExamplePost200ApplicationJSONJSON withFakerFormattedStrings(org.openapis.openapi.models.shared.FakerFormattedStrings fakerFormattedStrings) { - this.fakerFormattedStrings = fakerFormattedStrings; - return this; - } - - /** - * A set of strings with fieldnames that lead to relevant examples being generated for them - */ - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("fakerStrings") - public org.openapis.openapi.models.shared.FakerStrings fakerStrings; - - public UsageExamplePost200ApplicationJSONJSON withFakerStrings(org.openapis.openapi.models.shared.FakerStrings fakerStrings) { - this.fakerStrings = fakerStrings; - return this; - } - - /** - * 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. - */ - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("simpleObject") - public org.openapis.openapi.models.shared.SimpleObject simpleObject; - - public UsageExamplePost200ApplicationJSONJSON withSimpleObject(org.openapis.openapi.models.shared.SimpleObject simpleObject) { - this.simpleObject = simpleObject; - return this; - } - - public UsageExamplePost200ApplicationJSONJSON(){} -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostEnumParameter.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostEnumParameter.java deleted file mode 100755 index 97e053886..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostEnumParameter.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonValue; - -/** - * UsageExamplePostEnumParameter - An enum type - */ -public enum UsageExamplePostEnumParameter { - VALUE1("value1"), - VALUE2("value2"), - VALUE3("value3"); - - @JsonValue - public final String value; - - private UsageExamplePostEnumParameter(String value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostJson.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostJson.java new file mode 100755 index 000000000..7bc71a711 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostJson.java @@ -0,0 +1,51 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class UsageExamplePostJson { + /** + * A set of strings with format values that lead to relevant examples being generated for them + */ + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("fakerFormattedStrings") + public org.openapis.openapi.models.shared.FakerFormattedStrings fakerFormattedStrings; + + public UsageExamplePostJson withFakerFormattedStrings(org.openapis.openapi.models.shared.FakerFormattedStrings fakerFormattedStrings) { + this.fakerFormattedStrings = fakerFormattedStrings; + return this; + } + + /** + * A set of strings with fieldnames that lead to relevant examples being generated for them + */ + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("fakerStrings") + public org.openapis.openapi.models.shared.FakerStrings fakerStrings; + + public UsageExamplePostJson withFakerStrings(org.openapis.openapi.models.shared.FakerStrings fakerStrings) { + this.fakerStrings = fakerStrings; + return this; + } + + /** + * 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. + */ + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("simpleObject") + public org.openapis.openapi.models.shared.SimpleObject simpleObject; + + public UsageExamplePostJson withSimpleObject(org.openapis.openapi.models.shared.SimpleObject simpleObject) { + this.simpleObject = simpleObject; + return this; + } + + public UsageExamplePostJson(){} +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostOptEnumParameter.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostOptEnumParameter.java deleted file mode 100755 index d334ce36d..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostOptEnumParameter.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.operations; - -import com.fasterxml.jackson.annotation.JsonValue; - -/** - * UsageExamplePostOptEnumParameter - An enum type - */ -public enum UsageExamplePostOptEnumParameter { - VALUE1("value1"), - VALUE2("value2"), - VALUE3("value3"); - - @JsonValue - public final String value; - - private UsageExamplePostOptEnumParameter(String value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostRequest.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostRequest.java index 962efa837..b3757ddb2 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostRequest.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostRequest.java @@ -169,9 +169,9 @@ public UsageExamplePostRequest withDoubleParameter(Double doubleParameter) { * An enum parameter */ @SpeakeasyMetadata("queryParam:style=form,explode=true,name=enumParameter") - public UsageExamplePostEnumParameter enumParameter; + public EnumParameter enumParameter; - public UsageExamplePostRequest withEnumParameter(UsageExamplePostEnumParameter enumParameter) { + public UsageExamplePostRequest withEnumParameter(EnumParameter enumParameter) { this.enumParameter = enumParameter; return this; } @@ -235,9 +235,9 @@ public UsageExamplePostRequest withIntParameter(Integer intParameter) { * An enum parameter */ @SpeakeasyMetadata("queryParam:style=form,explode=true,name=optEnumParameter") - public UsageExamplePostOptEnumParameter optEnumParameter; + public OptEnumParameter optEnumParameter; - public UsageExamplePostRequest withOptEnumParameter(UsageExamplePostOptEnumParameter optEnumParameter) { + public UsageExamplePostRequest withOptEnumParameter(OptEnumParameter optEnumParameter) { this.optEnumParameter = optEnumParameter; return this; } @@ -253,7 +253,7 @@ public UsageExamplePostRequest withStrParameter(String strParameter) { return this; } - public UsageExamplePostRequest(@JsonProperty("bigintParameter") Long bigintParameter, @JsonProperty("bigintStrParameter") String bigintStrParameter, @JsonProperty("boolParameter") Boolean boolParameter, @JsonProperty("dateParameter") LocalDate dateParameter, @JsonProperty("dateTimeDefaultParameter") OffsetDateTime dateTimeDefaultParameter, @JsonProperty("dateTimeParameter") OffsetDateTime dateTimeParameter, @JsonProperty("decimalParameter") Double decimalParameter, @JsonProperty("decimalStrParameter") String decimalStrParameter, @JsonProperty("doubleParameter") Double doubleParameter, @JsonProperty("enumParameter") UsageExamplePostEnumParameter enumParameter, @JsonProperty("falseyNumberParameter") Double falseyNumberParameter, @JsonProperty("float32Parameter") Float float32Parameter, @JsonProperty("floatParameter") Double floatParameter, @JsonProperty("int64Parameter") Long int64Parameter, @JsonProperty("intParameter") Integer intParameter, @JsonProperty("strParameter") String strParameter) { + public UsageExamplePostRequest(@JsonProperty("bigintParameter") Long bigintParameter, @JsonProperty("bigintStrParameter") String bigintStrParameter, @JsonProperty("boolParameter") Boolean boolParameter, @JsonProperty("dateParameter") LocalDate dateParameter, @JsonProperty("dateTimeDefaultParameter") OffsetDateTime dateTimeDefaultParameter, @JsonProperty("dateTimeParameter") OffsetDateTime dateTimeParameter, @JsonProperty("decimalParameter") Double decimalParameter, @JsonProperty("decimalStrParameter") String decimalStrParameter, @JsonProperty("doubleParameter") Double doubleParameter, @JsonProperty("enumParameter") EnumParameter enumParameter, @JsonProperty("falseyNumberParameter") Double falseyNumberParameter, @JsonProperty("float32Parameter") Float float32Parameter, @JsonProperty("floatParameter") Double floatParameter, @JsonProperty("int64Parameter") Long int64Parameter, @JsonProperty("intParameter") Integer intParameter, @JsonProperty("strParameter") String strParameter) { this.bigintParameter = bigintParameter; this.bigintStrParameter = bigintStrParameter; this.boolParameter = boolParameter; diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostResponse.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostResponse.java index c40696933..93e03106c 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostResponse.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostResponse.java @@ -46,10 +46,10 @@ public UsageExamplePostResponse withRawResponse(HttpResponse rawResponse * A successful response that contains the simpleObject sent in the request body */ - public UsageExamplePost200ApplicationJSON usageExamplePost200ApplicationJSONObject; + public UsageExamplePostResponseBody object; - public UsageExamplePostResponse withUsageExamplePost200ApplicationJSONObject(UsageExamplePost200ApplicationJSON usageExamplePost200ApplicationJSONObject) { - this.usageExamplePost200ApplicationJSONObject = usageExamplePost200ApplicationJSONObject; + public UsageExamplePostResponse withObject(UsageExamplePostResponseBody object) { + this.object = object; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostResponseBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostResponseBody.java new file mode 100755 index 000000000..697280c01 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/operations/UsageExamplePostResponseBody.java @@ -0,0 +1,25 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.operations; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * UsageExamplePostResponseBody - A response body that contains the simpleObject sent in the request body + */ + +public class UsageExamplePostResponseBody { + @JsonProperty("json") + public UsageExamplePostJson json; + + public UsageExamplePostResponseBody withJson(UsageExamplePostJson json) { + this.json = json; + return this; + } + + public UsageExamplePostResponseBody(@JsonProperty("json") UsageExamplePostJson json) { + this.json = json; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBody.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBody.java index 1926b2c07..d002cb514 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBody.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBody.java @@ -12,18 +12,18 @@ public class AuthServiceRequestBody { @JsonInclude(Include.NON_ABSENT) @JsonProperty("basicAuth") - public AuthServiceRequestBodyBasicAuth basicAuth; + public BasicAuth basicAuth; - public AuthServiceRequestBody withBasicAuth(AuthServiceRequestBodyBasicAuth basicAuth) { + public AuthServiceRequestBody withBasicAuth(BasicAuth basicAuth) { this.basicAuth = basicAuth; return this; } @JsonInclude(Include.NON_ABSENT) @JsonProperty("headerAuth") - public AuthServiceRequestBodyHeaderAuth[] headerAuth; + public HeaderAuth[] headerAuth; - public AuthServiceRequestBody withHeaderAuth(AuthServiceRequestBodyHeaderAuth[] headerAuth) { + public AuthServiceRequestBody withHeaderAuth(HeaderAuth[] headerAuth) { this.headerAuth = headerAuth; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBodyBasicAuth.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBodyBasicAuth.java deleted file mode 100755 index 7b970ff97..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBodyBasicAuth.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class AuthServiceRequestBodyBasicAuth { - @JsonProperty("password") - public String password; - - public AuthServiceRequestBodyBasicAuth withPassword(String password) { - this.password = password; - return this; - } - - @JsonProperty("username") - public String username; - - public AuthServiceRequestBodyBasicAuth withUsername(String username) { - this.username = username; - return this; - } - - public AuthServiceRequestBodyBasicAuth(@JsonProperty("username") String username, @JsonProperty("password") String password) { - this.username = username; - this.password = password; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBodyHeaderAuth.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBodyHeaderAuth.java deleted file mode 100755 index 8d0dcf8b3..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/AuthServiceRequestBodyHeaderAuth.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class AuthServiceRequestBodyHeaderAuth { - @JsonProperty("expectedValue") - public String expectedValue; - - public AuthServiceRequestBodyHeaderAuth withExpectedValue(String expectedValue) { - this.expectedValue = expectedValue; - return this; - } - - @JsonProperty("headerName") - public String headerName; - - public AuthServiceRequestBodyHeaderAuth withHeaderName(String headerName) { - this.headerName = headerName; - return this; - } - - public AuthServiceRequestBodyHeaderAuth(@JsonProperty("expectedValue") String expectedValue, @JsonProperty("headerName") String headerName) { - this.expectedValue = expectedValue; - this.headerName = headerName; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/BasicAuth.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/BasicAuth.java new file mode 100755 index 000000000..295b0356e --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/BasicAuth.java @@ -0,0 +1,31 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class BasicAuth { + @JsonProperty("password") + public String password; + + public BasicAuth withPassword(String password) { + this.password = password; + return this; + } + + @JsonProperty("username") + public String username; + + public BasicAuth withUsername(String username) { + this.username = username; + return this; + } + + public BasicAuth(@JsonProperty("username") String username, @JsonProperty("password") String password) { + this.username = username; + this.password = password; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Chocolates.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Chocolates.java new file mode 100755 index 000000000..c1ee1b16d --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Chocolates.java @@ -0,0 +1,22 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class Chocolates { + @JsonProperty("description") + public String description; + + public Chocolates withDescription(String description) { + this.description = description; + return this; + } + + public Chocolates(@JsonProperty("description") String description) { + this.description = description; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ConstEnumInt.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ConstEnumInt.java new file mode 100755 index 000000000..2ec321fa6 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ConstEnumInt.java @@ -0,0 +1,20 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +public enum ConstEnumInt { + ONE(1L), + TWO(2L), + THREE(3L); + + @JsonValue + public final Long value; + + private ConstEnumInt(Long value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ConstEnumStr.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ConstEnumStr.java new file mode 100755 index 000000000..0694303f5 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ConstEnumStr.java @@ -0,0 +1,20 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +public enum ConstEnumStr { + ONE("one"), + TWO("two"), + THREE("three"); + + @JsonValue + public final String value; + + private ConstEnumStr(String value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultEnumInt.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultEnumInt.java new file mode 100755 index 000000000..7316c2d36 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultEnumInt.java @@ -0,0 +1,20 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +public enum DefaultEnumInt { + ONE(1L), + TWO(2L), + THREE(3L); + + @JsonValue + public final Long value; + + private DefaultEnumInt(Long value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultEnumStr.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultEnumStr.java new file mode 100755 index 000000000..569998a59 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultEnumStr.java @@ -0,0 +1,20 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +public enum DefaultEnumStr { + ONE("one"), + TWO("two"), + THREE("three"); + + @JsonValue + public final String value; + + private DefaultEnumStr(String value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConsts.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConsts.java index fb8c8b73e..d5a054655 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConsts.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConsts.java @@ -77,17 +77,17 @@ public DefaultsAndConsts withConstDecimalStr(String constDecimalStr) { } @JsonProperty("constEnumInt") - public DefaultsAndConstsConstEnumInt constEnumInt; + public ConstEnumInt constEnumInt; - public DefaultsAndConsts withConstEnumInt(DefaultsAndConstsConstEnumInt constEnumInt) { + public DefaultsAndConsts withConstEnumInt(ConstEnumInt constEnumInt) { this.constEnumInt = constEnumInt; return this; } @JsonProperty("constEnumStr") - public DefaultsAndConstsConstEnumStr constEnumStr; + public ConstEnumStr constEnumStr; - public DefaultsAndConsts withConstEnumStr(DefaultsAndConstsConstEnumStr constEnumStr) { + public DefaultsAndConsts withConstEnumStr(ConstEnumStr constEnumStr) { this.constEnumStr = constEnumStr; return this; } @@ -192,18 +192,18 @@ public DefaultsAndConsts withDefaultDecimalStr(String defaultDecimalStr) { @JsonInclude(Include.NON_ABSENT) @JsonProperty("defaultEnumInt") - public DefaultsAndConstsDefaultEnumInt defaultEnumInt; + public DefaultEnumInt defaultEnumInt; - public DefaultsAndConsts withDefaultEnumInt(DefaultsAndConstsDefaultEnumInt defaultEnumInt) { + public DefaultsAndConsts withDefaultEnumInt(DefaultEnumInt defaultEnumInt) { this.defaultEnumInt = defaultEnumInt; return this; } @JsonInclude(Include.NON_ABSENT) @JsonProperty("defaultEnumStr") - public DefaultsAndConstsDefaultEnumStr defaultEnumStr; + public DefaultEnumStr defaultEnumStr; - public DefaultsAndConsts withDefaultEnumStr(DefaultsAndConstsDefaultEnumStr defaultEnumStr) { + public DefaultsAndConsts withDefaultEnumStr(DefaultEnumStr defaultEnumStr) { this.defaultEnumStr = defaultEnumStr; return this; } @@ -261,7 +261,7 @@ public DefaultsAndConsts withNormalField(String normalField) { return this; } - public DefaultsAndConsts(@JsonProperty("constBigInt") Long constBigInt, @JsonProperty("constBigIntStr") String constBigIntStr, @JsonProperty("constBool") Boolean constBool, @JsonProperty("constDate") LocalDate constDate, @JsonProperty("constDateTime") OffsetDateTime constDateTime, @JsonProperty("constDecimal") Double constDecimal, @JsonProperty("constDecimalStr") String constDecimalStr, @JsonProperty("constEnumInt") DefaultsAndConstsConstEnumInt constEnumInt, @JsonProperty("constEnumStr") DefaultsAndConstsConstEnumStr constEnumStr, @JsonProperty("constInt") Long constInt, @JsonProperty("constNum") Double constNum, @JsonProperty("constStr") String constStr, @JsonProperty("constStrNull") String constStrNull, @JsonProperty("normalField") String normalField) { + public DefaultsAndConsts(@JsonProperty("constBigInt") Long constBigInt, @JsonProperty("constBigIntStr") String constBigIntStr, @JsonProperty("constBool") Boolean constBool, @JsonProperty("constDate") LocalDate constDate, @JsonProperty("constDateTime") OffsetDateTime constDateTime, @JsonProperty("constDecimal") Double constDecimal, @JsonProperty("constDecimalStr") String constDecimalStr, @JsonProperty("constEnumInt") ConstEnumInt constEnumInt, @JsonProperty("constEnumStr") ConstEnumStr constEnumStr, @JsonProperty("constInt") Long constInt, @JsonProperty("constNum") Double constNum, @JsonProperty("constStr") String constStr, @JsonProperty("constStrNull") String constStrNull, @JsonProperty("normalField") String normalField) { this.constBigInt = constBigInt; this.constBigIntStr = constBigIntStr; this.constBool = constBool; diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsConstEnumInt.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsConstEnumInt.java deleted file mode 100755 index 970eb12ab..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsConstEnumInt.java +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -public enum DefaultsAndConstsConstEnumInt { - ONE(1L), - TWO(2L), - THREE(3L); - - @JsonValue - public final Long value; - - private DefaultsAndConstsConstEnumInt(Long value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsConstEnumStr.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsConstEnumStr.java deleted file mode 100755 index ba18c4619..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsConstEnumStr.java +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -public enum DefaultsAndConstsConstEnumStr { - ONE("one"), - TWO("two"), - THREE("three"); - - @JsonValue - public final String value; - - private DefaultsAndConstsConstEnumStr(String value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsDefaultEnumInt.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsDefaultEnumInt.java deleted file mode 100755 index 7268e55d2..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsDefaultEnumInt.java +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -public enum DefaultsAndConstsDefaultEnumInt { - ONE(1L), - TWO(2L), - THREE(3L); - - @JsonValue - public final Long value; - - private DefaultsAndConstsDefaultEnumInt(Long value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsDefaultEnumStr.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsDefaultEnumStr.java deleted file mode 100755 index c53baad8e..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DefaultsAndConstsDefaultEnumStr.java +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -public enum DefaultsAndConstsDefaultEnumStr { - ONE("one"), - TWO("two"), - THREE("three"); - - @JsonValue - public final String value; - - private DefaultsAndConstsDefaultEnumStr(String value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedEnum.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedEnum.java new file mode 100755 index 000000000..37c9ada94 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedEnum.java @@ -0,0 +1,24 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +/** + * DeprecatedEnum + * @deprecated enum: This enum is deprecated. + */ +public enum DeprecatedEnum { + A("a"), + B("b"), + C("c"); + + @JsonValue + public final String value; + + private DeprecatedEnum(String value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedFieldInObject.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedFieldInObject.java index 30282c66a..edf5be8ba 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedFieldInObject.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedFieldInObject.java @@ -16,10 +16,10 @@ public class DeprecatedFieldInObject { @JsonInclude(Include.NON_ABSENT) @JsonProperty("deprecatedEnum") @Deprecated - public DeprecatedFieldInObjectDeprecatedEnum deprecatedEnum; + public DeprecatedEnum deprecatedEnum; @Deprecated - public DeprecatedFieldInObject withDeprecatedEnum(DeprecatedFieldInObjectDeprecatedEnum deprecatedEnum) { + public DeprecatedFieldInObject withDeprecatedEnum(DeprecatedEnum deprecatedEnum) { this.deprecatedEnum = deprecatedEnum; return this; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedFieldInObjectDeprecatedEnum.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedFieldInObjectDeprecatedEnum.java deleted file mode 100755 index 9298a39e6..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/DeprecatedFieldInObjectDeprecatedEnum.java +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -/** - * DeprecatedFieldInObjectDeprecatedEnum - * @deprecated enum: This enum is deprecated. - */ -public enum DeprecatedFieldInObjectDeprecatedEnum { - A("a"), - B("b"), - C("c"); - - @JsonValue - public final String value; - - private DeprecatedFieldInObjectDeprecatedEnum(String value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/EnumNumber.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/EnumNumber.java new file mode 100755 index 000000000..32fa27382 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/EnumNumber.java @@ -0,0 +1,20 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +public enum EnumNumber { + ONE(1L), + TWO(2L), + THREE(3L); + + @JsonValue + public final Long value; + + private EnumNumber(Long value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/EnumStr.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/EnumStr.java new file mode 100755 index 000000000..b961c0958 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/EnumStr.java @@ -0,0 +1,20 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +public enum EnumStr { + ONE("one"), + TWO("two"), + THREE("three"); + + @JsonValue + public final String value; + + private EnumStr(String value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResource.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResource.java index 2459651f3..ee0eb0850 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResource.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResource.java @@ -34,9 +34,9 @@ public ExampleResource withArrayOfString(String[] arrayOfString) { } @JsonProperty("chocolates") - public ExampleResourceChocolates[] chocolates; + public Chocolates[] chocolates; - public ExampleResource withChocolates(ExampleResourceChocolates[] chocolates) { + public ExampleResource withChocolates(Chocolates[] chocolates) { this.chocolates = chocolates; return this; } @@ -54,18 +54,18 @@ public ExampleResource withCreatedAt(OffsetDateTime createdAt) { @JsonInclude(Include.NON_ABSENT) @JsonProperty("enumNumber") - public ExampleResourceEnumNumber enumNumber; + public EnumNumber enumNumber; - public ExampleResource withEnumNumber(ExampleResourceEnumNumber enumNumber) { + public ExampleResource withEnumNumber(EnumNumber enumNumber) { this.enumNumber = enumNumber; return this; } @JsonInclude(Include.NON_ABSENT) @JsonProperty("enumStr") - public ExampleResourceEnumStr enumStr; + public EnumStr enumStr; - public ExampleResource withEnumStr(ExampleResourceEnumStr enumStr) { + public ExampleResource withEnumStr(EnumStr enumStr) { this.enumStr = enumStr; return this; } @@ -123,7 +123,7 @@ public ExampleResource withVehicle(Object vehicle) { return this; } - public ExampleResource(@JsonProperty("chocolates") ExampleResourceChocolates[] chocolates, @JsonProperty("id") String id, @JsonProperty("name") String name, @JsonProperty("vehicle") Object vehicle) { + public ExampleResource(@JsonProperty("chocolates") Chocolates[] chocolates, @JsonProperty("id") String id, @JsonProperty("name") String name, @JsonProperty("vehicle") Object vehicle) { this.chocolates = chocolates; this.id = id; this.name = name; diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceChocolates.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceChocolates.java deleted file mode 100755 index 932f85fe1..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceChocolates.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class ExampleResourceChocolates { - @JsonProperty("description") - public String description; - - public ExampleResourceChocolates withDescription(String description) { - this.description = description; - return this; - } - - public ExampleResourceChocolates(@JsonProperty("description") String description) { - this.description = description; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceEnumNumber.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceEnumNumber.java deleted file mode 100755 index 47f99c327..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceEnumNumber.java +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -public enum ExampleResourceEnumNumber { - ONE(1L), - TWO(2L), - THREE(3L); - - @JsonValue - public final Long value; - - private ExampleResourceEnumNumber(Long value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceEnumStr.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceEnumStr.java deleted file mode 100755 index 47308082f..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ExampleResourceEnumStr.java +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -public enum ExampleResourceEnumStr { - ONE("one"), - TWO("two"), - THREE("three"); - - @JsonValue - public final String value; - - private ExampleResourceEnumStr(String value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HeaderAuth.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HeaderAuth.java new file mode 100755 index 000000000..ecb9bc78b --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HeaderAuth.java @@ -0,0 +1,31 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class HeaderAuth { + @JsonProperty("expectedValue") + public String expectedValue; + + public HeaderAuth withExpectedValue(String expectedValue) { + this.expectedValue = expectedValue; + return this; + } + + @JsonProperty("headerName") + public String headerName; + + public HeaderAuth withHeaderName(String headerName) { + this.headerName = headerName; + return this; + } + + public HeaderAuth(@JsonProperty("expectedValue") String expectedValue, @JsonProperty("headerName") String headerName) { + this.expectedValue = expectedValue; + this.headerName = headerName; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObject.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObject.java index 93964b1d5..92ad31371 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObject.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObject.java @@ -9,14 +9,14 @@ public class HttpBinSimpleJsonObject { @JsonProperty("slideshow") - public HttpBinSimpleJsonObjectSlideshow slideshow; + public Slideshow slideshow; - public HttpBinSimpleJsonObject withSlideshow(HttpBinSimpleJsonObjectSlideshow slideshow) { + public HttpBinSimpleJsonObject withSlideshow(Slideshow slideshow) { this.slideshow = slideshow; return this; } - public HttpBinSimpleJsonObject(@JsonProperty("slideshow") HttpBinSimpleJsonObjectSlideshow slideshow) { + public HttpBinSimpleJsonObject(@JsonProperty("slideshow") Slideshow slideshow) { this.slideshow = slideshow; } } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObjectSlideshow.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObjectSlideshow.java deleted file mode 100755 index e8749ebbd..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObjectSlideshow.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class HttpBinSimpleJsonObjectSlideshow { - @JsonProperty("author") - public String author; - - public HttpBinSimpleJsonObjectSlideshow withAuthor(String author) { - this.author = author; - return this; - } - - @JsonProperty("date") - public String date; - - public HttpBinSimpleJsonObjectSlideshow withDate(String date) { - this.date = date; - return this; - } - - @JsonProperty("slides") - public HttpBinSimpleJsonObjectSlideshowSlides[] slides; - - public HttpBinSimpleJsonObjectSlideshow withSlides(HttpBinSimpleJsonObjectSlideshowSlides[] slides) { - this.slides = slides; - return this; - } - - @JsonProperty("title") - public String title; - - public HttpBinSimpleJsonObjectSlideshow withTitle(String title) { - this.title = title; - return this; - } - - public HttpBinSimpleJsonObjectSlideshow(@JsonProperty("author") String author, @JsonProperty("date") String date, @JsonProperty("slides") HttpBinSimpleJsonObjectSlideshowSlides[] slides, @JsonProperty("title") String title) { - this.author = author; - this.date = date; - this.slides = slides; - this.title = title; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.java deleted file mode 100755 index 1cea392f0..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.java +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class HttpBinSimpleJsonObjectSlideshowSlides { - @JsonInclude(Include.NON_ABSENT) - @JsonProperty("items") - public String[] items; - - public HttpBinSimpleJsonObjectSlideshowSlides withItems(String[] items) { - this.items = items; - return this; - } - - @JsonProperty("title") - public String title; - - public HttpBinSimpleJsonObjectSlideshowSlides withTitle(String title) { - this.title = title; - return this; - } - - @JsonProperty("type") - public String type; - - public HttpBinSimpleJsonObjectSlideshowSlides withType(String type) { - this.type = type; - return this; - } - - public HttpBinSimpleJsonObjectSlideshowSlides(@JsonProperty("title") String title, @JsonProperty("type") String type) { - this.title = title; - this.type = type; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Int32Enum.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Int32Enum.java new file mode 100755 index 000000000..f962bc63d --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Int32Enum.java @@ -0,0 +1,23 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +/** + * Int32Enum - An int32 enum property. + */ +public enum Int32Enum { + FIFTY_FIVE(55), + SIXTY_NINE(69), + ONE_HUNDRED_AND_EIGHTY_ONE(181); + + @JsonValue + public final Integer value; + + private Int32Enum(Integer value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Int32EnumVal.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Int32EnumVal.java new file mode 100755 index 000000000..3c055873c --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Int32EnumVal.java @@ -0,0 +1,23 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +/** + * Int32EnumVal - An int32 enum property. + */ +public enum Int32EnumVal { + FIFTY_FIVE(55), + SIXTY_NINE(69), + ONE_HUNDRED_AND_EIGHTY_ONE(181); + + @JsonValue + public final Integer value; + + private Int32EnumVal(Integer value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/IntEnum.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/IntEnum.java new file mode 100755 index 000000000..c416c01a7 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/IntEnum.java @@ -0,0 +1,23 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +/** + * IntEnum - An integer enum property. + */ +public enum IntEnum { + First(1L), + Second(2L), + Third(3L); + + @JsonValue + public final Long value; + + private IntEnum(Long value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/IntEnumVal.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/IntEnumVal.java new file mode 100755 index 000000000..72dd52e5d --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/IntEnumVal.java @@ -0,0 +1,23 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +/** + * IntEnumVal - An integer enum property. + */ +public enum IntEnumVal { + First(1L), + Second(2L), + Third(3L); + + @JsonValue + public final Long value; + + private IntEnumVal(Long value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ReadWriteObject.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ReadWriteObject.java new file mode 100755 index 000000000..becd255bd --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ReadWriteObject.java @@ -0,0 +1,40 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class ReadWriteObject { + @JsonProperty("num1") + public Long num1; + + public ReadWriteObject withNum1(Long num1) { + this.num1 = num1; + return this; + } + + @JsonProperty("num2") + public Long num2; + + public ReadWriteObject withNum2(Long num2) { + this.num2 = num2; + return this; + } + + @JsonProperty("num3") + public Long num3; + + public ReadWriteObject withNum3(Long num3) { + this.num3 = num3; + return this; + } + + public ReadWriteObject(@JsonProperty("num1") Long num1, @JsonProperty("num2") Long num2, @JsonProperty("num3") Long num3) { + this.num1 = num1; + this.num2 = num2; + this.num3 = num3; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ReadWriteObjectInput.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ReadWriteObjectInput.java deleted file mode 100755 index 4b510e2dd..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/ReadWriteObjectInput.java +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonProperty; - - -public class ReadWriteObjectInput { - @JsonProperty("num1") - public Long num1; - - public ReadWriteObjectInput withNum1(Long num1) { - this.num1 = num1; - return this; - } - - @JsonProperty("num2") - public Long num2; - - public ReadWriteObjectInput withNum2(Long num2) { - this.num2 = num2; - return this; - } - - @JsonProperty("num3") - public Long num3; - - public ReadWriteObjectInput withNum3(Long num3) { - this.num3 = num3; - return this; - } - - public ReadWriteObjectInput(@JsonProperty("num1") Long num1, @JsonProperty("num2") Long num2, @JsonProperty("num3") Long num3) { - this.num1 = num1; - this.num2 = num2; - this.num3 = num3; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObject.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObject.java index 7fb15b40e..c27b6a418 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObject.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObject.java @@ -179,9 +179,9 @@ public SimpleObject withInt32(Integer int32) { */ @JsonProperty("int32Enum") @SpeakeasyMetadata("header:name=int32Enum pathParam:name=int32Enum queryParam:name=int32Enum form:name=int32Enum multipartForm:name=int32Enum") - public SimpleObjectInt32Enum int32Enum; + public Int32Enum int32Enum; - public SimpleObject withInt32Enum(SimpleObjectInt32Enum int32Enum) { + public SimpleObject withInt32Enum(Int32Enum int32Enum) { this.int32Enum = int32Enum; return this; } @@ -191,9 +191,9 @@ public SimpleObject withInt32Enum(SimpleObjectInt32Enum int32Enum) { */ @JsonProperty("intEnum") @SpeakeasyMetadata("header:name=intEnum pathParam:name=intEnum queryParam:name=intEnum form:name=intEnum multipartForm:name=intEnum") - public SimpleObjectIntEnum intEnum; + public IntEnum intEnum; - public SimpleObject withIntEnum(SimpleObjectIntEnum intEnum) { + public SimpleObject withIntEnum(IntEnum intEnum) { this.intEnum = intEnum; return this; } @@ -261,7 +261,7 @@ public SimpleObject withStrOpt(String strOpt) { return this; } - public SimpleObject(@JsonProperty("any") Object any, @JsonProperty("bool") Boolean bool, @JsonProperty("date") LocalDate date, @JsonProperty("dateTime") OffsetDateTime dateTime, @JsonProperty("enum") Enum enum_, @JsonProperty("float32") Float float32, @JsonProperty("int") Long int_, @JsonProperty("int32") Integer int32, @JsonProperty("int32Enum") SimpleObjectInt32Enum int32Enum, @JsonProperty("intEnum") SimpleObjectIntEnum intEnum, @JsonProperty("num") Double num, @JsonProperty("str") String str) { + public SimpleObject(@JsonProperty("any") Object any, @JsonProperty("bool") Boolean bool, @JsonProperty("date") LocalDate date, @JsonProperty("dateTime") OffsetDateTime dateTime, @JsonProperty("enum") Enum enum_, @JsonProperty("float32") Float float32, @JsonProperty("int") Long int_, @JsonProperty("int32") Integer int32, @JsonProperty("int32Enum") Int32Enum int32Enum, @JsonProperty("intEnum") IntEnum intEnum, @JsonProperty("num") Double num, @JsonProperty("str") String str) { this.any = any; this.bool = bool; this.date = date; diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCase.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCase.java index 956694d5c..1e75aea4e 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCase.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCase.java @@ -133,9 +133,9 @@ public SimpleObjectCamelCase withFloat32Val(Float float32Val) { * An int32 enum property. */ @JsonProperty("int32_enum_val") - public SimpleObjectCamelCaseInt32EnumVal int32EnumVal; + public Int32EnumVal int32EnumVal; - public SimpleObjectCamelCase withInt32EnumVal(SimpleObjectCamelCaseInt32EnumVal int32EnumVal) { + public SimpleObjectCamelCase withInt32EnumVal(Int32EnumVal int32EnumVal) { this.int32EnumVal = int32EnumVal; return this; } @@ -155,9 +155,9 @@ public SimpleObjectCamelCase withInt32Val(Integer int32Val) { * An integer enum property. */ @JsonProperty("int_enum_val") - public SimpleObjectCamelCaseIntEnumVal intEnumVal; + public IntEnumVal intEnumVal; - public SimpleObjectCamelCase withIntEnumVal(SimpleObjectCamelCaseIntEnumVal intEnumVal) { + public SimpleObjectCamelCase withIntEnumVal(IntEnumVal intEnumVal) { this.intEnumVal = intEnumVal; return this; } @@ -231,7 +231,7 @@ public SimpleObjectCamelCase withStrVal(String strVal) { return this; } - public SimpleObjectCamelCase(@JsonProperty("any_val") Object anyVal, @JsonProperty("bool_val") Boolean boolVal, @JsonProperty("date_time_val") OffsetDateTime dateTimeVal, @JsonProperty("date_val") LocalDate dateVal, @JsonProperty("enum_val") Enum enumVal, @JsonProperty("float32_val") Float float32Val, @JsonProperty("int32_enum_val") SimpleObjectCamelCaseInt32EnumVal int32EnumVal, @JsonProperty("int32_val") Integer int32Val, @JsonProperty("int_enum_val") SimpleObjectCamelCaseIntEnumVal intEnumVal, @JsonProperty("int_val") Long intVal, @JsonProperty("num_val") Double numVal, @JsonProperty("str_val") String strVal) { + public SimpleObjectCamelCase(@JsonProperty("any_val") Object anyVal, @JsonProperty("bool_val") Boolean boolVal, @JsonProperty("date_time_val") OffsetDateTime dateTimeVal, @JsonProperty("date_val") LocalDate dateVal, @JsonProperty("enum_val") Enum enumVal, @JsonProperty("float32_val") Float float32Val, @JsonProperty("int32_enum_val") Int32EnumVal int32EnumVal, @JsonProperty("int32_val") Integer int32Val, @JsonProperty("int_enum_val") IntEnumVal intEnumVal, @JsonProperty("int_val") Long intVal, @JsonProperty("num_val") Double numVal, @JsonProperty("str_val") String strVal) { this.anyVal = anyVal; this.boolVal = boolVal; this.dateTimeVal = dateTimeVal; diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCaseInt32EnumVal.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCaseInt32EnumVal.java deleted file mode 100755 index 0602dd18b..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCaseInt32EnumVal.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -/** - * SimpleObjectCamelCaseInt32EnumVal - An int32 enum property. - */ -public enum SimpleObjectCamelCaseInt32EnumVal { - FIFTY_FIVE(55), - SIXTY_NINE(69), - ONE_HUNDRED_AND_EIGHTY_ONE(181); - - @JsonValue - public final Integer value; - - private SimpleObjectCamelCaseInt32EnumVal(Integer value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCaseIntEnumVal.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCaseIntEnumVal.java deleted file mode 100755 index 83815bfe0..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectCamelCaseIntEnumVal.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -/** - * SimpleObjectCamelCaseIntEnumVal - An integer enum property. - */ -public enum SimpleObjectCamelCaseIntEnumVal { - First(1L), - Second(2L), - Third(3L); - - @JsonValue - public final Long value; - - private SimpleObjectCamelCaseIntEnumVal(Long value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectInt32Enum.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectInt32Enum.java deleted file mode 100755 index 0a36fbb53..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectInt32Enum.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -/** - * SimpleObjectInt32Enum - An int32 enum property. - */ -public enum SimpleObjectInt32Enum { - FIFTY_FIVE(55), - SIXTY_NINE(69), - ONE_HUNDRED_AND_EIGHTY_ONE(181); - - @JsonValue - public final Integer value; - - private SimpleObjectInt32Enum(Integer value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectIntEnum.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectIntEnum.java deleted file mode 100755 index 9229c9e21..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/SimpleObjectIntEnum.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -/** - * SimpleObjectIntEnum - An integer enum property. - */ -public enum SimpleObjectIntEnum { - First(1L), - Second(2L), - Third(3L); - - @JsonValue - public final Long value; - - private SimpleObjectIntEnum(Long value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Slides.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Slides.java new file mode 100755 index 000000000..9221b3b0b --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Slides.java @@ -0,0 +1,42 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class Slides { + @JsonInclude(Include.NON_ABSENT) + @JsonProperty("items") + public String[] items; + + public Slides withItems(String[] items) { + this.items = items; + return this; + } + + @JsonProperty("title") + public String title; + + public Slides withTitle(String title) { + this.title = title; + return this; + } + + @JsonProperty("type") + public String type; + + public Slides withType(String type) { + this.type = type; + return this; + } + + public Slides(@JsonProperty("title") String title, @JsonProperty("type") String type) { + this.title = title; + this.type = type; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Slideshow.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Slideshow.java new file mode 100755 index 000000000..2847cd3eb --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Slideshow.java @@ -0,0 +1,49 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +public class Slideshow { + @JsonProperty("author") + public String author; + + public Slideshow withAuthor(String author) { + this.author = author; + return this; + } + + @JsonProperty("date") + public String date; + + public Slideshow withDate(String date) { + this.date = date; + return this; + } + + @JsonProperty("slides") + public Slides[] slides; + + public Slideshow withSlides(Slides[] slides) { + this.slides = slides; + return this; + } + + @JsonProperty("title") + public String title; + + public Slideshow withTitle(String title) { + this.title = title; + return this; + } + + public Slideshow(@JsonProperty("author") String author, @JsonProperty("date") String date, @JsonProperty("slides") Slides[] slides, @JsonProperty("title") String title) { + this.author = author; + this.date = date; + this.slides = slides; + this.title = title; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Type.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Type.java new file mode 100755 index 000000000..082374a83 --- /dev/null +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/Type.java @@ -0,0 +1,18 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +package org.openapis.openapi.models.shared; + +import com.fasterxml.jackson.annotation.JsonValue; + +public enum Type { + OBJ1("obj1"); + + @JsonValue + public final String value; + + private Type(String value) { + this.value = value; + } +} diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/TypedObject1.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/TypedObject1.java index b7676602e..2723fe9dd 100755 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/TypedObject1.java +++ b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/TypedObject1.java @@ -9,9 +9,9 @@ public class TypedObject1 { @JsonProperty("type") - public TypedObject1Type type; + public Type type; - public TypedObject1 withType(TypedObject1Type type) { + public TypedObject1 withType(Type type) { this.type = type; return this; } @@ -24,7 +24,7 @@ public TypedObject1 withValue(String value) { return this; } - public TypedObject1(@JsonProperty("type") TypedObject1Type type, @JsonProperty("value") String value) { + public TypedObject1(@JsonProperty("type") Type type, @JsonProperty("value") String value) { this.type = type; this.value = value; } diff --git a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/TypedObject1Type.java b/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/TypedObject1Type.java deleted file mode 100755 index 65cdb1338..000000000 --- a/java-client-sdk/lib/src/main/java/org/openapis/openapi/models/shared/TypedObject1Type.java +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -package org.openapis.openapi.models.shared; - -import com.fasterxml.jackson.annotation.JsonValue; - -public enum TypedObject1Type { - OBJ1("obj1"); - - @JsonValue - public final String value; - - private TypedObject1Type(String value) { - this.value = value; - } -} diff --git a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/AuthTests.java b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/AuthTests.java index efdc73997..71edd3bd0 100755 --- a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/AuthTests.java +++ b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/AuthTests.java @@ -4,12 +4,14 @@ package org.openapis.openapi; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertTrue; + import org.junit.jupiter.api.Test; import org.openapis.openapi.models.operations.*; import org.openapis.openapi.models.shared.*; -import static org.junit.jupiter.api.Assertions.*; - public class AuthTests { @Test void testBasicAuth() throws Exception { @@ -20,7 +22,7 @@ void testBasicAuth() throws Exception { BasicAuthNewResponse res = s.authNew.basicAuthNew(new AuthServiceRequestBody() { { - basicAuth = new AuthServiceRequestBodyBasicAuth("testUser", "testPass"); + basicAuth = new BasicAuth("testUser", "testPass"); } }, new BasicAuthNewSecurity("testUser", "testPass")); @@ -41,8 +43,8 @@ void testApiKeyAuthGlobal() throws Exception { ApiKeyAuthGlobalNewResponse res = s.authNew.apiKeyAuthGlobalNew(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("test_api_key", "x-api-key") + headerAuth = new HeaderAuth[] { + new HeaderAuth("test_api_key", "x-api-key") }; } @@ -106,8 +108,8 @@ void testOauth2Auth() throws Exception { Oauth2AuthNewResponse res = s.authNew.oauth2AuthNew(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("Bearer testToken", "Authorization") + headerAuth = new HeaderAuth[] { + new HeaderAuth("Bearer testToken", "Authorization") }; } }, new Oauth2AuthNewSecurity("Bearer testToken")); @@ -125,8 +127,8 @@ void testOpenIdConnectAuth() throws Exception { OpenIdConnectAuthNewResponse res = s.authNew.openIdConnectAuthNew(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("Bearer testToken", "Authorization") + headerAuth = new HeaderAuth[] { + new HeaderAuth("Bearer testToken", "Authorization") }; } }, new OpenIdConnectAuthNewSecurity("Bearer testToken")); @@ -145,9 +147,9 @@ void testMultipleSimpleSchemeAuth() throws Exception { MultipleSimpleSchemeAuthResponse res = s.authNew .multipleSimpleSchemeAuth(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("test_api_key", "x-api-key"), - new AuthServiceRequestBodyHeaderAuth("Bearer testToken", "Authorization") + headerAuth = new HeaderAuth[] { + new HeaderAuth("test_api_key", "x-api-key"), + new HeaderAuth("Bearer testToken", "Authorization") }; } }, new MultipleSimpleSchemeAuthSecurity("test_api_key", "Bearer testToken")); @@ -166,10 +168,10 @@ void testMultipleMixedSchemeAuth() throws Exception { MultipleMixedSchemeAuthResponse res = s.authNew .multipleMixedSchemeAuth(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("test_api_key", "x-api-key") + headerAuth = new HeaderAuth[] { + new HeaderAuth("test_api_key", "x-api-key") }; - basicAuth = new AuthServiceRequestBodyBasicAuth("testUser", "testPass"); + basicAuth = new BasicAuth("testUser", "testPass"); } }, new MultipleMixedSchemeAuthSecurity("test_api_key", new SchemeBasicAuth("testUser", "testPass"))); @@ -187,8 +189,8 @@ void testMultipleSimpleOptionsAuthFirstOption() throws Exception { MultipleSimpleOptionsAuthResponse res = s.authNew .multipleSimpleOptionsAuth(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("test_api_key", "x-api-key"), + headerAuth = new HeaderAuth[] { + new HeaderAuth("test_api_key", "x-api-key"), }; } }, new MultipleSimpleOptionsAuthSecurity() { @@ -211,8 +213,8 @@ void testMultipleSimpleOptionsAuthSecondOption() throws Exception { MultipleSimpleOptionsAuthResponse res = s.authNew .multipleSimpleOptionsAuth(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("Bearer testToken", "Authorization"), + headerAuth = new HeaderAuth[] { + new HeaderAuth("Bearer testToken", "Authorization"), }; } }, new MultipleSimpleOptionsAuthSecurity() { @@ -235,8 +237,8 @@ void testMultipleMixedOptionsAuthFirstOption() throws Exception { MultipleMixedOptionsAuthResponse res = s.authNew .multipleMixedOptionsAuth(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("test_api_key", "x-api-key"), + headerAuth = new HeaderAuth[] { + new HeaderAuth("test_api_key", "x-api-key"), }; } }, new MultipleMixedOptionsAuthSecurity() { @@ -259,7 +261,7 @@ void testMultipleMixedOptionsAuthSecondOption() throws Exception { MultipleMixedOptionsAuthResponse res = s.authNew .multipleMixedOptionsAuth(new AuthServiceRequestBody() { { - basicAuth = new AuthServiceRequestBodyBasicAuth("testUser", "testPass"); + basicAuth = new BasicAuth("testUser", "testPass"); } }, new MultipleMixedOptionsAuthSecurity() { { @@ -281,14 +283,15 @@ void testMultipleOptionsWithSimpleSchemesAuthFirstOption() throws Exception { MultipleOptionsWithSimpleSchemesAuthResponse res = s.authNew .multipleOptionsWithSimpleSchemesAuth(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("test_api_key", "x-api-key"), - new AuthServiceRequestBodyHeaderAuth("Bearer testToken", "Authorization"), + headerAuth = new HeaderAuth[] { + new HeaderAuth("test_api_key", "x-api-key"), + new HeaderAuth("Bearer testToken", "Authorization"), }; } }, new MultipleOptionsWithSimpleSchemesAuthSecurity() { { - option1 = new MultipleOptionsWithSimpleSchemesAuthSecurityOption1("test_api_key", "Bearer testToken"); + option1 = new MultipleOptionsWithSimpleSchemesAuthSecurityOption1("test_api_key", + "Bearer testToken"); } }); @@ -306,14 +309,15 @@ void testMultipleOptionsWithSimpleSchemesAuthSecondOption() throws Exception { MultipleOptionsWithSimpleSchemesAuthResponse res = s.authNew .multipleOptionsWithSimpleSchemesAuth(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("test_api_key", "x-api-key"), - new AuthServiceRequestBodyHeaderAuth("Bearer testToken", "Authorization"), + headerAuth = new HeaderAuth[] { + new HeaderAuth("test_api_key", "x-api-key"), + new HeaderAuth("Bearer testToken", "Authorization"), }; } }, new MultipleOptionsWithSimpleSchemesAuthSecurity() { { - option2 = new MultipleOptionsWithSimpleSchemesAuthSecurityOption2("test_api_key", "Bearer testToken"); + option2 = new MultipleOptionsWithSimpleSchemesAuthSecurityOption2("test_api_key", + "Bearer testToken"); } }); @@ -331,14 +335,15 @@ void testMultipleOptionsWithMixedSchemesAuthFirstOption() throws Exception { MultipleOptionsWithMixedSchemesAuthResponse res = s.authNew .multipleOptionsWithMixedSchemesAuth(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("test_api_key", "x-api-key"), - new AuthServiceRequestBodyHeaderAuth("Bearer testToken", "Authorization"), + headerAuth = new HeaderAuth[] { + new HeaderAuth("test_api_key", "x-api-key"), + new HeaderAuth("Bearer testToken", "Authorization"), }; } }, new MultipleOptionsWithMixedSchemesAuthSecurity() { { - option1 = new MultipleOptionsWithMixedSchemesAuthSecurityOption1("test_api_key", "Bearer testToken"); + option1 = new MultipleOptionsWithMixedSchemesAuthSecurityOption1("test_api_key", + "Bearer testToken"); } }); @@ -356,14 +361,15 @@ void testMultipleOptionsWithMixedSchemesAuthSecondOption() throws Exception { MultipleOptionsWithMixedSchemesAuthResponse res = s.authNew .multipleOptionsWithMixedSchemesAuth(new AuthServiceRequestBody() { { - headerAuth = new AuthServiceRequestBodyHeaderAuth[]{ - new AuthServiceRequestBodyHeaderAuth("test_api_key", "x-api-key"), + headerAuth = new HeaderAuth[] { + new HeaderAuth("test_api_key", "x-api-key"), }; - basicAuth = new AuthServiceRequestBodyBasicAuth("testUser", "testPass"); + basicAuth = new BasicAuth("testUser", "testPass"); } }, new MultipleOptionsWithMixedSchemesAuthSecurity() { { - option2 = new MultipleOptionsWithMixedSchemesAuthSecurityOption2("test_api_key", new SchemeBasicAuth("testUser", "testPass")); + option2 = new MultipleOptionsWithMixedSchemesAuthSecurityOption2("test_api_key", + new SchemeBasicAuth("testUser", "testPass")); } }); diff --git a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/FlatteningTests.java b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/FlatteningTests.java index c6b1b8d7c..732716b05 100755 --- a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/FlatteningTests.java +++ b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/FlatteningTests.java @@ -9,13 +9,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue; import org.junit.jupiter.api.Test; -import org.openapis.openapi.models.operations.ComponentBodyAndParamConflictResponse; -import org.openapis.openapi.models.operations.ComponentBodyAndParamNoConflictResponse; -import org.openapis.openapi.models.operations.ConflictingParamsResponse; -import org.openapis.openapi.models.operations.InlineBodyAndParamConflictRequestBody; -import org.openapis.openapi.models.operations.InlineBodyAndParamConflictResponse; -import org.openapis.openapi.models.operations.InlineBodyAndParamNoConflictRequestBody; -import org.openapis.openapi.models.operations.InlineBodyAndParamNoConflictResponse; +import org.openapis.openapi.models.operations.*; import org.openapis.openapi.models.shared.SimpleObject; public class FlatteningTests { diff --git a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/Helpers.java b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/Helpers.java index 5f0355d70..802eb2ef3 100755 --- a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/Helpers.java +++ b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/Helpers.java @@ -7,28 +7,19 @@ import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNull; -import java.nio.file.Files; -import java.nio.file.Paths; -import java.nio.file.StandardOpenOption; import java.time.LocalDate; import java.time.OffsetDateTime; import java.util.HashMap; import java.util.Map; -import org.openapis.openapi.models.shared.DeepObject; +import org.openapis.openapi.models.shared.*; import org.openapis.openapi.models.shared.Enum; -import org.openapis.openapi.models.shared.SimpleObject; -import org.openapis.openapi.models.shared.SimpleObjectCamelCase; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseInt32EnumVal; -import org.openapis.openapi.models.shared.SimpleObjectCamelCaseIntEnumVal; -import org.openapis.openapi.models.shared.SimpleObjectInt32Enum; -import org.openapis.openapi.models.shared.SimpleObjectIntEnum; public class Helpers { public static SimpleObject createSimpleObject() { return new SimpleObject("any", true, LocalDate.parse("2020-01-01"), OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), Enum.ONE, 1.1f, Long.valueOf(1), 1, - SimpleObjectInt32Enum.FIFTY_FIVE, SimpleObjectIntEnum.Second, 1.1, "test") { + Int32Enum.FIFTY_FIVE, IntEnum.Second, 1.1, "test") { { boolOpt = true; intOptNull = null; @@ -40,8 +31,8 @@ public static SimpleObject createSimpleObject() { public static SimpleObjectCamelCase createSimpleObjectCamelCase() { return new SimpleObjectCamelCase("any", true, OffsetDateTime.parse("2020-01-01T00:00:00.000000001Z"), - LocalDate.parse("2020-01-01"), Enum.ONE, 1.1f, SimpleObjectCamelCaseInt32EnumVal.FIFTY_FIVE, 1, - SimpleObjectCamelCaseIntEnumVal.Second, Long.valueOf(1), 1.1, "test") { + LocalDate.parse("2020-01-01"), Enum.ONE, 1.1f, Int32EnumVal.FIFTY_FIVE, 1, + IntEnumVal.Second, Long.valueOf(1), 1.1, "test") { { boolOptVal = true; intOptNullVal = null; diff --git a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/MultilevelTests.java b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/MultilevelTests.java index b2b1f5238..bf2f703b2 100755 --- a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/MultilevelTests.java +++ b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/MultilevelTests.java @@ -4,10 +4,11 @@ package org.openapis.openapi; -import org.junit.jupiter.api.Test; -import org.openapis.openapi.models.operations.*; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; -import static org.junit.jupiter.api.Assertions.*; +import org.junit.jupiter.api.Test; +import org.openapis.openapi.models.operations.NestedFirstGetResponse; public class MultilevelTests { @Test diff --git a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ParameterTests.java b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ParameterTests.java index a8b7f071c..217629954 100755 --- a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ParameterTests.java +++ b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ParameterTests.java @@ -4,6 +4,14 @@ package org.openapis.openapi; +import static org.junit.jupiter.api.Assertions.assertArrayEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertNull; + +import java.util.ArrayList; +import java.util.HashMap; + import org.junit.jupiter.api.Test; import org.openapis.openapi.models.operations.*; import org.openapis.openapi.models.shared.DeepObject; @@ -12,11 +20,6 @@ import org.openapis.openapi.models.shared.SimpleObject; import org.openapis.openapi.utils.JSON; -import java.util.ArrayList; -import java.util.HashMap; - -import static org.junit.jupiter.api.Assertions.*; - public class ParameterTests { @Test void testMixedParametersPrimitives() throws Exception { @@ -31,7 +34,8 @@ void testMixedParametersPrimitives() throws Exception { assertNotNull(res); assertEquals(200, res.statusCode); assertNotNull(res.res); - assertEquals("http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue", res.res.url); + assertEquals("http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue", + res.res.url); assertEquals("headerValue", res.res.headers.headerparam); assertEquals("queryValue", res.res.args.queryStringParam); } @@ -49,7 +53,9 @@ void testMixedParametersCamelCase() throws Exception { assertNotNull(res); assertEquals(200, res.statusCode); assertNotNull(res.res); - assertEquals("http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue", res.res.url); + assertEquals( + "http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue", + res.res.url); assertEquals("headerValue", res.res.headers.headerParam); assertEquals("queryValue", res.res.args.queryStringParam); } @@ -96,7 +102,7 @@ void testSimplePathParameterArrays() throws Exception { assertNotNull(s); SimplePathParameterArraysResponse res = s.parameters - .simplePathParameterArrays(new String[]{"test", "test2"}); + .simplePathParameterArrays(new String[] { "test", "test2" }); assertNotNull(res); assertEquals(200, res.statusCode); @@ -246,8 +252,8 @@ void testFormQueryParamsArray() throws Exception { FormQueryParamsArrayResponse res = s.parameters .formQueryParamsArray( - new String[]{"test", "test2"}, - new Long[]{Long.valueOf(1), Long.valueOf(2)}); + new String[] { "test", "test2" }, + new Long[] { Long.valueOf(1), Long.valueOf(2) }); assertNotNull(res); assertEquals(200, res.statusCode); @@ -256,7 +262,7 @@ void testFormQueryParamsArray() throws Exception { "http://localhost:35123/anything/queryParams/form/array?arrParam=test%2Ctest2&arrParamExploded=1&arrParamExploded=2", res.res.url); assertEquals("test,test2", res.res.args.arrParam); - assertArrayEquals(new String[]{"1", "2"}, res.res.args.arrParamExploded); + assertArrayEquals(new String[] { "1", "2" }, res.res.args.arrParamExploded); } @Test @@ -268,8 +274,8 @@ void testPipeDelimitedQueryParamsArray() throws Exception { PipeDelimitedQueryParamsArrayResponse res = s.parameters .pipeDelimitedQueryParamsArray( - new String[]{"test", "test2"}, - new Long[]{Long.valueOf(1), Long.valueOf(2)}, + new String[] { "test", "test2" }, + new Long[] { Long.valueOf(1), Long.valueOf(2) }, new HashMap() { { put("key1", "val1"); @@ -285,7 +291,7 @@ void testPipeDelimitedQueryParamsArray() throws Exception { "http://localhost:35123/anything/queryParams/pipe/array?arrParam=test|test2&arrParamExploded=1&arrParamExploded=2&mapParam=key1|val1|key2|val2&objParam=any|any|bool|true|boolOpt|true|date|2020-01-01|dateTime|2020-01-01T00%3A00%3A00.000000001Z|enum|one|float32|1.1|int|1|int32|1|int32Enum|55|intEnum|2|num|1.1|str|test|strOpt|testOptional", res.res.url); assertEquals("test|test2", res.res.args.arrParam); - assertArrayEquals(new String[]{"1", "2"}, res.res.args.arrParamExploded); + assertArrayEquals(new String[] { "1", "2" }, res.res.args.arrParamExploded); } @Test @@ -334,8 +340,8 @@ void testDeepObjectQueryParamsObject() throws Exception { DeepObjectQueryParamsObjectResponse res = s.parameters .deepObjectQueryParamsObject( Helpers.createSimpleObject(), - new DeepObjectQueryParamsObjectObjArrParam() - .withArr(new String[]{"test", "test2"})); + new ObjArrParam() + .withArr(new String[] { "test", "test2" })); assertNotNull(res); assertEquals(200, res.statusCode); @@ -343,7 +349,7 @@ void testDeepObjectQueryParamsObject() throws Exception { assertEquals( "http://localhost:35123/anything/queryParams/deepObject/obj?objParam[any]=any&objParam[bool]=true&objParam[boolOpt]=true&objParam[date]=2020-01-01&objParam[dateTime]=2020-01-01T00%3A00%3A00.000000001Z&objParam[enum]=one&objParam[float32]=1.1&objParam[int]=1&objParam[int32]=1&objParam[int32Enum]=55&objParam[intEnum]=2&objParam[num]=1.1&objParam[str]=test&objParam[strOpt]=testOptional&objArrParam[arr]=test&objArrParam[arr]=test2", res.res.url); - assertArrayEquals(new String[]{"test", "test2"}, res.res.args.objArrParamArr); + assertArrayEquals(new String[] { "test", "test2" }, res.res.args.objArrParamArr); assertEquals("any", res.res.args.objParamAny); assertEquals("true", res.res.args.objParamBool); assertEquals("true", res.res.args.objParamBoolOpt); @@ -375,8 +381,8 @@ void testDeepObjectQueryParamsMap() throws Exception { }; HashMap mapArrParam = new HashMap() { { - put("test", new String[]{"value", "value2"}); - put("test2", new String[]{"value3", "value4"}); + put("test", new String[] { "value", "value2" }); + put("test2", new String[] { "value3", "value4" }); } }; @@ -564,7 +570,7 @@ void testHeaderParamsArray() throws Exception { assertNotNull(s); HeaderParamsArrayResponse res = s.parameters - .headerParamsArray(new String[]{"test1", "test2"}); + .headerParamsArray(new String[] { "test1", "test2" }); assertNotNull(res); assertEquals(200, res.statusCode); diff --git a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/RequestBodiesTests.java b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/RequestBodiesTests.java index ac41eb94e..b2cffc508 100755 --- a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/RequestBodiesTests.java +++ b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/RequestBodiesTests.java @@ -49,10 +49,10 @@ void testRequestBodyPostApplicationJsonArray() throws Exception { assertNotNull(res); assertEquals(200, res.statusCode); - assertNotNull(res.simpleObjects); - assertEquals(res.simpleObjects.length, 2); - Helpers.assertSimpleObject(res.simpleObjects[0]); - Helpers.assertSimpleObject(res.simpleObjects[1]); + assertNotNull(res.res); + assertEquals(res.res.length, 2); + Helpers.assertSimpleObject(res.res[0]); + Helpers.assertSimpleObject(res.res[1]); } @Test @@ -72,14 +72,14 @@ void testRequestBodyPostApplicationJsonArrayOfArray() throws Exception { assertNotNull(res); assertEquals(200, res.statusCode); - assertNotNull(res.arrs); - assertEquals(res.arrs.length, 2); - assertEquals(res.arrs[0].length, 2); - assertEquals(res.arrs[1].length, 2); - Helpers.assertSimpleObject(res.arrs[0][0]); - Helpers.assertSimpleObject(res.arrs[0][1]); - Helpers.assertSimpleObject(res.arrs[1][0]); - Helpers.assertSimpleObject(res.arrs[1][1]); + assertNotNull(res.res); + assertEquals(res.res.length, 2); + assertEquals(res.res[0].length, 2); + assertEquals(res.res[1].length, 2); + Helpers.assertSimpleObject(res.res[0][0]); + Helpers.assertSimpleObject(res.res[0][1]); + Helpers.assertSimpleObject(res.res[1][0]); + Helpers.assertSimpleObject(res.res[1][1]); } @Test @@ -196,14 +196,14 @@ void testRequestBodyPostApplicationJsonArrayOfMap() throws Exception { assertNotNull(res); assertEquals(200, res.statusCode); - assertNotNull(res.maps); - assertEquals(res.maps.length, 2); - assertEquals(res.maps[0].size(), 2); - assertEquals(res.maps[1].size(), 2); - Helpers.assertSimpleObject(res.maps[0].get("mapElem1")); - Helpers.assertSimpleObject(res.maps[0].get("mapElem2")); - Helpers.assertSimpleObject(res.maps[1].get("mapElem1")); - Helpers.assertSimpleObject(res.maps[1].get("mapElem2")); + assertNotNull(res.res); + assertEquals(res.res.length, 2); + assertEquals(res.res[0].size(), 2); + assertEquals(res.res[1].size(), 2); + Helpers.assertSimpleObject(res.res[0].get("mapElem1")); + Helpers.assertSimpleObject(res.res[0].get("mapElem2")); + Helpers.assertSimpleObject(res.res[1].get("mapElem1")); + Helpers.assertSimpleObject(res.res[1].get("mapElem2")); } @Test @@ -241,10 +241,10 @@ void testRequestBodyPostApplicationJsonArrayOfPrimitive() throws Exception { assertNotNull(res); assertEquals(200, res.statusCode); - assertNotNull(res.strings); - assertEquals(res.strings.length, 2); - assertEquals(res.strings[0], "hello"); - assertEquals(res.strings[1], "world"); + assertNotNull(res.res); + assertEquals(res.res.length, 2); + assertEquals(res.res[0], "hello"); + assertEquals(res.res[1], "world"); } @Test @@ -299,14 +299,14 @@ void testRequestBodyPostApplicationJsonArrayOfArrayOfPrimitive() throws Exceptio assertNotNull(res); assertEquals(200, res.statusCode); - assertNotNull(res.arrs); - assertEquals(res.arrs.length, 2); - assertEquals(res.arrs[0].length, 2); - assertEquals(res.arrs[1].length, 2); - assertEquals(res.arrs[0][0], "foo"); - assertEquals(res.arrs[0][1], "bar"); - assertEquals(res.arrs[1][0], "buzz"); - assertEquals(res.arrs[1][1], "bazz"); + assertNotNull(res.res); + assertEquals(res.res.length, 2); + assertEquals(res.res[0].length, 2); + assertEquals(res.res[1].length, 2); + assertEquals(res.res[0][0], "foo"); + assertEquals(res.res[0][1], "bar"); + assertEquals(res.res[1][0], "buzz"); + assertEquals(res.res[1][1], "bazz"); } @Test @@ -419,7 +419,8 @@ void testRequestBodyPostMultipleContentTypesInlineFiltered() throws Exception { RequestBodyPostMultipleContentTypesInlineFilteredResponse res = s.requestBodies .requestBodyPostMultipleContentTypesInlineFiltered( - new RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON(true, 1.1, "test")); + new RequestBodyPostMultipleContentTypesInlineFilteredRequestBody(true, 1.1, + "test")); assertNotNull(res); assertEquals(200, res.statusCode); @@ -442,7 +443,7 @@ void testRequestBodyPostMultipleContentTypesSplitJson() throws Exception { RequestBodyPostMultipleContentTypesSplitJsonResponse res = s.requestBodies .requestBodyPostMultipleContentTypesSplitJson( - new RequestBodyPostMultipleContentTypesSplitApplicationJSON(true, 1.1, "test")); + new RequestBodyPostMultipleContentTypesSplitJsonRequestBody(true, 1.1, "test")); assertNotNull(res); assertEquals(200, res.statusCode); @@ -465,7 +466,7 @@ void testRequestBodyPostMultipleContentTypesSplitMultipart() throws Exception { RequestBodyPostMultipleContentTypesSplitMultipartResponse res = s.requestBodies .requestBodyPostMultipleContentTypesSplitMultipart( - new RequestBodyPostMultipleContentTypesSplitMultipartFormData(true, 1.1, "test")); + new RequestBodyPostMultipleContentTypesSplitMultipartRequestBody(true, 1.1, "test")); assertNotNull(res); assertEquals(200, res.statusCode); @@ -488,7 +489,7 @@ void testRequestBodyPostMultipleContentTypesSplitForm() throws Exception { RequestBodyPostMultipleContentTypesSplitFormResponse res = s.requestBodies .requestBodyPostMultipleContentTypesSplitForm( - new RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded(true, 1.1, "test")); + new RequestBodyPostMultipleContentTypesSplitFormRequestBody(true, 1.1, "test")); assertNotNull(res); assertEquals(200, res.statusCode); @@ -509,7 +510,7 @@ void testRequestBodyPostMultipleContentTypesSplitJsonWithParam() throws Exceptio SDK s = SDK.builder().build(); assertNotNull(s); - RequestBodyPostMultipleContentTypesSplitParamApplicationJSON requestBody = new RequestBodyPostMultipleContentTypesSplitParamApplicationJSON( + RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody requestBody = new RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody( true, 1.1, "test body"); RequestBodyPostMultipleContentTypesSplitParamJsonResponse res = s.requestBodies @@ -539,7 +540,7 @@ void testRequestBodyPostMultipleContentTypesSplitMultipartWithParam() throws Exc SDK s = SDK.builder().build(); assertNotNull(s); - RequestBodyPostMultipleContentTypesSplitParamMultipartFormData formData = new RequestBodyPostMultipleContentTypesSplitParamMultipartFormData( + RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody formData = new RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody( true, 1.1, "test body"); RequestBodyPostMultipleContentTypesSplitParamMultipartResponse res = s.requestBodies .requestBodyPostMultipleContentTypesSplitParamMultipart(formData, "test param"); @@ -567,7 +568,7 @@ void testRequestBodyPostMultipleContentTypesSplitFormWithParam() throws Exceptio SDK s = SDK.builder().build(); assertNotNull(s); - RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded requestBody = new RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded( + RequestBodyPostMultipleContentTypesSplitParamFormRequestBody requestBody = new RequestBodyPostMultipleContentTypesSplitParamFormRequestBody( true, 1.1, "test body"); RequestBodyPostMultipleContentTypesSplitParamFormResponse res = s.requestBodies .requestBodyPostMultipleContentTypesSplitParamForm(requestBody, "test param"); @@ -654,7 +655,7 @@ void testRequestBodyPutMultipartFile() throws Exception { RequestBodyPutMultipartFileResponse res = s.requestBodies .requestBodyPutMultipartFile(new RequestBodyPutMultipartFileRequestBody() { { - file = new RequestBodyPutMultipartFileRequestBodyFile(data, "testUpload.json"); + file = new File(data, "testUpload.json"); } }); @@ -906,7 +907,7 @@ void testRequestBodyReadAndWrite() throws Exception { assertNotNull(s); RequestBodyReadAndWriteResponse res = s.requestBodies - .requestBodyReadAndWrite(new ReadWriteObjectInput(1l, 2l, 4l)); + .requestBodyReadAndWrite(new ReadWriteObject(1l, 2l, 4l)); assertNotNull(res); assertEquals(200, res.statusCode); diff --git a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ResponseBodiesTests.java b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ResponseBodiesTests.java index 1c4efe60c..3e3120eca 100755 --- a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ResponseBodiesTests.java +++ b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ResponseBodiesTests.java @@ -12,7 +12,6 @@ import org.junit.jupiter.api.Test; import org.openapis.openapi.models.operations.*; -import org.openapis.openapi.models.shared.*; public class ResponseBodiesTests { @Test diff --git a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ServerTests.java b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ServerTests.java index 193df4364..72c177331 100755 --- a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ServerTests.java +++ b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/ServerTests.java @@ -10,14 +10,10 @@ import java.util.HashMap; -import org.openapis.openapi.utils.Utils; import org.junit.jupiter.api.Test; import org.openapis.openapi.SDK.Builder.ServerSomething; -import org.openapis.openapi.models.operations.SelectGlobalServerResponse; -import org.openapis.openapi.models.operations.SelectServerWithIDResponse; -import org.openapis.openapi.models.operations.ServerWithTemplatesGlobalResponse; -import org.openapis.openapi.models.operations.ServerWithTemplatesResponse; -import org.openapis.openapi.models.operations.ServersByIDWithTemplatesResponse; +import org.openapis.openapi.models.operations.*; +import org.openapis.openapi.utils.Utils; public class ServerTests { @Test diff --git a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/TelemetryTests.java b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/TelemetryTests.java index 9c30f3a1a..20cf97489 100755 --- a/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/TelemetryTests.java +++ b/java-client-sdk/lib/src/test/java/org/openapis/openapiprimary/TelemetryTests.java @@ -23,7 +23,7 @@ void testTelemetryUserAgentGet() throws Exception { assertNotNull(res); assertEquals(200, res.statusCode); - assertEquals("speakeasy-sdk/java 1.38.2 2.173.0 0.1.0 ", res.res.headers.get("X-Speakeasy-User-Agent")); + assertEquals("speakeasy-sdk/java 2.0.0 2.181.1 0.1.0 ", res.res.headers.get("X-Speakeasy-User-Agent")); } @Test @@ -40,6 +40,6 @@ void testTelemetrySpeakeasyUserAgentGet() throws Exception { assertNotNull(res); assertEquals(200, res.statusCode); assertEquals(userAgent, res.res.headers.get("User-Agent")); - assertEquals("speakeasy-sdk/java 1.38.2 2.173.0 0.1.0 ", res.res.headers.get("X-Speakeasy-User-Agent")); + assertEquals("speakeasy-sdk/java 2.0.0 2.181.1 0.1.0 ", res.res.headers.get("X-Speakeasy-User-Agent")); } } \ No newline at end of file diff --git a/php-client-sdk/README.md b/php-client-sdk/README.md index b7ea398f1..6cfa6d485 100755 --- a/php-client-sdk/README.md +++ b/php-client-sdk/README.md @@ -18,20 +18,20 @@ composer require "openapi/openapi" declare(strict_types=1); require_once 'vendor/autoload.php'; -use OpenAPI\OpenAPI\SDK; -use OpenAPI\OpenAPI\Models\Shared\Security; +use OpenAPI\OpenAPI; +use OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $response = $sdk->generation->globalNameOverridden(); - if ($response->getGlobalNameOverride200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -49,26 +49,16 @@ Do this second declare(strict_types=1); require_once 'vendor/autoload.php'; -use OpenAPI\OpenAPI\SDK; -use OpenAPI\OpenAPI\Models\Shared\Security; -use OpenAPI\OpenAPI\Models\Operations\UsageExamplePostRequest; -use OpenAPI\OpenAPI\Models\Operations\UsageExamplePostRequestBody; -use OpenAPI\OpenAPI\Models\Shared\FakerFormattedStrings; -use OpenAPI\OpenAPI\Models\Shared\FakerStrings; -use OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use OpenAPI\OpenAPI\Models\Shared\Enum; -use OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; -use OpenAPI\OpenAPI\Models\Operations\UsageExamplePostEnumParameter; -use OpenAPI\OpenAPI\Models\Operations\UsageExamplePostOptEnumParameter; -use OpenAPI\OpenAPI\Models\Operations\UsageExamplePostSecurity; - -$sdk = SDK::builder()->build(); +use OpenAPI\OpenAPI; +use OpenAPI\OpenAPI\Models\Shared; +use OpenAPI\OpenAPI\Models\Operations; + +$sdk = OpenAPI\SDK::builder()->build(); try { - $request = new UsageExamplePostRequest(); - $request->requestBody = new UsageExamplePostRequestBody(); - $request->requestBody->fakerFormattedStrings = new FakerFormattedStrings(); + $request = new Operations\UsageExamplePostRequest(); + $request->requestBody = new Operations\UsageExamplePostRequestBody(); + $request->requestBody->fakerFormattedStrings = new Shared\FakerFormattedStrings(); $request->requestBody->fakerFormattedStrings->addressFormat = '48525 Maude Fall'; $request->requestBody->fakerFormattedStrings->directoryFormat = '/etc/defaults'; $request->requestBody->fakerFormattedStrings->domainFormat = 'next-conflict.name'; @@ -90,7 +80,7 @@ try { $request->requestBody->fakerFormattedStrings->uuidFormat = '342442b8-aff3-42e0-b62d-e2e2d47a9bf1'; $request->requestBody->fakerFormattedStrings->zipcodeFormat = '09432'; - $request->requestBody->fakerStrings = new FakerStrings(); + $request->requestBody->fakerStrings = new Shared\FakerStrings(); $request->requestBody->fakerStrings->city = 'McLaughlinchester'; $request->requestBody->fakerStrings->iban = 'TL232743267267003560099'; $request->requestBody->fakerStrings->id = ''; @@ -145,7 +135,7 @@ try { $request->requestBody->fakerStrings->url = 'https://crooked-dulcimer.name'; $request->requestBody->fakerStrings->username = 'Mable76'; $request->requestBody->fakerStrings->uuid = '16b919d6-51cd-4e97-81e2-5221b7b6969f'; - $request->requestBody->simpleObject = new SimpleObject(); + $request->requestBody->simpleObject = new Shared\SimpleObject(); $request->requestBody->simpleObject->any = 'any'; $request->requestBody->simpleObject->bigint = 8821239038968084; $request->requestBody->simpleObject->bigintStr = '9223372036854775808'; @@ -158,12 +148,12 @@ try { ); $request->requestBody->simpleObject->decimal = 3.141592653589793; $request->requestBody->simpleObject->decimalStr = '3.14159265358979344719667586'; - $request->requestBody->simpleObject->enum = Enum::One; + $request->requestBody->simpleObject->enum = Shared\Enum::One; $request->requestBody->simpleObject->float32 = 1.1; $request->requestBody->simpleObject->int = 1; $request->requestBody->simpleObject->int32 = 1; - $request->requestBody->simpleObject->int32Enum = SimpleObjectInt32Enum::OneHundredAndEightyOne; - $request->requestBody->simpleObject->intEnum = SimpleObjectIntEnum::Second; + $request->requestBody->simpleObject->int32Enum = Shared\Int32Enum::OneHundredAndEightyOne; + $request->requestBody->simpleObject->intEnum = Shared\IntEnum::Second; $request->requestBody->simpleObject->intOptNull = 165468; $request->requestBody->simpleObject->num = 1.1; $request->requestBody->simpleObject->numOptNull = 5944.32; @@ -188,22 +178,22 @@ try { $request->decimalStrParameter = 'string'; $request->decimalStrParameterOptional = 'string'; $request->doubleParameter = 8700.78; - $request->enumParameter = UsageExamplePostEnumParameter::Value2; + $request->enumParameter = Operations\EnumParameter::Value2; $request->falseyNumberParameter = 0; $request->float32Parameter = 1341.86; $request->floatParameter = 5429.24; $request->int64Parameter = 101970; $request->intParameter = 938852; - $request->optEnumParameter = UsageExamplePostOptEnumParameter::Value3; + $request->optEnumParameter = Operations\OptEnumParameter::Value3; $request->strParameter = 'example 3'; - $requestSecurity = new UsageExamplePostSecurity(); + $requestSecurity = new Operations\UsageExamplePostSecurity(); $requestSecurity->password = 'YOUR_PASSWORD'; $requestSecurity->username = 'YOUR_USERNAME'; $response = $sdk->generation->usageExamplePost($request, $requestSecurity); - if ($response->usageExamplePost200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -221,54 +211,7 @@ try { * [putAnythingIgnoredGeneration](docs/sdks/sdk/README.md#putanythingignoredgeneration) * [responseBodyJsonGet](docs/sdks/sdk/README.md#responsebodyjsonget) -### [auth](docs/sdks/auth/README.md) - -* [apiKeyAuth](docs/sdks/auth/README.md#apikeyauth) -* [apiKeyAuthGlobal](docs/sdks/auth/README.md#apikeyauthglobal) -* [basicAuth](docs/sdks/auth/README.md#basicauth) -* [bearerAuth](docs/sdks/auth/README.md#bearerauth) -* [globalBearerAuth](docs/sdks/auth/README.md#globalbearerauth) -* [oauth2Auth](docs/sdks/auth/README.md#oauth2auth) -* [oauth2Override](docs/sdks/auth/README.md#oauth2override) -* [openIdConnectAuth](docs/sdks/auth/README.md#openidconnectauth) - -### [authNew](docs/sdks/authnew/README.md) - -* [apiKeyAuthGlobalNew](docs/sdks/authnew/README.md#apikeyauthglobalnew) -* [authGlobal](docs/sdks/authnew/README.md#authglobal) -* [basicAuthNew](docs/sdks/authnew/README.md#basicauthnew) -* [multipleMixedOptionsAuth](docs/sdks/authnew/README.md#multiplemixedoptionsauth) -* [multipleMixedSchemeAuth](docs/sdks/authnew/README.md#multiplemixedschemeauth) -* [multipleOptionsWithMixedSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithmixedschemesauth) -* [multipleOptionsWithSimpleSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithsimpleschemesauth) -* [multipleSimpleOptionsAuth](docs/sdks/authnew/README.md#multiplesimpleoptionsauth) -* [multipleSimpleSchemeAuth](docs/sdks/authnew/README.md#multiplesimpleschemeauth) -* [oauth2AuthNew](docs/sdks/authnew/README.md#oauth2authnew) -* [openIdConnectAuthNew](docs/sdks/authnew/README.md#openidconnectauthnew) - -### [documentation](docs/sdks/documentation/README.md) - -* [getDocumentationPerLanguage](docs/sdks/documentation/README.md#getdocumentationperlanguage) - Gets documentation for some language, I guess. - -### [errors](docs/sdks/errors/README.md) - -* [connectionErrorGet](docs/sdks/errors/README.md#connectionerrorget) -* [statusGetError](docs/sdks/errors/README.md#statusgeterror) -* [statusGetXSpeakeasyErrors](docs/sdks/errors/README.md#statusgetxspeakeasyerrors) - -### [first](docs/sdks/first/README.md) - -* [get](docs/sdks/first/README.md#get) - -### [flattening](docs/sdks/flattening/README.md) - -* [componentBodyAndParamConflict](docs/sdks/flattening/README.md#componentbodyandparamconflict) -* [componentBodyAndParamNoConflict](docs/sdks/flattening/README.md#componentbodyandparamnoconflict) -* [conflictingParams](docs/sdks/flattening/README.md#conflictingparams) -* [inlineBodyAndParamConflict](docs/sdks/flattening/README.md#inlinebodyandparamconflict) -* [inlineBodyAndParamNoConflict](docs/sdks/flattening/README.md#inlinebodyandparamnoconflict) - -### [generation](docs/sdks/generation/README.md) +### [Generation](docs/sdks/generation/README.md) * [anchorTypesGet](docs/sdks/generation/README.md#anchortypesget) * [arrayCircularReferenceGet](docs/sdks/generation/README.md#arraycircularreferenceget) @@ -291,37 +234,44 @@ try { * [typedParameterGenerationGet](docs/sdks/generation/README.md#typedparametergenerationget) * [usageExamplePost](docs/sdks/generation/README.md#usageexamplepost) - An operation used for testing usage examples -### [globals](docs/sdks/globals/README.md) - -* [globalPathParameterGet](docs/sdks/globals/README.md#globalpathparameterget) -* [globalsQueryParameterGet](docs/sdks/globals/README.md#globalsqueryparameterget) - -### [nest.first](docs/sdks/nestfirst/README.md) - -* [get](docs/sdks/nestfirst/README.md#get) - -### [nested](docs/sdks/nested/README.md) +### [Errors](docs/sdks/errors/README.md) -* [get](docs/sdks/nested/README.md#get) +* [connectionErrorGet](docs/sdks/errors/README.md#connectionerrorget) +* [statusGetError](docs/sdks/errors/README.md#statusgeterror) +* [statusGetXSpeakeasyErrors](docs/sdks/errors/README.md#statusgetxspeakeasyerrors) -### [nested.first](docs/sdks/nestedfirst/README.md) +### [Unions](docs/sdks/unions/README.md) -* [get](docs/sdks/nestedfirst/README.md#get) +* [flattenedTypedObjectPost](docs/sdks/unions/README.md#flattenedtypedobjectpost) +* [mixedTypeOneOfPost](docs/sdks/unions/README.md#mixedtypeoneofpost) +* [nullableOneOfRefInObjectPost](docs/sdks/unions/README.md#nullableoneofrefinobjectpost) +* [nullableOneOfSchemaPost](docs/sdks/unions/README.md#nullableoneofschemapost) +* [nullableOneOfTypeInObjectPost](docs/sdks/unions/README.md#nullableoneoftypeinobjectpost) +* [nullableTypedObjectPost](docs/sdks/unions/README.md#nullabletypedobjectpost) +* [primitiveTypeOneOfPost](docs/sdks/unions/README.md#primitivetypeoneofpost) +* [stronglyTypedOneOfPost](docs/sdks/unions/README.md#stronglytypedoneofpost) +* [typedObjectNullableOneOfPost](docs/sdks/unions/README.md#typedobjectnullableoneofpost) +* [typedObjectOneOfPost](docs/sdks/unions/README.md#typedobjectoneofpost) +* [unionBigIntDecimal](docs/sdks/unions/README.md#unionbigintdecimal) +* [unionDateNull](docs/sdks/unions/README.md#uniondatenull) +* [unionDateTimeBigInt](docs/sdks/unions/README.md#uniondatetimebigint) +* [unionDateTimeNull](docs/sdks/unions/README.md#uniondatetimenull) +* [weaklyTypedOneOfPost](docs/sdks/unions/README.md#weaklytypedoneofpost) -### [nested.second](docs/sdks/nestedsecond/README.md) +### [Flattening](docs/sdks/flattening/README.md) -* [get](docs/sdks/nestedsecond/README.md#get) +* [componentBodyAndParamConflict](docs/sdks/flattening/README.md#componentbodyandparamconflict) +* [componentBodyAndParamNoConflict](docs/sdks/flattening/README.md#componentbodyandparamnoconflict) +* [conflictingParams](docs/sdks/flattening/README.md#conflictingparams) +* [inlineBodyAndParamConflict](docs/sdks/flattening/README.md#inlinebodyandparamconflict) +* [inlineBodyAndParamNoConflict](docs/sdks/flattening/README.md#inlinebodyandparamnoconflict) -### [pagination](docs/sdks/pagination/README.md) +### [Globals](docs/sdks/globals/README.md) -* [paginationCursorBody](docs/sdks/pagination/README.md#paginationcursorbody) -* [paginationCursorParams](docs/sdks/pagination/README.md#paginationcursorparams) -* [paginationLimitOffsetOffsetBody](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetbody) -* [paginationLimitOffsetOffsetParams](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetparams) -* [paginationLimitOffsetPageBody](docs/sdks/pagination/README.md#paginationlimitoffsetpagebody) -* [paginationLimitOffsetPageParams](docs/sdks/pagination/README.md#paginationlimitoffsetpageparams) +* [globalPathParameterGet](docs/sdks/globals/README.md#globalpathparameterget) +* [globalsQueryParameterGet](docs/sdks/globals/README.md#globalsqueryparameterget) -### [parameters](docs/sdks/parameters/README.md) +### [Parameters](docs/sdks/parameters/README.md) * [deepObjectQueryParamsMap](docs/sdks/parameters/README.md#deepobjectqueryparamsmap) * [deepObjectQueryParamsObject](docs/sdks/parameters/README.md#deepobjectqueryparamsobject) @@ -347,7 +297,23 @@ try { * [simplePathParameterObjects](docs/sdks/parameters/README.md#simplepathparameterobjects) * [simplePathParameterPrimitives](docs/sdks/parameters/README.md#simplepathparameterprimitives) -### [requestBodies](docs/sdks/requestbodies/README.md) +### [NestFirst](docs/sdks/nestfirst/README.md) + +* [get](docs/sdks/nestfirst/README.md#get) + +### [Nested](docs/sdks/nested/README.md) + +* [get](docs/sdks/nested/README.md#get) + +### [NestedFirst](docs/sdks/nestedfirst/README.md) + +* [get](docs/sdks/nestedfirst/README.md#get) + +### [NestedSecond](docs/sdks/nestedsecond/README.md) + +* [get](docs/sdks/nestedsecond/README.md#get) + +### [RequestBodies](docs/sdks/requestbodies/README.md) * [nullableObjectPost](docs/sdks/requestbodies/README.md#nullableobjectpost) * [nullableRequiredEmptyObjectPost](docs/sdks/requestbodies/README.md#nullablerequiredemptyobjectpost) @@ -431,15 +397,7 @@ try { * [requestBodyWriteOnlyOutput](docs/sdks/requestbodies/README.md#requestbodywriteonlyoutput) * [requestBodyWriteOnlyUnion](docs/sdks/requestbodies/README.md#requestbodywriteonlyunion) -### [resource](docs/sdks/resource/README.md) - -* [createFile](docs/sdks/resource/README.md#createfile) -* [createResource](docs/sdks/resource/README.md#createresource) -* [deleteResource](docs/sdks/resource/README.md#deleteresource) -* [getResource](docs/sdks/resource/README.md#getresource) -* [updateResource](docs/sdks/resource/README.md#updateresource) - -### [responseBodies](docs/sdks/responsebodies/README.md) +### [ResponseBodies](docs/sdks/responsebodies/README.md) * [responseBodyAdditionalPropertiesComplexNumbersPost](docs/sdks/responsebodies/README.md#responsebodyadditionalpropertiescomplexnumberspost) * [responseBodyAdditionalPropertiesDatePost](docs/sdks/responsebodies/README.md#responsebodyadditionalpropertiesdatepost) @@ -453,15 +411,7 @@ try { * [responseBodyXmlGet](docs/sdks/responsebodies/README.md#responsebodyxmlget) * [responseBodyZeroValueComplexTypePtrsPost](docs/sdks/responsebodies/README.md#responsebodyzerovaluecomplextypeptrspost) -### [retries](docs/sdks/retries/README.md) - -* [retriesGet](docs/sdks/retries/README.md#retriesget) - -### [second](docs/sdks/second/README.md) - -* [get](docs/sdks/second/README.md#get) - -### [servers](docs/sdks/servers/README.md) +### [Servers](docs/sdks/servers/README.md) * [selectGlobalServer](docs/sdks/servers/README.md#selectglobalserver) * [selectServerWithID](docs/sdks/servers/README.md#selectserverwithid) - Select a server by ID. @@ -470,28 +420,68 @@ try { * [serverWithTemplatesGlobal](docs/sdks/servers/README.md#serverwithtemplatesglobal) * [serversByIDWithTemplates](docs/sdks/servers/README.md#serversbyidwithtemplates) -### [telemetry](docs/sdks/telemetry/README.md) +### [Telemetry](docs/sdks/telemetry/README.md) * [telemetrySpeakeasyUserAgentGet](docs/sdks/telemetry/README.md#telemetryspeakeasyuseragentget) * [telemetryUserAgentGet](docs/sdks/telemetry/README.md#telemetryuseragentget) -### [unions](docs/sdks/unions/README.md) +### [AuthNew](docs/sdks/authnew/README.md) -* [flattenedTypedObjectPost](docs/sdks/unions/README.md#flattenedtypedobjectpost) -* [mixedTypeOneOfPost](docs/sdks/unions/README.md#mixedtypeoneofpost) -* [nullableOneOfRefInObjectPost](docs/sdks/unions/README.md#nullableoneofrefinobjectpost) -* [nullableOneOfSchemaPost](docs/sdks/unions/README.md#nullableoneofschemapost) -* [nullableOneOfTypeInObjectPost](docs/sdks/unions/README.md#nullableoneoftypeinobjectpost) -* [nullableTypedObjectPost](docs/sdks/unions/README.md#nullabletypedobjectpost) -* [primitiveTypeOneOfPost](docs/sdks/unions/README.md#primitivetypeoneofpost) -* [stronglyTypedOneOfPost](docs/sdks/unions/README.md#stronglytypedoneofpost) -* [typedObjectNullableOneOfPost](docs/sdks/unions/README.md#typedobjectnullableoneofpost) -* [typedObjectOneOfPost](docs/sdks/unions/README.md#typedobjectoneofpost) -* [unionBigIntDecimal](docs/sdks/unions/README.md#unionbigintdecimal) -* [unionDateNull](docs/sdks/unions/README.md#uniondatenull) -* [unionDateTimeBigInt](docs/sdks/unions/README.md#uniondatetimebigint) -* [unionDateTimeNull](docs/sdks/unions/README.md#uniondatetimenull) -* [weaklyTypedOneOfPost](docs/sdks/unions/README.md#weaklytypedoneofpost) +* [apiKeyAuthGlobalNew](docs/sdks/authnew/README.md#apikeyauthglobalnew) +* [authGlobal](docs/sdks/authnew/README.md#authglobal) +* [basicAuthNew](docs/sdks/authnew/README.md#basicauthnew) +* [multipleMixedOptionsAuth](docs/sdks/authnew/README.md#multiplemixedoptionsauth) +* [multipleMixedSchemeAuth](docs/sdks/authnew/README.md#multiplemixedschemeauth) +* [multipleOptionsWithMixedSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithmixedschemesauth) +* [multipleOptionsWithSimpleSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithsimpleschemesauth) +* [multipleSimpleOptionsAuth](docs/sdks/authnew/README.md#multiplesimpleoptionsauth) +* [multipleSimpleSchemeAuth](docs/sdks/authnew/README.md#multiplesimpleschemeauth) +* [oauth2AuthNew](docs/sdks/authnew/README.md#oauth2authnew) +* [openIdConnectAuthNew](docs/sdks/authnew/README.md#openidconnectauthnew) + +### [Auth](docs/sdks/auth/README.md) + +* [apiKeyAuth](docs/sdks/auth/README.md#apikeyauth) +* [apiKeyAuthGlobal](docs/sdks/auth/README.md#apikeyauthglobal) +* [basicAuth](docs/sdks/auth/README.md#basicauth) +* [bearerAuth](docs/sdks/auth/README.md#bearerauth) +* [globalBearerAuth](docs/sdks/auth/README.md#globalbearerauth) +* [oauth2Auth](docs/sdks/auth/README.md#oauth2auth) +* [oauth2Override](docs/sdks/auth/README.md#oauth2override) +* [openIdConnectAuth](docs/sdks/auth/README.md#openidconnectauth) + +### [Documentation](docs/sdks/documentation/README.md) + +* [getDocumentationPerLanguage](docs/sdks/documentation/README.md#getdocumentationperlanguage) - Gets documentation for some language, I guess. + +### [Resource](docs/sdks/resource/README.md) + +* [createFile](docs/sdks/resource/README.md#createfile) +* [createResource](docs/sdks/resource/README.md#createresource) +* [deleteResource](docs/sdks/resource/README.md#deleteresource) +* [getResource](docs/sdks/resource/README.md#getresource) +* [updateResource](docs/sdks/resource/README.md#updateresource) + +### [First](docs/sdks/first/README.md) + +* [get](docs/sdks/first/README.md#get) + +### [Second](docs/sdks/second/README.md) + +* [get](docs/sdks/second/README.md#get) + +### [Pagination](docs/sdks/pagination/README.md) + +* [paginationCursorBody](docs/sdks/pagination/README.md#paginationcursorbody) +* [paginationCursorParams](docs/sdks/pagination/README.md#paginationcursorparams) +* [paginationLimitOffsetOffsetBody](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetbody) +* [paginationLimitOffsetOffsetParams](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetparams) +* [paginationLimitOffsetPageBody](docs/sdks/pagination/README.md#paginationlimitoffsetpagebody) +* [paginationLimitOffsetPageParams](docs/sdks/pagination/README.md#paginationlimitoffsetpageparams) + +### [Retries](docs/sdks/retries/README.md) + +* [retriesGet](docs/sdks/retries/README.md#retriesget) @@ -529,14 +519,14 @@ The following global parameters are available. The required parameters must be s declare(strict_types=1); require_once 'vendor/autoload.php'; -use OpenAPI\OpenAPI\SDK; -use OpenAPI\OpenAPI\Models\Shared\Security; -use OpenAPI\OpenAPI\Models\Operations\GlobalPathParameterGetRequest; +use OpenAPI\OpenAPI; +use OpenAPI\OpenAPI\Models\Shared; +use OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -561,14 +551,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use OpenAPI\OpenAPI\SDK; -use OpenAPI\OpenAPI\Models\Shared\Security; -use OpenAPI\OpenAPI\Models\Operations\GlobalsQueryParameterGetRequest; +use OpenAPI\OpenAPI; +use OpenAPI\OpenAPI\Models\Shared; +use OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/USAGE.md b/php-client-sdk/USAGE.md index c4aef818e..5e2af62dc 100755 --- a/php-client-sdk/USAGE.md +++ b/php-client-sdk/USAGE.md @@ -7,20 +7,20 @@ declare(strict_types=1); require_once 'vendor/autoload.php'; -use OpenAPI\OpenAPI\SDK; -use OpenAPI\OpenAPI\Models\Shared\Security; +use OpenAPI\OpenAPI; +use OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $response = $sdk->generation->globalNameOverridden(); - if ($response->getGlobalNameOverride200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -38,26 +38,16 @@ Do this second declare(strict_types=1); require_once 'vendor/autoload.php'; -use OpenAPI\OpenAPI\SDK; -use OpenAPI\OpenAPI\Models\Shared\Security; -use OpenAPI\OpenAPI\Models\Operations\UsageExamplePostRequest; -use OpenAPI\OpenAPI\Models\Operations\UsageExamplePostRequestBody; -use OpenAPI\OpenAPI\Models\Shared\FakerFormattedStrings; -use OpenAPI\OpenAPI\Models\Shared\FakerStrings; -use OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use OpenAPI\OpenAPI\Models\Shared\Enum; -use OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; -use OpenAPI\OpenAPI\Models\Operations\UsageExamplePostEnumParameter; -use OpenAPI\OpenAPI\Models\Operations\UsageExamplePostOptEnumParameter; -use OpenAPI\OpenAPI\Models\Operations\UsageExamplePostSecurity; - -$sdk = SDK::builder()->build(); +use OpenAPI\OpenAPI; +use OpenAPI\OpenAPI\Models\Shared; +use OpenAPI\OpenAPI\Models\Operations; + +$sdk = OpenAPI\SDK::builder()->build(); try { - $request = new UsageExamplePostRequest(); - $request->requestBody = new UsageExamplePostRequestBody(); - $request->requestBody->fakerFormattedStrings = new FakerFormattedStrings(); + $request = new Operations\UsageExamplePostRequest(); + $request->requestBody = new Operations\UsageExamplePostRequestBody(); + $request->requestBody->fakerFormattedStrings = new Shared\FakerFormattedStrings(); $request->requestBody->fakerFormattedStrings->addressFormat = '48525 Maude Fall'; $request->requestBody->fakerFormattedStrings->directoryFormat = '/etc/defaults'; $request->requestBody->fakerFormattedStrings->domainFormat = 'next-conflict.name'; @@ -79,7 +69,7 @@ try { $request->requestBody->fakerFormattedStrings->uuidFormat = '342442b8-aff3-42e0-b62d-e2e2d47a9bf1'; $request->requestBody->fakerFormattedStrings->zipcodeFormat = '09432'; - $request->requestBody->fakerStrings = new FakerStrings(); + $request->requestBody->fakerStrings = new Shared\FakerStrings(); $request->requestBody->fakerStrings->city = 'McLaughlinchester'; $request->requestBody->fakerStrings->iban = 'TL232743267267003560099'; $request->requestBody->fakerStrings->id = ''; @@ -134,7 +124,7 @@ try { $request->requestBody->fakerStrings->url = 'https://crooked-dulcimer.name'; $request->requestBody->fakerStrings->username = 'Mable76'; $request->requestBody->fakerStrings->uuid = '16b919d6-51cd-4e97-81e2-5221b7b6969f'; - $request->requestBody->simpleObject = new SimpleObject(); + $request->requestBody->simpleObject = new Shared\SimpleObject(); $request->requestBody->simpleObject->any = 'any'; $request->requestBody->simpleObject->bigint = 8821239038968084; $request->requestBody->simpleObject->bigintStr = '9223372036854775808'; @@ -147,12 +137,12 @@ try { ); $request->requestBody->simpleObject->decimal = 3.141592653589793; $request->requestBody->simpleObject->decimalStr = '3.14159265358979344719667586'; - $request->requestBody->simpleObject->enum = Enum::One; + $request->requestBody->simpleObject->enum = Shared\Enum::One; $request->requestBody->simpleObject->float32 = 1.1; $request->requestBody->simpleObject->int = 1; $request->requestBody->simpleObject->int32 = 1; - $request->requestBody->simpleObject->int32Enum = SimpleObjectInt32Enum::OneHundredAndEightyOne; - $request->requestBody->simpleObject->intEnum = SimpleObjectIntEnum::Second; + $request->requestBody->simpleObject->int32Enum = Shared\Int32Enum::OneHundredAndEightyOne; + $request->requestBody->simpleObject->intEnum = Shared\IntEnum::Second; $request->requestBody->simpleObject->intOptNull = 165468; $request->requestBody->simpleObject->num = 1.1; $request->requestBody->simpleObject->numOptNull = 5944.32; @@ -177,22 +167,22 @@ try { $request->decimalStrParameter = 'string'; $request->decimalStrParameterOptional = 'string'; $request->doubleParameter = 8700.78; - $request->enumParameter = UsageExamplePostEnumParameter::Value2; + $request->enumParameter = Operations\EnumParameter::Value2; $request->falseyNumberParameter = 0; $request->float32Parameter = 1341.86; $request->floatParameter = 5429.24; $request->int64Parameter = 101970; $request->intParameter = 938852; - $request->optEnumParameter = UsageExamplePostOptEnumParameter::Value3; + $request->optEnumParameter = Operations\OptEnumParameter::Value3; $request->strParameter = 'example 3'; - $requestSecurity = new UsageExamplePostSecurity(); + $requestSecurity = new Operations\UsageExamplePostSecurity(); $requestSecurity->password = 'YOUR_PASSWORD'; $requestSecurity->username = 'YOUR_USERNAME'; $response = $sdk->generation->usageExamplePost($request, $requestSecurity); - if ($response->usageExamplePost200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { diff --git a/php-client-sdk/docs/models/operations/AnchorTypesGetResponse.md b/php-client-sdk/docs/models/operations/AnchorTypesGetResponse.md index 74767591b..fa3cc1485 100755 --- a/php-client-sdk/docs/models/operations/AnchorTypesGetResponse.md +++ b/php-client-sdk/docs/models/operations/AnchorTypesGetResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `typeFromAnchor` | [?TypeFromAnchor](../../models/operations/TypeFromAnchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `typeFromAnchor` | [?\OpenAPI\OpenAPI\Models\Operations\AnchorTypesGetTypeFromAnchor](../../models/operations/AnchorTypesGetTypeFromAnchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/AnchorTypesGetTypeFromAnchor.md b/php-client-sdk/docs/models/operations/AnchorTypesGetTypeFromAnchor.md new file mode 100755 index 000000000..8e617460d --- /dev/null +++ b/php-client-sdk/docs/models/operations/AnchorTypesGetTypeFromAnchor.md @@ -0,0 +1,10 @@ +# AnchorTypesGetTypeFromAnchor + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [?\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ApiKeyAuthGlobalResponse.md b/php-client-sdk/docs/models/operations/ApiKeyAuthGlobalResponse.md index 8060aee06..38854da9c 100755 --- a/php-client-sdk/docs/models/operations/ApiKeyAuthGlobalResponse.md +++ b/php-client-sdk/docs/models/operations/ApiKeyAuthGlobalResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [?ApiKeyAuthGlobalToken](../../models/operations/ApiKeyAuthGlobalToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [?\OpenAPI\OpenAPI\Models\Operations\ApiKeyAuthGlobalToken](../../models/operations/ApiKeyAuthGlobalToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ApiKeyAuthResponse.md b/php-client-sdk/docs/models/operations/ApiKeyAuthResponse.md index ceccb05ab..c81be94df 100755 --- a/php-client-sdk/docs/models/operations/ApiKeyAuthResponse.md +++ b/php-client-sdk/docs/models/operations/ApiKeyAuthResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [?ApiKeyAuthToken](../../models/operations/ApiKeyAuthToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| `token` | [?\OpenAPI\OpenAPI\Models\Operations\ApiKeyAuthToken](../../models/operations/ApiKeyAuthToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/Args.md b/php-client-sdk/docs/models/operations/Args.md new file mode 100755 index 000000000..2b0646d1c --- /dev/null +++ b/php-client-sdk/docs/models/operations/Args.md @@ -0,0 +1,8 @@ +# Args + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `globalQueryParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/BasicAuthResponse.md b/php-client-sdk/docs/models/operations/BasicAuthResponse.md index 0e2ac7e7f..49209bdce 100755 --- a/php-client-sdk/docs/models/operations/BasicAuthResponse.md +++ b/php-client-sdk/docs/models/operations/BasicAuthResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `user` | [?BasicAuthUser](../../models/operations/BasicAuthUser.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| `user` | [?\OpenAPI\OpenAPI\Models\Operations\BasicAuthUser](../../models/operations/BasicAuthUser.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/BearerAuthResponse.md b/php-client-sdk/docs/models/operations/BearerAuthResponse.md index 58e67b9ff..f184fb0dd 100755 --- a/php-client-sdk/docs/models/operations/BearerAuthResponse.md +++ b/php-client-sdk/docs/models/operations/BearerAuthResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [?BearerAuthToken](../../models/operations/BearerAuthToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| `token` | [?\OpenAPI\OpenAPI\Models\Operations\BearerAuthToken](../../models/operations/BearerAuthToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ComponentBodyAndParamConflictResponse.md b/php-client-sdk/docs/models/operations/ComponentBodyAndParamConflictResponse.md index 8ec573961..09c3d5827 100755 --- a/php-client-sdk/docs/models/operations/ComponentBodyAndParamConflictResponse.md +++ b/php-client-sdk/docs/models/operations/ComponentBodyAndParamConflictResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?ComponentBodyAndParamConflictRes](../../models/operations/ComponentBodyAndParamConflictRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\ComponentBodyAndParamConflictRes](../../models/operations/ComponentBodyAndParamConflictRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ComponentBodyAndParamNoConflictResponse.md b/php-client-sdk/docs/models/operations/ComponentBodyAndParamNoConflictResponse.md index b29aa9188..5c8e062fd 100755 --- a/php-client-sdk/docs/models/operations/ComponentBodyAndParamNoConflictResponse.md +++ b/php-client-sdk/docs/models/operations/ComponentBodyAndParamNoConflictResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?ComponentBodyAndParamNoConflictRes](../../models/operations/ComponentBodyAndParamNoConflictRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\ComponentBodyAndParamNoConflictRes](../../models/operations/ComponentBodyAndParamNoConflictRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ConflictingParamsResponse.md b/php-client-sdk/docs/models/operations/ConflictingParamsResponse.md index 45cb69717..5088cb263 100755 --- a/php-client-sdk/docs/models/operations/ConflictingParamsResponse.md +++ b/php-client-sdk/docs/models/operations/ConflictingParamsResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?ConflictingParamsRes](../../models/operations/ConflictingParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\ConflictingParamsRes](../../models/operations/ConflictingParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/CreateFileFile.md b/php-client-sdk/docs/models/operations/CreateFileFile.md new file mode 100755 index 000000000..05b894b47 --- /dev/null +++ b/php-client-sdk/docs/models/operations/CreateFileFile.md @@ -0,0 +1,9 @@ +# CreateFileFile + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *string* | :heavy_check_mark: | N/A | +| `fileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/CreateFileRequestBody.md b/php-client-sdk/docs/models/operations/CreateFileRequestBody.md index ae8b377cb..0fab9b8b5 100755 --- a/php-client-sdk/docs/models/operations/CreateFileRequestBody.md +++ b/php-client-sdk/docs/models/operations/CreateFileRequestBody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| `file` | [?CreateFileRequestBodyFile](../../models/operations/CreateFileRequestBodyFile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `file` | [?\OpenAPI\OpenAPI\Models\Operations\CreateFileFile](../../models/operations/CreateFileFile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/CreateFileRequestBodyFile.md b/php-client-sdk/docs/models/operations/CreateFileRequestBodyFile.md deleted file mode 100755 index fe8457616..000000000 --- a/php-client-sdk/docs/models/operations/CreateFileRequestBodyFile.md +++ /dev/null @@ -1,9 +0,0 @@ -# CreateFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content` | *string* | :heavy_check_mark: | N/A | -| `file` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsMapResponse.md b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsMapResponse.md index d16fa3362..5333ce47e 100755 --- a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsMapResponse.md +++ b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsMapResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?DeepObjectQueryParamsMapRes](../../models/operations/DeepObjectQueryParamsMapRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsMapRes](../../models/operations/DeepObjectQueryParamsMapRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectArgs.md b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectArgs.md new file mode 100755 index 000000000..c029f92a3 --- /dev/null +++ b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectArgs.md @@ -0,0 +1,26 @@ +# DeepObjectQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | +| `objArrParamArr` | array<*string*> | :heavy_check_mark: | N/A | | +| `objParamAny` | *string* | :heavy_check_mark: | N/A | any | +| `objParamBigintStr` | *?string* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `objParamBigint` | *?string* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `objParamBoolOpt` | *string* | :heavy_check_mark: | N/A | true | +| `objParamBool` | *string* | :heavy_check_mark: | N/A | true | +| `objParamDateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `objParamDate` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | +| `objParamDecimalStr` | *?string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `objParamDecimal` | *?string* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `objParamEnum` | *string* | :heavy_check_mark: | N/A | one | +| `objParamFloat32` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `objParamInt32Enum` | *string* | :heavy_check_mark: | N/A | 55 | +| `objParamInt32` | *string* | :heavy_check_mark: | N/A | 1 | +| `objParamIntEnum` | *string* | :heavy_check_mark: | N/A | 2 | +| `objParamInt` | *string* | :heavy_check_mark: | N/A | 1 | +| `objParamNum` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `objParamStrOpt` | *string* | :heavy_check_mark: | N/A | testOptional | +| `objParamStr` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md deleted file mode 100755 index 2b4500dd9..000000000 --- a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md +++ /dev/null @@ -1,8 +0,0 @@ -# DeepObjectQueryParamsObjectObjArrParam - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | array<*string*> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md index 4ae72668d..ee840483d 100755 --- a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md +++ b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `objParam` | [\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `objArrParam` | [?DeepObjectQueryParamsObjectObjArrParam](../../models/operations/DeepObjectQueryParamsObjectObjArrParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `objParam` | [\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `objArrParam` | [?\OpenAPI\OpenAPI\Models\Operations\ObjArrParam](../../models/operations/ObjArrParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md index ff6eb3a85..533ab6833 100755 --- a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md +++ b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [DeepObjectQueryParamsObjectResArgs](../../models/operations/DeepObjectQueryParamsObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectArgs](../../models/operations/DeepObjectQueryParamsObjectArgs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/deepObject/obj?objArrParam[arr]=test&objArrParam[arr]=test2&objParam[any]=any&objParam[bigintStr]=9223372036854775808&objParam[bigint]=8821239038968084&objParam[boolOpt]=true&objParam[bool]=true&objParam[dateTime]=2020-01-01T00%3A00%3A00.000000001Z&objParam[date]=2020-01-01&objParam[decimalStr]=3.14159265358979344719667586&objParam[decimal]=3.141592653589793&objParam[enum]=one&objParam[float32]=1.1&objParam[int32Enum]=55&objParam[int32]=1&objParam[intEnum]=2&objParam[int]=1&objParam[num]=1.1&objParam[strOpt]=testOptional&objParam[str]=test | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResArgs.md b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResArgs.md deleted file mode 100755 index 5e2bd20b8..000000000 --- a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResArgs.md +++ /dev/null @@ -1,26 +0,0 @@ -# DeepObjectQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | -| `objArrParamArr` | array<*string*> | :heavy_check_mark: | N/A | | -| `objParamAny` | *string* | :heavy_check_mark: | N/A | any | -| `objParamBigintStr` | *?string* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `objParamBigint` | *?string* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `objParamBoolOpt` | *string* | :heavy_check_mark: | N/A | true | -| `objParamBool` | *string* | :heavy_check_mark: | N/A | true | -| `objParamDateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `objParamDate` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | -| `objParamDecimalStr` | *?string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `objParamDecimal` | *?string* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `objParamEnum` | *string* | :heavy_check_mark: | N/A | one | -| `objParamFloat32` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `objParamInt32Enum` | *string* | :heavy_check_mark: | N/A | 55 | -| `objParamInt32` | *string* | :heavy_check_mark: | N/A | 1 | -| `objParamIntEnum` | *string* | :heavy_check_mark: | N/A | 2 | -| `objParamInt` | *string* | :heavy_check_mark: | N/A | 1 | -| `objParamNum` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `objParamStrOpt` | *string* | :heavy_check_mark: | N/A | testOptional | -| `objParamStr` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResponse.md b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResponse.md index bd4bd9c74..6084854ad 100755 --- a/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResponse.md +++ b/php-client-sdk/docs/models/operations/DeepObjectQueryParamsObjectResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?DeepObjectQueryParamsObjectRes](../../models/operations/DeepObjectQueryParamsObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectRes](../../models/operations/DeepObjectQueryParamsObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md b/php-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md deleted file mode 100755 index 14cc451f4..000000000 --- a/php-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# DeprecatedObjectInSchemaGet200ApplicationJSON - -A successful response that contains a deprecatedObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| ~~`json`~~ | [?\OpenAPI\OpenAPI\Models\Shared\DeprecatedObject](../../models/shared/DeprecatedObject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md b/php-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md index 1fe769c1c..4c8c8629c 100755 --- a/php-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md +++ b/php-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `deprecatedObjectInSchemaGet200ApplicationJSONObject` | [?DeprecatedObjectInSchemaGet200ApplicationJSON](../../models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\DeprecatedObjectInSchemaGetResponseBody](../../models/operations/DeprecatedObjectInSchemaGetResponseBody.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md b/php-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md new file mode 100755 index 000000000..5e3f25018 --- /dev/null +++ b/php-client-sdk/docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md @@ -0,0 +1,10 @@ +# DeprecatedObjectInSchemaGetResponseBody + +A successful response that contains a deprecatedObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | +| ~~`json`~~ | [?\OpenAPI\OpenAPI\Models\Shared\DeprecatedObject](../../models/shared/DeprecatedObject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DifferentFileName.md b/php-client-sdk/docs/models/operations/DifferentFileName.md new file mode 100755 index 000000000..dc5250745 --- /dev/null +++ b/php-client-sdk/docs/models/operations/DifferentFileName.md @@ -0,0 +1,9 @@ +# DifferentFileName + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *string* | :heavy_check_mark: | N/A | +| `fileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/DuplicateParamResponse.md b/php-client-sdk/docs/models/operations/DuplicateParamResponse.md index dc54e8ad3..83df369ed 100755 --- a/php-client-sdk/docs/models/operations/DuplicateParamResponse.md +++ b/php-client-sdk/docs/models/operations/DuplicateParamResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `duplicateParamResponse` | [?DuplicateParamDuplicateParamResponse](../../models/operations/DuplicateParamDuplicateParamResponse.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `duplicateParamResponse` | [?\OpenAPI\OpenAPI\Models\Operations\DuplicateParamDuplicateParamResponse](../../models/operations/DuplicateParamDuplicateParamResponse.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/EmptyRespWithEmptyProperies.md b/php-client-sdk/docs/models/operations/EmptyRespWithEmptyProperies.md new file mode 100755 index 000000000..1da3e5d24 --- /dev/null +++ b/php-client-sdk/docs/models/operations/EmptyRespWithEmptyProperies.md @@ -0,0 +1,7 @@ +# EmptyRespWithEmptyProperies + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md b/php-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md deleted file mode 100755 index bbddca47a..000000000 --- a/php-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md +++ /dev/null @@ -1,9 +0,0 @@ -# EmptyResponseObjectWithCommentGet200ApplicationOctetStream - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md b/php-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md new file mode 100755 index 000000000..5098e6819 --- /dev/null +++ b/php-client-sdk/docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md @@ -0,0 +1,9 @@ +# EmptyResponseObjectWithCommentGetResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/EmptyT.md b/php-client-sdk/docs/models/operations/EmptyT.md new file mode 100755 index 000000000..805929542 --- /dev/null +++ b/php-client-sdk/docs/models/operations/EmptyT.md @@ -0,0 +1,7 @@ +# EmptyT + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/EmptyWithEmptyProperties.md b/php-client-sdk/docs/models/operations/EmptyWithEmptyProperties.md new file mode 100755 index 000000000..535ae89ed --- /dev/null +++ b/php-client-sdk/docs/models/operations/EmptyWithEmptyProperties.md @@ -0,0 +1,7 @@ +# EmptyWithEmptyProperties + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/EnumNameOverride.md b/php-client-sdk/docs/models/operations/EnumNameOverride.md new file mode 100755 index 000000000..214bf6347 --- /dev/null +++ b/php-client-sdk/docs/models/operations/EnumNameOverride.md @@ -0,0 +1,12 @@ +# EnumNameOverride + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `Value1` | value1 | +| `Value2` | value2 | +| `Value3` | value3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/EnumParameter.md b/php-client-sdk/docs/models/operations/EnumParameter.md new file mode 100755 index 000000000..ddb69e96e --- /dev/null +++ b/php-client-sdk/docs/models/operations/EnumParameter.md @@ -0,0 +1,12 @@ +# EnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `Value1` | value1 | +| `Value2` | value2 | +| `Value3` | value3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/File.md b/php-client-sdk/docs/models/operations/File.md new file mode 100755 index 000000000..5e7169524 --- /dev/null +++ b/php-client-sdk/docs/models/operations/File.md @@ -0,0 +1,9 @@ +# File + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *string* | :heavy_check_mark: | N/A | +| `fileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FlattenedTypedObjectPostResponse.md b/php-client-sdk/docs/models/operations/FlattenedTypedObjectPostResponse.md index a6d68b483..c6794c0a0 100755 --- a/php-client-sdk/docs/models/operations/FlattenedTypedObjectPostResponse.md +++ b/php-client-sdk/docs/models/operations/FlattenedTypedObjectPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?FlattenedTypedObjectPostRes](../../models/operations/FlattenedTypedObjectPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\FlattenedTypedObjectPostRes](../../models/operations/FlattenedTypedObjectPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/Form.md b/php-client-sdk/docs/models/operations/Form.md new file mode 100755 index 000000000..5cd1b6713 --- /dev/null +++ b/php-client-sdk/docs/models/operations/Form.md @@ -0,0 +1,14 @@ +# Form + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | *string* | :heavy_check_mark: | N/A | +| `bool` | *string* | :heavy_check_mark: | N/A | +| `int` | *string* | :heavy_check_mark: | N/A | +| `map` | *string* | :heavy_check_mark: | N/A | +| `num` | *string* | :heavy_check_mark: | N/A | +| `obj` | *string* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsArrayArgs.md b/php-client-sdk/docs/models/operations/FormQueryParamsArrayArgs.md new file mode 100755 index 000000000..304e7b500 --- /dev/null +++ b/php-client-sdk/docs/models/operations/FormQueryParamsArrayArgs.md @@ -0,0 +1,9 @@ +# FormQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `arrParam` | *string* | :heavy_check_mark: | N/A | test,test2 | +| `arrParamExploded` | array<*string*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md b/php-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md index bf21eced2..90836e957 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsArrayRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | -| `args` | [FormQueryParamsArrayResArgs](../../models/operations/FormQueryParamsArrayResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsArrayArgs](../../models/operations/FormQueryParamsArrayArgs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/array?arrParam=test%2Ctest2&arrParamExploded=1&arrParamExploded=2 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsArrayResArgs.md b/php-client-sdk/docs/models/operations/FormQueryParamsArrayResArgs.md deleted file mode 100755 index 0865b298f..000000000 --- a/php-client-sdk/docs/models/operations/FormQueryParamsArrayResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `arrParam` | *string* | :heavy_check_mark: | N/A | test,test2 | -| `arrParamExploded` | array<*string*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsArrayResponse.md b/php-client-sdk/docs/models/operations/FormQueryParamsArrayResponse.md index 23308685c..1aedbedb9 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsArrayResponse.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsArrayResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?FormQueryParamsArrayRes](../../models/operations/FormQueryParamsArrayRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsArrayRes](../../models/operations/FormQueryParamsArrayRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectArgs.md b/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectArgs.md new file mode 100755 index 000000000..96dd24d7a --- /dev/null +++ b/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectArgs.md @@ -0,0 +1,9 @@ +# FormQueryParamsCamelObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `itemCount` | *string* | :heavy_check_mark: | N/A | 10 | +| `searchTerm` | *string* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParam.md b/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParam.md deleted file mode 100755 index 6151e2811..000000000 --- a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParam.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParam - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `encodedCount` | *?string* | :heavy_minus_sign: | N/A | 11 | -| `encodedTerm` | *?string* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md b/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md deleted file mode 100755 index cff61c8bb..000000000 --- a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParamExploded - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `itemCount` | *?string* | :heavy_minus_sign: | N/A | 10 | -| `searchTerm` | *?string* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md b/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md index b2ecda3b2..75c53dc86 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `objParamExploded` | [FormQueryParamsCamelObjectObjParamExploded](../../models/operations/FormQueryParamsCamelObjectObjParamExploded.md) | :heavy_check_mark: | N/A | -| `objParam` | [?FormQueryParamsCamelObjectObjParam](../../models/operations/FormQueryParamsCamelObjectObjParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `objParamExploded` | [\OpenAPI\OpenAPI\Models\Operations\ObjParamExploded](../../models/operations/ObjParamExploded.md) | :heavy_check_mark: | N/A | +| `objParam` | [?\OpenAPI\OpenAPI\Models\Operations\ObjParam](../../models/operations/ObjParam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md b/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md index de0cca66c..08293d7d2 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsCamelObjectResArgs](../../models/operations/FormQueryParamsCamelObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectArgs](../../models/operations/FormQueryParamsCamelObjectArgs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/camelObj?item_count=10&obj_param=encoded_count%2C11%2Cencoded_term%2Cbar&search_term=foo | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResArgs.md b/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResArgs.md deleted file mode 100755 index 4b29bf886..000000000 --- a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `itemCount` | *string* | :heavy_check_mark: | N/A | 10 | -| `searchTerm` | *string* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResponse.md b/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResponse.md index 46a837a55..5408c751f 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResponse.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsCamelObjectResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?FormQueryParamsCamelObjectRes](../../models/operations/FormQueryParamsCamelObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectRes](../../models/operations/FormQueryParamsCamelObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsMapResponse.md b/php-client-sdk/docs/models/operations/FormQueryParamsMapResponse.md index b18777d2a..74be1e1c2 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsMapResponse.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsMapResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?FormQueryParamsMapRes](../../models/operations/FormQueryParamsMapRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsMapRes](../../models/operations/FormQueryParamsMapRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsObjectArgs.md b/php-client-sdk/docs/models/operations/FormQueryParamsObjectArgs.md new file mode 100755 index 000000000..e801c7c5d --- /dev/null +++ b/php-client-sdk/docs/models/operations/FormQueryParamsObjectArgs.md @@ -0,0 +1,28 @@ +# FormQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `any` | *string* | :heavy_check_mark: | N/A | any | +| `bigint` | *?string* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `bigintStr` | *?string* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `bool` | *string* | :heavy_check_mark: | N/A | true | +| `boolOpt` | *?string* | :heavy_minus_sign: | N/A | true | +| `date` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | +| `dateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `decimal` | *?string* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `decimalStr` | *?string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `enum` | *string* | :heavy_check_mark: | N/A | one | +| `float32` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `int` | *string* | :heavy_check_mark: | N/A | 1 | +| `int32` | *string* | :heavy_check_mark: | N/A | 1 | +| `int32Enum` | *string* | :heavy_check_mark: | N/A | 55 | +| `intEnum` | *string* | :heavy_check_mark: | N/A | 2 | +| `intOptNull` | *?string* | :heavy_minus_sign: | N/A | | +| `num` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `numOptNull` | *?string* | :heavy_minus_sign: | N/A | | +| `objParam` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `str` | *string* | :heavy_check_mark: | N/A | test | +| `strOpt` | *?string* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md b/php-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md index a16b33361..988c021a3 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsObjectResArgs](../../models/operations/FormQueryParamsObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsObjectArgs](../../models/operations/FormQueryParamsObjectArgs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/obj?any=any&bigint=8821239038968084&bigintStr=9223372036854775808&bool=true&boolOpt=true&date=2020-01-01&dateTime=2020-01-01T00%3A00%3A00.000000001Z&decimal=3.141592653589793&decimalStr=3.14159265358979344719667586&enum=one&float32=1.1&int=1&int32=1&int32Enum=55&intEnum=2&num=1.1&objParam=any%2Cany%2Cbigint%2C8821239038968084%2CbigintStr%2C9223372036854775808%2Cbool%2Ctrue%2CboolOpt%2Ctrue%2Cdate%2C2020-01-01%2CdateTime%2C2020-01-01T00%3A00%3A00.000000001Z%2Cdecimal%2C3.141592653589793%2CdecimalStr%2C3.14159265358979344719667586%2Cenum%2Cone%2Cfloat32%2C1.1%2Cint%2C1%2Cint32%2C1%2Cint32Enum%2C55%2CintEnum%2C2%2Cnum%2C1.1%2Cstr%2Ctest%2CstrOpt%2CtestOptional&str=test&strOpt=testOptional | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsObjectResArgs.md b/php-client-sdk/docs/models/operations/FormQueryParamsObjectResArgs.md deleted file mode 100755 index 24814a277..000000000 --- a/php-client-sdk/docs/models/operations/FormQueryParamsObjectResArgs.md +++ /dev/null @@ -1,28 +0,0 @@ -# FormQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `any` | *string* | :heavy_check_mark: | N/A | any | -| `bigint` | *?string* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `bigintStr` | *?string* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `bool` | *string* | :heavy_check_mark: | N/A | true | -| `boolOpt` | *?string* | :heavy_minus_sign: | N/A | true | -| `date` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | -| `dateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `decimal` | *?string* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `decimalStr` | *?string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `enum` | *string* | :heavy_check_mark: | N/A | one | -| `float32` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `int` | *string* | :heavy_check_mark: | N/A | 1 | -| `int32` | *string* | :heavy_check_mark: | N/A | 1 | -| `int32Enum` | *string* | :heavy_check_mark: | N/A | 55 | -| `intEnum` | *string* | :heavy_check_mark: | N/A | 2 | -| `intOptNull` | *?string* | :heavy_minus_sign: | N/A | | -| `num` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `numOptNull` | *?string* | :heavy_minus_sign: | N/A | | -| `objParam` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `str` | *string* | :heavy_check_mark: | N/A | test | -| `strOpt` | *?string* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsObjectResponse.md b/php-client-sdk/docs/models/operations/FormQueryParamsObjectResponse.md index 9dc19cd66..e95d0b0cc 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsObjectResponse.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsObjectResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?FormQueryParamsObjectRes](../../models/operations/FormQueryParamsObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsObjectRes](../../models/operations/FormQueryParamsObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveArgs.md b/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveArgs.md new file mode 100755 index 000000000..7a7793a16 --- /dev/null +++ b/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveArgs.md @@ -0,0 +1,11 @@ +# FormQueryParamsPrimitiveArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `boolParam` | *string* | :heavy_check_mark: | N/A | true | +| `intParam` | *string* | :heavy_check_mark: | N/A | 1 | +| `numParam` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `strParam` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md b/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md index 51bd2ae2a..ce0ca3aed 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsPrimitiveResArgs](../../models/operations/FormQueryParamsPrimitiveResArgs.md) | :heavy_check_mark: | N/A | | -| `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/primitive?boolParam=true&intParam=1&numParam=1.1&strParam=test | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsPrimitiveArgs](../../models/operations/FormQueryParamsPrimitiveArgs.md) | :heavy_check_mark: | N/A | | +| `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/primitive?boolParam=true&intParam=1&numParam=1.1&strParam=test | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResArgs.md b/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResArgs.md deleted file mode 100755 index b8e1f112b..000000000 --- a/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResArgs.md +++ /dev/null @@ -1,11 +0,0 @@ -# FormQueryParamsPrimitiveResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `boolParam` | *string* | :heavy_check_mark: | N/A | true | -| `intParam` | *string* | :heavy_check_mark: | N/A | 1 | -| `numParam` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `strParam` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResponse.md b/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResponse.md index c9da76309..b4fabeeab 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResponse.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsPrimitiveResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?FormQueryParamsPrimitiveRes](../../models/operations/FormQueryParamsPrimitiveRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsPrimitiveRes](../../models/operations/FormQueryParamsPrimitiveRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectArgs.md b/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectArgs.md new file mode 100755 index 000000000..de488ab35 --- /dev/null +++ b/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectArgs.md @@ -0,0 +1,12 @@ +# FormQueryParamsRefParamObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | +| `bool` | *string* | :heavy_check_mark: | N/A | true | +| `int` | *string* | :heavy_check_mark: | N/A | 1 | +| `num` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `refObjParam` | *string* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | +| `str` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md b/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md index 0454b7f52..18cafc13d 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsRefParamObjectResArgs](../../models/operations/FormQueryParamsRefParamObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsRefParamObjectArgs](../../models/operations/FormQueryParamsRefParamObjectArgs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/refParamObject?bool=true&int=1&num=1.1&refObjParam=bool%2Ctrue%2Cint%2C1%2Cnum%2C1.1%2Cstr%2Ctest&str=test | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResArgs.md b/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResArgs.md deleted file mode 100755 index 3dd0abd6d..000000000 --- a/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResArgs.md +++ /dev/null @@ -1,12 +0,0 @@ -# FormQueryParamsRefParamObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -| `bool` | *string* | :heavy_check_mark: | N/A | true | -| `int` | *string* | :heavy_check_mark: | N/A | 1 | -| `num` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `refObjParam` | *string* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | -| `str` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResponse.md b/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResponse.md index 9fc133f33..f113f9af5 100755 --- a/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResponse.md +++ b/php-client-sdk/docs/models/operations/FormQueryParamsRefParamObjectResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?FormQueryParamsRefParamObjectRes](../../models/operations/FormQueryParamsRefParamObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsRefParamObjectRes](../../models/operations/FormQueryParamsRefParamObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md b/php-client-sdk/docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md deleted file mode 100755 index 82e363b9d..000000000 --- a/php-client-sdk/docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# GetGlobalNameOverride200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [?\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md b/php-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md index c26e3a57f..de8d5f279 100755 --- a/php-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md +++ b/php-client-sdk/docs/models/operations/GetGlobalNameOverrideResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `getGlobalNameOverride200ApplicationJSONObject` | [?GetGlobalNameOverride200ApplicationJSON](../../models/operations/GetGlobalNameOverride200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\GetGlobalNameOverrideResponseBody](../../models/operations/GetGlobalNameOverrideResponseBody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/GetGlobalNameOverrideResponseBody.md b/php-client-sdk/docs/models/operations/GetGlobalNameOverrideResponseBody.md new file mode 100755 index 000000000..ac9385b42 --- /dev/null +++ b/php-client-sdk/docs/models/operations/GetGlobalNameOverrideResponseBody.md @@ -0,0 +1,10 @@ +# GetGlobalNameOverrideResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [?\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/GlobalBearerAuthResponse.md b/php-client-sdk/docs/models/operations/GlobalBearerAuthResponse.md index 39cea3bc6..b22348649 100755 --- a/php-client-sdk/docs/models/operations/GlobalBearerAuthResponse.md +++ b/php-client-sdk/docs/models/operations/GlobalBearerAuthResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [?GlobalBearerAuthToken](../../models/operations/GlobalBearerAuthToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [?\OpenAPI\OpenAPI\Models\Operations\GlobalBearerAuthToken](../../models/operations/GlobalBearerAuthToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/GlobalPathParameterGetResponse.md b/php-client-sdk/docs/models/operations/GlobalPathParameterGetResponse.md index e6316bd80..754477ee4 100755 --- a/php-client-sdk/docs/models/operations/GlobalPathParameterGetResponse.md +++ b/php-client-sdk/docs/models/operations/GlobalPathParameterGetResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?GlobalPathParameterGetRes](../../models/operations/GlobalPathParameterGetRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\GlobalPathParameterGetRes](../../models/operations/GlobalPathParameterGetRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md b/php-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md index 2ac3e9bdb..898d2690b 100755 --- a/php-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md +++ b/php-client-sdk/docs/models/operations/GlobalsQueryParameterGetRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `args` | [GlobalsQueryParameterGetResArgs](../../models/operations/GlobalsQueryParameterGetResArgs.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\Args](../../models/operations/Args.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/GlobalsQueryParameterGetResArgs.md b/php-client-sdk/docs/models/operations/GlobalsQueryParameterGetResArgs.md deleted file mode 100755 index c484e5297..000000000 --- a/php-client-sdk/docs/models/operations/GlobalsQueryParameterGetResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# GlobalsQueryParameterGetResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `globalQueryParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/GlobalsQueryParameterGetResponse.md b/php-client-sdk/docs/models/operations/GlobalsQueryParameterGetResponse.md index ba38cd55f..5d6259345 100755 --- a/php-client-sdk/docs/models/operations/GlobalsQueryParameterGetResponse.md +++ b/php-client-sdk/docs/models/operations/GlobalsQueryParameterGetResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?GlobalsQueryParameterGetRes](../../models/operations/GlobalsQueryParameterGetRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\GlobalsQueryParameterGetRes](../../models/operations/GlobalsQueryParameterGetRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsArrayRes.md b/php-client-sdk/docs/models/operations/HeaderParamsArrayRes.md index dd3db2dfb..56981fcea 100755 --- a/php-client-sdk/docs/models/operations/HeaderParamsArrayRes.md +++ b/php-client-sdk/docs/models/operations/HeaderParamsArrayRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsArrayResHeaders](../../models/operations/HeaderParamsArrayResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | +| `headers` | [\OpenAPI\OpenAPI\Models\Operations\Headers](../../models/operations/Headers.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsArrayResHeaders.md b/php-client-sdk/docs/models/operations/HeaderParamsArrayResHeaders.md deleted file mode 100755 index 95cc40d13..000000000 --- a/php-client-sdk/docs/models/operations/HeaderParamsArrayResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# HeaderParamsArrayResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `xHeaderArray` | *string* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsArrayResponse.md b/php-client-sdk/docs/models/operations/HeaderParamsArrayResponse.md index fd56faa9e..d75c42cca 100755 --- a/php-client-sdk/docs/models/operations/HeaderParamsArrayResponse.md +++ b/php-client-sdk/docs/models/operations/HeaderParamsArrayResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?HeaderParamsArrayRes](../../models/operations/HeaderParamsArrayRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\HeaderParamsArrayRes](../../models/operations/HeaderParamsArrayRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsMapHeaders.md b/php-client-sdk/docs/models/operations/HeaderParamsMapHeaders.md new file mode 100755 index 000000000..3d5fb718d --- /dev/null +++ b/php-client-sdk/docs/models/operations/HeaderParamsMapHeaders.md @@ -0,0 +1,9 @@ +# HeaderParamsMapHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | +| `xHeaderMap` | *string* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | +| `xHeaderMapExplode` | *string* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsMapRes.md b/php-client-sdk/docs/models/operations/HeaderParamsMapRes.md index 927df613c..96f169051 100755 --- a/php-client-sdk/docs/models/operations/HeaderParamsMapRes.md +++ b/php-client-sdk/docs/models/operations/HeaderParamsMapRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsMapResHeaders](../../models/operations/HeaderParamsMapResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `headers` | [\OpenAPI\OpenAPI\Models\Operations\HeaderParamsMapHeaders](../../models/operations/HeaderParamsMapHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsMapResHeaders.md b/php-client-sdk/docs/models/operations/HeaderParamsMapResHeaders.md deleted file mode 100755 index f70a33a78..000000000 --- a/php-client-sdk/docs/models/operations/HeaderParamsMapResHeaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsMapResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | -| `xHeaderMap` | *string* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | -| `xHeaderMapExplode` | *string* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsMapResponse.md b/php-client-sdk/docs/models/operations/HeaderParamsMapResponse.md index b21d1df06..0f86be40e 100755 --- a/php-client-sdk/docs/models/operations/HeaderParamsMapResponse.md +++ b/php-client-sdk/docs/models/operations/HeaderParamsMapResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?HeaderParamsMapRes](../../models/operations/HeaderParamsMapRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\HeaderParamsMapRes](../../models/operations/HeaderParamsMapRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsObjectHeaders.md b/php-client-sdk/docs/models/operations/HeaderParamsObjectHeaders.md new file mode 100755 index 000000000..c53623380 --- /dev/null +++ b/php-client-sdk/docs/models/operations/HeaderParamsObjectHeaders.md @@ -0,0 +1,9 @@ +# HeaderParamsObjectHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `xHeaderObj` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `xHeaderObjExplode` | *string* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsObjectRes.md b/php-client-sdk/docs/models/operations/HeaderParamsObjectRes.md index 27e715a68..20ddb191a 100755 --- a/php-client-sdk/docs/models/operations/HeaderParamsObjectRes.md +++ b/php-client-sdk/docs/models/operations/HeaderParamsObjectRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsObjectResHeaders](../../models/operations/HeaderParamsObjectResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `headers` | [\OpenAPI\OpenAPI\Models\Operations\HeaderParamsObjectHeaders](../../models/operations/HeaderParamsObjectHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsObjectResHeaders.md b/php-client-sdk/docs/models/operations/HeaderParamsObjectResHeaders.md deleted file mode 100755 index b0f93a940..000000000 --- a/php-client-sdk/docs/models/operations/HeaderParamsObjectResHeaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsObjectResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `xHeaderObj` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `xHeaderObjExplode` | *string* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsObjectResponse.md b/php-client-sdk/docs/models/operations/HeaderParamsObjectResponse.md index 078233404..e19ef6858 100755 --- a/php-client-sdk/docs/models/operations/HeaderParamsObjectResponse.md +++ b/php-client-sdk/docs/models/operations/HeaderParamsObjectResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?HeaderParamsObjectRes](../../models/operations/HeaderParamsObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\HeaderParamsObjectRes](../../models/operations/HeaderParamsObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveHeaders.md b/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveHeaders.md new file mode 100755 index 000000000..66c1589a6 --- /dev/null +++ b/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveHeaders.md @@ -0,0 +1,11 @@ +# HeaderParamsPrimitiveHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `xHeaderBoolean` | *string* | :heavy_check_mark: | N/A | true | +| `xHeaderInteger` | *string* | :heavy_check_mark: | N/A | 1 | +| `xHeaderNumber` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `xHeaderString` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md b/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md index d02811818..657da559e 100755 --- a/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md +++ b/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsPrimitiveResHeaders](../../models/operations/HeaderParamsPrimitiveResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | +| `headers` | [\OpenAPI\OpenAPI\Models\Operations\HeaderParamsPrimitiveHeaders](../../models/operations/HeaderParamsPrimitiveHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveResHeaders.md b/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveResHeaders.md deleted file mode 100755 index e6129b100..000000000 --- a/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveResHeaders.md +++ /dev/null @@ -1,11 +0,0 @@ -# HeaderParamsPrimitiveResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `xHeaderBoolean` | *string* | :heavy_check_mark: | N/A | true | -| `xHeaderInteger` | *string* | :heavy_check_mark: | N/A | 1 | -| `xHeaderNumber` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `xHeaderString` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveResponse.md b/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveResponse.md index d9d21e0c9..a5a20e45b 100755 --- a/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveResponse.md +++ b/php-client-sdk/docs/models/operations/HeaderParamsPrimitiveResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?HeaderParamsPrimitiveRes](../../models/operations/HeaderParamsPrimitiveRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\HeaderParamsPrimitiveRes](../../models/operations/HeaderParamsPrimitiveRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/Headers.md b/php-client-sdk/docs/models/operations/Headers.md new file mode 100755 index 000000000..2b5393e85 --- /dev/null +++ b/php-client-sdk/docs/models/operations/Headers.md @@ -0,0 +1,8 @@ +# Headers + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `xHeaderArray` | *string* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md b/php-client-sdk/docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md deleted file mode 100755 index 31f213a2a..000000000 --- a/php-client-sdk/docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# IgnoredGenerationGet200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [?\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md b/php-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md index afe2b99cf..374087ebf 100755 --- a/php-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md +++ b/php-client-sdk/docs/models/operations/IgnoredGenerationGetResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ignoredGenerationGet200ApplicationJSONObject` | [?IgnoredGenerationGet200ApplicationJSON](../../models/operations/IgnoredGenerationGet200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\IgnoredGenerationGetResponseBody](../../models/operations/IgnoredGenerationGetResponseBody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/IgnoredGenerationGetResponseBody.md b/php-client-sdk/docs/models/operations/IgnoredGenerationGetResponseBody.md new file mode 100755 index 000000000..685726e26 --- /dev/null +++ b/php-client-sdk/docs/models/operations/IgnoredGenerationGetResponseBody.md @@ -0,0 +1,10 @@ +# IgnoredGenerationGetResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [?\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/IgnoresPostApplicationJSON.md b/php-client-sdk/docs/models/operations/IgnoresPostApplicationJSON.md deleted file mode 100755 index 03e3455bc..000000000 --- a/php-client-sdk/docs/models/operations/IgnoresPostApplicationJSON.md +++ /dev/null @@ -1,9 +0,0 @@ -# IgnoresPostApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `callbackUrl` | *?string* | :heavy_minus_sign: | N/A | -| `testProp` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/IgnoresPostRequest.md b/php-client-sdk/docs/models/operations/IgnoresPostRequest.md index 970925775..1be1fbb9f 100755 --- a/php-client-sdk/docs/models/operations/IgnoresPostRequest.md +++ b/php-client-sdk/docs/models/operations/IgnoresPostRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `requestBody` | [IgnoresPostApplicationJSON](../../models/operations/IgnoresPostApplicationJSON.md) | :heavy_check_mark: | N/A | -| `testParam` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\IgnoresPostRequestBody](../../models/operations/IgnoresPostRequestBody.md) | :heavy_check_mark: | N/A | +| `testParam` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/IgnoresPostRequestBody.md b/php-client-sdk/docs/models/operations/IgnoresPostRequestBody.md new file mode 100755 index 000000000..83a46ce9c --- /dev/null +++ b/php-client-sdk/docs/models/operations/IgnoresPostRequestBody.md @@ -0,0 +1,9 @@ +# IgnoresPostRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `callbackUrl` | *?string* | :heavy_minus_sign: | N/A | +| `testProp` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictRequest.md b/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictRequest.md index 6291e7988..a50f25a84 100755 --- a/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictRequest.md +++ b/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `requestBody` | [InlineBodyAndParamConflictRequestBody](../../models/operations/InlineBodyAndParamConflictRequestBody.md) | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamConflictRequestBody](../../models/operations/InlineBodyAndParamConflictRequestBody.md) | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md b/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md index 2af5b5f91..77f031404 100755 --- a/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md +++ b/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `args` | array | :heavy_check_mark: | N/A | -| `json` | [InlineBodyAndParamConflictResJson](../../models/operations/InlineBodyAndParamConflictResJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `args` | array | :heavy_check_mark: | N/A | +| `json` | [\OpenAPI\OpenAPI\Models\Operations\Json](../../models/operations/Json.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictResJson.md b/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictResJson.md deleted file mode 100755 index 584640a2f..000000000 --- a/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictResJson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamConflictResJson - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictResponse.md b/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictResponse.md index f65443796..9f22e094a 100755 --- a/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictResponse.md +++ b/php-client-sdk/docs/models/operations/InlineBodyAndParamConflictResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?InlineBodyAndParamConflictRes](../../models/operations/InlineBodyAndParamConflictRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamConflictRes](../../models/operations/InlineBodyAndParamConflictRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictJson.md b/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictJson.md new file mode 100755 index 000000000..04449ee40 --- /dev/null +++ b/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictJson.md @@ -0,0 +1,8 @@ +# InlineBodyAndParamNoConflictJson + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bodyStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRequest.md b/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRequest.md index f9f71f3c0..60538dfe3 100755 --- a/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRequest.md +++ b/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [InlineBodyAndParamNoConflictRequestBody](../../models/operations/InlineBodyAndParamNoConflictRequestBody.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | +| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamNoConflictRequestBody](../../models/operations/InlineBodyAndParamNoConflictRequestBody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md b/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md index 4814f86c6..eaf1224db 100755 --- a/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md +++ b/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `args` | array | :heavy_check_mark: | N/A | -| `json` | [InlineBodyAndParamNoConflictResJson](../../models/operations/InlineBodyAndParamNoConflictResJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | +| `args` | array | :heavy_check_mark: | N/A | +| `json` | [\OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamNoConflictJson](../../models/operations/InlineBodyAndParamNoConflictJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResJson.md b/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResJson.md deleted file mode 100755 index 3b197e2bc..000000000 --- a/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResJson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamNoConflictResJson - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bodyStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResponse.md b/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResponse.md index a1870daf4..963b5abd0 100755 --- a/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResponse.md +++ b/php-client-sdk/docs/models/operations/InlineBodyAndParamNoConflictResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?InlineBodyAndParamNoConflictRes](../../models/operations/InlineBodyAndParamNoConflictRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamNoConflictRes](../../models/operations/InlineBodyAndParamNoConflictRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/Json.md b/php-client-sdk/docs/models/operations/Json.md new file mode 100755 index 000000000..84c30e36a --- /dev/null +++ b/php-client-sdk/docs/models/operations/Json.md @@ -0,0 +1,8 @@ +# Json + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/JsonQueryParamsObjectArgs.md b/php-client-sdk/docs/models/operations/JsonQueryParamsObjectArgs.md new file mode 100755 index 000000000..d2a02e286 --- /dev/null +++ b/php-client-sdk/docs/models/operations/JsonQueryParamsObjectArgs.md @@ -0,0 +1,9 @@ +# JsonQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `deepObjParam` | *string* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | +| `simpleObjParam` | *string* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md b/php-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md index 0a0bc3add..4f58e3ec4 100755 --- a/php-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md +++ b/php-client-sdk/docs/models/operations/JsonQueryParamsObjectRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [JsonQueryParamsObjectResArgs](../../models/operations/JsonQueryParamsObjectResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\JsonQueryParamsObjectArgs](../../models/operations/JsonQueryParamsObjectArgs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/json/obj?deepObjParam={"any"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"arr"%3A[{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}]%2C"bool"%3Atrue%2C"int"%3A1%2C"map"%3A{"key"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"key2"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}}%2C"num"%3A1.1%2C"obj"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"str"%3A"test"}&simpleObjParam={"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"} | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/JsonQueryParamsObjectResArgs.md b/php-client-sdk/docs/models/operations/JsonQueryParamsObjectResArgs.md deleted file mode 100755 index 874d258ac..000000000 --- a/php-client-sdk/docs/models/operations/JsonQueryParamsObjectResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# JsonQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `deepObjParam` | *string* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | -| `simpleObjParam` | *string* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/JsonQueryParamsObjectResponse.md b/php-client-sdk/docs/models/operations/JsonQueryParamsObjectResponse.md index 4ae887843..010fd44aa 100755 --- a/php-client-sdk/docs/models/operations/JsonQueryParamsObjectResponse.md +++ b/php-client-sdk/docs/models/operations/JsonQueryParamsObjectResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?JsonQueryParamsObjectRes](../../models/operations/JsonQueryParamsObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\JsonQueryParamsObjectRes](../../models/operations/JsonQueryParamsObjectRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersCamelCaseArgs.md b/php-client-sdk/docs/models/operations/MixedParametersCamelCaseArgs.md new file mode 100755 index 000000000..ff528ca7a --- /dev/null +++ b/php-client-sdk/docs/models/operations/MixedParametersCamelCaseArgs.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersCamelCaseHeaders.md b/php-client-sdk/docs/models/operations/MixedParametersCamelCaseHeaders.md new file mode 100755 index 000000000..d215fe22f --- /dev/null +++ b/php-client-sdk/docs/models/operations/MixedParametersCamelCaseHeaders.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `headerParam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md b/php-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md index 78d01a7e0..a3d0542c5 100755 --- a/php-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md +++ b/php-client-sdk/docs/models/operations/MixedParametersCamelCaseRes.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `args` | [MixedParametersCamelCaseResArgs](../../models/operations/MixedParametersCamelCaseResArgs.md) | :heavy_check_mark: | N/A | | -| `headers` | [MixedParametersCamelCaseResHeaders](../../models/operations/MixedParametersCamelCaseResHeaders.md) | :heavy_check_mark: | N/A | | -| `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseArgs](../../models/operations/MixedParametersCamelCaseArgs.md) | :heavy_check_mark: | N/A | | +| `headers` | [\OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseHeaders](../../models/operations/MixedParametersCamelCaseHeaders.md) | :heavy_check_mark: | N/A | | +| `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersCamelCaseResArgs.md b/php-client-sdk/docs/models/operations/MixedParametersCamelCaseResArgs.md deleted file mode 100755 index 9ebad8b77..000000000 --- a/php-client-sdk/docs/models/operations/MixedParametersCamelCaseResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersCamelCaseResHeaders.md b/php-client-sdk/docs/models/operations/MixedParametersCamelCaseResHeaders.md deleted file mode 100755 index 59bf6053a..000000000 --- a/php-client-sdk/docs/models/operations/MixedParametersCamelCaseResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `headerParam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersCamelCaseResponse.md b/php-client-sdk/docs/models/operations/MixedParametersCamelCaseResponse.md index 5227c375f..a73024f60 100755 --- a/php-client-sdk/docs/models/operations/MixedParametersCamelCaseResponse.md +++ b/php-client-sdk/docs/models/operations/MixedParametersCamelCaseResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?MixedParametersCamelCaseRes](../../models/operations/MixedParametersCamelCaseRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseRes](../../models/operations/MixedParametersCamelCaseRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersPrimitivesArgs.md b/php-client-sdk/docs/models/operations/MixedParametersPrimitivesArgs.md new file mode 100755 index 000000000..4a9edeed2 --- /dev/null +++ b/php-client-sdk/docs/models/operations/MixedParametersPrimitivesArgs.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersPrimitivesHeaders.md b/php-client-sdk/docs/models/operations/MixedParametersPrimitivesHeaders.md new file mode 100755 index 000000000..0f60fc497 --- /dev/null +++ b/php-client-sdk/docs/models/operations/MixedParametersPrimitivesHeaders.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `headerparam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md b/php-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md index 3836e4eaf..a763fb4e7 100755 --- a/php-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md +++ b/php-client-sdk/docs/models/operations/MixedParametersPrimitivesRes.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `args` | [MixedParametersPrimitivesResArgs](../../models/operations/MixedParametersPrimitivesResArgs.md) | :heavy_check_mark: | N/A | | -| `headers` | [MixedParametersPrimitivesResHeaders](../../models/operations/MixedParametersPrimitivesResHeaders.md) | :heavy_check_mark: | N/A | | -| `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesArgs](../../models/operations/MixedParametersPrimitivesArgs.md) | :heavy_check_mark: | N/A | | +| `headers` | [\OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesHeaders](../../models/operations/MixedParametersPrimitivesHeaders.md) | :heavy_check_mark: | N/A | | +| `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersPrimitivesResArgs.md b/php-client-sdk/docs/models/operations/MixedParametersPrimitivesResArgs.md deleted file mode 100755 index 9af9bd8e4..000000000 --- a/php-client-sdk/docs/models/operations/MixedParametersPrimitivesResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersPrimitivesResHeaders.md b/php-client-sdk/docs/models/operations/MixedParametersPrimitivesResHeaders.md deleted file mode 100755 index 4fbc527d4..000000000 --- a/php-client-sdk/docs/models/operations/MixedParametersPrimitivesResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `headerparam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedParametersPrimitivesResponse.md b/php-client-sdk/docs/models/operations/MixedParametersPrimitivesResponse.md index f74c1f83d..eb4f400af 100755 --- a/php-client-sdk/docs/models/operations/MixedParametersPrimitivesResponse.md +++ b/php-client-sdk/docs/models/operations/MixedParametersPrimitivesResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?MixedParametersPrimitivesRes](../../models/operations/MixedParametersPrimitivesRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesRes](../../models/operations/MixedParametersPrimitivesRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedQueryParamsResponse.md b/php-client-sdk/docs/models/operations/MixedQueryParamsResponse.md index f717c9945..a5ca65961 100755 --- a/php-client-sdk/docs/models/operations/MixedQueryParamsResponse.md +++ b/php-client-sdk/docs/models/operations/MixedQueryParamsResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?MixedQueryParamsRes](../../models/operations/MixedQueryParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\MixedQueryParamsRes](../../models/operations/MixedQueryParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MixedTypeOneOfPostResponse.md b/php-client-sdk/docs/models/operations/MixedTypeOneOfPostResponse.md index 2d7263c14..faa025477 100755 --- a/php-client-sdk/docs/models/operations/MixedTypeOneOfPostResponse.md +++ b/php-client-sdk/docs/models/operations/MixedTypeOneOfPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?MixedTypeOneOfPostRes](../../models/operations/MixedTypeOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\MixedTypeOneOfPostRes](../../models/operations/MixedTypeOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.md b/php-client-sdk/docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.md index 35b775e94..4cfa0bf48 100755 --- a/php-client-sdk/docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.md +++ b/php-client-sdk/docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | -| `option1` | [?MultipleOptionsWithMixedSchemesAuthSecurityOption1](../../models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.md) | :heavy_minus_sign: | N/A | -| `option2` | [?MultipleOptionsWithMixedSchemesAuthSecurityOption2](../../models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `option1` | [?\OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithMixedSchemesAuthSecurityOption1](../../models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.md) | :heavy_minus_sign: | N/A | +| `option2` | [?\OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithMixedSchemesAuthSecurityOption2](../../models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.md b/php-client-sdk/docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.md index 7bda7ff31..9e337b13e 100755 --- a/php-client-sdk/docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.md +++ b/php-client-sdk/docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -| `option1` | [?MultipleOptionsWithSimpleSchemesAuthSecurityOption1](../../models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.md) | :heavy_minus_sign: | N/A | -| `option2` | [?MultipleOptionsWithSimpleSchemesAuthSecurityOption2](../../models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `option1` | [?\OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithSimpleSchemesAuthSecurityOption1](../../models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.md) | :heavy_minus_sign: | N/A | +| `option2` | [?\OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithSimpleSchemesAuthSecurityOption2](../../models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NameOverrideGetEnumNameOverride.md b/php-client-sdk/docs/models/operations/NameOverrideGetEnumNameOverride.md deleted file mode 100755 index 9056f5918..000000000 --- a/php-client-sdk/docs/models/operations/NameOverrideGetEnumNameOverride.md +++ /dev/null @@ -1,12 +0,0 @@ -# NameOverrideGetEnumNameOverride - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `Value1` | value1 | -| `Value2` | value2 | -| `Value3` | value3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NameOverrideGetOverriddenResponse.md b/php-client-sdk/docs/models/operations/NameOverrideGetOverriddenResponse.md new file mode 100755 index 000000000..9d2b56050 --- /dev/null +++ b/php-client-sdk/docs/models/operations/NameOverrideGetOverriddenResponse.md @@ -0,0 +1,10 @@ +# NameOverrideGetOverriddenResponse + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [?\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NameOverrideGetRequest.md b/php-client-sdk/docs/models/operations/NameOverrideGetRequest.md index 883eff133..d04bd6f07 100755 --- a/php-client-sdk/docs/models/operations/NameOverrideGetRequest.md +++ b/php-client-sdk/docs/models/operations/NameOverrideGetRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `testEnumQueryParam` | [NameOverrideGetEnumNameOverride](../../models/operations/NameOverrideGetEnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | -| `testQueryParam` | *string* | :heavy_check_mark: | N/A | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `testEnumQueryParam` | [\OpenAPI\OpenAPI\Models\Operations\EnumNameOverride](../../models/operations/EnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | +| `testQueryParam` | *string* | :heavy_check_mark: | N/A | example | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NameOverrideGetResponse.md b/php-client-sdk/docs/models/operations/NameOverrideGetResponse.md index a09c8f578..f93ae49fa 100755 --- a/php-client-sdk/docs/models/operations/NameOverrideGetResponse.md +++ b/php-client-sdk/docs/models/operations/NameOverrideGetResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `overriddenResponse` | [?OverriddenResponse](../../models/operations/OverriddenResponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `overriddenResponse` | [?\OpenAPI\OpenAPI\Models\Operations\NameOverrideGetOverriddenResponse](../../models/operations/NameOverrideGetOverriddenResponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableObjectPostResponse.md b/php-client-sdk/docs/models/operations/NullableObjectPostResponse.md index 76309f8e8..27626bb43 100755 --- a/php-client-sdk/docs/models/operations/NullableObjectPostResponse.md +++ b/php-client-sdk/docs/models/operations/NullableObjectPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?NullableObjectPostRes](../../models/operations/NullableObjectPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\NullableObjectPostRes](../../models/operations/NullableObjectPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableOneOfRefInObjectPostResponse.md b/php-client-sdk/docs/models/operations/NullableOneOfRefInObjectPostResponse.md index 2d7e51146..51e7f426c 100755 --- a/php-client-sdk/docs/models/operations/NullableOneOfRefInObjectPostResponse.md +++ b/php-client-sdk/docs/models/operations/NullableOneOfRefInObjectPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?NullableOneOfRefInObjectPostRes](../../models/operations/NullableOneOfRefInObjectPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\NullableOneOfRefInObjectPostRes](../../models/operations/NullableOneOfRefInObjectPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableOneOfSchemaPostResponse.md b/php-client-sdk/docs/models/operations/NullableOneOfSchemaPostResponse.md index 76a93ed71..a0c178191 100755 --- a/php-client-sdk/docs/models/operations/NullableOneOfSchemaPostResponse.md +++ b/php-client-sdk/docs/models/operations/NullableOneOfSchemaPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?NullableOneOfSchemaPostRes](../../models/operations/NullableOneOfSchemaPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\NullableOneOfSchemaPostRes](../../models/operations/NullableOneOfSchemaPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableOneOfTypeInObjectPostResponse.md b/php-client-sdk/docs/models/operations/NullableOneOfTypeInObjectPostResponse.md index aeedcd244..89111aace 100755 --- a/php-client-sdk/docs/models/operations/NullableOneOfTypeInObjectPostResponse.md +++ b/php-client-sdk/docs/models/operations/NullableOneOfTypeInObjectPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?NullableOneOfTypeInObjectPostRes](../../models/operations/NullableOneOfTypeInObjectPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\NullableOneOfTypeInObjectPostRes](../../models/operations/NullableOneOfTypeInObjectPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableOptionalObj.md b/php-client-sdk/docs/models/operations/NullableOptionalObj.md new file mode 100755 index 000000000..a4e5f26bb --- /dev/null +++ b/php-client-sdk/docs/models/operations/NullableOptionalObj.md @@ -0,0 +1,7 @@ +# NullableOptionalObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md b/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md index 07984c5c2..c0f76df96 100755 --- a/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md +++ b/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `nullableOptionalObj` | [?NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj](../../models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md) | :heavy_minus_sign: | N/A | -| `nullableRequiredObj` | [NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj](../../models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md) | :heavy_check_mark: | N/A | -| `requiredObj` | [NullableRequiredEmptyObjectPostRequestBodyRequiredObj](../../models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | +| `nullableOptionalObj` | [?\OpenAPI\OpenAPI\Models\Operations\NullableOptionalObj](../../models/operations/NullableOptionalObj.md) | :heavy_minus_sign: | N/A | +| `nullableRequiredObj` | [\OpenAPI\OpenAPI\Models\Operations\NullableRequiredObj](../../models/operations/NullableRequiredObj.md) | :heavy_check_mark: | N/A | +| `requiredObj` | [\OpenAPI\OpenAPI\Models\Operations\RequiredObj](../../models/operations/RequiredObj.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md b/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md deleted file mode 100755 index 4bd625eb3..000000000 --- a/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md b/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md deleted file mode 100755 index f5a542eea..000000000 --- a/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md b/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md deleted file mode 100755 index 20a807232..000000000 --- a/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md b/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md index 8295e6231..07e23c248 100755 --- a/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md +++ b/php-client-sdk/docs/models/operations/NullableRequiredEmptyObjectPostResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullableRequiredEmptyObjectPost200ApplicationJSONString` | *?string* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *?string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableRequiredEnum.md b/php-client-sdk/docs/models/operations/NullableRequiredEnum.md new file mode 100755 index 000000000..28484cb2b --- /dev/null +++ b/php-client-sdk/docs/models/operations/NullableRequiredEnum.md @@ -0,0 +1,9 @@ +# NullableRequiredEnum + + +## Values + +| Name | Value | +| -------- | -------- | +| `First` | first | +| `Second` | second | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableRequiredObj.md b/php-client-sdk/docs/models/operations/NullableRequiredObj.md new file mode 100755 index 000000000..b1e3ab8c2 --- /dev/null +++ b/php-client-sdk/docs/models/operations/NullableRequiredObj.md @@ -0,0 +1,7 @@ +# NullableRequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md b/php-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md index 733d8fa8e..0c36c5af8 100755 --- a/php-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md +++ b/php-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBody.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -| `nullableOptionalInt` | *?int* | :heavy_minus_sign: | N/A | -| `nullableRequiredArray` | array<*float*> | :heavy_check_mark: | N/A | -| `nullableRequiredEnum` | [NullableRequiredPropertyPostRequestBodyNullableRequiredEnum](../../models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md) | :heavy_check_mark: | N/A | -| `nullableRequiredInt` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `nullableOptionalInt` | *?int* | :heavy_minus_sign: | N/A | +| `nullableRequiredArray` | array<*float*> | :heavy_check_mark: | N/A | +| `nullableRequiredEnum` | [\OpenAPI\OpenAPI\Models\Operations\NullableRequiredEnum](../../models/operations/NullableRequiredEnum.md) | :heavy_check_mark: | N/A | +| `nullableRequiredInt` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md b/php-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md deleted file mode 100755 index 318a96e26..000000000 --- a/php-client-sdk/docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md +++ /dev/null @@ -1,9 +0,0 @@ -# NullableRequiredPropertyPostRequestBodyNullableRequiredEnum - - -## Values - -| Name | Value | -| -------- | -------- | -| `First` | first | -| `Second` | second | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md b/php-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md index 5ee82d3cc..569455391 100755 --- a/php-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md +++ b/php-client-sdk/docs/models/operations/NullableRequiredPropertyPostResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullableRequiredPropertyPost200ApplicationJSONString` | *?string* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *?string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md b/php-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md index b0975953c..9270db369 100755 --- a/php-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md +++ b/php-client-sdk/docs/models/operations/NullableRequiredSharedObjectPostResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullableRequiredSharedObjectPost200ApplicationJSONString` | *?string* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *?string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/NullableTypedObjectPostResponse.md b/php-client-sdk/docs/models/operations/NullableTypedObjectPostResponse.md index 102b99eb4..4fc5a8347 100755 --- a/php-client-sdk/docs/models/operations/NullableTypedObjectPostResponse.md +++ b/php-client-sdk/docs/models/operations/NullableTypedObjectPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?NullableTypedObjectPostRes](../../models/operations/NullableTypedObjectPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\NullableTypedObjectPostRes](../../models/operations/NullableTypedObjectPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/Oauth2AuthResponse.md b/php-client-sdk/docs/models/operations/Oauth2AuthResponse.md index 9f1ef2508..8349b089b 100755 --- a/php-client-sdk/docs/models/operations/Oauth2AuthResponse.md +++ b/php-client-sdk/docs/models/operations/Oauth2AuthResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [?Oauth2AuthToken](../../models/operations/Oauth2AuthToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| `token` | [?\OpenAPI\OpenAPI\Models\Operations\Oauth2AuthToken](../../models/operations/Oauth2AuthToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/Oauth2OverrideResponse.md b/php-client-sdk/docs/models/operations/Oauth2OverrideResponse.md index 8358e15c9..3301ebd3a 100755 --- a/php-client-sdk/docs/models/operations/Oauth2OverrideResponse.md +++ b/php-client-sdk/docs/models/operations/Oauth2OverrideResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [?Oauth2OverrideToken](../../models/operations/Oauth2OverrideToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| `token` | [?\OpenAPI\OpenAPI\Models\Operations\Oauth2OverrideToken](../../models/operations/Oauth2OverrideToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/Obj.md b/php-client-sdk/docs/models/operations/Obj.md new file mode 100755 index 000000000..7f210793f --- /dev/null +++ b/php-client-sdk/docs/models/operations/Obj.md @@ -0,0 +1,10 @@ +# Obj + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *bool* | :heavy_check_mark: | N/A | +| `num` | *float* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ObjArrParam.md b/php-client-sdk/docs/models/operations/ObjArrParam.md new file mode 100755 index 000000000..53da9f924 --- /dev/null +++ b/php-client-sdk/docs/models/operations/ObjArrParam.md @@ -0,0 +1,8 @@ +# ObjArrParam + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | array<*string*> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ObjParam.md b/php-client-sdk/docs/models/operations/ObjParam.md new file mode 100755 index 000000000..aa3c608a9 --- /dev/null +++ b/php-client-sdk/docs/models/operations/ObjParam.md @@ -0,0 +1,9 @@ +# ObjParam + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `encodedCount` | *?string* | :heavy_minus_sign: | N/A | 11 | +| `encodedTerm` | *?string* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ObjParamExploded.md b/php-client-sdk/docs/models/operations/ObjParamExploded.md new file mode 100755 index 000000000..7121d8074 --- /dev/null +++ b/php-client-sdk/docs/models/operations/ObjParamExploded.md @@ -0,0 +1,9 @@ +# ObjParamExploded + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `itemCount` | *?string* | :heavy_minus_sign: | N/A | 10 | +| `searchTerm` | *?string* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/OpenIdConnectAuthResponse.md b/php-client-sdk/docs/models/operations/OpenIdConnectAuthResponse.md index 0b9e5a8bd..3660563a8 100755 --- a/php-client-sdk/docs/models/operations/OpenIdConnectAuthResponse.md +++ b/php-client-sdk/docs/models/operations/OpenIdConnectAuthResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [?OpenIdConnectAuthToken](../../models/operations/OpenIdConnectAuthToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [?\OpenAPI\OpenAPI\Models\Operations\OpenIdConnectAuthToken](../../models/operations/OpenIdConnectAuthToken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/OptEnumParameter.md b/php-client-sdk/docs/models/operations/OptEnumParameter.md new file mode 100755 index 000000000..48e54e2a4 --- /dev/null +++ b/php-client-sdk/docs/models/operations/OptEnumParameter.md @@ -0,0 +1,12 @@ +# OptEnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `Value1` | value1 | +| `Value2` | value2 | +| `Value3` | value3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/OverriddenResponse.md b/php-client-sdk/docs/models/operations/OverriddenResponse.md deleted file mode 100755 index 7a503825d..000000000 --- a/php-client-sdk/docs/models/operations/OverriddenResponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# OverriddenResponse - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [?\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PaginationCursorBodyResponse.md b/php-client-sdk/docs/models/operations/PaginationCursorBodyResponse.md index 81b7bdf25..9a065252c 100755 --- a/php-client-sdk/docs/models/operations/PaginationCursorBodyResponse.md +++ b/php-client-sdk/docs/models/operations/PaginationCursorBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?PaginationCursorBodyRes](../../models/operations/PaginationCursorBodyRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\PaginationCursorBodyRes](../../models/operations/PaginationCursorBodyRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PaginationCursorParamsResponse.md b/php-client-sdk/docs/models/operations/PaginationCursorParamsResponse.md index 4e18daab0..36617f62a 100755 --- a/php-client-sdk/docs/models/operations/PaginationCursorParamsResponse.md +++ b/php-client-sdk/docs/models/operations/PaginationCursorParamsResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?PaginationCursorParamsRes](../../models/operations/PaginationCursorParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\PaginationCursorParamsRes](../../models/operations/PaginationCursorParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PaginationLimitOffsetOffsetBodyResponse.md b/php-client-sdk/docs/models/operations/PaginationLimitOffsetOffsetBodyResponse.md index 0521fb7f4..d14b89add 100755 --- a/php-client-sdk/docs/models/operations/PaginationLimitOffsetOffsetBodyResponse.md +++ b/php-client-sdk/docs/models/operations/PaginationLimitOffsetOffsetBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?PaginationLimitOffsetOffsetBodyRes](../../models/operations/PaginationLimitOffsetOffsetBodyRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\PaginationLimitOffsetOffsetBodyRes](../../models/operations/PaginationLimitOffsetOffsetBodyRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PaginationLimitOffsetOffsetParamsResponse.md b/php-client-sdk/docs/models/operations/PaginationLimitOffsetOffsetParamsResponse.md index ef55d7945..b19f0cf69 100755 --- a/php-client-sdk/docs/models/operations/PaginationLimitOffsetOffsetParamsResponse.md +++ b/php-client-sdk/docs/models/operations/PaginationLimitOffsetOffsetParamsResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?PaginationLimitOffsetOffsetParamsRes](../../models/operations/PaginationLimitOffsetOffsetParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\PaginationLimitOffsetOffsetParamsRes](../../models/operations/PaginationLimitOffsetOffsetParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PaginationLimitOffsetPageBodyResponse.md b/php-client-sdk/docs/models/operations/PaginationLimitOffsetPageBodyResponse.md index a2449c82d..816d02402 100755 --- a/php-client-sdk/docs/models/operations/PaginationLimitOffsetPageBodyResponse.md +++ b/php-client-sdk/docs/models/operations/PaginationLimitOffsetPageBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?PaginationLimitOffsetPageBodyRes](../../models/operations/PaginationLimitOffsetPageBodyRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\PaginationLimitOffsetPageBodyRes](../../models/operations/PaginationLimitOffsetPageBodyRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PaginationLimitOffsetPageParamsResponse.md b/php-client-sdk/docs/models/operations/PaginationLimitOffsetPageParamsResponse.md index c16b552a8..e5f867544 100755 --- a/php-client-sdk/docs/models/operations/PaginationLimitOffsetPageParamsResponse.md +++ b/php-client-sdk/docs/models/operations/PaginationLimitOffsetPageParamsResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?PaginationLimitOffsetPageParamsRes](../../models/operations/PaginationLimitOffsetPageParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\PaginationLimitOffsetPageParamsRes](../../models/operations/PaginationLimitOffsetPageParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PathParameterJsonResponse.md b/php-client-sdk/docs/models/operations/PathParameterJsonResponse.md index 94b0ce2f9..11fdd93a5 100755 --- a/php-client-sdk/docs/models/operations/PathParameterJsonResponse.md +++ b/php-client-sdk/docs/models/operations/PathParameterJsonResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?PathParameterJsonRes](../../models/operations/PathParameterJsonRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\PathParameterJsonRes](../../models/operations/PathParameterJsonRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md b/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md new file mode 100755 index 000000000..2817ca5d8 --- /dev/null +++ b/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md @@ -0,0 +1,9 @@ +# PipeDelimitedQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `arrParam` | *string* | :heavy_check_mark: | N/A | test\|test2 | +| `arrParamExploded` | array<*string*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md b/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md index d14d60124..d318368ca 100755 --- a/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md +++ b/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayRes.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `args` | [PipeDelimitedQueryParamsArrayResArgs](../../models/operations/PipeDelimitedQueryParamsArrayResArgs.md) | :heavy_check_mark: | N/A | | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\PipeDelimitedQueryParamsArrayArgs](../../models/operations/PipeDelimitedQueryParamsArrayArgs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/pipe/array?arrParam=test\|test2&arrParamExploded=1&arrParamExploded=2&mapParam=key1\|val1\|key2\|val2&objParam=any\|any\|bigint\|8821239038968084\|bigintStr\|9223372036854775808\|bool\|true\|boolOpt\|true\|date\|2020-01-01\|dateTime\|2020-01-01T00%3A00%3A00.000000001Z\|decimal\|3.141592653589793\|decimalStr\|3.14159265358979344719667586\|enum\|one\|float32\|1.1\|int\|1\|int32\|1\|int32Enum\|55\|intEnum\|2\|num\|1.1\|str\|test\|strOpt\|testOptional | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md b/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md deleted file mode 100755 index c9e75bec4..000000000 --- a/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md +++ /dev/null @@ -1,9 +0,0 @@ -# PipeDelimitedQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `arrParam` | *string* | :heavy_check_mark: | N/A | test\|test2 | -| `arrParamExploded` | array<*string*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResponse.md b/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResponse.md index 6f319891a..a12d5d8fa 100755 --- a/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResponse.md +++ b/php-client-sdk/docs/models/operations/PipeDelimitedQueryParamsArrayResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?PipeDelimitedQueryParamsArrayRes](../../models/operations/PipeDelimitedQueryParamsArrayRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\PipeDelimitedQueryParamsArrayRes](../../models/operations/PipeDelimitedQueryParamsArrayRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PrimitiveTypeOneOfPostResponse.md b/php-client-sdk/docs/models/operations/PrimitiveTypeOneOfPostResponse.md index 7ea2fd911..52fc4a110 100755 --- a/php-client-sdk/docs/models/operations/PrimitiveTypeOneOfPostResponse.md +++ b/php-client-sdk/docs/models/operations/PrimitiveTypeOneOfPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?PrimitiveTypeOneOfPostRes](../../models/operations/PrimitiveTypeOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\PrimitiveTypeOneOfPostRes](../../models/operations/PrimitiveTypeOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md b/php-client-sdk/docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md deleted file mode 100755 index 0d6eac882..000000000 --- a/php-client-sdk/docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# PutAnythingIgnoredGeneration200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md b/php-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md index 03fba3a3e..4a8f50ca7 100755 --- a/php-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md +++ b/php-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `putAnythingIgnoredGeneration200ApplicationJSONObject` | [?PutAnythingIgnoredGeneration200ApplicationJSON](../../models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\PutAnythingIgnoredGenerationResponseBody](../../models/operations/PutAnythingIgnoredGenerationResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md b/php-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md new file mode 100755 index 000000000..917527a8a --- /dev/null +++ b/php-client-sdk/docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md @@ -0,0 +1,10 @@ +# PutAnythingIgnoredGenerationResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md index bcc7126cf..fe55bfe7d 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `simpleObjectCamelCases` | array<[\OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md)> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | array<[\OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md)> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md index a1c2a76e0..6ce335f6e 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | array> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | array> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md index 29c34fecb..3107d65f5 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | array> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | array> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md index ca97a6327..53a9ae07e 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | array> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | array> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md index d4e8232d9..56952e21f 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `maps` | array> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | array> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md index e3b6d2dee..fd72552c5 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `maps` | array> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | array> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md index 2517a1ba0..bc20fbd1d 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `strings` | array<*string*> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | array<*string*> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md index 2176562fb..2c08b1b9e 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonArrayResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `simpleObjects` | array<[\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md)> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | array<[\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md)> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.md index 817a1b0ff..2f37e7b3d 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostApplicationJsonDeepCamelCaseRes](../../models/operations/RequestBodyPostApplicationJsonDeepCamelCaseRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonDeepCamelCaseRes](../../models/operations/RequestBodyPostApplicationJsonDeepCamelCaseRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonDeepResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonDeepResponse.md index 8f1d1bf90..4731aef88 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonDeepResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonDeepResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostApplicationJsonDeepRes](../../models/operations/RequestBodyPostApplicationJsonDeepRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonDeepRes](../../models/operations/RequestBodyPostApplicationJsonDeepRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.md index 21045e38f..e74fd72e1 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostApplicationJsonMultipleJsonFilteredRes](../../models/operations/RequestBodyPostApplicationJsonMultipleJsonFilteredRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMultipleJsonFilteredRes](../../models/operations/RequestBodyPostApplicationJsonMultipleJsonFilteredRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.md index 405ff5824..ef5a5649e 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostApplicationJsonSimpleCamelCaseRes](../../models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonSimpleCamelCaseRes](../../models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonSimpleResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonSimpleResponse.md index 3def72fbe..7bc49b3d5 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonSimpleResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostApplicationJsonSimpleResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostApplicationJsonSimpleRes](../../models/operations/RequestBodyPostApplicationJsonSimpleRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonSimpleRes](../../models/operations/RequestBodyPostApplicationJsonSimpleRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md deleted file mode 100755 index 3c08df167..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostComplexNumberTypes200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| `json` | [\OpenAPI\OpenAPI\Models\Shared\ComplexNumberTypes](../../models/shared/ComplexNumberTypes.md) | :heavy_check_mark: | N/A | -| `url` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md index 1a3c812c1..9895f2ff5 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostComplexNumberTypes200ApplicationJSONObject` | [?RequestBodyPostComplexNumberTypes200ApplicationJSON](../../models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostComplexNumberTypesResponseBody](../../models/operations/RequestBodyPostComplexNumberTypesResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md new file mode 100755 index 000000000..993c57585 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostComplexNumberTypesResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `json` | [\OpenAPI\OpenAPI\Models\Shared\ComplexNumberTypes](../../models/shared/ComplexNumberTypes.md) | :heavy_check_mark: | N/A | +| `url` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md deleted file mode 100755 index 60e6c056a..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostDefaultsAndConsts200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -| `json` | [\OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsOutput](../../models/shared/DefaultsAndConstsOutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md index e2f13206e..263462451 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostDefaultsAndConsts200ApplicationJSONObject` | [?RequestBodyPostDefaultsAndConsts200ApplicationJSON](../../models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostDefaultsAndConstsResponseBody](../../models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md new file mode 100755 index 000000000..2c858f505 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostDefaultsAndConstsResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `json` | [\OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsOutput](../../models/shared/DefaultsAndConstsOutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md deleted file mode 100755 index 8df281ed0..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `empty` | [?RequestBodyPostEmptyObject200ApplicationJSONEmpty](../../models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md) | :heavy_minus_sign: | N/A | -| `emptyRespWithEmptyProperies` | [?RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies](../../models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md deleted file mode 100755 index 6248bf538..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md deleted file mode 100755 index 27326d373..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectEmpty.md b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectEmpty.md new file mode 100755 index 000000000..7624b0484 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectEmpty.md @@ -0,0 +1,7 @@ +# RequestBodyPostEmptyObjectEmpty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md index 59235965a..6a59869f0 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `empty` | [?RequestBodyPostEmptyObjectRequestBodyEmpty](../../models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md) | :heavy_minus_sign: | N/A | -| `emptyWithEmptyProperties` | [?RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties](../../models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| `empty` | [?\OpenAPI\OpenAPI\Models\Operations\EmptyT](../../models/operations/EmptyT.md) | :heavy_minus_sign: | N/A | +| `emptyWithEmptyProperties` | [?\OpenAPI\OpenAPI\Models\Operations\EmptyWithEmptyProperties](../../models/operations/EmptyWithEmptyProperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md deleted file mode 100755 index 60e906506..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md deleted file mode 100755 index 66bb29b41..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md index dbb813d40..3806a4d6a 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostEmptyObject200ApplicationJSONObject` | [?RequestBodyPostEmptyObject200ApplicationJSON](../../models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostEmptyObjectResponseBody](../../models/operations/RequestBodyPostEmptyObjectResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md new file mode 100755 index 000000000..fc3d3a362 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostEmptyObjectResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | +| `empty` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostEmptyObjectEmpty](../../models/operations/RequestBodyPostEmptyObjectEmpty.md) | :heavy_minus_sign: | N/A | +| `emptyRespWithEmptyProperies` | [?\OpenAPI\OpenAPI\Models\Operations\EmptyRespWithEmptyProperies](../../models/operations/EmptyRespWithEmptyProperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md b/php-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md index 59a417dcf..d313a8b8d 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostFormDeepRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPostFormDeepResForm](../../models/operations/RequestBodyPostFormDeepResForm.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `form` | [\OpenAPI\OpenAPI\Models\Operations\Form](../../models/operations/Form.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostFormDeepResForm.md b/php-client-sdk/docs/models/operations/RequestBodyPostFormDeepResForm.md deleted file mode 100755 index 0799e1c39..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostFormDeepResForm.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPostFormDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | *string* | :heavy_check_mark: | N/A | -| `bool` | *string* | :heavy_check_mark: | N/A | -| `int` | *string* | :heavy_check_mark: | N/A | -| `map` | *string* | :heavy_check_mark: | N/A | -| `num` | *string* | :heavy_check_mark: | N/A | -| `obj` | *string* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostFormDeepResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostFormDeepResponse.md index 1c0085f60..3b0d59710 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostFormDeepResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostFormDeepResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostFormDeepRes](../../models/operations/RequestBodyPostFormDeepRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormDeepRes](../../models/operations/RequestBodyPostFormDeepRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostFormMapPrimitiveResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostFormMapPrimitiveResponse.md index b60c16d4e..ab6b94ea4 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostFormMapPrimitiveResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostFormMapPrimitiveResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostFormMapPrimitiveRes](../../models/operations/RequestBodyPostFormMapPrimitiveRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormMapPrimitiveRes](../../models/operations/RequestBodyPostFormMapPrimitiveRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleForm.md b/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleForm.md new file mode 100755 index 000000000..0aa373993 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleForm.md @@ -0,0 +1,21 @@ +# RequestBodyPostFormSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `any` | *string* | :heavy_check_mark: | N/A | +| `bool` | *string* | :heavy_check_mark: | N/A | +| `boolOpt` | *?string* | :heavy_minus_sign: | N/A | +| `date` | *string* | :heavy_check_mark: | N/A | +| `dateTime` | *string* | :heavy_check_mark: | N/A | +| `enum` | *string* | :heavy_check_mark: | N/A | +| `float32` | *string* | :heavy_check_mark: | N/A | +| `int` | *string* | :heavy_check_mark: | N/A | +| `int32` | *string* | :heavy_check_mark: | N/A | +| `intOptNull` | *?string* | :heavy_minus_sign: | N/A | +| `num` | *string* | :heavy_check_mark: | N/A | +| `numOptNull` | *?string* | :heavy_minus_sign: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | +| `strOpt` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleHeaders.md b/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleHeaders.md new file mode 100755 index 000000000..347ceba6f --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleHeaders.md @@ -0,0 +1,8 @@ +# RequestBodyPostFormSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `contentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md b/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md index 0e68a9da7..b39111555 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPostFormSimpleResForm](../../models/operations/RequestBodyPostFormSimpleResForm.md) | :heavy_check_mark: | N/A | -| `headers` | [RequestBodyPostFormSimpleResHeaders](../../models/operations/RequestBodyPostFormSimpleResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | +| `form` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleForm](../../models/operations/RequestBodyPostFormSimpleForm.md) | :heavy_check_mark: | N/A | +| `headers` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleHeaders](../../models/operations/RequestBodyPostFormSimpleHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResForm.md b/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResForm.md deleted file mode 100755 index 981b0ecd3..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResForm.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPostFormSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `any` | *string* | :heavy_check_mark: | N/A | -| `bool` | *string* | :heavy_check_mark: | N/A | -| `boolOpt` | *?string* | :heavy_minus_sign: | N/A | -| `date` | *string* | :heavy_check_mark: | N/A | -| `dateTime` | *string* | :heavy_check_mark: | N/A | -| `enum` | *string* | :heavy_check_mark: | N/A | -| `float32` | *string* | :heavy_check_mark: | N/A | -| `int` | *string* | :heavy_check_mark: | N/A | -| `int32` | *string* | :heavy_check_mark: | N/A | -| `intOptNull` | *?string* | :heavy_minus_sign: | N/A | -| `num` | *string* | :heavy_check_mark: | N/A | -| `numOptNull` | *?string* | :heavy_minus_sign: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | -| `strOpt` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResHeaders.md b/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResHeaders.md deleted file mode 100755 index 760072213..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPostFormSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `contentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResponse.md index 59363d3e4..12f7cddb0 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostFormSimpleResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostFormSimpleRes](../../models/operations/RequestBodyPostFormSimpleRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleRes](../../models/operations/RequestBodyPostFormSimpleRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md deleted file mode 100755 index 86929c08c..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | array<*int*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md deleted file mode 100755 index 40739b06d..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | array<[\DateTime](https://www.php.net/manual/en/class.datetime.php)> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md deleted file mode 100755 index 44333c7d6..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | array<*string*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md deleted file mode 100755 index 8f90f5389..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md deleted file mode 100755 index ba47ae0ac..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md deleted file mode 100755 index d92732dd8..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesBoolean200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *bool* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md deleted file mode 100755 index 75027d447..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md deleted file mode 100755 index 6bcba3c28..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md deleted file mode 100755 index 5c0cc06af..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | *float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md deleted file mode 100755 index 9361e6907..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md deleted file mode 100755 index 1dbbdf782..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesFloat32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md deleted file mode 100755 index d31d44e6d..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInt32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md deleted file mode 100755 index d579483ba..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInteger200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md deleted file mode 100755 index 6ce06fd3a..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------- | ----------------------- | ----------------------- | ----------------------- | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md deleted file mode 100755 index 6314eced4..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md deleted file mode 100755 index 69af70073..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------- | ---------------------- | ---------------------- | ---------------------- | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md deleted file mode 100755 index d20c2b7fd..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesNumber200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md deleted file mode 100755 index b83af1983..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesString200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md index 499d0dbe1..62ebaee9e 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayBigIntResponseBody](../../models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md new file mode 100755 index 000000000..58564a3bc --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | array<*int*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md index be924049d..5dd3fdd0b 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayDateResponseBody](../../models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md new file mode 100755 index 000000000..911714533 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | array<[\DateTime](https://www.php.net/manual/en/class.datetime.php)> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md index 0ffb0ebad..9b3268f1a 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md new file mode 100755 index 000000000..7a6849b03 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | array<*string*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md index 1ad85d719..1953c0c04 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesBigInt200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBigIntResponseBody](../../models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md new file mode 100755 index 000000000..9ce54c1a3 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md index 263eda33b..2ecd1a4a3 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBigIntStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md new file mode 100755 index 000000000..fdf0ed993 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md index 8ce10dbdf..b830b6561 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesBoolean200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBooleanResponseBody](../../models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md new file mode 100755 index 000000000..e12334afd --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesBooleanResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *bool* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md index be52e9553..37f6dbf8d 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDate200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesDate200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDateResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md new file mode 100755 index 000000000..fc18d2f6d --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md index 306cd7f12..45f519377 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesDateTime200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDateTimeResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md new file mode 100755 index 000000000..885b1f0d5 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md index 03a97c24a..5731f1520 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesDecimal200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDecimalResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md new file mode 100755 index 000000000..d08d41397 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | *float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md index 7919d698f..8e88b74e6 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDecimalStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md new file mode 100755 index 000000000..e6423fdb4 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md index b201652a6..0d467e400 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesFloat32200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesFloat32ResponseBody](../../models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md new file mode 100755 index 000000000..8deae2441 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesFloat32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md index cc05e2735..7815eeecf 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesInt32200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesInt32200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesInt32ResponseBody](../../models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md new file mode 100755 index 000000000..50b0c4282 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesInt32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md index 5e5b3d9c5..0b4aca1be 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesInteger200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesInteger200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesIntegerResponseBody](../../models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md new file mode 100755 index 000000000..5cf13b36f --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesIntegerResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md index 36954cb2d..5ac280283 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapBigIntStrResponseBody](../../models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md new file mode 100755 index 000000000..ff9d58464 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------- | ----------------------- | ----------------------- | ----------------------- | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md index 37fc23202..81f79503a 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapDateTimeResponseBody](../../models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md new file mode 100755 index 000000000..4a2d32b2a --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md index 884e70b55..6f4977e9e 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapDecimalResponseBody](../../models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md new file mode 100755 index 000000000..0a38e487d --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------- | ---------------------- | ---------------------- | ---------------------- | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md index e4a190402..b4fcc36e2 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesNumber200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesNumber200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesNumberResponseBody](../../models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md new file mode 100755 index 000000000..dff0f6e9d --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesNumberResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md index 376735cc3..390d3eafa 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesString200ApplicationJSONObject` | [?RequestBodyPostJSONDataTypesString200ApplicationJSON](../../models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesStringResponseBody](../../models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md new file mode 100755 index 000000000..ae6705bff --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesStringResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.md index 6545453f9..6a138f214 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostMultipleContentTypesComponentFilteredRes](../../models/operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesComponentFilteredRes](../../models/operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md deleted file mode 100755 index 52313d55f..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *bool* | :heavy_check_mark: | N/A | -| `num` | *float* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md new file mode 100755 index 000000000..1b34d2945 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesInlineFilteredRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *bool* | :heavy_check_mark: | N/A | +| `num` | *float* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.md index 88fba1d06..cd450507b 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostMultipleContentTypesInlineFilteredRes](../../models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredRes](../../models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md deleted file mode 100755 index 3c0103300..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *bool* | :heavy_check_mark: | N/A | -| `num` | *float* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md deleted file mode 100755 index 72419fee0..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool3` | *bool* | :heavy_check_mark: | N/A | -| `num3` | *float* | :heavy_check_mark: | N/A | -| `str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md new file mode 100755 index 000000000..1b3622988 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool3` | *bool* | :heavy_check_mark: | N/A | +| `num3` | *float* | :heavy_check_mark: | N/A | +| `str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormResponse.md index cdadc468e..a2fadccaa 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostMultipleContentTypesSplitFormRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitFormRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitFormRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitFormRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md new file mode 100755 index 000000000..7d6e7a6f8 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitJsonRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *bool* | :heavy_check_mark: | N/A | +| `num` | *float* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.md index e1b6537c7..aab2108b5 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostMultipleContentTypesSplitJsonRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitJsonRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitJsonRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitJsonRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md deleted file mode 100755 index 3aa6c8b9a..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool2` | *bool* | :heavy_check_mark: | N/A | -| `num2` | *float* | :heavy_check_mark: | N/A | -| `str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md new file mode 100755 index 000000000..820b020f4 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool2` | *bool* | :heavy_check_mark: | N/A | +| `num2` | *float* | :heavy_check_mark: | N/A | +| `str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.md index a8f47b430..bd01817f2 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostMultipleContentTypesSplitMultipartRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md deleted file mode 100755 index b5fdb6651..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *bool* | :heavy_check_mark: | N/A | -| `num` | *float* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md deleted file mode 100755 index 128d308f8..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool3` | *bool* | :heavy_check_mark: | N/A | -| `num3` | *float* | :heavy_check_mark: | N/A | -| `str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md index 05dc1eda8..495cc86e1 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md new file mode 100755 index 000000000..ffc4a12f7 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool3` | *bool* | :heavy_check_mark: | N/A | +| `num3` | *float* | :heavy_check_mark: | N/A | +| `str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.md index 25de986e7..caba2365a 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostMultipleContentTypesSplitParamFormRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamFormRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md index 8c06c61ba..3ed869072 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md new file mode 100755 index 000000000..78cd95e63 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *bool* | :heavy_check_mark: | N/A | +| `num` | *float* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.md index 440c0a97b..7c5ed5b9b 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostMultipleContentTypesSplitParamJsonRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamJsonRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md deleted file mode 100755 index 8fdd06635..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool2` | *bool* | :heavy_check_mark: | N/A | -| `num2` | *float* | :heavy_check_mark: | N/A | -| `str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md index bf5167ee2..12782ae48 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md new file mode 100755 index 000000000..9af9105ab --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool2` | *bool* | :heavy_check_mark: | N/A | +| `num2` | *float* | :heavy_check_mark: | N/A | +| `str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.md index 31b19fc70..046987bca 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPostMultipleContentTypesSplitParamMultipartRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartRes](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md deleted file mode 100755 index b10b548ae..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md index b8d7a113c..5933a4a17 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject` | [?RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON](../../models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNotNullableNotRequiredStringBodyResponseBody](../../models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md new file mode 100755 index 000000000..4400288b0 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNotNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md deleted file mode 100755 index e452fe928..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullArray200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md index 51b704ea8..79a9f43c2 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullArray200ApplicationJSONObject` | [?RequestBodyPostNullArray200ApplicationJSON](../../models/operations/RequestBodyPostNullArray200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullArrayResponseBody](../../models/operations/RequestBodyPostNullArrayResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponseBody.md new file mode 100755 index 000000000..ab00ebfdd --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostNullArrayResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullArrayResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md deleted file mode 100755 index f1b8f0b5e..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullDictionary200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md index 2e84df302..c7c2419c8 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullDictionary200ApplicationJSONObject` | [?RequestBodyPostNullDictionary200ApplicationJSON](../../models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullDictionaryResponseBody](../../models/operations/RequestBodyPostNullDictionaryResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md new file mode 100755 index 000000000..559dc545e --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullDictionaryResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md deleted file mode 100755 index 5901cc56f..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md index d0c1eb43b..5e0542289 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject` | [?RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON](../../models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableNotRequiredStringBodyResponseBody](../../models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md new file mode 100755 index 000000000..26535e293 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md deleted file mode 100755 index ae5fb5eb4..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md index ec7777512..0f524dba7 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullableRequiredStringBody200ApplicationJSONObject` | [?RequestBodyPostNullableRequiredStringBody200ApplicationJSON](../../models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableRequiredStringBodyResponseBody](../../models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md b/php-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md new file mode 100755 index 000000000..9e2f6c5b0 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutBytesResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPutBytesResponse.md index 2772a6fe4..0c19635a9 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutBytesResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutBytesResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPutBytesRes](../../models/operations/RequestBodyPutBytesRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutBytesRes](../../models/operations/RequestBodyPutBytesRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsArgs.md b/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsArgs.md new file mode 100755 index 000000000..0183e8eba --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsArgs.md @@ -0,0 +1,8 @@ +# RequestBodyPutBytesWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md b/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md index a7e427c88..568da8788 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `args` | [RequestBodyPutBytesWithParamsResArgs](../../models/operations/RequestBodyPutBytesWithParamsResArgs.md) | :heavy_check_mark: | N/A | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutBytesWithParamsArgs](../../models/operations/RequestBodyPutBytesWithParamsArgs.md) | :heavy_check_mark: | N/A | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md b/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md deleted file mode 100755 index fbade96e6..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutBytesWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResponse.md index 216f3f5e7..666b00072 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutBytesWithParamsResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPutBytesWithParamsRes](../../models/operations/RequestBodyPutBytesWithParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutBytesWithParamsRes](../../models/operations/RequestBodyPutBytesWithParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepForm.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepForm.md new file mode 100755 index 000000000..7868fc9f6 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepForm.md @@ -0,0 +1,14 @@ +# RequestBodyPutMultipartDeepForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | *string* | :heavy_check_mark: | N/A | +| `bool` | *string* | :heavy_check_mark: | N/A | +| `int` | *string* | :heavy_check_mark: | N/A | +| `map` | *string* | :heavy_check_mark: | N/A | +| `num` | *string* | :heavy_check_mark: | N/A | +| `obj` | *string* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md index 7c14a634f..ccd640c12 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepRes.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPutMultipartDeepResForm](../../models/operations/RequestBodyPutMultipartDeepResForm.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | +| `form` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartDeepForm](../../models/operations/RequestBodyPutMultipartDeepForm.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResForm.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResForm.md deleted file mode 100755 index 0c82c20a3..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResForm.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPutMultipartDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | *string* | :heavy_check_mark: | N/A | -| `bool` | *string* | :heavy_check_mark: | N/A | -| `int` | *string* | :heavy_check_mark: | N/A | -| `map` | *string* | :heavy_check_mark: | N/A | -| `num` | *string* | :heavy_check_mark: | N/A | -| `obj` | *string* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResponse.md index 2cb45d529..2775c9023 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDeepResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPutMultipartDeepRes](../../models/operations/RequestBodyPutMultipartDeepRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartDeepRes](../../models/operations/RequestBodyPutMultipartDeepRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md index 9a331b770..19bbc0fe6 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `differentFileName` | [?RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName](../../models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | +| `differentFileName` | [?\OpenAPI\OpenAPI\Models\Operations\DifferentFileName](../../models/operations/DifferentFileName.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md deleted file mode 100755 index 0e3ebe694..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName - - -## Fields - -| Field | Type | Required | Description | -| ------------------- | ------------------- | ------------------- | ------------------- | -| `content` | *string* | :heavy_check_mark: | N/A | -| `differentFileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameResponse.md index fbcb368d7..85cb42308 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartDifferentFileNameResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPutMultipartDifferentFileNameRes](../../models/operations/RequestBodyPutMultipartDifferentFileNameRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartDifferentFileNameRes](../../models/operations/RequestBodyPutMultipartDifferentFileNameRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md index d3498226b..dc8fe6b70 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -| `file` | [?RequestBodyPutMultipartFileRequestBodyFile](../../models/operations/RequestBodyPutMultipartFileRequestBodyFile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | +| `file` | [?\OpenAPI\OpenAPI\Models\Operations\File](../../models/operations/File.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md deleted file mode 100755 index 24777a42d..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content` | *string* | :heavy_check_mark: | N/A | -| `file` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartFileResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartFileResponse.md index 5569feb14..79aba8ed3 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartFileResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartFileResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPutMultipartFileRes](../../models/operations/RequestBodyPutMultipartFileRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartFileRes](../../models/operations/RequestBodyPutMultipartFileRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleForm.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleForm.md new file mode 100755 index 000000000..33d5f43ed --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleForm.md @@ -0,0 +1,21 @@ +# RequestBodyPutMultipartSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `any` | *string* | :heavy_check_mark: | N/A | +| `bool` | *string* | :heavy_check_mark: | N/A | +| `boolOpt` | *?string* | :heavy_minus_sign: | N/A | +| `date` | *string* | :heavy_check_mark: | N/A | +| `dateTime` | *string* | :heavy_check_mark: | N/A | +| `enum` | *string* | :heavy_check_mark: | N/A | +| `float32` | *string* | :heavy_check_mark: | N/A | +| `int` | *string* | :heavy_check_mark: | N/A | +| `int32` | *string* | :heavy_check_mark: | N/A | +| `intOptNull` | *?string* | :heavy_minus_sign: | N/A | +| `num` | *string* | :heavy_check_mark: | N/A | +| `numOptNull` | *?string* | :heavy_minus_sign: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | +| `strOpt` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md new file mode 100755 index 000000000..7d2330c47 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md @@ -0,0 +1,8 @@ +# RequestBodyPutMultipartSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `contentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md index 26e3f1073..35ae0bab1 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPutMultipartSimpleResForm](../../models/operations/RequestBodyPutMultipartSimpleResForm.md) | :heavy_check_mark: | N/A | -| `headers` | [RequestBodyPutMultipartSimpleResHeaders](../../models/operations/RequestBodyPutMultipartSimpleResHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | +| `form` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleForm](../../models/operations/RequestBodyPutMultipartSimpleForm.md) | :heavy_check_mark: | N/A | +| `headers` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleHeaders](../../models/operations/RequestBodyPutMultipartSimpleHeaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResForm.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResForm.md deleted file mode 100755 index 8ebc88619..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResForm.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPutMultipartSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `any` | *string* | :heavy_check_mark: | N/A | -| `bool` | *string* | :heavy_check_mark: | N/A | -| `boolOpt` | *?string* | :heavy_minus_sign: | N/A | -| `date` | *string* | :heavy_check_mark: | N/A | -| `dateTime` | *string* | :heavy_check_mark: | N/A | -| `enum` | *string* | :heavy_check_mark: | N/A | -| `float32` | *string* | :heavy_check_mark: | N/A | -| `int` | *string* | :heavy_check_mark: | N/A | -| `int32` | *string* | :heavy_check_mark: | N/A | -| `intOptNull` | *?string* | :heavy_minus_sign: | N/A | -| `num` | *string* | :heavy_check_mark: | N/A | -| `numOptNull` | *?string* | :heavy_minus_sign: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | -| `strOpt` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md deleted file mode 100755 index 62bf0b0f3..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutMultipartSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `contentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResponse.md index e6fb42cf2..31f538ad2 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutMultipartSimpleResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPutMultipartSimpleRes](../../models/operations/RequestBodyPutMultipartSimpleRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleRes](../../models/operations/RequestBodyPutMultipartSimpleRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutStringResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPutStringResponse.md index 9ce3f883f..dbf6066e9 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutStringResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutStringResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPutStringRes](../../models/operations/RequestBodyPutStringRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutStringRes](../../models/operations/RequestBodyPutStringRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsArgs.md b/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsArgs.md new file mode 100755 index 000000000..0011a3cf2 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsArgs.md @@ -0,0 +1,8 @@ +# RequestBodyPutStringWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md b/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md index 226bcb0b1..5e140d7ee 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsRes.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `args` | [RequestBodyPutStringWithParamsResArgs](../../models/operations/RequestBodyPutStringWithParamsResArgs.md) | :heavy_check_mark: | N/A | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | +| `args` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutStringWithParamsArgs](../../models/operations/RequestBodyPutStringWithParamsArgs.md) | :heavy_check_mark: | N/A | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResArgs.md b/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResArgs.md deleted file mode 100755 index 985ff101e..000000000 --- a/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResArgs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutStringWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResponse.md b/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResponse.md index 685d89ddb..4b1c6d801 100755 --- a/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResponse.md +++ b/php-client-sdk/docs/models/operations/RequestBodyPutStringWithParamsResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?RequestBodyPutStringWithParamsRes](../../models/operations/RequestBodyPutStringWithParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPutStringWithParamsRes](../../models/operations/RequestBodyPutStringWithParamsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RequiredObj.md b/php-client-sdk/docs/models/operations/RequiredObj.md new file mode 100755 index 000000000..75e7b11a1 --- /dev/null +++ b/php-client-sdk/docs/models/operations/RequiredObj.md @@ -0,0 +1,7 @@ +# RequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md deleted file mode 100755 index dba969a8b..000000000 --- a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------- | ----------------------- | ----------------------- | ----------------------- | -| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md index 92c3bae4f..9f98fbe06 100755 --- a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md +++ b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject` | [?ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md new file mode 100755 index 000000000..01a12cadd --- /dev/null +++ b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------- | ----------------------- | ----------------------- | ----------------------- | +| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md deleted file mode 100755 index 78d4f98f0..000000000 --- a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md index bff4f0237..8d5eeda78 100755 --- a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md +++ b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject` | [?ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesDatePostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md new file mode 100755 index 000000000..15a10943a --- /dev/null +++ b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesDatePostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md deleted file mode 100755 index a99fe0eb8..000000000 --- a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md index b9d3e4661..3cc86ffb5 100755 --- a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md +++ b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject` | [?ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesObjectPostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md new file mode 100755 index 000000000..8c740d5b0 --- /dev/null +++ b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesObjectPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md deleted file mode 100755 index 2d2b8b5ba..000000000 --- a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------- | ----------------------- | ----------------------- | ----------------------- | -| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md index 7a6db23f1..10ec5ba22 100755 --- a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md +++ b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesPost200ApplicationJSONObject` | [?ResponseBodyAdditionalPropertiesPost200ApplicationJSON](../../models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesPostResponseBody](../../models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md new file mode 100755 index 000000000..86d848289 --- /dev/null +++ b/php-client-sdk/docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------- | ----------------------- | ----------------------- | ----------------------- | +| `json` | array | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md b/php-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md index 92679914d..8869558c1 100755 --- a/php-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md +++ b/php-client-sdk/docs/models/operations/ResponseBodyOptionalGetResponse.md @@ -8,5 +8,5 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyOptionalGet200TextPlainString` | *?string* | :heavy_minus_sign: | OK | +| `res` | *?string* | :heavy_minus_sign: | OK | | `typedObject1` | [?\OpenAPI\OpenAPI\Models\Shared\TypedObject1](../../models/shared/TypedObject1.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md b/php-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md deleted file mode 100755 index 1610d8d05..000000000 --- a/php-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | -| `json` | [\OpenAPI\OpenAPI\Models\Shared\ObjWithZeroValueComplexTypePtrs](../../models/shared/ObjWithZeroValueComplexTypePtrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md b/php-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md index 954a1bc3d..54e18cd74 100755 --- a/php-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md +++ b/php-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject` | [?ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON](../../models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyZeroValueComplexTypePtrsPostResponseBody](../../models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md b/php-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md new file mode 100755 index 000000000..25b11da02 --- /dev/null +++ b/php-client-sdk/docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md @@ -0,0 +1,10 @@ +# ResponseBodyZeroValueComplexTypePtrsPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `json` | [\OpenAPI\OpenAPI\Models\Shared\ObjWithZeroValueComplexTypePtrs](../../models/shared/ObjWithZeroValueComplexTypePtrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/RetriesGetResponse.md b/php-client-sdk/docs/models/operations/RetriesGetResponse.md index a923ca82a..d0f6ca1f6 100755 --- a/php-client-sdk/docs/models/operations/RetriesGetResponse.md +++ b/php-client-sdk/docs/models/operations/RetriesGetResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `retries` | [?RetriesGetRetries](../../models/operations/RetriesGetRetries.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `retries` | [?\OpenAPI\OpenAPI\Models\Operations\RetriesGetRetries](../../models/operations/RetriesGetRetries.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/SimplePathParameterArraysResponse.md b/php-client-sdk/docs/models/operations/SimplePathParameterArraysResponse.md index a02895373..f2be28f55 100755 --- a/php-client-sdk/docs/models/operations/SimplePathParameterArraysResponse.md +++ b/php-client-sdk/docs/models/operations/SimplePathParameterArraysResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?SimplePathParameterArraysRes](../../models/operations/SimplePathParameterArraysRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\SimplePathParameterArraysRes](../../models/operations/SimplePathParameterArraysRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/SimplePathParameterMapsResponse.md b/php-client-sdk/docs/models/operations/SimplePathParameterMapsResponse.md index ee1e4d9f1..0c227bcc3 100755 --- a/php-client-sdk/docs/models/operations/SimplePathParameterMapsResponse.md +++ b/php-client-sdk/docs/models/operations/SimplePathParameterMapsResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?SimplePathParameterMapsRes](../../models/operations/SimplePathParameterMapsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\SimplePathParameterMapsRes](../../models/operations/SimplePathParameterMapsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/SimplePathParameterObjectsResponse.md b/php-client-sdk/docs/models/operations/SimplePathParameterObjectsResponse.md index b3650c07d..2db4f61a4 100755 --- a/php-client-sdk/docs/models/operations/SimplePathParameterObjectsResponse.md +++ b/php-client-sdk/docs/models/operations/SimplePathParameterObjectsResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?SimplePathParameterObjectsRes](../../models/operations/SimplePathParameterObjectsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\SimplePathParameterObjectsRes](../../models/operations/SimplePathParameterObjectsRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/SimplePathParameterPrimitivesResponse.md b/php-client-sdk/docs/models/operations/SimplePathParameterPrimitivesResponse.md index 09693880f..681bf7d01 100755 --- a/php-client-sdk/docs/models/operations/SimplePathParameterPrimitivesResponse.md +++ b/php-client-sdk/docs/models/operations/SimplePathParameterPrimitivesResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?SimplePathParameterPrimitivesRes](../../models/operations/SimplePathParameterPrimitivesRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\SimplePathParameterPrimitivesRes](../../models/operations/SimplePathParameterPrimitivesRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md b/php-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md deleted file mode 100755 index 78c36d29a..000000000 --- a/php-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md +++ /dev/null @@ -1,12 +0,0 @@ -# StatusGetXSpeakeasyErrors501ApplicationJSON - -Not Implemented - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `code` | *?string* | :heavy_minus_sign: | N/A | -| `message` | *?string* | :heavy_minus_sign: | N/A | -| `type` | [?\OpenAPI\OpenAPI\Models\Shared\ErrorType](../../models/shared/ErrorType.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md b/php-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md index 038ee5788..a09a69690 100755 --- a/php-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md +++ b/php-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md @@ -3,10 +3,10 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `error` | [?\OpenAPI\OpenAPI\Models\Shared\Error](../../models/shared/Error.md) | :heavy_minus_sign: | Internal Server Error | -| `statusGetXSpeakeasyErrors501ApplicationJSONObject` | [?StatusGetXSpeakeasyErrors501ApplicationJSON](../../models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md) | :heavy_minus_sign: | Not Implemented | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `error` | [?\OpenAPI\OpenAPI\Models\Shared\Error](../../models/shared/Error.md) | :heavy_minus_sign: | Internal Server Error | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\StatusGetXSpeakeasyErrorsResponseBody](../../models/operations/StatusGetXSpeakeasyErrorsResponseBody.md) | :heavy_minus_sign: | Not Implemented | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md b/php-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md new file mode 100755 index 000000000..51be1cf9d --- /dev/null +++ b/php-client-sdk/docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md @@ -0,0 +1,12 @@ +# StatusGetXSpeakeasyErrorsResponseBody + +Not Implemented + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | +| `code` | *?string* | :heavy_minus_sign: | N/A | +| `message` | *?string* | :heavy_minus_sign: | N/A | +| `type` | [?\OpenAPI\OpenAPI\Models\Shared\ErrorType](../../models/shared/ErrorType.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/StronglyTypedOneOfPostResponse.md b/php-client-sdk/docs/models/operations/StronglyTypedOneOfPostResponse.md index f833a1da8..c76e053f3 100755 --- a/php-client-sdk/docs/models/operations/StronglyTypedOneOfPostResponse.md +++ b/php-client-sdk/docs/models/operations/StronglyTypedOneOfPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?StronglyTypedOneOfPostRes](../../models/operations/StronglyTypedOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\StronglyTypedOneOfPostRes](../../models/operations/StronglyTypedOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/TelemetrySpeakeasyUserAgentGetResponse.md b/php-client-sdk/docs/models/operations/TelemetrySpeakeasyUserAgentGetResponse.md index f52ba37d6..cd9920729 100755 --- a/php-client-sdk/docs/models/operations/TelemetrySpeakeasyUserAgentGetResponse.md +++ b/php-client-sdk/docs/models/operations/TelemetrySpeakeasyUserAgentGetResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?TelemetrySpeakeasyUserAgentGetRes](../../models/operations/TelemetrySpeakeasyUserAgentGetRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\TelemetrySpeakeasyUserAgentGetRes](../../models/operations/TelemetrySpeakeasyUserAgentGetRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/TelemetryUserAgentGetResponse.md b/php-client-sdk/docs/models/operations/TelemetryUserAgentGetResponse.md index faee5c103..17f427aef 100755 --- a/php-client-sdk/docs/models/operations/TelemetryUserAgentGetResponse.md +++ b/php-client-sdk/docs/models/operations/TelemetryUserAgentGetResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?TelemetryUserAgentGetRes](../../models/operations/TelemetryUserAgentGetRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\TelemetryUserAgentGetRes](../../models/operations/TelemetryUserAgentGetRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/TypeFromAnchor.md b/php-client-sdk/docs/models/operations/TypeFromAnchor.md deleted file mode 100755 index ecafb37f3..000000000 --- a/php-client-sdk/docs/models/operations/TypeFromAnchor.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypeFromAnchor - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [?\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/TypedObjectNullableOneOfPostResponse.md b/php-client-sdk/docs/models/operations/TypedObjectNullableOneOfPostResponse.md index 026e9633e..26eecc8bb 100755 --- a/php-client-sdk/docs/models/operations/TypedObjectNullableOneOfPostResponse.md +++ b/php-client-sdk/docs/models/operations/TypedObjectNullableOneOfPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?TypedObjectNullableOneOfPostRes](../../models/operations/TypedObjectNullableOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\TypedObjectNullableOneOfPostRes](../../models/operations/TypedObjectNullableOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/TypedObjectOneOfPostResponse.md b/php-client-sdk/docs/models/operations/TypedObjectOneOfPostResponse.md index 4f61d72ec..644a68d01 100755 --- a/php-client-sdk/docs/models/operations/TypedObjectOneOfPostResponse.md +++ b/php-client-sdk/docs/models/operations/TypedObjectOneOfPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?TypedObjectOneOfPostRes](../../models/operations/TypedObjectOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\TypedObjectOneOfPostRes](../../models/operations/TypedObjectOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/TypedParameterGenerationGetObj.md b/php-client-sdk/docs/models/operations/TypedParameterGenerationGetObj.md deleted file mode 100755 index 4e26fac92..000000000 --- a/php-client-sdk/docs/models/operations/TypedParameterGenerationGetObj.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypedParameterGenerationGetObj - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *bool* | :heavy_check_mark: | N/A | -| `num` | *float* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md b/php-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md index f753bd4c4..1e77b0d34 100755 --- a/php-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md +++ b/php-client-sdk/docs/models/operations/TypedParameterGenerationGetRequest.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -| `bigint` | *?int* | :heavy_minus_sign: | N/A | -| `date` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | -| `decimal` | *?float* | :heavy_minus_sign: | N/A | -| `obj` | [?TypedParameterGenerationGetObj](../../models/operations/TypedParameterGenerationGetObj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | +| `bigint` | *?int* | :heavy_minus_sign: | N/A | +| `date` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | +| `decimal` | *?float* | :heavy_minus_sign: | N/A | +| `obj` | [?\OpenAPI\OpenAPI\Models\Operations\Obj](../../models/operations/Obj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UnionBigIntDecimalResponse.md b/php-client-sdk/docs/models/operations/UnionBigIntDecimalResponse.md index db6225ad2..d17276248 100755 --- a/php-client-sdk/docs/models/operations/UnionBigIntDecimalResponse.md +++ b/php-client-sdk/docs/models/operations/UnionBigIntDecimalResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?UnionBigIntDecimalRes](../../models/operations/UnionBigIntDecimalRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\UnionBigIntDecimalRes](../../models/operations/UnionBigIntDecimalRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UnionDateNullResponse.md b/php-client-sdk/docs/models/operations/UnionDateNullResponse.md index b6a5a3444..fd3fcdd21 100755 --- a/php-client-sdk/docs/models/operations/UnionDateNullResponse.md +++ b/php-client-sdk/docs/models/operations/UnionDateNullResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?UnionDateNullRes](../../models/operations/UnionDateNullRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\UnionDateNullRes](../../models/operations/UnionDateNullRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UnionDateTimeBigIntResponse.md b/php-client-sdk/docs/models/operations/UnionDateTimeBigIntResponse.md index ce458829d..196e42480 100755 --- a/php-client-sdk/docs/models/operations/UnionDateTimeBigIntResponse.md +++ b/php-client-sdk/docs/models/operations/UnionDateTimeBigIntResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?UnionDateTimeBigIntRes](../../models/operations/UnionDateTimeBigIntRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\UnionDateTimeBigIntRes](../../models/operations/UnionDateTimeBigIntRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UnionDateTimeNullResponse.md b/php-client-sdk/docs/models/operations/UnionDateTimeNullResponse.md index e58905bc9..3faacd805 100755 --- a/php-client-sdk/docs/models/operations/UnionDateTimeNullResponse.md +++ b/php-client-sdk/docs/models/operations/UnionDateTimeNullResponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?UnionDateTimeNullRes](../../models/operations/UnionDateTimeNullRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\UnionDateTimeNullRes](../../models/operations/UnionDateTimeNullRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSON.md b/php-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSON.md deleted file mode 100755 index 4762981fe..000000000 --- a/php-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSON - -A response body that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `json` | [UsageExamplePost200ApplicationJSONJSON](../../models/operations/UsageExamplePost200ApplicationJSONJSON.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md b/php-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md deleted file mode 100755 index 0c9c8d300..000000000 --- a/php-client-sdk/docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSONJSON - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `fakerFormattedStrings` | [?\OpenAPI\OpenAPI\Models\Shared\FakerFormattedStrings](../../models/shared/FakerFormattedStrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | -| `fakerStrings` | [?\OpenAPI\OpenAPI\Models\Shared\FakerStrings](../../models/shared/FakerStrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | -| `simpleObject` | [?\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UsageExamplePostEnumParameter.md b/php-client-sdk/docs/models/operations/UsageExamplePostEnumParameter.md deleted file mode 100755 index edee3e287..000000000 --- a/php-client-sdk/docs/models/operations/UsageExamplePostEnumParameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `Value1` | value1 | -| `Value2` | value2 | -| `Value3` | value3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UsageExamplePostJson.md b/php-client-sdk/docs/models/operations/UsageExamplePostJson.md new file mode 100755 index 000000000..b2882a433 --- /dev/null +++ b/php-client-sdk/docs/models/operations/UsageExamplePostJson.md @@ -0,0 +1,10 @@ +# UsageExamplePostJson + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `fakerFormattedStrings` | [?\OpenAPI\OpenAPI\Models\Shared\FakerFormattedStrings](../../models/shared/FakerFormattedStrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | +| `fakerStrings` | [?\OpenAPI\OpenAPI\Models\Shared\FakerStrings](../../models/shared/FakerStrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | +| `simpleObject` | [?\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UsageExamplePostOptEnumParameter.md b/php-client-sdk/docs/models/operations/UsageExamplePostOptEnumParameter.md deleted file mode 100755 index f0d5899a0..000000000 --- a/php-client-sdk/docs/models/operations/UsageExamplePostOptEnumParameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostOptEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `Value1` | value1 | -| `Value2` | value2 | -| `Value3` | value3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UsageExamplePostRequest.md b/php-client-sdk/docs/models/operations/UsageExamplePostRequest.md index ca3101fe8..85742030d 100755 --- a/php-client-sdk/docs/models/operations/UsageExamplePostRequest.md +++ b/php-client-sdk/docs/models/operations/UsageExamplePostRequest.md @@ -3,27 +3,27 @@ ## Fields -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `requestBody` | [?UsageExamplePostRequestBody](../../models/operations/UsageExamplePostRequestBody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | -| `bigintParameter` | *int* | :heavy_check_mark: | An bigint parameter | | -| `bigintParameterOptional` | *?int* | :heavy_minus_sign: | An bigint parameter | | -| `bigintStrParameter` | *string* | :heavy_check_mark: | An bigint parameter | | -| `bigintStrParameterOptional` | *?string* | :heavy_minus_sign: | An bigint parameter | | -| `boolParameter` | *bool* | :heavy_check_mark: | A boolean parameter | | -| `dateParameter` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date parameter | | -| `dateTimeDefaultParameter` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date time parameter with a default value | | -| `dateTimeParameter` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date time parameter | | -| `decimalParameter` | *float* | :heavy_check_mark: | A decimal parameter | | -| `decimalParameterOptional` | *?float* | :heavy_minus_sign: | A decimal parameter | | -| `decimalStrParameter` | *string* | :heavy_check_mark: | A decimal parameter | | -| `decimalStrParameterOptional` | *?string* | :heavy_minus_sign: | A decimal parameter | | -| `doubleParameter` | *float* | :heavy_check_mark: | A double parameter | | -| `enumParameter` | [UsageExamplePostEnumParameter](../../models/operations/UsageExamplePostEnumParameter.md) | :heavy_check_mark: | An enum parameter | | -| `falseyNumberParameter` | *float* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | -| `float32Parameter` | *float* | :heavy_check_mark: | A float32 parameter | | -| `floatParameter` | *float* | :heavy_check_mark: | A float parameter | | -| `int64Parameter` | *int* | :heavy_check_mark: | An int64 parameter | | -| `intParameter` | *int* | :heavy_check_mark: | An integer parameter | | -| `optEnumParameter` | [?UsageExamplePostOptEnumParameter](../../models/operations/UsageExamplePostOptEnumParameter.md) | :heavy_minus_sign: | An enum parameter | value3 | -| `strParameter` | *string* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [?\OpenAPI\OpenAPI\Models\Operations\UsageExamplePostRequestBody](../../models/operations/UsageExamplePostRequestBody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | +| `bigintParameter` | *int* | :heavy_check_mark: | An bigint parameter | | +| `bigintParameterOptional` | *?int* | :heavy_minus_sign: | An bigint parameter | | +| `bigintStrParameter` | *string* | :heavy_check_mark: | An bigint parameter | | +| `bigintStrParameterOptional` | *?string* | :heavy_minus_sign: | An bigint parameter | | +| `boolParameter` | *bool* | :heavy_check_mark: | A boolean parameter | | +| `dateParameter` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date parameter | | +| `dateTimeDefaultParameter` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date time parameter with a default value | | +| `dateTimeParameter` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date time parameter | | +| `decimalParameter` | *float* | :heavy_check_mark: | A decimal parameter | | +| `decimalParameterOptional` | *?float* | :heavy_minus_sign: | A decimal parameter | | +| `decimalStrParameter` | *string* | :heavy_check_mark: | A decimal parameter | | +| `decimalStrParameterOptional` | *?string* | :heavy_minus_sign: | A decimal parameter | | +| `doubleParameter` | *float* | :heavy_check_mark: | A double parameter | | +| `enumParameter` | [\OpenAPI\OpenAPI\Models\Operations\EnumParameter](../../models/operations/EnumParameter.md) | :heavy_check_mark: | An enum parameter | | +| `falseyNumberParameter` | *float* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | +| `float32Parameter` | *float* | :heavy_check_mark: | A float32 parameter | | +| `floatParameter` | *float* | :heavy_check_mark: | A float parameter | | +| `int64Parameter` | *int* | :heavy_check_mark: | An int64 parameter | | +| `intParameter` | *int* | :heavy_check_mark: | An integer parameter | | +| `optEnumParameter` | [?\OpenAPI\OpenAPI\Models\Operations\OptEnumParameter](../../models/operations/OptEnumParameter.md) | :heavy_minus_sign: | An enum parameter | value3 | +| `strParameter` | *string* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UsageExamplePostResponse.md b/php-client-sdk/docs/models/operations/UsageExamplePostResponse.md index 2c16c7b2d..7fdc86095 100755 --- a/php-client-sdk/docs/models/operations/UsageExamplePostResponse.md +++ b/php-client-sdk/docs/models/operations/UsageExamplePostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `usageExamplePost200ApplicationJSONObject` | [?UsageExamplePost200ApplicationJSON](../../models/operations/UsageExamplePost200ApplicationJSON.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [?\OpenAPI\OpenAPI\Models\Operations\UsageExamplePostResponseBody](../../models/operations/UsageExamplePostResponseBody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/UsageExamplePostResponseBody.md b/php-client-sdk/docs/models/operations/UsageExamplePostResponseBody.md new file mode 100755 index 000000000..8bebd36b6 --- /dev/null +++ b/php-client-sdk/docs/models/operations/UsageExamplePostResponseBody.md @@ -0,0 +1,10 @@ +# UsageExamplePostResponseBody + +A response body that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `json` | [\OpenAPI\OpenAPI\Models\Operations\UsageExamplePostJson](../../models/operations/UsageExamplePostJson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/operations/WeaklyTypedOneOfPostResponse.md b/php-client-sdk/docs/models/operations/WeaklyTypedOneOfPostResponse.md index 3e7a3aab8..b85f14558 100755 --- a/php-client-sdk/docs/models/operations/WeaklyTypedOneOfPostResponse.md +++ b/php-client-sdk/docs/models/operations/WeaklyTypedOneOfPostResponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [?WeaklyTypedOneOfPostRes](../../models/operations/WeaklyTypedOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [\Psr\Http\Message\ResponseInterface](https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [?\OpenAPI\OpenAPI\Models\Operations\WeaklyTypedOneOfPostRes](../../models/operations/WeaklyTypedOneOfPostRes.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ArrObjValue.md b/php-client-sdk/docs/models/shared/ArrObjValue.md index 62afc7a2e..760c2876e 100755 --- a/php-client-sdk/docs/models/shared/ArrObjValue.md +++ b/php-client-sdk/docs/models/shared/ArrObjValue.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | -| `json` | array<[SimpleObject](../../models/shared/SimpleObject.md)> | :heavy_minus_sign: | N/A | -| `required` | *mixed* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `json` | array<[\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md)> | :heavy_minus_sign: | N/A | +| `required` | *mixed* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ArrObjValueCamelCase.md b/php-client-sdk/docs/models/shared/ArrObjValueCamelCase.md index a893f1efc..e082f5cb0 100755 --- a/php-client-sdk/docs/models/shared/ArrObjValueCamelCase.md +++ b/php-client-sdk/docs/models/shared/ArrObjValueCamelCase.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -| `json` | array<[SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md)> | :heavy_minus_sign: | N/A | -| `required` | *mixed* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `json` | array<[\OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md)> | :heavy_minus_sign: | N/A | +| `required` | *mixed* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ArrayCircularReferenceObject.md b/php-client-sdk/docs/models/shared/ArrayCircularReferenceObject.md index 26b75b7f7..966643801 100755 --- a/php-client-sdk/docs/models/shared/ArrayCircularReferenceObject.md +++ b/php-client-sdk/docs/models/shared/ArrayCircularReferenceObject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| `circular` | array<[ArrayCircularReferenceObject](../../models/shared/ArrayCircularReferenceObject.md)> | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `circular` | array<[\OpenAPI\OpenAPI\Models\Shared\ArrayCircularReferenceObject](../../models/shared/ArrayCircularReferenceObject.md)> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/AuthServiceRequestBody.md b/php-client-sdk/docs/models/shared/AuthServiceRequestBody.md index ccbcf75eb..0c715feb6 100755 --- a/php-client-sdk/docs/models/shared/AuthServiceRequestBody.md +++ b/php-client-sdk/docs/models/shared/AuthServiceRequestBody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -| `basicAuth` | [?AuthServiceRequestBodyBasicAuth](../../models/shared/AuthServiceRequestBodyBasicAuth.md) | :heavy_minus_sign: | N/A | -| `headerAuth` | array<[AuthServiceRequestBodyHeaderAuth](../../models/shared/AuthServiceRequestBodyHeaderAuth.md)> | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `basicAuth` | [?\OpenAPI\OpenAPI\Models\Shared\BasicAuth](../../models/shared/BasicAuth.md) | :heavy_minus_sign: | N/A | +| `headerAuth` | array<[\OpenAPI\OpenAPI\Models\Shared\HeaderAuth](../../models/shared/HeaderAuth.md)> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/AuthServiceRequestBodyBasicAuth.md b/php-client-sdk/docs/models/shared/AuthServiceRequestBodyBasicAuth.md deleted file mode 100755 index 4ee6ba09f..000000000 --- a/php-client-sdk/docs/models/shared/AuthServiceRequestBodyBasicAuth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyBasicAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `password` | *string* | :heavy_check_mark: | N/A | -| `username` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/AuthServiceRequestBodyHeaderAuth.md b/php-client-sdk/docs/models/shared/AuthServiceRequestBodyHeaderAuth.md deleted file mode 100755 index 438ca56cd..000000000 --- a/php-client-sdk/docs/models/shared/AuthServiceRequestBodyHeaderAuth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyHeaderAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `expectedValue` | *string* | :heavy_check_mark: | N/A | -| `headerName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/BasicAuth.md b/php-client-sdk/docs/models/shared/BasicAuth.md new file mode 100755 index 000000000..7055185f9 --- /dev/null +++ b/php-client-sdk/docs/models/shared/BasicAuth.md @@ -0,0 +1,9 @@ +# BasicAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `password` | *string* | :heavy_check_mark: | N/A | +| `username` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/Chocolates.md b/php-client-sdk/docs/models/shared/Chocolates.md new file mode 100755 index 000000000..29ac802c8 --- /dev/null +++ b/php-client-sdk/docs/models/shared/Chocolates.md @@ -0,0 +1,8 @@ +# Chocolates + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `description` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ConstEnumInt.md b/php-client-sdk/docs/models/shared/ConstEnumInt.md new file mode 100755 index 000000000..f997d5a9b --- /dev/null +++ b/php-client-sdk/docs/models/shared/ConstEnumInt.md @@ -0,0 +1,10 @@ +# ConstEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | 1 | +| `Two` | 2 | +| `Three` | 3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ConstEnumStr.md b/php-client-sdk/docs/models/shared/ConstEnumStr.md new file mode 100755 index 000000000..2ae40ddfb --- /dev/null +++ b/php-client-sdk/docs/models/shared/ConstEnumStr.md @@ -0,0 +1,10 @@ +# ConstEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | one | +| `Two` | two | +| `Three` | three | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DeepObject.md b/php-client-sdk/docs/models/shared/DeepObject.md index b77ed289d..a71534405 100755 --- a/php-client-sdk/docs/models/shared/DeepObject.md +++ b/php-client-sdk/docs/models/shared/DeepObject.md @@ -6,11 +6,11 @@ | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `any` | *mixed* | :heavy_check_mark: | N/A | anyOf[0] | -| `arr` | array<[SimpleObject](../../models/shared/SimpleObject.md)> | :heavy_check_mark: | N/A | ...,... | +| `arr` | array<[\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md)> | :heavy_check_mark: | N/A | ...,... | | `bool` | *bool* | :heavy_check_mark: | N/A | true | | `int` | *int* | :heavy_check_mark: | N/A | 1 | -| `map` | array | :heavy_check_mark: | N/A | [object Object] | +| `map` | array | :heavy_check_mark: | N/A | [object Object] | | `num` | *float* | :heavy_check_mark: | N/A | 1.1 | -| `obj` | [SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | +| `obj` | [\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | | `str` | *string* | :heavy_check_mark: | N/A | test | | `type` | *?string* | :heavy_minus_sign: | N/A | | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DeepObjectCamelCase.md b/php-client-sdk/docs/models/shared/DeepObjectCamelCase.md index 2d8a32083..f0012a170 100755 --- a/php-client-sdk/docs/models/shared/DeepObjectCamelCase.md +++ b/php-client-sdk/docs/models/shared/DeepObjectCamelCase.md @@ -6,11 +6,11 @@ | Field | Type | Required | Description | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `anyVal` | *mixed* | :heavy_check_mark: | N/A | -| `arrVal` | array<[SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md)> | :heavy_check_mark: | N/A | +| `arrVal` | array<[\OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md)> | :heavy_check_mark: | N/A | | `boolVal` | *bool* | :heavy_check_mark: | N/A | | `intVal` | *int* | :heavy_check_mark: | N/A | -| `mapVal` | array | :heavy_check_mark: | N/A | +| `mapVal` | array | :heavy_check_mark: | N/A | | `numVal` | *float* | :heavy_check_mark: | N/A | -| `objVal` | [SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | +| `objVal` | [\OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase](../../models/shared/SimpleObjectCamelCase.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | `strVal` | *string* | :heavy_check_mark: | N/A | | `type` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DefaultEnumInt.md b/php-client-sdk/docs/models/shared/DefaultEnumInt.md new file mode 100755 index 000000000..d7e9b6543 --- /dev/null +++ b/php-client-sdk/docs/models/shared/DefaultEnumInt.md @@ -0,0 +1,10 @@ +# DefaultEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | 1 | +| `Two` | 2 | +| `Three` | 3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DefaultEnumStr.md b/php-client-sdk/docs/models/shared/DefaultEnumStr.md new file mode 100755 index 000000000..43ebd7ae7 --- /dev/null +++ b/php-client-sdk/docs/models/shared/DefaultEnumStr.md @@ -0,0 +1,10 @@ +# DefaultEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | one | +| `Two` | two | +| `Three` | three | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DefaultsAndConsts.md b/php-client-sdk/docs/models/shared/DefaultsAndConsts.md index 51d94d025..ed94aba22 100755 --- a/php-client-sdk/docs/models/shared/DefaultsAndConsts.md +++ b/php-client-sdk/docs/models/shared/DefaultsAndConsts.md @@ -3,33 +3,33 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| `constBigInt` | *int* | :heavy_check_mark: | N/A | -| `constBigIntStr` | *string* | :heavy_check_mark: | N/A | -| `constBool` | *bool* | :heavy_check_mark: | N/A | -| `constDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | -| `constDateTime` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | -| `constDecimal` | *float* | :heavy_check_mark: | N/A | -| `constDecimalStr` | *string* | :heavy_check_mark: | N/A | -| `constEnumInt` | [DefaultsAndConstsConstEnumInt](../../models/shared/DefaultsAndConstsConstEnumInt.md) | :heavy_check_mark: | N/A | -| `constEnumStr` | [DefaultsAndConstsConstEnumStr](../../models/shared/DefaultsAndConstsConstEnumStr.md) | :heavy_check_mark: | N/A | -| `constInt` | *int* | :heavy_check_mark: | N/A | -| `constNum` | *float* | :heavy_check_mark: | N/A | -| `constStr` | *string* | :heavy_check_mark: | N/A | -| `constStrNull` | *string* | :heavy_check_mark: | N/A | -| `defaultBigInt` | *?int* | :heavy_minus_sign: | N/A | -| `defaultBigIntStr` | *?string* | :heavy_minus_sign: | N/A | -| `defaultBool` | *?bool* | :heavy_minus_sign: | N/A | -| `defaultDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | -| `defaultDateTime` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | -| `defaultDecimal` | *?float* | :heavy_minus_sign: | N/A | -| `defaultDecimalStr` | *?string* | :heavy_minus_sign: | N/A | -| `defaultEnumInt` | [?DefaultsAndConstsDefaultEnumInt](../../models/shared/DefaultsAndConstsDefaultEnumInt.md) | :heavy_minus_sign: | N/A | -| `defaultEnumStr` | [?DefaultsAndConstsDefaultEnumStr](../../models/shared/DefaultsAndConstsDefaultEnumStr.md) | :heavy_minus_sign: | N/A | -| `defaultInt` | *?int* | :heavy_minus_sign: | N/A | -| `defaultNum` | *?float* | :heavy_minus_sign: | N/A | -| `defaultStr` | *?string* | :heavy_minus_sign: | N/A | -| `defaultStrNullable` | *?string* | :heavy_minus_sign: | N/A | -| `defaultStrOptional` | *?string* | :heavy_minus_sign: | N/A | -| `normalField` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `constBigInt` | *int* | :heavy_check_mark: | N/A | +| `constBigIntStr` | *string* | :heavy_check_mark: | N/A | +| `constBool` | *bool* | :heavy_check_mark: | N/A | +| `constDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | +| `constDateTime` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | +| `constDecimal` | *float* | :heavy_check_mark: | N/A | +| `constDecimalStr` | *string* | :heavy_check_mark: | N/A | +| `constEnumInt` | [\OpenAPI\OpenAPI\Models\Shared\ConstEnumInt](../../models/shared/ConstEnumInt.md) | :heavy_check_mark: | N/A | +| `constEnumStr` | [\OpenAPI\OpenAPI\Models\Shared\ConstEnumStr](../../models/shared/ConstEnumStr.md) | :heavy_check_mark: | N/A | +| `constInt` | *int* | :heavy_check_mark: | N/A | +| `constNum` | *float* | :heavy_check_mark: | N/A | +| `constStr` | *string* | :heavy_check_mark: | N/A | +| `constStrNull` | *string* | :heavy_check_mark: | N/A | +| `defaultBigInt` | *?int* | :heavy_minus_sign: | N/A | +| `defaultBigIntStr` | *?string* | :heavy_minus_sign: | N/A | +| `defaultBool` | *?bool* | :heavy_minus_sign: | N/A | +| `defaultDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | +| `defaultDateTime` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | +| `defaultDecimal` | *?float* | :heavy_minus_sign: | N/A | +| `defaultDecimalStr` | *?string* | :heavy_minus_sign: | N/A | +| `defaultEnumInt` | [?\OpenAPI\OpenAPI\Models\Shared\DefaultEnumInt](../../models/shared/DefaultEnumInt.md) | :heavy_minus_sign: | N/A | +| `defaultEnumStr` | [?\OpenAPI\OpenAPI\Models\Shared\DefaultEnumStr](../../models/shared/DefaultEnumStr.md) | :heavy_minus_sign: | N/A | +| `defaultInt` | *?int* | :heavy_minus_sign: | N/A | +| `defaultNum` | *?float* | :heavy_minus_sign: | N/A | +| `defaultStr` | *?string* | :heavy_minus_sign: | N/A | +| `defaultStrNullable` | *?string* | :heavy_minus_sign: | N/A | +| `defaultStrOptional` | *?string* | :heavy_minus_sign: | N/A | +| `normalField` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumInt.md b/php-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumInt.md deleted file mode 100755 index c417317c2..000000000 --- a/php-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumInt.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | 1 | -| `Two` | 2 | -| `Three` | 3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumStr.md b/php-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumStr.md deleted file mode 100755 index fe2be67fb..000000000 --- a/php-client-sdk/docs/models/shared/DefaultsAndConstsConstEnumStr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | one | -| `Two` | two | -| `Three` | three | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumInt.md b/php-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumInt.md deleted file mode 100755 index 381ae51a2..000000000 --- a/php-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumInt.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | 1 | -| `Two` | 2 | -| `Three` | 3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumStr.md b/php-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumStr.md deleted file mode 100755 index cc25b20a5..000000000 --- a/php-client-sdk/docs/models/shared/DefaultsAndConstsDefaultEnumStr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | one | -| `Two` | two | -| `Three` | three | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DefaultsAndConstsOutput.md b/php-client-sdk/docs/models/shared/DefaultsAndConstsOutput.md index 3c66fb2bb..b974f5918 100755 --- a/php-client-sdk/docs/models/shared/DefaultsAndConstsOutput.md +++ b/php-client-sdk/docs/models/shared/DefaultsAndConstsOutput.md @@ -3,33 +3,33 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `constBigInt` | *int* | :heavy_check_mark: | N/A | -| `constBigIntStr` | *string* | :heavy_check_mark: | N/A | -| `constBool` | *bool* | :heavy_check_mark: | N/A | -| `constDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | -| `constDateTime` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | -| `constDecimal` | *float* | :heavy_check_mark: | N/A | -| `constDecimalStr` | *string* | :heavy_check_mark: | N/A | -| `constEnumInt` | [DefaultsAndConstsOutputConstEnumInt](../../models/shared/DefaultsAndConstsOutputConstEnumInt.md) | :heavy_check_mark: | N/A | -| `constEnumStr` | [DefaultsAndConstsOutputConstEnumStr](../../models/shared/DefaultsAndConstsOutputConstEnumStr.md) | :heavy_check_mark: | N/A | -| `constInt` | *int* | :heavy_check_mark: | N/A | -| `constNum` | *float* | :heavy_check_mark: | N/A | -| `constStr` | *string* | :heavy_check_mark: | N/A | -| `constStrNull` | *string* | :heavy_check_mark: | N/A | -| `defaultBigInt` | *int* | :heavy_check_mark: | N/A | -| `defaultBigIntStr` | *string* | :heavy_check_mark: | N/A | -| `defaultBool` | *bool* | :heavy_check_mark: | N/A | -| `defaultDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | -| `defaultDateTime` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | -| `defaultDecimal` | *float* | :heavy_check_mark: | N/A | -| `defaultDecimalStr` | *string* | :heavy_check_mark: | N/A | -| `defaultEnumInt` | [DefaultsAndConstsOutputDefaultEnumInt](../../models/shared/DefaultsAndConstsOutputDefaultEnumInt.md) | :heavy_check_mark: | N/A | -| `defaultEnumStr` | [DefaultsAndConstsOutputDefaultEnumStr](../../models/shared/DefaultsAndConstsOutputDefaultEnumStr.md) | :heavy_check_mark: | N/A | -| `defaultInt` | *int* | :heavy_check_mark: | N/A | -| `defaultNum` | *float* | :heavy_check_mark: | N/A | -| `defaultStr` | *string* | :heavy_check_mark: | N/A | -| `defaultStrNullable` | *string* | :heavy_check_mark: | N/A | -| `defaultStrOptional` | *?string* | :heavy_minus_sign: | N/A | -| `normalField` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | +| `constBigInt` | *int* | :heavy_check_mark: | N/A | +| `constBigIntStr` | *string* | :heavy_check_mark: | N/A | +| `constBool` | *bool* | :heavy_check_mark: | N/A | +| `constDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | +| `constDateTime` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | +| `constDecimal` | *float* | :heavy_check_mark: | N/A | +| `constDecimalStr` | *string* | :heavy_check_mark: | N/A | +| `constEnumInt` | [\OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsOutputConstEnumInt](../../models/shared/DefaultsAndConstsOutputConstEnumInt.md) | :heavy_check_mark: | N/A | +| `constEnumStr` | [\OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsOutputConstEnumStr](../../models/shared/DefaultsAndConstsOutputConstEnumStr.md) | :heavy_check_mark: | N/A | +| `constInt` | *int* | :heavy_check_mark: | N/A | +| `constNum` | *float* | :heavy_check_mark: | N/A | +| `constStr` | *string* | :heavy_check_mark: | N/A | +| `constStrNull` | *string* | :heavy_check_mark: | N/A | +| `defaultBigInt` | *int* | :heavy_check_mark: | N/A | +| `defaultBigIntStr` | *string* | :heavy_check_mark: | N/A | +| `defaultBool` | *bool* | :heavy_check_mark: | N/A | +| `defaultDate` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | +| `defaultDateTime` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | N/A | +| `defaultDecimal` | *float* | :heavy_check_mark: | N/A | +| `defaultDecimalStr` | *string* | :heavy_check_mark: | N/A | +| `defaultEnumInt` | [\OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsOutputDefaultEnumInt](../../models/shared/DefaultsAndConstsOutputDefaultEnumInt.md) | :heavy_check_mark: | N/A | +| `defaultEnumStr` | [\OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsOutputDefaultEnumStr](../../models/shared/DefaultsAndConstsOutputDefaultEnumStr.md) | :heavy_check_mark: | N/A | +| `defaultInt` | *int* | :heavy_check_mark: | N/A | +| `defaultNum` | *float* | :heavy_check_mark: | N/A | +| `defaultStr` | *string* | :heavy_check_mark: | N/A | +| `defaultStrNullable` | *string* | :heavy_check_mark: | N/A | +| `defaultStrOptional` | *?string* | :heavy_minus_sign: | N/A | +| `normalField` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DeprecatedEnum.md b/php-client-sdk/docs/models/shared/DeprecatedEnum.md new file mode 100755 index 000000000..2af19435d --- /dev/null +++ b/php-client-sdk/docs/models/shared/DeprecatedEnum.md @@ -0,0 +1,12 @@ +# ~~DeprecatedEnum~~ + +> :warning: **DEPRECATED**: This enum is deprecated. + + +## Values + +| Name | Value | +| ----- | ----- | +| `A` | a | +| `B` | b | +| `C` | c | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DeprecatedFieldInObject.md b/php-client-sdk/docs/models/shared/DeprecatedFieldInObject.md index ba652fb28..cb8569d82 100755 --- a/php-client-sdk/docs/models/shared/DeprecatedFieldInObject.md +++ b/php-client-sdk/docs/models/shared/DeprecatedFieldInObject.md @@ -5,6 +5,6 @@ | Field | Type | Required | Description | | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| ~~`deprecatedEnum`~~ | [?DeprecatedFieldInObjectDeprecatedEnum](../../models/shared/DeprecatedFieldInObjectDeprecatedEnum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | +| ~~`deprecatedEnum`~~ | [?\OpenAPI\OpenAPI\Models\Shared\DeprecatedEnum](../../models/shared/DeprecatedEnum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | | ~~`deprecatedField`~~ | *?string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. Use newField instead. | | `newField` | *?string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md b/php-client-sdk/docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md deleted file mode 100755 index 14c3d71b4..000000000 --- a/php-client-sdk/docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md +++ /dev/null @@ -1,12 +0,0 @@ -# ~~DeprecatedFieldInObjectDeprecatedEnum~~ - -> :warning: **DEPRECATED**: This enum is deprecated. - - -## Values - -| Name | Value | -| ----- | ----- | -| `A` | a | -| `B` | b | -| `C` | c | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/EnumNumber.md b/php-client-sdk/docs/models/shared/EnumNumber.md new file mode 100755 index 000000000..3da13cca6 --- /dev/null +++ b/php-client-sdk/docs/models/shared/EnumNumber.md @@ -0,0 +1,10 @@ +# EnumNumber + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | 1 | +| `Two` | 2 | +| `Three` | 3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/EnumStr.md b/php-client-sdk/docs/models/shared/EnumStr.md new file mode 100755 index 000000000..244a7fd0b --- /dev/null +++ b/php-client-sdk/docs/models/shared/EnumStr.md @@ -0,0 +1,10 @@ +# EnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | one | +| `Two` | two | +| `Three` | three | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/Error.md b/php-client-sdk/docs/models/shared/Error.md index d81febc0b..53bab83db 100755 --- a/php-client-sdk/docs/models/shared/Error.md +++ b/php-client-sdk/docs/models/shared/Error.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | -| `code` | *?string* | :heavy_minus_sign: | N/A | -| `message` | *?string* | :heavy_minus_sign: | N/A | -| `type` | [?ErrorType](../../models/shared/ErrorType.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | +| `code` | *?string* | :heavy_minus_sign: | N/A | +| `message` | *?string* | :heavy_minus_sign: | N/A | +| `type` | [?\OpenAPI\OpenAPI\Models\Shared\ErrorType](../../models/shared/ErrorType.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ExampleResource.md b/php-client-sdk/docs/models/shared/ExampleResource.md index 4bccb344b..d83b025ae 100755 --- a/php-client-sdk/docs/models/shared/ExampleResource.md +++ b/php-client-sdk/docs/models/shared/ExampleResource.md @@ -3,17 +3,17 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | -| `arrayOfNumber` | array<*float*> | :heavy_minus_sign: | N/A | -| `arrayOfString` | array<*string*> | :heavy_minus_sign: | N/A | -| `chocolates` | array<[ExampleResourceChocolates](../../models/shared/ExampleResourceChocolates.md)> | :heavy_check_mark: | N/A | -| `createdAt` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | -| `enumNumber` | [?ExampleResourceEnumNumber](../../models/shared/ExampleResourceEnumNumber.md) | :heavy_minus_sign: | N/A | -| `enumStr` | [?ExampleResourceEnumStr](../../models/shared/ExampleResourceEnumStr.md) | :heavy_minus_sign: | N/A | -| `id` | *string* | :heavy_check_mark: | N/A | -| `mapOfInteger` | array | :heavy_minus_sign: | N/A | -| `mapOfString` | array | :heavy_minus_sign: | N/A | -| `name` | *string* | :heavy_check_mark: | N/A | -| `updatedAt` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | -| `vehicle` | *mixed* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `arrayOfNumber` | array<*float*> | :heavy_minus_sign: | N/A | +| `arrayOfString` | array<*string*> | :heavy_minus_sign: | N/A | +| `chocolates` | array<[\OpenAPI\OpenAPI\Models\Shared\Chocolates](../../models/shared/Chocolates.md)> | :heavy_check_mark: | N/A | +| `createdAt` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | +| `enumNumber` | [?\OpenAPI\OpenAPI\Models\Shared\EnumNumber](../../models/shared/EnumNumber.md) | :heavy_minus_sign: | N/A | +| `enumStr` | [?\OpenAPI\OpenAPI\Models\Shared\EnumStr](../../models/shared/EnumStr.md) | :heavy_minus_sign: | N/A | +| `id` | *string* | :heavy_check_mark: | N/A | +| `mapOfInteger` | array | :heavy_minus_sign: | N/A | +| `mapOfString` | array | :heavy_minus_sign: | N/A | +| `name` | *string* | :heavy_check_mark: | N/A | +| `updatedAt` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | +| `vehicle` | *mixed* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ExampleResourceChocolates.md b/php-client-sdk/docs/models/shared/ExampleResourceChocolates.md deleted file mode 100755 index b84a5214c..000000000 --- a/php-client-sdk/docs/models/shared/ExampleResourceChocolates.md +++ /dev/null @@ -1,8 +0,0 @@ -# ExampleResourceChocolates - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `description` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ExampleResourceEnumNumber.md b/php-client-sdk/docs/models/shared/ExampleResourceEnumNumber.md deleted file mode 100755 index 0a6d9bd00..000000000 --- a/php-client-sdk/docs/models/shared/ExampleResourceEnumNumber.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumNumber - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | 1 | -| `Two` | 2 | -| `Three` | 3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ExampleResourceEnumStr.md b/php-client-sdk/docs/models/shared/ExampleResourceEnumStr.md deleted file mode 100755 index fbd86b672..000000000 --- a/php-client-sdk/docs/models/shared/ExampleResourceEnumStr.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | one | -| `Two` | two | -| `Three` | three | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/HeaderAuth.md b/php-client-sdk/docs/models/shared/HeaderAuth.md new file mode 100755 index 000000000..505f4e60e --- /dev/null +++ b/php-client-sdk/docs/models/shared/HeaderAuth.md @@ -0,0 +1,9 @@ +# HeaderAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `expectedValue` | *string* | :heavy_check_mark: | N/A | +| `headerName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md b/php-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md index fc7865d29..181339bd1 100755 --- a/php-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md +++ b/php-client-sdk/docs/models/shared/HttpBinSimpleJsonObject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `slideshow` | [HttpBinSimpleJsonObjectSlideshow](../../models/shared/HttpBinSimpleJsonObjectSlideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `slideshow` | [\OpenAPI\OpenAPI\Models\Shared\Slideshow](../../models/shared/Slideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md b/php-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md deleted file mode 100755 index 07c128fee..000000000 --- a/php-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md +++ /dev/null @@ -1,11 +0,0 @@ -# HttpBinSimpleJsonObjectSlideshow - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -| `author` | *string* | :heavy_check_mark: | N/A | -| `date` | *string* | :heavy_check_mark: | N/A | -| `slides` | array<[HttpBinSimpleJsonObjectSlideshowSlides](../../models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md)> | :heavy_check_mark: | N/A | -| `title` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md b/php-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md deleted file mode 100755 index d0bb9f365..000000000 --- a/php-client-sdk/docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md +++ /dev/null @@ -1,10 +0,0 @@ -# HttpBinSimpleJsonObjectSlideshowSlides - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `items` | array<*string*> | :heavy_minus_sign: | N/A | -| `title` | *string* | :heavy_check_mark: | N/A | -| `type` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/Int32Enum.md b/php-client-sdk/docs/models/shared/Int32Enum.md new file mode 100755 index 000000000..3827028a2 --- /dev/null +++ b/php-client-sdk/docs/models/shared/Int32Enum.md @@ -0,0 +1,12 @@ +# Int32Enum + +An int32 enum property. + + +## Values + +| Name | Value | +| ------------------------ | ------------------------ | +| `FiftyFive` | 55 | +| `SixtyNine` | 69 | +| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/Int32EnumVal.md b/php-client-sdk/docs/models/shared/Int32EnumVal.md new file mode 100755 index 000000000..e0dcea464 --- /dev/null +++ b/php-client-sdk/docs/models/shared/Int32EnumVal.md @@ -0,0 +1,12 @@ +# Int32EnumVal + +An int32 enum property. + + +## Values + +| Name | Value | +| ------------------------ | ------------------------ | +| `FiftyFive` | 55 | +| `SixtyNine` | 69 | +| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/IntEnum.md b/php-client-sdk/docs/models/shared/IntEnum.md new file mode 100755 index 000000000..5a6582451 --- /dev/null +++ b/php-client-sdk/docs/models/shared/IntEnum.md @@ -0,0 +1,12 @@ +# IntEnum + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `First` | 1 | +| `Second` | 2 | +| `Third` | 3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/IntEnumVal.md b/php-client-sdk/docs/models/shared/IntEnumVal.md new file mode 100755 index 000000000..1261fe20b --- /dev/null +++ b/php-client-sdk/docs/models/shared/IntEnumVal.md @@ -0,0 +1,12 @@ +# IntEnumVal + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `First` | 1 | +| `Second` | 2 | +| `Third` | 3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/MapObjValue.md b/php-client-sdk/docs/models/shared/MapObjValue.md index c7b0ddb4c..11c5de26f 100755 --- a/php-client-sdk/docs/models/shared/MapObjValue.md +++ b/php-client-sdk/docs/models/shared/MapObjValue.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | -| `json` | array | :heavy_minus_sign: | N/A | -| `required` | *mixed* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| `json` | array | :heavy_minus_sign: | N/A | +| `required` | *mixed* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/MapObjValueCamelCase.md b/php-client-sdk/docs/models/shared/MapObjValueCamelCase.md index 9c7841cbd..d4ddfe66d 100755 --- a/php-client-sdk/docs/models/shared/MapObjValueCamelCase.md +++ b/php-client-sdk/docs/models/shared/MapObjValueCamelCase.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | -| `json` | array | :heavy_minus_sign: | N/A | -| `required` | *mixed* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| `json` | array | :heavy_minus_sign: | N/A | +| `required` | *mixed* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/NullableOneOfRefInObject.md b/php-client-sdk/docs/models/shared/NullableOneOfRefInObject.md index 19766c702..2819a9492 100755 --- a/php-client-sdk/docs/models/shared/NullableOneOfRefInObject.md +++ b/php-client-sdk/docs/models/shared/NullableOneOfRefInObject.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | -| `nullableOneOfOne` | [TypedObject1](../../models/shared/TypedObject1.md) | :heavy_check_mark: | N/A | -| `nullableOneOfTwo` | *mixed* | :heavy_check_mark: | N/A | -| `oneOfOne` | *mixed* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `nullableOneOfOne` | [\OpenAPI\OpenAPI\Models\Shared\TypedObject1](../../models/shared/TypedObject1.md) | :heavy_check_mark: | N/A | +| `nullableOneOfTwo` | *mixed* | :heavy_check_mark: | N/A | +| `oneOfOne` | *mixed* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ObjectCircularReferenceObject.md b/php-client-sdk/docs/models/shared/ObjectCircularReferenceObject.md index 787425279..d085d1f7c 100755 --- a/php-client-sdk/docs/models/shared/ObjectCircularReferenceObject.md +++ b/php-client-sdk/docs/models/shared/ObjectCircularReferenceObject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -| `circular` | [?ObjectCircularReferenceObject](../../models/shared/ObjectCircularReferenceObject.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | +| `circular` | [?\OpenAPI\OpenAPI\Models\Shared\ObjectCircularReferenceObject](../../models/shared/ObjectCircularReferenceObject.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ReadWriteObject.md b/php-client-sdk/docs/models/shared/ReadWriteObject.md new file mode 100755 index 000000000..ce74f47ea --- /dev/null +++ b/php-client-sdk/docs/models/shared/ReadWriteObject.md @@ -0,0 +1,10 @@ +# ReadWriteObject + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `num1` | *int* | :heavy_check_mark: | N/A | +| `num2` | *int* | :heavy_check_mark: | N/A | +| `num3` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ReadWriteObjectInput.md b/php-client-sdk/docs/models/shared/ReadWriteObjectInput.md deleted file mode 100755 index 95c399a98..000000000 --- a/php-client-sdk/docs/models/shared/ReadWriteObjectInput.md +++ /dev/null @@ -1,10 +0,0 @@ -# ReadWriteObjectInput - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `num1` | *int* | :heavy_check_mark: | N/A | -| `num2` | *int* | :heavy_check_mark: | N/A | -| `num3` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/SimpleObject.md b/php-client-sdk/docs/models/shared/SimpleObject.md index 37d1bd91e..3a7aa43d8 100755 --- a/php-client-sdk/docs/models/shared/SimpleObject.md +++ b/php-client-sdk/docs/models/shared/SimpleObject.md @@ -8,25 +8,25 @@ A link to the external docs. ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | -| `any` | *mixed* | :heavy_check_mark: | An any property. | any | -| `bigint` | *?int* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `bigintStr` | *?string* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `bool` | *bool* | :heavy_check_mark: | A boolean property. | true | -| `boolOpt` | *?bool* | :heavy_minus_sign: | An optional boolean property. | true | -| `date` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date property. | 2020-01-01 | -| `dateTime` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00.000000001Z | -| `decimal` | *?float* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `decimalStr` | *?string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `enum` | [Enum](../../models/shared/Enum.md) | :heavy_check_mark: | A string based enum | one | -| `float32` | *float* | :heavy_check_mark: | A float32 property. | 1.1 | -| `int` | *int* | :heavy_check_mark: | An integer property. | 1 | -| `int32` | *int* | :heavy_check_mark: | An int32 property. | 1 | -| `int32Enum` | [SimpleObjectInt32Enum](../../models/shared/SimpleObjectInt32Enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | -| `intEnum` | [SimpleObjectIntEnum](../../models/shared/SimpleObjectIntEnum.md) | :heavy_check_mark: | An integer enum property. | 2 | -| `intOptNull` | *?int* | :heavy_minus_sign: | An optional integer property will be null for tests. | | -| `num` | *float* | :heavy_check_mark: | A number property. | 1.1 | -| `numOptNull` | *?float* | :heavy_minus_sign: | An optional number property will be null for tests. | | -| `str` | *string* | :heavy_check_mark: | A string property. | test | -| `strOpt` | *?string* | :heavy_minus_sign: | An optional string property. | testOptional | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `any` | *mixed* | :heavy_check_mark: | An any property. | any | +| `bigint` | *?int* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `bigintStr` | *?string* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `bool` | *bool* | :heavy_check_mark: | A boolean property. | true | +| `boolOpt` | *?bool* | :heavy_minus_sign: | An optional boolean property. | true | +| `date` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date property. | 2020-01-01 | +| `dateTime` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00.000000001Z | +| `decimal` | *?float* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `decimalStr` | *?string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `enum` | [\OpenAPI\OpenAPI\Models\Shared\Enum](../../models/shared/Enum.md) | :heavy_check_mark: | A string based enum | one | +| `float32` | *float* | :heavy_check_mark: | A float32 property. | 1.1 | +| `int` | *int* | :heavy_check_mark: | An integer property. | 1 | +| `int32` | *int* | :heavy_check_mark: | An int32 property. | 1 | +| `int32Enum` | [\OpenAPI\OpenAPI\Models\Shared\Int32Enum](../../models/shared/Int32Enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | +| `intEnum` | [\OpenAPI\OpenAPI\Models\Shared\IntEnum](../../models/shared/IntEnum.md) | :heavy_check_mark: | An integer enum property. | 2 | +| `intOptNull` | *?int* | :heavy_minus_sign: | An optional integer property will be null for tests. | | +| `num` | *float* | :heavy_check_mark: | A number property. | 1.1 | +| `numOptNull` | *?float* | :heavy_minus_sign: | An optional number property will be null for tests. | | +| `str` | *string* | :heavy_check_mark: | A string property. | test | +| `strOpt` | *?string* | :heavy_minus_sign: | An optional string property. | testOptional | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/SimpleObjectCamelCase.md b/php-client-sdk/docs/models/shared/SimpleObjectCamelCase.md index 8d09c6835..b637f1984 100755 --- a/php-client-sdk/docs/models/shared/SimpleObjectCamelCase.md +++ b/php-client-sdk/docs/models/shared/SimpleObjectCamelCase.md @@ -8,24 +8,24 @@ A link to the external docs. ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `anyVal` | *mixed* | :heavy_check_mark: | An any property. | any example | -| `bigintStrVal` | *?string* | :heavy_minus_sign: | N/A | | -| `bigintVal` | *?int* | :heavy_minus_sign: | N/A | | -| `boolOptVal` | *?bool* | :heavy_minus_sign: | An optional boolean property. | true | -| `boolVal` | *bool* | :heavy_check_mark: | A boolean property. | true | -| `dateTimeVal` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | -| `dateVal` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date property. | 2020-01-01 | -| `decimalVal` | *?float* | :heavy_minus_sign: | N/A | | -| `enumVal` | [Enum](../../models/shared/Enum.md) | :heavy_check_mark: | A string based enum | one | -| `float32Val` | *float* | :heavy_check_mark: | A float32 property. | 2.2222222 | -| `int32EnumVal` | [SimpleObjectCamelCaseInt32EnumVal](../../models/shared/SimpleObjectCamelCaseInt32EnumVal.md) | :heavy_check_mark: | An int32 enum property. | 69 | -| `int32Val` | *int* | :heavy_check_mark: | An int32 property. | 1 | -| `intEnumVal` | [SimpleObjectCamelCaseIntEnumVal](../../models/shared/SimpleObjectCamelCaseIntEnumVal.md) | :heavy_check_mark: | An integer enum property. | 3 | -| `intOptNullVal` | *?int* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | -| `intVal` | *int* | :heavy_check_mark: | An integer property. | 999999 | -| `numOptNullVal` | *?float* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | -| `numVal` | *float* | :heavy_check_mark: | A number property. | 1.1 | -| `strOptVal` | *?string* | :heavy_minus_sign: | An optional string property. | optional example | -| `strVal` | *string* | :heavy_check_mark: | A string property. | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `anyVal` | *mixed* | :heavy_check_mark: | An any property. | any example | +| `bigintStrVal` | *?string* | :heavy_minus_sign: | N/A | | +| `bigintVal` | *?int* | :heavy_minus_sign: | N/A | | +| `boolOptVal` | *?bool* | :heavy_minus_sign: | An optional boolean property. | true | +| `boolVal` | *bool* | :heavy_check_mark: | A boolean property. | true | +| `dateTimeVal` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | +| `dateVal` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_check_mark: | A date property. | 2020-01-01 | +| `decimalVal` | *?float* | :heavy_minus_sign: | N/A | | +| `enumVal` | [\OpenAPI\OpenAPI\Models\Shared\Enum](../../models/shared/Enum.md) | :heavy_check_mark: | A string based enum | one | +| `float32Val` | *float* | :heavy_check_mark: | A float32 property. | 2.2222222 | +| `int32EnumVal` | [\OpenAPI\OpenAPI\Models\Shared\Int32EnumVal](../../models/shared/Int32EnumVal.md) | :heavy_check_mark: | An int32 enum property. | 69 | +| `int32Val` | *int* | :heavy_check_mark: | An int32 property. | 1 | +| `intEnumVal` | [\OpenAPI\OpenAPI\Models\Shared\IntEnumVal](../../models/shared/IntEnumVal.md) | :heavy_check_mark: | An integer enum property. | 3 | +| `intOptNullVal` | *?int* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | +| `intVal` | *int* | :heavy_check_mark: | An integer property. | 999999 | +| `numOptNullVal` | *?float* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | +| `numVal` | *float* | :heavy_check_mark: | A number property. | 1.1 | +| `strOptVal` | *?string* | :heavy_minus_sign: | An optional string property. | optional example | +| `strVal` | *string* | :heavy_check_mark: | A string property. | example | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md b/php-client-sdk/docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md deleted file mode 100755 index 066a09cee..000000000 --- a/php-client-sdk/docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseInt32EnumVal - -An int32 enum property. - - -## Values - -| Name | Value | -| ------------------------ | ------------------------ | -| `FiftyFive` | 55 | -| `SixtyNine` | 69 | -| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md b/php-client-sdk/docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md deleted file mode 100755 index 13e4ff61c..000000000 --- a/php-client-sdk/docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseIntEnumVal - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `First` | 1 | -| `Second` | 2 | -| `Third` | 3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/SimpleObjectInt32Enum.md b/php-client-sdk/docs/models/shared/SimpleObjectInt32Enum.md deleted file mode 100755 index 1671069bb..000000000 --- a/php-client-sdk/docs/models/shared/SimpleObjectInt32Enum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectInt32Enum - -An int32 enum property. - - -## Values - -| Name | Value | -| ------------------------ | ------------------------ | -| `FiftyFive` | 55 | -| `SixtyNine` | 69 | -| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/SimpleObjectIntEnum.md b/php-client-sdk/docs/models/shared/SimpleObjectIntEnum.md deleted file mode 100755 index 90d7f4ecb..000000000 --- a/php-client-sdk/docs/models/shared/SimpleObjectIntEnum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectIntEnum - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `First` | 1 | -| `Second` | 2 | -| `Third` | 3 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/Slides.md b/php-client-sdk/docs/models/shared/Slides.md new file mode 100755 index 000000000..c072f582d --- /dev/null +++ b/php-client-sdk/docs/models/shared/Slides.md @@ -0,0 +1,10 @@ +# Slides + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `items` | array<*string*> | :heavy_minus_sign: | N/A | +| `title` | *string* | :heavy_check_mark: | N/A | +| `type` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/Slideshow.md b/php-client-sdk/docs/models/shared/Slideshow.md new file mode 100755 index 000000000..9ea57c84b --- /dev/null +++ b/php-client-sdk/docs/models/shared/Slideshow.md @@ -0,0 +1,11 @@ +# Slideshow + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | +| `author` | *string* | :heavy_check_mark: | N/A | +| `date` | *string* | :heavy_check_mark: | N/A | +| `slides` | array<[\OpenAPI\OpenAPI\Models\Shared\Slides](../../models/shared/Slides.md)> | :heavy_check_mark: | N/A | +| `title` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/Type.md b/php-client-sdk/docs/models/shared/Type.md new file mode 100755 index 000000000..f70187d6b --- /dev/null +++ b/php-client-sdk/docs/models/shared/Type.md @@ -0,0 +1,8 @@ +# Type + + +## Values + +| Name | Value | +| ------ | ------ | +| `Obj1` | obj1 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/TypedObject1.md b/php-client-sdk/docs/models/shared/TypedObject1.md index eb102a527..73af32e89 100755 --- a/php-client-sdk/docs/models/shared/TypedObject1.md +++ b/php-client-sdk/docs/models/shared/TypedObject1.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| `type` | [TypedObject1Type](../../models/shared/TypedObject1Type.md) | :heavy_check_mark: | N/A | -| `value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | +| `type` | [\OpenAPI\OpenAPI\Models\Shared\Type](../../models/shared/Type.md) | :heavy_check_mark: | N/A | +| `value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/TypedObject1Type.md b/php-client-sdk/docs/models/shared/TypedObject1Type.md deleted file mode 100755 index 8df1ada70..000000000 --- a/php-client-sdk/docs/models/shared/TypedObject1Type.md +++ /dev/null @@ -1,8 +0,0 @@ -# TypedObject1Type - - -## Values - -| Name | Value | -| ------ | ------ | -| `Obj1` | obj1 | \ No newline at end of file diff --git a/php-client-sdk/docs/models/shared/ValidCircularReferenceObject.md b/php-client-sdk/docs/models/shared/ValidCircularReferenceObject.md index 617f56e16..2490e722f 100755 --- a/php-client-sdk/docs/models/shared/ValidCircularReferenceObject.md +++ b/php-client-sdk/docs/models/shared/ValidCircularReferenceObject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| `circular` | array<[ValidCircularReferenceObject](../../models/shared/ValidCircularReferenceObject.md)> | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| `circular` | array<[\OpenAPI\OpenAPI\Models\Shared\ValidCircularReferenceObject](../../models/shared/ValidCircularReferenceObject.md)> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/php-client-sdk/docs/sdks/auth/README.md b/php-client-sdk/docs/sdks/auth/README.md index 9dc93603f..0d0fbc504 100755 --- a/php-client-sdk/docs/sdks/auth/README.md +++ b/php-client-sdk/docs/sdks/auth/README.md @@ -1,5 +1,5 @@ # Auth -(*auth*) + ## Overview @@ -26,15 +26,15 @@ Endpoints for testing authentication. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\ApiKeyAuthSecurity; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $requestSecurity = new ApiKeyAuthSecurity(); + $requestSecurity = new Operations\ApiKeyAuthSecurity(); $requestSecurity->apiKeyAuth = 'Token YOUR_API_KEY'; $response = $sdk->auth->apiKeyAuth($requestSecurity); @@ -69,13 +69,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -106,18 +106,17 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\BasicAuthRequest; -use \OpenAPI\OpenAPI\Models\Operations\BasicAuthSecurity; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $requestSecurity = new BasicAuthSecurity(); + $requestSecurity = new Operations\BasicAuthSecurity(); $requestSecurity->password = 'YOUR_PASSWORD'; $requestSecurity->username = 'YOUR_USERNAME'; @@ -155,15 +154,15 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\BearerAuthSecurity; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $requestSecurity = new BearerAuthSecurity(); + $requestSecurity = new Operations\BearerAuthSecurity(); $requestSecurity->bearerAuth = 'YOUR_JWT'; $response = $sdk->auth->bearerAuth($requestSecurity); @@ -198,13 +197,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -235,15 +234,15 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\Oauth2AuthSecurity; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $requestSecurity = new Oauth2AuthSecurity(); + $requestSecurity = new Operations\Oauth2AuthSecurity(); $requestSecurity->oauth2 = 'Bearer YOUR_OAUTH2_TOKEN'; $response = $sdk->auth->oauth2Auth($requestSecurity); @@ -278,18 +277,17 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\Oauth2OverrideRequest; -use \OpenAPI\OpenAPI\Models\Operations\Oauth2OverrideSecurity; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $requestSecurity = new Oauth2OverrideSecurity(); + $requestSecurity = new Operations\Oauth2OverrideSecurity(); $requestSecurity->oauth2 = 'Bearer YOUR_OAUTH2_TOKEN'; $response = $sdk->auth->oauth2Override($requestSecurity); @@ -324,15 +322,15 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\OpenIdConnectAuthSecurity; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $requestSecurity = new OpenIdConnectAuthSecurity(); + $requestSecurity = new Operations\OpenIdConnectAuthSecurity(); $requestSecurity->openIdConnect = 'Bearer YOUR_OPENID_TOKEN'; $response = $sdk->auth->openIdConnectAuth($requestSecurity); diff --git a/php-client-sdk/docs/sdks/authnew/README.md b/php-client-sdk/docs/sdks/authnew/README.md index c30e9e2c4..fea06f4c5 100755 --- a/php-client-sdk/docs/sdks/authnew/README.md +++ b/php-client-sdk/docs/sdks/authnew/README.md @@ -1,5 +1,5 @@ # AuthNew -(*authNew*) + ## Overview @@ -29,26 +29,23 @@ Endpoints for testing authentication. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new AuthServiceRequestBody(); - $request->basicAuth = new AuthServiceRequestBodyBasicAuth(); + $request = new Shared\AuthServiceRequestBody(); + $request->basicAuth = new Shared\BasicAuth(); $request->basicAuth->password = 'owsGgP4_AhRPMSJ'; $request->basicAuth->username = 'Devonte_Bins'; $request->headerAuth = [ - new AuthServiceRequestBodyHeaderAuth(), + new Shared\HeaderAuth(), ]; $response = $sdk->authNew->apiKeyAuthGlobalNew($request); @@ -84,26 +81,23 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new AuthServiceRequestBody(); - $request->basicAuth = new AuthServiceRequestBodyBasicAuth(); + $request = new Shared\AuthServiceRequestBody(); + $request->basicAuth = new Shared\BasicAuth(); $request->basicAuth->password = 'xvJcf9GiJNr7T2x'; $request->basicAuth->username = 'Cory33'; $request->headerAuth = [ - new AuthServiceRequestBodyHeaderAuth(), + new Shared\HeaderAuth(), ]; $response = $sdk->authNew->authGlobal($request); @@ -139,26 +133,23 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth; -use \OpenAPI\OpenAPI\Models\Operations\BasicAuthNewSecurity; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $request = new AuthServiceRequestBody(); - $request->basicAuth = new AuthServiceRequestBodyBasicAuth(); + $request = new Shared\AuthServiceRequestBody(); + $request->basicAuth = new Shared\BasicAuth(); $request->basicAuth->password = 'Z2OStPksFyrcGeu'; $request->basicAuth->username = 'Ashton.Steuber27'; $request->headerAuth = [ - new AuthServiceRequestBodyHeaderAuth(), + new Shared\HeaderAuth(), ]; - $requestSecurity = new BasicAuthNewSecurity(); + $requestSecurity = new Operations\BasicAuthNewSecurity(); $requestSecurity->password = 'YOUR_PASSWORD'; $requestSecurity->username = 'YOUR_USERNAME'; @@ -196,27 +187,23 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth; -use \OpenAPI\OpenAPI\Models\Operations\MultipleMixedOptionsAuthSecurity; -use \OpenAPI\OpenAPI\Models\Shared\SchemeBasicAuth; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $request = new AuthServiceRequestBody(); - $request->basicAuth = new AuthServiceRequestBodyBasicAuth(); + $request = new Shared\AuthServiceRequestBody(); + $request->basicAuth = new Shared\BasicAuth(); $request->basicAuth->password = 'Iq1JSzG1wqLDz4v'; $request->basicAuth->username = 'Ismael.Emmerich'; $request->headerAuth = [ - new AuthServiceRequestBodyHeaderAuth(), + new Shared\HeaderAuth(), ]; - $requestSecurity = new MultipleMixedOptionsAuthSecurity(); + $requestSecurity = new Operations\MultipleMixedOptionsAuthSecurity(); $requestSecurity->apiKeyAuthNew = 'Token '; $response = $sdk->authNew->multipleMixedOptionsAuth($request, $requestSecurity); @@ -253,27 +240,23 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth; -use \OpenAPI\OpenAPI\Models\Operations\MultipleMixedSchemeAuthSecurity; -use \OpenAPI\OpenAPI\Models\Shared\SchemeBasicAuth; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $request = new AuthServiceRequestBody(); - $request->basicAuth = new AuthServiceRequestBodyBasicAuth(); + $request = new Shared\AuthServiceRequestBody(); + $request->basicAuth = new Shared\BasicAuth(); $request->basicAuth->password = 'OcWVV5608IiaWJQ'; $request->basicAuth->username = 'Kameron42'; $request->headerAuth = [ - new AuthServiceRequestBodyHeaderAuth(), + new Shared\HeaderAuth(), ]; - $requestSecurity = new MultipleMixedSchemeAuthSecurity(); + $requestSecurity = new Operations\MultipleMixedSchemeAuthSecurity(); $requestSecurity->apiKeyAuthNew = 'Token '; $requestSecurity->basicAuth->password = 'YOUR_PASSWORD'; $requestSecurity->basicAuth->username = 'YOUR_USERNAME'; @@ -312,30 +295,24 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth; -use \OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithMixedSchemesAuthSecurity; -use \OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithMixedSchemesAuthSecurityOption1; -use \OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithMixedSchemesAuthSecurityOption2; -use \OpenAPI\OpenAPI\Models\Shared\SchemeBasicAuth; - -$sdk = SDK::builder() +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; + +$sdk = OpenAPI\SDK::builder() ->build(); try { - $request = new AuthServiceRequestBody(); - $request->basicAuth = new AuthServiceRequestBodyBasicAuth(); + $request = new Shared\AuthServiceRequestBody(); + $request->basicAuth = new Shared\BasicAuth(); $request->basicAuth->password = 'fpwNE90MyqKIrXk'; $request->basicAuth->username = 'Caroline_Walsh'; $request->headerAuth = [ - new AuthServiceRequestBodyHeaderAuth(), + new Shared\HeaderAuth(), ]; - $requestSecurity = new MultipleOptionsWithMixedSchemesAuthSecurity(); - $requestSecurity->option1 = new MultipleOptionsWithMixedSchemesAuthSecurityOption1(); + $requestSecurity = new Operations\MultipleOptionsWithMixedSchemesAuthSecurity(); + $requestSecurity->option1 = new Operations\MultipleOptionsWithMixedSchemesAuthSecurityOption1(); $requestSecurity->option1->apiKeyAuthNew = 'Token '; $requestSecurity->option1->oauth2 = 'Bearer YOUR_OAUTH2_TOKEN'; @@ -373,29 +350,24 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth; -use \OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithSimpleSchemesAuthSecurity; -use \OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithSimpleSchemesAuthSecurityOption1; -use \OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithSimpleSchemesAuthSecurityOption2; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $request = new AuthServiceRequestBody(); - $request->basicAuth = new AuthServiceRequestBodyBasicAuth(); + $request = new Shared\AuthServiceRequestBody(); + $request->basicAuth = new Shared\BasicAuth(); $request->basicAuth->password = 'pibxDTiJSijK04Y'; $request->basicAuth->username = 'Selena76'; $request->headerAuth = [ - new AuthServiceRequestBodyHeaderAuth(), + new Shared\HeaderAuth(), ]; - $requestSecurity = new MultipleOptionsWithSimpleSchemesAuthSecurity(); - $requestSecurity->option1 = new MultipleOptionsWithSimpleSchemesAuthSecurityOption1(); + $requestSecurity = new Operations\MultipleOptionsWithSimpleSchemesAuthSecurity(); + $requestSecurity->option1 = new Operations\MultipleOptionsWithSimpleSchemesAuthSecurityOption1(); $requestSecurity->option1->apiKeyAuthNew = 'Token '; $requestSecurity->option1->oauth2 = 'Bearer YOUR_OAUTH2_TOKEN'; @@ -433,26 +405,23 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth; -use \OpenAPI\OpenAPI\Models\Operations\MultipleSimpleOptionsAuthSecurity; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $request = new AuthServiceRequestBody(); - $request->basicAuth = new AuthServiceRequestBodyBasicAuth(); + $request = new Shared\AuthServiceRequestBody(); + $request->basicAuth = new Shared\BasicAuth(); $request->basicAuth->password = 'pzdKQgSGZSrUGNs'; $request->basicAuth->username = 'Eryn51'; $request->headerAuth = [ - new AuthServiceRequestBodyHeaderAuth(), + new Shared\HeaderAuth(), ]; - $requestSecurity = new MultipleSimpleOptionsAuthSecurity(); + $requestSecurity = new Operations\MultipleSimpleOptionsAuthSecurity(); $requestSecurity->apiKeyAuthNew = 'Token '; $response = $sdk->authNew->multipleSimpleOptionsAuth($request, $requestSecurity); @@ -489,26 +458,23 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth; -use \OpenAPI\OpenAPI\Models\Operations\MultipleSimpleSchemeAuthSecurity; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $request = new AuthServiceRequestBody(); - $request->basicAuth = new AuthServiceRequestBodyBasicAuth(); + $request = new Shared\AuthServiceRequestBody(); + $request->basicAuth = new Shared\BasicAuth(); $request->basicAuth->password = 'UrAsw466AAaYtr1'; $request->basicAuth->username = 'Kenya.Baumbach'; $request->headerAuth = [ - new AuthServiceRequestBodyHeaderAuth(), + new Shared\HeaderAuth(), ]; - $requestSecurity = new MultipleSimpleSchemeAuthSecurity(); + $requestSecurity = new Operations\MultipleSimpleSchemeAuthSecurity(); $requestSecurity->apiKeyAuthNew = 'Token '; $requestSecurity->oauth2 = 'Bearer YOUR_OAUTH2_TOKEN'; @@ -546,26 +512,23 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth; -use \OpenAPI\OpenAPI\Models\Operations\Oauth2AuthNewSecurity; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $request = new AuthServiceRequestBody(); - $request->basicAuth = new AuthServiceRequestBodyBasicAuth(); + $request = new Shared\AuthServiceRequestBody(); + $request->basicAuth = new Shared\BasicAuth(); $request->basicAuth->password = 'V02sHy2onRTMRgS'; $request->basicAuth->username = 'Polly.Aufderhar78'; $request->headerAuth = [ - new AuthServiceRequestBodyHeaderAuth(), + new Shared\HeaderAuth(), ]; - $requestSecurity = new Oauth2AuthNewSecurity(); + $requestSecurity = new Operations\Oauth2AuthNewSecurity(); $requestSecurity->oauth2 = 'Bearer YOUR_OAUTH2_TOKEN'; $response = $sdk->authNew->oauth2AuthNew($request, $requestSecurity); @@ -602,26 +565,23 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth; -use \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth; -use \OpenAPI\OpenAPI\Models\Operations\OpenIdConnectAuthNewSecurity; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->build(); try { - $request = new AuthServiceRequestBody(); - $request->basicAuth = new AuthServiceRequestBodyBasicAuth(); + $request = new Shared\AuthServiceRequestBody(); + $request->basicAuth = new Shared\BasicAuth(); $request->basicAuth->password = '1_B3hNdr8HC3AeS'; $request->basicAuth->username = 'Floy_Heller'; $request->headerAuth = [ - new AuthServiceRequestBodyHeaderAuth(), + new Shared\HeaderAuth(), ]; - $requestSecurity = new OpenIdConnectAuthNewSecurity(); + $requestSecurity = new Operations\OpenIdConnectAuthNewSecurity(); $requestSecurity->openIdConnect = 'Bearer YOUR_OPENID_TOKEN'; $response = $sdk->authNew->openIdConnectAuthNew($request, $requestSecurity); diff --git a/php-client-sdk/docs/sdks/documentation/README.md b/php-client-sdk/docs/sdks/documentation/README.md index 45a2c110a..fdadc40e8 100755 --- a/php-client-sdk/docs/sdks/documentation/README.md +++ b/php-client-sdk/docs/sdks/documentation/README.md @@ -1,5 +1,5 @@ # Documentation -(*documentation*) + ## Overview @@ -21,14 +21,14 @@ Gets documentation for some language, I guess. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\GetDocumentationPerLanguageRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/errors/README.md b/php-client-sdk/docs/sdks/errors/README.md index 4a137fa47..2eafad0d1 100755 --- a/php-client-sdk/docs/sdks/errors/README.md +++ b/php-client-sdk/docs/sdks/errors/README.md @@ -1,5 +1,5 @@ # Errors -(*errors*) + ## Overview @@ -21,13 +21,13 @@ Endpoints for testing error responses. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -64,14 +64,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\StatusGetErrorRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -110,14 +110,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\StatusGetXSpeakeasyErrorsRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/first/README.md b/php-client-sdk/docs/sdks/first/README.md index 5412f1c75..158fae0dd 100755 --- a/php-client-sdk/docs/sdks/first/README.md +++ b/php-client-sdk/docs/sdks/first/README.md @@ -1,5 +1,5 @@ # First -(*first*) + ### Available Operations @@ -15,13 +15,13 @@ declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/flattening/README.md b/php-client-sdk/docs/sdks/flattening/README.md index 50c3a360b..adf9f0dac 100755 --- a/php-client-sdk/docs/sdks/flattening/README.md +++ b/php-client-sdk/docs/sdks/flattening/README.md @@ -1,5 +1,5 @@ # Flattening -(*flattening*) + ## Overview @@ -23,23 +23,19 @@ Endpoints for testing flattening through request body and parameter combinations declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\ComponentBodyAndParamConflictRequest; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $simpleObject = new SimpleObject(); + $simpleObject = new Shared\SimpleObject(); $simpleObject->any = 'any'; $simpleObject->bigint = 8821239038968084; $simpleObject->bigintStr = '9223372036854775808'; @@ -49,12 +45,12 @@ try { $simpleObject->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $simpleObject->decimal = 3.141592653589793; $simpleObject->decimalStr = '3.14159265358979344719667586'; - $simpleObject->enum = Enum::One; + $simpleObject->enum = Shared\Enum::One; $simpleObject->float32 = 1.1; $simpleObject->int = 1; $simpleObject->int32 = 1; - $simpleObject->int32Enum = SimpleObjectInt32Enum::OneHundredAndEightyOne; - $simpleObject->intEnum = SimpleObjectIntEnum::Second; + $simpleObject->int32Enum = Shared\Int32Enum::OneHundredAndEightyOne; + $simpleObject->intEnum = Shared\IntEnum::Second; $simpleObject->intOptNull = 843322; $simpleObject->num = 1.1; $simpleObject->numOptNull = 7126.06; @@ -94,23 +90,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\ComponentBodyAndParamNoConflictRequest; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $simpleObject = new SimpleObject(); + $simpleObject = new Shared\SimpleObject(); $simpleObject->any = 'any'; $simpleObject->bigint = 8821239038968084; $simpleObject->bigintStr = '9223372036854775808'; @@ -120,12 +112,12 @@ try { $simpleObject->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $simpleObject->decimal = 3.141592653589793; $simpleObject->decimalStr = '3.14159265358979344719667586'; - $simpleObject->enum = Enum::One; + $simpleObject->enum = Shared\Enum::One; $simpleObject->float32 = 1.1; $simpleObject->int = 1; $simpleObject->int32 = 1; - $simpleObject->int32Enum = SimpleObjectInt32Enum::OneHundredAndEightyOne; - $simpleObject->intEnum = SimpleObjectIntEnum::Third; + $simpleObject->int32Enum = Shared\Int32Enum::OneHundredAndEightyOne; + $simpleObject->intEnum = Shared\IntEnum::Third; $simpleObject->intOptNull = 758827; $simpleObject->num = 1.1; $simpleObject->numOptNull = 1702.8; @@ -165,14 +157,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\ConflictingParamsRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -212,20 +204,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamConflictRequest; -use \OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamConflictRequestBody; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $requestBody = new InlineBodyAndParamConflictRequestBody(); + $requestBody = new Operations\InlineBodyAndParamConflictRequestBody(); $requestBody->str = 'string'; $response = $sdk->flattening->inlineBodyAndParamConflict($requestBody, 'string'); @@ -261,20 +252,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamNoConflictRequest; -use \OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamNoConflictRequestBody; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $requestBody = new InlineBodyAndParamNoConflictRequestBody(); + $requestBody = new Operations\InlineBodyAndParamNoConflictRequestBody(); $requestBody->bodyStr = 'string'; $response = $sdk->flattening->inlineBodyAndParamNoConflict($requestBody, 'string'); diff --git a/php-client-sdk/docs/sdks/generation/README.md b/php-client-sdk/docs/sdks/generation/README.md index d33a3a3a5..42f33d133 100755 --- a/php-client-sdk/docs/sdks/generation/README.md +++ b/php-client-sdk/docs/sdks/generation/README.md @@ -1,5 +1,5 @@ # Generation -(*generation*) + ## Overview @@ -38,13 +38,13 @@ Endpoints for purely testing valid generation behavior. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -75,13 +75,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -112,13 +112,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -149,14 +149,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\DateParamWithDefaultRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -195,14 +195,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\DateTimeParamWithDefaultRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -241,14 +241,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\DecimalParamWithDefaultRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -287,20 +287,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\DeprecatedFieldInObject; -use \OpenAPI\OpenAPI\Models\Shared\DeprecatedFieldInObjectDeprecatedEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new DeprecatedFieldInObject(); + $request = new Shared\DeprecatedFieldInObject(); $request->deprecatedField = 'string'; $request->newField = 'string'; @@ -336,20 +334,20 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $response = $sdk->generation->deprecatedObjectInSchemaGet(); - if ($response->deprecatedObjectInSchemaGet200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -377,14 +375,14 @@ deprecatedOperationNoCommentsGet declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\DeprecatedOperationNoCommentsGetRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -427,14 +425,14 @@ This is an endpoint setup to test deprecation with comments declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\DeprecatedOperationWithCommentsGetRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -474,20 +472,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\EmptyObjectGetRequest; -use \OpenAPI\OpenAPI\Models\Shared\EmptyObjectParam; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $emptyObject = new EmptyObjectParam(); + $emptyObject = new Shared\EmptyObjectParam(); $response = $sdk->generation->emptyObjectGet($emptyObject); @@ -521,13 +518,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -558,20 +555,20 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $response = $sdk->generation->globalNameOverridden(); - if ($response->getGlobalNameOverride200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -595,20 +592,20 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $response = $sdk->generation->ignoredGenerationGet(); - if ($response->ignoredGenerationGet200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -632,20 +629,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\IgnoresPostRequest; -use \OpenAPI\OpenAPI\Models\Operations\IgnoresPostApplicationJSON; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $requestBody = new IgnoresPostApplicationJSON(); + $requestBody = new Operations\IgnoresPostRequestBody(); $requestBody->callbackUrl = 'http://diligent-activist.biz'; $requestBody->testProp = 'string'; @@ -661,10 +657,10 @@ try { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\IgnoresPostApplicationJSON](../../models/operations/IgnoresPostApplicationJSON.md) | :heavy_check_mark: | N/A | -| `testParam` | *string* | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\IgnoresPostRequestBody](../../models/operations/IgnoresPostRequestBody.md) | :heavy_check_mark: | N/A | +| `testParam` | *string* | :heavy_minus_sign: | N/A | ### Response @@ -682,22 +678,21 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\NameOverrideGetRequest; -use \OpenAPI\OpenAPI\Models\Operations\NameOverrideGetEnumNameOverride; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $response = $sdk->generation->nameOverride(NameOverrideGetEnumNameOverride::Value3, 'example'); + $response = $sdk->generation->nameOverride(Operations\EnumNameOverride::Value3, 'example'); if ($response->overriddenResponse !== null) { // handle response @@ -709,10 +704,10 @@ try { ### Parameters -| Parameter | Type | Required | Description | Example | -| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -| `testEnumQueryParam` | [\OpenAPI\OpenAPI\Models\Operations\NameOverrideGetEnumNameOverride](../../models/operations/NameOverrideGetEnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | -| `testQueryParam` | *string* | :heavy_check_mark: | N/A | example | +| Parameter | Type | Required | Description | Example | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `testEnumQueryParam` | [\OpenAPI\OpenAPI\Models\Operations\EnumNameOverride](../../models/operations/EnumNameOverride.md) | :heavy_check_mark: | An enum type | value3 | +| `testQueryParam` | *string* | :heavy_check_mark: | N/A | example | ### Response @@ -730,13 +725,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -767,13 +762,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -804,20 +799,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\TypedParameterGenerationGetRequest; -use \OpenAPI\OpenAPI\Models\Operations\TypedParameterGenerationGetObj; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $obj = new TypedParameterGenerationGetObj(); + $obj = new Operations\Obj(); $obj->bool = false; $obj->num = 8792.75; $obj->str = 'string'; @@ -834,12 +828,12 @@ try { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| `bigint` | *int* | :heavy_minus_sign: | N/A | -| `date` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | -| `decimal` | *float* | :heavy_minus_sign: | N/A | -| `obj` | [\OpenAPI\OpenAPI\Models\Operations\TypedParameterGenerationGetObj](../../models/operations/TypedParameterGenerationGetObj.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | +| `bigint` | *int* | :heavy_minus_sign: | N/A | +| `date` | [\DateTime](https://www.php.net/manual/en/class.datetime.php) | :heavy_minus_sign: | N/A | +| `decimal` | *float* | :heavy_minus_sign: | N/A | +| `obj` | [\OpenAPI\OpenAPI\Models\Operations\Obj](../../models/operations/Obj.md) | :heavy_minus_sign: | N/A | ### Response @@ -862,27 +856,17 @@ Usage example docs declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\UsageExamplePostRequest; -use \OpenAPI\OpenAPI\Models\Operations\UsageExamplePostRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\FakerFormattedStrings; -use \OpenAPI\OpenAPI\Models\Shared\FakerStrings; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; -use \OpenAPI\OpenAPI\Models\Operations\UsageExamplePostEnumParameter; -use \OpenAPI\OpenAPI\Models\Operations\UsageExamplePostOptEnumParameter; -use \OpenAPI\OpenAPI\Models\Operations\UsageExamplePostSecurity; - -$sdk = SDK::builder() +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; + +$sdk = OpenAPI\SDK::builder() ->build(); try { - $request = new UsageExamplePostRequest(); - $request->requestBody = new UsageExamplePostRequestBody(); - $request->requestBody->fakerFormattedStrings = new FakerFormattedStrings(); + $request = new Operations\UsageExamplePostRequest(); + $request->requestBody = new Operations\UsageExamplePostRequestBody(); + $request->requestBody->fakerFormattedStrings = new Shared\FakerFormattedStrings(); $request->requestBody->fakerFormattedStrings->addressFormat = '48525 Maude Fall'; $request->requestBody->fakerFormattedStrings->directoryFormat = '/etc/defaults'; $request->requestBody->fakerFormattedStrings->domainFormat = 'next-conflict.name'; @@ -901,7 +885,7 @@ try { $request->requestBody->fakerFormattedStrings->urlFormat = 'http://beneficial-inconvenience.net'; $request->requestBody->fakerFormattedStrings->uuidFormat = '342442b8-aff3-42e0-b62d-e2e2d47a9bf1'; $request->requestBody->fakerFormattedStrings->zipcodeFormat = '09432'; - $request->requestBody->fakerStrings = new FakerStrings(); + $request->requestBody->fakerStrings = new Shared\FakerStrings(); $request->requestBody->fakerStrings->city = 'McLaughlinchester'; $request->requestBody->fakerStrings->iban = 'TL232743267267003560099'; $request->requestBody->fakerStrings->id = ''; @@ -955,7 +939,7 @@ try { $request->requestBody->fakerStrings->url = 'https://crooked-dulcimer.name'; $request->requestBody->fakerStrings->username = 'Mable76'; $request->requestBody->fakerStrings->uuid = '16b919d6-51cd-4e97-81e2-5221b7b6969f'; - $request->requestBody->simpleObject = new SimpleObject(); + $request->requestBody->simpleObject = new Shared\SimpleObject(); $request->requestBody->simpleObject->any = 'any'; $request->requestBody->simpleObject->bigint = 8821239038968084; $request->requestBody->simpleObject->bigintStr = '9223372036854775808'; @@ -965,12 +949,12 @@ try { $request->requestBody->simpleObject->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $request->requestBody->simpleObject->decimal = 3.141592653589793; $request->requestBody->simpleObject->decimalStr = '3.14159265358979344719667586'; - $request->requestBody->simpleObject->enum = Enum::One; + $request->requestBody->simpleObject->enum = Shared\Enum::One; $request->requestBody->simpleObject->float32 = 1.1; $request->requestBody->simpleObject->int = 1; $request->requestBody->simpleObject->int32 = 1; - $request->requestBody->simpleObject->int32Enum = SimpleObjectInt32Enum::OneHundredAndEightyOne; - $request->requestBody->simpleObject->intEnum = SimpleObjectIntEnum::Second; + $request->requestBody->simpleObject->int32Enum = Shared\Int32Enum::OneHundredAndEightyOne; + $request->requestBody->simpleObject->intEnum = Shared\IntEnum::Second; $request->requestBody->simpleObject->intOptNull = 165468; $request->requestBody->simpleObject->num = 1.1; $request->requestBody->simpleObject->numOptNull = 5944.32; @@ -989,22 +973,22 @@ try { $request->decimalStrParameter = 'string'; $request->decimalStrParameterOptional = 'string'; $request->doubleParameter = 8700.78; - $request->enumParameter = UsageExamplePostEnumParameter::Value2; + $request->enumParameter = Operations\EnumParameter::Value2; $request->falseyNumberParameter = 0; $request->float32Parameter = 1341.86; $request->floatParameter = 5429.24; $request->int64Parameter = 101970; $request->intParameter = 938852; - $request->optEnumParameter = UsageExamplePostOptEnumParameter::Value3; + $request->optEnumParameter = Operations\OptEnumParameter::Value3; $request->strParameter = 'example 3'; - $requestSecurity = new UsageExamplePostSecurity(); + $requestSecurity = new Operations\UsageExamplePostSecurity(); $requestSecurity->password = 'YOUR_PASSWORD'; $requestSecurity->username = 'YOUR_USERNAME'; $response = $sdk->generation->usageExamplePost($request, $requestSecurity); - if ($response->usageExamplePost200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { diff --git a/php-client-sdk/docs/sdks/globals/README.md b/php-client-sdk/docs/sdks/globals/README.md index 0251d7b12..1c0da8106 100755 --- a/php-client-sdk/docs/sdks/globals/README.md +++ b/php-client-sdk/docs/sdks/globals/README.md @@ -1,5 +1,5 @@ # Globals -(*globals*) + ## Overview @@ -20,14 +20,14 @@ Endpoints for testing global parameters. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\GlobalPathParameterGetRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -66,14 +66,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\GlobalsQueryParameterGetRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/nested/README.md b/php-client-sdk/docs/sdks/nested/README.md index 543962255..6c55a9e7b 100755 --- a/php-client-sdk/docs/sdks/nested/README.md +++ b/php-client-sdk/docs/sdks/nested/README.md @@ -1,5 +1,5 @@ # Nested -(*nested*) + ### Available Operations @@ -15,13 +15,13 @@ declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/nestedfirst/README.md b/php-client-sdk/docs/sdks/nestedfirst/README.md index 3db6007ff..29613704d 100755 --- a/php-client-sdk/docs/sdks/nestedfirst/README.md +++ b/php-client-sdk/docs/sdks/nestedfirst/README.md @@ -1,5 +1,5 @@ # NestedFirst -(*nested.first*) + ### Available Operations @@ -15,13 +15,13 @@ declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/nestedsecond/README.md b/php-client-sdk/docs/sdks/nestedsecond/README.md index 0ad64f8da..d7deb3d58 100755 --- a/php-client-sdk/docs/sdks/nestedsecond/README.md +++ b/php-client-sdk/docs/sdks/nestedsecond/README.md @@ -1,5 +1,5 @@ # NestedSecond -(*nested.second*) + ### Available Operations @@ -15,13 +15,13 @@ declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/nestfirst/README.md b/php-client-sdk/docs/sdks/nestfirst/README.md index addc560a2..fc14074e8 100755 --- a/php-client-sdk/docs/sdks/nestfirst/README.md +++ b/php-client-sdk/docs/sdks/nestfirst/README.md @@ -1,5 +1,5 @@ # NestFirst -(*nest.first*) + ### Available Operations @@ -15,13 +15,13 @@ declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/pagination/README.md b/php-client-sdk/docs/sdks/pagination/README.md index 38b289160..57db71781 100755 --- a/php-client-sdk/docs/sdks/pagination/README.md +++ b/php-client-sdk/docs/sdks/pagination/README.md @@ -1,5 +1,5 @@ # Pagination -(*pagination*) + ## Overview @@ -24,19 +24,19 @@ Endpoints for testing the pagination extension declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\PaginationCursorBodyRequestBody; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new PaginationCursorBodyRequestBody(); + $request = new Operations\PaginationCursorBodyRequestBody(); $request->cursor = 868337; $response = $sdk->pagination->paginationCursorBody($request); @@ -72,14 +72,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\PaginationCursorParamsRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -119,19 +119,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\LimitOffsetConfig; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new LimitOffsetConfig(); + $request = new Shared\LimitOffsetConfig(); $request->limit = 189971; $request->offset = 995974; $request->page = 329413; @@ -169,14 +168,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\PaginationLimitOffsetOffsetParamsRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -217,19 +216,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\LimitOffsetConfig; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new LimitOffsetConfig(); + $request = new Shared\LimitOffsetConfig(); $request->limit = 479052; $request->offset = 716379; $request->page = 911806; @@ -267,14 +265,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\PaginationLimitOffsetPageParamsRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/parameters/README.md b/php-client-sdk/docs/sdks/parameters/README.md index 692b19374..a55d582c4 100755 --- a/php-client-sdk/docs/sdks/parameters/README.md +++ b/php-client-sdk/docs/sdks/parameters/README.md @@ -1,5 +1,5 @@ # Parameters -(*parameters*) + ## Overview @@ -41,14 +41,14 @@ Endpoints for testing parameters. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsMapRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -94,24 +94,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectRequest; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; -use \OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectObjArrParam; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $objParam = new SimpleObject(); + $objParam = new Shared\SimpleObject(); $objParam->any = 'any'; $objParam->bigint = 8821239038968084; $objParam->bigintStr = '9223372036854775808'; @@ -121,19 +116,19 @@ try { $objParam->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $objParam->decimal = 3.141592653589793; $objParam->decimalStr = '3.14159265358979344719667586'; - $objParam->enum = Enum::One; + $objParam->enum = Shared\Enum::One; $objParam->float32 = 1.1; $objParam->int = 1; $objParam->int32 = 1; - $objParam->int32Enum = SimpleObjectInt32Enum::SixtyNine; - $objParam->intEnum = SimpleObjectIntEnum::Second; + $objParam->int32Enum = Shared\Int32Enum::SixtyNine; + $objParam->intEnum = Shared\IntEnum::Second; $objParam->intOptNull = 303001; $objParam->num = 1.1; $objParam->numOptNull = 5571.55; $objParam->str = 'test'; $objParam->strOpt = 'testOptional'; - $objArrParam = new DeepObjectQueryParamsObjectObjArrParam(); + $objArrParam = new Operations\ObjArrParam(); $objArrParam->arr = [ 'test', ]; @@ -150,10 +145,10 @@ try { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| `objParam` | [\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `objArrParam` | [\OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectObjArrParam](../../models/operations/DeepObjectQueryParamsObjectObjArrParam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `objParam` | [\OpenAPI\OpenAPI\Models\Shared\SimpleObject](../../models/shared/SimpleObject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `objArrParam` | [\OpenAPI\OpenAPI\Models\Operations\ObjArrParam](../../models/operations/ObjArrParam.md) | :heavy_minus_sign: | N/A | ### Response @@ -171,14 +166,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\DuplicateParamRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -217,14 +212,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsArrayRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -268,25 +263,23 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectRequest; -use \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectObjParamExploded; -use \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectObjParam; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $objParamExploded = new FormQueryParamsCamelObjectObjParamExploded(); + $objParamExploded = new Operations\ObjParamExploded(); $objParamExploded->itemCount = '10'; $objParamExploded->searchTerm = 'foo'; - $objParam = new FormQueryParamsCamelObjectObjParam(); + $objParam = new Operations\ObjParam(); $objParam->encodedCount = '11'; $objParam->encodedTerm = 'bar'; @@ -302,10 +295,10 @@ try { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `objParamExploded` | [\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectObjParamExploded](../../models/operations/FormQueryParamsCamelObjectObjParamExploded.md) | :heavy_check_mark: | N/A | -| `objParam` | [\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectObjParam](../../models/operations/FormQueryParamsCamelObjectObjParam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `objParamExploded` | [\OpenAPI\OpenAPI\Models\Operations\ObjParamExploded](../../models/operations/ObjParamExploded.md) | :heavy_check_mark: | N/A | +| `objParam` | [\OpenAPI\OpenAPI\Models\Operations\ObjParam](../../models/operations/ObjParam.md) | :heavy_minus_sign: | N/A | ### Response @@ -323,14 +316,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsMapRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -374,23 +367,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsObjectRequest; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $objParamExploded = new SimpleObject(); + $objParamExploded = new Shared\SimpleObject(); $objParamExploded->any = 'any'; $objParamExploded->bigint = 8821239038968084; $objParamExploded->bigintStr = '9223372036854775808'; @@ -400,19 +389,19 @@ try { $objParamExploded->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $objParamExploded->decimal = 3.141592653589793; $objParamExploded->decimalStr = '3.14159265358979344719667586'; - $objParamExploded->enum = Enum::One; + $objParamExploded->enum = Shared\Enum::One; $objParamExploded->float32 = 1.1; $objParamExploded->int = 1; $objParamExploded->int32 = 1; - $objParamExploded->int32Enum = SimpleObjectInt32Enum::OneHundredAndEightyOne; - $objParamExploded->intEnum = SimpleObjectIntEnum::Second; + $objParamExploded->int32Enum = Shared\Int32Enum::OneHundredAndEightyOne; + $objParamExploded->intEnum = Shared\IntEnum::Second; $objParamExploded->intOptNull = 645228; $objParamExploded->num = 1.1; $objParamExploded->numOptNull = 7602.31; $objParamExploded->str = 'test'; $objParamExploded->strOpt = 'testOptional'; - $objParam = new SimpleObject(); + $objParam = new Shared\SimpleObject(); $objParam->any = 'any'; $objParam->bigint = 8821239038968084; $objParam->bigintStr = '9223372036854775808'; @@ -422,12 +411,12 @@ try { $objParam->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $objParam->decimal = 3.141592653589793; $objParam->decimalStr = '3.14159265358979344719667586'; - $objParam->enum = Enum::One; + $objParam->enum = Shared\Enum::One; $objParam->float32 = 1.1; $objParam->int = 1; $objParam->int32 = 1; - $objParam->int32Enum = SimpleObjectInt32Enum::SixtyNine; - $objParam->intEnum = SimpleObjectIntEnum::First; + $objParam->int32Enum = Shared\Int32Enum::SixtyNine; + $objParam->intEnum = Shared\IntEnum::First; $objParam->intOptNull = 973554; $objParam->num = 1.1; $objParam->numOptNull = 873.54; @@ -467,14 +456,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsPrimitiveRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -516,27 +505,25 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsRefParamObjectRequest; -use \OpenAPI\OpenAPI\Models\Shared\RefQueryParamObj; -use \OpenAPI\OpenAPI\Models\Shared\RefQueryParamObjExploded; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $refObjParam = new RefQueryParamObj(); + $refObjParam = new Shared\RefQueryParamObj(); $refObjParam->bool = true; $refObjParam->int = 1; $refObjParam->num = 1.1; $refObjParam->str = 'test'; - $refObjParamExploded = new RefQueryParamObjExploded(); + $refObjParamExploded = new Shared\RefQueryParamObjExploded(); $refObjParamExploded->bool = true; $refObjParamExploded->int = 1; $refObjParamExploded->num = 1.1; @@ -575,14 +562,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\HeaderParamsArrayRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -623,14 +610,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\HeaderParamsMapRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -674,23 +661,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\HeaderParamsObjectRequest; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $xHeaderObj = new SimpleObject(); + $xHeaderObj = new Shared\SimpleObject(); $xHeaderObj->any = 'any'; $xHeaderObj->bigint = 8821239038968084; $xHeaderObj->bigintStr = '9223372036854775808'; @@ -700,19 +683,19 @@ try { $xHeaderObj->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $xHeaderObj->decimal = 3.141592653589793; $xHeaderObj->decimalStr = '3.14159265358979344719667586'; - $xHeaderObj->enum = Enum::One; + $xHeaderObj->enum = Shared\Enum::One; $xHeaderObj->float32 = 1.1; $xHeaderObj->int = 1; $xHeaderObj->int32 = 1; - $xHeaderObj->int32Enum = SimpleObjectInt32Enum::SixtyNine; - $xHeaderObj->intEnum = SimpleObjectIntEnum::Third; + $xHeaderObj->int32Enum = Shared\Int32Enum::SixtyNine; + $xHeaderObj->intEnum = Shared\IntEnum::Third; $xHeaderObj->intOptNull = 590416; $xHeaderObj->num = 1.1; $xHeaderObj->numOptNull = 144.68; $xHeaderObj->str = 'test'; $xHeaderObj->strOpt = 'testOptional'; - $xHeaderObjExplode = new SimpleObject(); + $xHeaderObjExplode = new Shared\SimpleObject(); $xHeaderObjExplode->any = 'any'; $xHeaderObjExplode->bigint = 8821239038968084; $xHeaderObjExplode->bigintStr = '9223372036854775808'; @@ -722,12 +705,12 @@ try { $xHeaderObjExplode->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $xHeaderObjExplode->decimal = 3.141592653589793; $xHeaderObjExplode->decimalStr = '3.14159265358979344719667586'; - $xHeaderObjExplode->enum = Enum::One; + $xHeaderObjExplode->enum = Shared\Enum::One; $xHeaderObjExplode->float32 = 1.1; $xHeaderObjExplode->int = 1; $xHeaderObjExplode->int32 = 1; - $xHeaderObjExplode->int32Enum = SimpleObjectInt32Enum::FiftyFive; - $xHeaderObjExplode->intEnum = SimpleObjectIntEnum::Second; + $xHeaderObjExplode->int32Enum = Shared\Int32Enum::FiftyFive; + $xHeaderObjExplode->intEnum = Shared\IntEnum::Second; $xHeaderObjExplode->intOptNull = 54344; $xHeaderObjExplode->num = 1.1; $xHeaderObjExplode->numOptNull = 6940.18; @@ -767,14 +750,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\HeaderParamsPrimitiveRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -816,35 +799,30 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\JsonQueryParamsObjectRequest; -use \OpenAPI\OpenAPI\Models\Shared\DeepObject; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $deepObjParam = new DeepObject(); + $deepObjParam = new Shared\DeepObject(); $deepObjParam->any = 'anyOf[0]'; $deepObjParam->arr = [ - new SimpleObject(), + new Shared\SimpleObject(), ]; $deepObjParam->bool = true; $deepObjParam->int = 1; $deepObjParam->map = [ - 'Hybrid' => new SimpleObject(), + 'Hybrid' => new Shared\SimpleObject(), ]; $deepObjParam->num = 1.1; - $deepObjParam->obj = new SimpleObject(); + $deepObjParam->obj = new Shared\SimpleObject(); $deepObjParam->obj->any = 'any'; $deepObjParam->obj->bigint = 8821239038968084; $deepObjParam->obj->bigintStr = '9223372036854775808'; @@ -854,12 +832,12 @@ try { $deepObjParam->obj->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $deepObjParam->obj->decimal = 3.141592653589793; $deepObjParam->obj->decimalStr = '3.14159265358979344719667586'; - $deepObjParam->obj->enum = Enum::One; + $deepObjParam->obj->enum = Shared\Enum::One; $deepObjParam->obj->float32 = 1.1; $deepObjParam->obj->int = 1; $deepObjParam->obj->int32 = 1; - $deepObjParam->obj->int32Enum = SimpleObjectInt32Enum::OneHundredAndEightyOne; - $deepObjParam->obj->intEnum = SimpleObjectIntEnum::Third; + $deepObjParam->obj->int32Enum = Shared\Int32Enum::OneHundredAndEightyOne; + $deepObjParam->obj->intEnum = Shared\IntEnum::Third; $deepObjParam->obj->intOptNull = 980270; $deepObjParam->obj->num = 1.1; $deepObjParam->obj->numOptNull = 2047.13; @@ -868,7 +846,7 @@ try { $deepObjParam->str = 'test'; $deepObjParam->type = 'string'; - $simpleObjParam = new SimpleObject(); + $simpleObjParam = new Shared\SimpleObject(); $simpleObjParam->any = 'any'; $simpleObjParam->bigint = 8821239038968084; $simpleObjParam->bigintStr = '9223372036854775808'; @@ -878,12 +856,12 @@ try { $simpleObjParam->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $simpleObjParam->decimal = 3.141592653589793; $simpleObjParam->decimalStr = '3.14159265358979344719667586'; - $simpleObjParam->enum = Enum::One; + $simpleObjParam->enum = Shared\Enum::One; $simpleObjParam->float32 = 1.1; $simpleObjParam->int = 1; $simpleObjParam->int32 = 1; - $simpleObjParam->int32Enum = SimpleObjectInt32Enum::FiftyFive; - $simpleObjParam->intEnum = SimpleObjectIntEnum::First; + $simpleObjParam->int32Enum = Shared\Int32Enum::FiftyFive; + $simpleObjParam->intEnum = Shared\IntEnum::First; $simpleObjParam->intOptNull = 835122; $simpleObjParam->num = 1.1; $simpleObjParam->numOptNull = 9111.59; @@ -923,14 +901,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -971,14 +949,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -1019,23 +997,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\MixedQueryParamsRequest; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $deepObjectParam = new SimpleObject(); + $deepObjectParam = new Shared\SimpleObject(); $deepObjectParam->any = 'any'; $deepObjectParam->bigint = 8821239038968084; $deepObjectParam->bigintStr = '9223372036854775808'; @@ -1045,19 +1019,19 @@ try { $deepObjectParam->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $deepObjectParam->decimal = 3.141592653589793; $deepObjectParam->decimalStr = '3.14159265358979344719667586'; - $deepObjectParam->enum = Enum::One; + $deepObjectParam->enum = Shared\Enum::One; $deepObjectParam->float32 = 1.1; $deepObjectParam->int = 1; $deepObjectParam->int32 = 1; - $deepObjectParam->int32Enum = SimpleObjectInt32Enum::OneHundredAndEightyOne; - $deepObjectParam->intEnum = SimpleObjectIntEnum::Second; + $deepObjectParam->int32Enum = Shared\Int32Enum::OneHundredAndEightyOne; + $deepObjectParam->intEnum = Shared\IntEnum::Second; $deepObjectParam->intOptNull = 89281; $deepObjectParam->num = 1.1; $deepObjectParam->numOptNull = 2132.48; $deepObjectParam->str = 'test'; $deepObjectParam->strOpt = 'testOptional'; - $formParam = new SimpleObject(); + $formParam = new Shared\SimpleObject(); $formParam->any = 'any'; $formParam->bigint = 8821239038968084; $formParam->bigintStr = '9223372036854775808'; @@ -1067,19 +1041,19 @@ try { $formParam->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $formParam->decimal = 3.141592653589793; $formParam->decimalStr = '3.14159265358979344719667586'; - $formParam->enum = Enum::One; + $formParam->enum = Shared\Enum::One; $formParam->float32 = 1.1; $formParam->int = 1; $formParam->int32 = 1; - $formParam->int32Enum = SimpleObjectInt32Enum::FiftyFive; - $formParam->intEnum = SimpleObjectIntEnum::Second; + $formParam->int32Enum = Shared\Int32Enum::FiftyFive; + $formParam->intEnum = Shared\IntEnum::Second; $formParam->intOptNull = 218100; $formParam->num = 1.1; $formParam->numOptNull = 75.58; $formParam->str = 'test'; $formParam->strOpt = 'testOptional'; - $jsonParam = new SimpleObject(); + $jsonParam = new Shared\SimpleObject(); $jsonParam->any = 'any'; $jsonParam->bigint = 8821239038968084; $jsonParam->bigintStr = '9223372036854775808'; @@ -1089,12 +1063,12 @@ try { $jsonParam->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $jsonParam->decimal = 3.141592653589793; $jsonParam->decimalStr = '3.14159265358979344719667586'; - $jsonParam->enum = Enum::One; + $jsonParam->enum = Shared\Enum::One; $jsonParam->float32 = 1.1; $jsonParam->int = 1; $jsonParam->int32 = 1; - $jsonParam->int32Enum = SimpleObjectInt32Enum::FiftyFive; - $jsonParam->intEnum = SimpleObjectIntEnum::Third; + $jsonParam->int32Enum = Shared\Int32Enum::FiftyFive; + $jsonParam->intEnum = Shared\IntEnum::Third; $jsonParam->intOptNull = 387493; $jsonParam->num = 1.1; $jsonParam->numOptNull = 5641.93; @@ -1135,23 +1109,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\PathParameterJsonRequest; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $jsonObj = new SimpleObject(); + $jsonObj = new Shared\SimpleObject(); $jsonObj->any = 'any'; $jsonObj->bigint = 8821239038968084; $jsonObj->bigintStr = '9223372036854775808'; @@ -1161,12 +1131,12 @@ try { $jsonObj->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $jsonObj->decimal = 3.141592653589793; $jsonObj->decimalStr = '3.14159265358979344719667586'; - $jsonObj->enum = Enum::One; + $jsonObj->enum = Shared\Enum::One; $jsonObj->float32 = 1.1; $jsonObj->int = 1; $jsonObj->int32 = 1; - $jsonObj->int32Enum = SimpleObjectInt32Enum::SixtyNine; - $jsonObj->intEnum = SimpleObjectIntEnum::Second; + $jsonObj->int32Enum = Shared\Int32Enum::SixtyNine; + $jsonObj->intEnum = Shared\IntEnum::Second; $jsonObj->intOptNull = 355762; $jsonObj->num = 1.1; $jsonObj->numOptNull = 5955.49; @@ -1205,23 +1175,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\PipeDelimitedQueryParamsArrayRequest; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $objParam = new SimpleObject(); + $objParam = new Shared\SimpleObject(); $objParam->any = 'any'; $objParam->bigint = 8821239038968084; $objParam->bigintStr = '9223372036854775808'; @@ -1231,12 +1197,12 @@ try { $objParam->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $objParam->decimal = 3.141592653589793; $objParam->decimalStr = '3.14159265358979344719667586'; - $objParam->enum = Enum::One; + $objParam->enum = Shared\Enum::One; $objParam->float32 = 1.1; $objParam->int = 1; $objParam->int32 = 1; - $objParam->int32Enum = SimpleObjectInt32Enum::SixtyNine; - $objParam->intEnum = SimpleObjectIntEnum::First; + $objParam->int32Enum = Shared\Int32Enum::SixtyNine; + $objParam->intEnum = Shared\IntEnum::First; $objParam->intOptNull = 110513; $objParam->num = 1.1; $objParam->numOptNull = 1666.19; @@ -1284,14 +1250,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\SimplePathParameterArraysRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -1332,14 +1298,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\SimplePathParameterMapsRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -1383,23 +1349,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\SimplePathParameterObjectsRequest; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $objParam = new SimpleObject(); + $objParam = new Shared\SimpleObject(); $objParam->any = 'any'; $objParam->bigint = 8821239038968084; $objParam->bigintStr = '9223372036854775808'; @@ -1409,19 +1371,19 @@ try { $objParam->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $objParam->decimal = 3.141592653589793; $objParam->decimalStr = '3.14159265358979344719667586'; - $objParam->enum = Enum::One; + $objParam->enum = Shared\Enum::One; $objParam->float32 = 1.1; $objParam->int = 1; $objParam->int32 = 1; - $objParam->int32Enum = SimpleObjectInt32Enum::FiftyFive; - $objParam->intEnum = SimpleObjectIntEnum::Third; + $objParam->int32Enum = Shared\Int32Enum::FiftyFive; + $objParam->intEnum = Shared\IntEnum::Third; $objParam->intOptNull = 384918; $objParam->num = 1.1; $objParam->numOptNull = 9559.93; $objParam->str = 'test'; $objParam->strOpt = 'testOptional'; - $objParamExploded = new SimpleObject(); + $objParamExploded = new Shared\SimpleObject(); $objParamExploded->any = 'any'; $objParamExploded->bigint = 8821239038968084; $objParamExploded->bigintStr = '9223372036854775808'; @@ -1431,12 +1393,12 @@ try { $objParamExploded->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $objParamExploded->decimal = 3.141592653589793; $objParamExploded->decimalStr = '3.14159265358979344719667586'; - $objParamExploded->enum = Enum::One; + $objParamExploded->enum = Shared\Enum::One; $objParamExploded->float32 = 1.1; $objParamExploded->int = 1; $objParamExploded->int32 = 1; - $objParamExploded->int32Enum = SimpleObjectInt32Enum::OneHundredAndEightyOne; - $objParamExploded->intEnum = SimpleObjectIntEnum::Second; + $objParamExploded->int32Enum = Shared\Int32Enum::OneHundredAndEightyOne; + $objParamExploded->intEnum = Shared\IntEnum::Second; $objParamExploded->intOptNull = 678638; $objParamExploded->num = 1.1; $objParamExploded->numOptNull = 5865.54; @@ -1476,14 +1438,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\SimplePathParameterPrimitivesRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/requestbodies/README.md b/php-client-sdk/docs/sdks/requestbodies/README.md index ac7d4189f..f12c316f3 100755 --- a/php-client-sdk/docs/sdks/requestbodies/README.md +++ b/php-client-sdk/docs/sdks/requestbodies/README.md @@ -1,5 +1,5 @@ # RequestBodies -(*requestBodies*) + ## Overview @@ -99,19 +99,18 @@ Endpoints for testing request bodies. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\NullableObject; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new NullableObject(); + $request = new Shared\NullableObject(); $request->optional = 'string'; $request->required = 302382; @@ -147,29 +146,26 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\NullableRequiredEmptyObjectPostRequestBody; -use \OpenAPI\OpenAPI\Models\Operations\NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj; -use \OpenAPI\OpenAPI\Models\Operations\NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj; -use \OpenAPI\OpenAPI\Models\Operations\NullableRequiredEmptyObjectPostRequestBodyRequiredObj; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new NullableRequiredEmptyObjectPostRequestBody(); - $request->nullableOptionalObj = new NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj(); - $request->nullableRequiredObj = new NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj(); - $request->requiredObj = new NullableRequiredEmptyObjectPostRequestBodyRequiredObj(); + $request = new Operations\NullableRequiredEmptyObjectPostRequestBody(); + $request->nullableOptionalObj = new Operations\NullableOptionalObj(); + $request->nullableRequiredObj = new Operations\NullableRequiredObj(); + $request->requiredObj = new Operations\RequiredObj(); $response = $sdk->requestBodies->nullableRequiredEmptyObjectPost($request); - if ($response->nullableRequiredEmptyObjectPost200ApplicationJSONString !== null) { + if ($response->res !== null) { // handle response } } catch (Exception $e) { @@ -199,30 +195,29 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\NullableRequiredPropertyPostRequestBody; -use \OpenAPI\OpenAPI\Models\Operations\NullableRequiredPropertyPostRequestBodyNullableRequiredEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new NullableRequiredPropertyPostRequestBody(); + $request = new Operations\NullableRequiredPropertyPostRequestBody(); $request->nullableOptionalInt = 235517; $request->nullableRequiredArray = [ 6917.41, ]; - $request->nullableRequiredEnum = NullableRequiredPropertyPostRequestBodyNullableRequiredEnum::First; + $request->nullableRequiredEnum = Operations\NullableRequiredEnum::First; $request->nullableRequiredInt = 282026; $response = $sdk->requestBodies->nullableRequiredPropertyPost($request); - if ($response->nullableRequiredPropertyPost200ApplicationJSONString !== null) { + if ($response->res !== null) { // handle response } } catch (Exception $e) { @@ -252,30 +247,29 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\NullableRequiredSharedObjectPostRequestBody; -use \OpenAPI\OpenAPI\Models\Shared\NullableObject; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new NullableRequiredSharedObjectPostRequestBody(); - $request->nullableOptionalObj = new NullableObject(); + $request = new Operations\NullableRequiredSharedObjectPostRequestBody(); + $request->nullableOptionalObj = new Shared\NullableObject(); $request->nullableOptionalObj->optional = 'string'; $request->nullableOptionalObj->required = 86533; - $request->nullableRequiredObj = new NullableObject(); + $request->nullableRequiredObj = new Shared\NullableObject(); $request->nullableRequiredObj->optional = 'string'; $request->nullableRequiredObj->required = 964394; $response = $sdk->requestBodies->nullableRequiredSharedObjectPost($request); - if ($response->nullableRequiredSharedObjectPost200ApplicationJSONString !== null) { + if ($response->res !== null) { // handle response } } catch (Exception $e) { @@ -305,28 +299,24 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ - new SimpleObject(), + new Shared\SimpleObject(), ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonArray($request); - if ($response->simpleObjects !== null) { + if ($response->res !== null) { // handle response } } catch (Exception $e) { @@ -357,28 +347,24 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ - new SimpleObjectCamelCase(), + new Shared\SimpleObjectCamelCase(), ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonArrayCamelCase($request); - if ($response->simpleObjectCamelCases !== null) { + if ($response->res !== null) { // handle response } } catch (Exception $e) { @@ -409,23 +395,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ - new SimpleObject(), + new Shared\SimpleObject(), ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonArrayObj($request); @@ -460,23 +442,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ - new SimpleObjectCamelCase(), + new Shared\SimpleObjectCamelCase(), ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonArrayObjCamelCase($request); @@ -511,30 +489,26 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ [ - new SimpleObject(), + new Shared\SimpleObject(), ], ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonArrayOfArray($request); - if ($response->arrs !== null) { + if ($response->res !== null) { // handle response } } catch (Exception $e) { @@ -565,30 +539,26 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ [ - new SimpleObjectCamelCase(), + new Shared\SimpleObjectCamelCase(), ], ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonArrayOfArrayCamelCase($request); - if ($response->arrs !== null) { + if ($response->res !== null) { // handle response } } catch (Exception $e) { @@ -619,13 +589,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -638,7 +608,7 @@ try { $response = $sdk->requestBodies->requestBodyPostApplicationJsonArrayOfArrayOfPrimitive($request); - if ($response->arrs !== null) { + if ($response->res !== null) { // handle response } } catch (Exception $e) { @@ -669,30 +639,26 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ [ - 'Southeast' => new SimpleObject(), + 'Southeast' => new Shared\SimpleObject(), ], ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonArrayOfMap($request); - if ($response->maps !== null) { + if ($response->res !== null) { // handle response } } catch (Exception $e) { @@ -723,30 +689,26 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ [ - 'culpa' => new SimpleObjectCamelCase(), + 'culpa' => new Shared\SimpleObjectCamelCase(), ], ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonArrayOfMapCamelCase($request); - if ($response->maps !== null) { + if ($response->res !== null) { // handle response } } catch (Exception $e) { @@ -777,13 +739,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -794,7 +756,7 @@ try { $response = $sdk->requestBodies->requestBodyPostApplicationJsonArrayOfPrimitive($request); - if ($response->strings !== null) { + if ($response->res !== null) { // handle response } } catch (Exception $e) { @@ -825,34 +787,29 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\DeepObject; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new DeepObject(); + $request = new Shared\DeepObject(); $request->any = 'anyOf[0]'; $request->arr = [ - new SimpleObject(), + new Shared\SimpleObject(), ]; $request->bool = true; $request->int = 1; $request->map = [ - 'medium' => new SimpleObject(), + 'medium' => new Shared\SimpleObject(), ]; $request->num = 1.1; - $request->obj = new SimpleObject(); + $request->obj = new Shared\SimpleObject(); $request->obj->any = 'any'; $request->obj->bigint = 8821239038968084; $request->obj->bigintStr = '9223372036854775808'; @@ -862,12 +819,12 @@ try { $request->obj->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $request->obj->decimal = 3.141592653589793; $request->obj->decimalStr = '3.14159265358979344719667586'; - $request->obj->enum = Enum::One; + $request->obj->enum = Shared\Enum::One; $request->obj->float32 = 1.1; $request->obj->int = 1; $request->obj->int32 = 1; - $request->obj->int32Enum = SimpleObjectInt32Enum::FiftyFive; - $request->obj->intEnum = SimpleObjectIntEnum::Third; + $request->obj->int32Enum = Shared\Int32Enum::FiftyFive; + $request->obj->intEnum = Shared\IntEnum::Third; $request->obj->intOptNull = 817678; $request->obj->num = 1.1; $request->obj->numOptNull = 2099.66; @@ -908,34 +865,29 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\DeepObjectCamelCase; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new DeepObjectCamelCase(); + $request = new Shared\DeepObjectCamelCase(); $request->anyVal = 'string'; $request->arrVal = [ - new SimpleObjectCamelCase(), + new Shared\SimpleObjectCamelCase(), ]; $request->boolVal = false; $request->intVal = 66469; $request->mapVal = [ - 'as' => new SimpleObjectCamelCase(), + 'as' => new Shared\SimpleObjectCamelCase(), ]; $request->numVal = 4241.4; - $request->objVal = new SimpleObjectCamelCase(); + $request->objVal = new Shared\SimpleObjectCamelCase(); $request->objVal->anyVal = 'any example'; $request->objVal->bigintStrVal = 'string'; $request->objVal->bigintVal = 942092; @@ -944,11 +896,11 @@ try { $request->objVal->dateTimeVal = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00Z'); $request->objVal->dateVal = DateTime::createFromFormat('Y-m-d', '2020-01-01'); $request->objVal->decimalVal = 1379.45; - $request->objVal->enumVal = Enum::One; + $request->objVal->enumVal = Shared\Enum::One; $request->objVal->float32Val = 2.2222222; - $request->objVal->int32EnumVal = SimpleObjectCamelCaseInt32EnumVal::OneHundredAndEightyOne; + $request->objVal->int32EnumVal = Shared\Int32EnumVal::OneHundredAndEightyOne; $request->objVal->int32Val = 1; - $request->objVal->intEnumVal = SimpleObjectCamelCaseIntEnumVal::First; + $request->objVal->intEnumVal = Shared\IntEnumVal::First; $request->objVal->intOptNullVal = 999999; $request->objVal->intVal = 999999; $request->objVal->numOptNullVal = 1.1; @@ -990,23 +942,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ - 'Bentley' => new SimpleObject(), + 'Bentley' => new Shared\SimpleObject(), ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonMap($request); @@ -1042,23 +990,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ - 'archive' => new SimpleObjectCamelCase(), + 'archive' => new Shared\SimpleObjectCamelCase(), ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonMapCamelCase($request); @@ -1094,23 +1038,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ - 'larder' => new SimpleObject(), + 'larder' => new Shared\SimpleObject(), ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonMapObj($request); @@ -1145,23 +1085,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ - 'female' => new SimpleObjectCamelCase(), + 'female' => new Shared\SimpleObjectCamelCase(), ] $response = $sdk->requestBodies->requestBodyPostApplicationJsonMapObjCamelCase($request); @@ -1196,24 +1132,20 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ 'Loan' => [ - new SimpleObject(), + new Shared\SimpleObject(), ], ] @@ -1250,24 +1182,20 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ 'nonstop' => [ - new SimpleObjectCamelCase(), + new Shared\SimpleObjectCamelCase(), ], ] @@ -1304,24 +1232,20 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ 'Senior' => [ - 'vice' => new SimpleObject(), + 'vice' => new Shared\SimpleObject(), ], ] @@ -1358,24 +1282,20 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ 'Home' => [ - 'plum' => new SimpleObjectCamelCase(), + 'plum' => new Shared\SimpleObjectCamelCase(), ], ] @@ -1412,13 +1332,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -1462,13 +1382,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -1510,22 +1430,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new SimpleObject(); + $request = new Shared\SimpleObject(); $request->any = 'any'; $request->bigint = 8821239038968084; $request->bigintStr = '9223372036854775808'; @@ -1535,12 +1451,12 @@ try { $request->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $request->decimal = 3.141592653589793; $request->decimalStr = '3.14159265358979344719667586'; - $request->enum = Enum::One; + $request->enum = Shared\Enum::One; $request->float32 = 1.1; $request->int = 1; $request->int32 = 1; - $request->int32Enum = SimpleObjectInt32Enum::SixtyNine; - $request->intEnum = SimpleObjectIntEnum::First; + $request->int32Enum = Shared\Int32Enum::SixtyNine; + $request->intEnum = Shared\IntEnum::First; $request->intOptNull = 680661; $request->num = 1.1; $request->numOptNull = 8809.47; @@ -1579,22 +1495,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new SimpleObject(); + $request = new Shared\SimpleObject(); $request->any = 'any'; $request->bigint = 8821239038968084; $request->bigintStr = '9223372036854775808'; @@ -1604,12 +1516,12 @@ try { $request->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $request->decimal = 3.141592653589793; $request->decimalStr = '3.14159265358979344719667586'; - $request->enum = Enum::One; + $request->enum = Shared\Enum::One; $request->float32 = 1.1; $request->int = 1; $request->int32 = 1; - $request->int32Enum = SimpleObjectInt32Enum::FiftyFive; - $request->intEnum = SimpleObjectIntEnum::Second; + $request->int32Enum = Shared\Int32Enum::FiftyFive; + $request->intEnum = Shared\IntEnum::Second; $request->intOptNull = 387512; $request->num = 1.1; $request->numOptNull = 7875.71; @@ -1648,22 +1560,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new SimpleObjectCamelCase(); + $request = new Shared\SimpleObjectCamelCase(); $request->anyVal = 'any example'; $request->bigintStrVal = 'string'; $request->bigintVal = 281697; @@ -1672,11 +1580,11 @@ try { $request->dateTimeVal = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00Z'); $request->dateVal = DateTime::createFromFormat('Y-m-d', '2020-01-01'); $request->decimalVal = 9976.38; - $request->enumVal = Enum::One; + $request->enumVal = Shared\Enum::One; $request->float32Val = 2.2222222; - $request->int32EnumVal = SimpleObjectCamelCaseInt32EnumVal::SixtyNine; + $request->int32EnumVal = Shared\Int32EnumVal::SixtyNine; $request->int32Val = 1; - $request->intEnumVal = SimpleObjectCamelCaseIntEnumVal::Second; + $request->intEnumVal = Shared\IntEnumVal::Second; $request->intOptNullVal = 999999; $request->intVal = 999999; $request->numOptNullVal = 1.1; @@ -1716,21 +1624,20 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostComplexNumberTypesRequest; -use \OpenAPI\OpenAPI\Models\Shared\ComplexNumberTypes; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new RequestBodyPostComplexNumberTypesRequest(); - $request->complexNumberTypes = new ComplexNumberTypes(); + $request = new Operations\RequestBodyPostComplexNumberTypesRequest(); + $request->complexNumberTypes = new Shared\ComplexNumberTypes(); $request->complexNumberTypes->bigint = 765757; $request->complexNumberTypes->bigintStr = 'string'; $request->complexNumberTypes->decimal = 9344.87; @@ -1746,7 +1653,7 @@ try { $response = $sdk->requestBodies->requestBodyPostComplexNumberTypes($request); - if ($response->requestBodyPostComplexNumberTypes200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -1776,23 +1683,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\DefaultsAndConsts; -use \OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsConstEnumInt; -use \OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsConstEnumStr; -use \OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsDefaultEnumInt; -use \OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsDefaultEnumStr; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new DefaultsAndConsts(); + $request = new Shared\DefaultsAndConsts(); $request->constBigInt = 559205; $request->constBigIntStr = 'string'; $request->constBool = false; @@ -1800,8 +1702,8 @@ try { $request->constDateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2022-12-15T04:16:08.794Z'); $request->constDecimal = 9160.69; $request->constDecimalStr = 'string'; - $request->constEnumInt = DefaultsAndConstsConstEnumInt::One; - $request->constEnumStr = DefaultsAndConstsConstEnumStr::Three; + $request->constEnumInt = Shared\ConstEnumInt::One; + $request->constEnumStr = Shared\ConstEnumStr::Three; $request->constInt = 299545; $request->constNum = 4612.63; $request->constStr = 'string'; @@ -1813,8 +1715,8 @@ try { $request->defaultDateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2021-10-01T11:08:55.738Z'); $request->defaultDecimal = 4585.94; $request->defaultDecimalStr = 'string'; - $request->defaultEnumInt = DefaultsAndConstsDefaultEnumInt::Two; - $request->defaultEnumStr = DefaultsAndConstsDefaultEnumStr::One; + $request->defaultEnumInt = Shared\DefaultEnumInt::Two; + $request->defaultEnumStr = Shared\DefaultEnumStr::One; $request->defaultInt = 788517; $request->defaultNum = 639.73; $request->defaultStr = 'string'; @@ -1824,7 +1726,7 @@ try { $response = $sdk->requestBodies->requestBodyPostDefaultsAndConsts($request); - if ($response->requestBodyPostDefaultsAndConsts200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -1854,27 +1756,25 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostEmptyObjectRequestBody; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostEmptyObjectRequestBodyEmpty; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new RequestBodyPostEmptyObjectRequestBody(); - $request->empty = new RequestBodyPostEmptyObjectRequestBodyEmpty(); - $request->emptyWithEmptyProperties = new RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties(); + $request = new Operations\RequestBodyPostEmptyObjectRequestBody(); + $request->empty = new Operations\EmptyT(); + $request->emptyWithEmptyProperties = new Operations\EmptyWithEmptyProperties(); $response = $sdk->requestBodies->requestBodyPostEmptyObject($request); - if ($response->requestBodyPostEmptyObject200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -1904,34 +1804,29 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\DeepObject; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new DeepObject(); + $request = new Shared\DeepObject(); $request->any = 'anyOf[0]'; $request->arr = [ - new SimpleObject(), + new Shared\SimpleObject(), ]; $request->bool = true; $request->int = 1; $request->map = [ - 'and' => new SimpleObject(), + 'and' => new Shared\SimpleObject(), ]; $request->num = 1.1; - $request->obj = new SimpleObject(); + $request->obj = new Shared\SimpleObject(); $request->obj->any = 'any'; $request->obj->bigint = 8821239038968084; $request->obj->bigintStr = '9223372036854775808'; @@ -1941,12 +1836,12 @@ try { $request->obj->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $request->obj->decimal = 3.141592653589793; $request->obj->decimalStr = '3.14159265358979344719667586'; - $request->obj->enum = Enum::One; + $request->obj->enum = Shared\Enum::One; $request->obj->float32 = 1.1; $request->obj->int = 1; $request->obj->int32 = 1; - $request->obj->int32Enum = SimpleObjectInt32Enum::FiftyFive; - $request->obj->intEnum = SimpleObjectIntEnum::Third; + $request->obj->int32Enum = Shared\Int32Enum::FiftyFive; + $request->obj->intEnum = Shared\IntEnum::Third; $request->obj->intOptNull = 769249; $request->obj->num = 1.1; $request->obj->numOptNull = 482.42; @@ -1987,13 +1882,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2034,22 +1929,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new SimpleObject(); + $request = new Shared\SimpleObject(); $request->any = 'any'; $request->bigint = 8821239038968084; $request->bigintStr = '9223372036854775808'; @@ -2059,12 +1950,12 @@ try { $request->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $request->decimal = 3.141592653589793; $request->decimalStr = '3.14159265358979344719667586'; - $request->enum = Enum::One; + $request->enum = Shared\Enum::One; $request->float32 = 1.1; $request->int = 1; $request->int32 = 1; - $request->int32Enum = SimpleObjectInt32Enum::SixtyNine; - $request->intEnum = SimpleObjectIntEnum::First; + $request->int32Enum = Shared\Int32Enum::SixtyNine; + $request->intEnum = Shared\IntEnum::First; $request->intOptNull = 5565; $request->num = 1.1; $request->numOptNull = 8893.53; @@ -2103,13 +1994,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2120,7 +2011,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesArrayBigInt($request); - if ($response->requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2150,13 +2041,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2167,7 +2058,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesArrayDate($request); - if ($response->requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2197,13 +2088,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2214,7 +2105,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesArrayDecimalStr($request); - if ($response->requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2244,13 +2135,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2259,7 +2150,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesBigInt($request); - if ($response->requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2289,13 +2180,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2304,7 +2195,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesBigIntStr($request); - if ($response->requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2334,13 +2225,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2349,7 +2240,7 @@ false $response = $sdk->requestBodies->requestBodyPostJsonDataTypesBoolean($request); - if ($response->requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2379,13 +2270,13 @@ false declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2394,7 +2285,7 @@ DateTime::createFromFormat('Y-m-d', '2022-03-04') $response = $sdk->requestBodies->requestBodyPostJsonDataTypesDate($request); - if ($response->requestBodyPostJSONDataTypesDate200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2424,13 +2315,13 @@ DateTime::createFromFormat('Y-m-d', '2022-03-04') declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2439,7 +2330,7 @@ DateTime::createFromFormat('Y-m-d\TH:i:s+', '2023-03-04T01:33:15.031Z') $response = $sdk->requestBodies->requestBodyPostJsonDataTypesDateTime($request); - if ($response->requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2469,13 +2360,13 @@ DateTime::createFromFormat('Y-m-d\TH:i:s+', '2023-03-04T01:33:15.031Z') declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2484,7 +2375,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesDecimal($request); - if ($response->requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2514,13 +2405,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2529,7 +2420,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesDecimalStr($request); - if ($response->requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2559,13 +2450,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2574,7 +2465,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesFloat32($request); - if ($response->requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2604,13 +2495,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2619,7 +2510,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesInt32($request); - if ($response->requestBodyPostJSONDataTypesInt32200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2649,13 +2540,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2664,7 +2555,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesInteger($request); - if ($response->requestBodyPostJSONDataTypesInteger200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2694,13 +2585,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2711,7 +2602,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesMapBigIntStr($request); - if ($response->requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2741,13 +2632,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2758,7 +2649,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesMapDateTime($request); - if ($response->requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2788,13 +2679,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2805,7 +2696,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesMapDecimal($request); - if ($response->requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2835,13 +2726,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2850,7 +2741,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesNumber($request); - if ($response->requestBodyPostJSONDataTypesNumber200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2880,13 +2771,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -2895,7 +2786,7 @@ try { $response = $sdk->requestBodies->requestBodyPostJsonDataTypesString($request); - if ($response->requestBodyPostJSONDataTypesString200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -2925,22 +2816,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new SimpleObject(); + $request = new Shared\SimpleObject(); $request->any = 'any'; $request->bigint = 8821239038968084; $request->bigintStr = '9223372036854775808'; @@ -2950,12 +2837,12 @@ try { $request->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $request->decimal = 3.141592653589793; $request->decimalStr = '3.14159265358979344719667586'; - $request->enum = Enum::One; + $request->enum = Shared\Enum::One; $request->float32 = 1.1; $request->int = 1; $request->int32 = 1; - $request->int32Enum = SimpleObjectInt32Enum::FiftyFive; - $request->intEnum = SimpleObjectIntEnum::Third; + $request->int32Enum = Shared\Int32Enum::FiftyFive; + $request->intEnum = Shared\IntEnum::Third; $request->intOptNull = 587803; $request->num = 1.1; $request->numOptNull = 9724.14; @@ -2994,19 +2881,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON(); + $request = new Operations\RequestBodyPostMultipleContentTypesInlineFilteredRequestBody(); $request->bool = false; $request->num = 3558.41; $request->str = 'string'; @@ -3023,9 +2910,9 @@ try { ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `$request` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `$request` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3043,20 +2930,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamFormRequest; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $requestBody = new RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded(); + $requestBody = new Operations\RequestBodyPostMultipleContentTypesSplitParamFormRequestBody(); $requestBody->bool3 = false; $requestBody->num3 = 8693.24; $requestBody->str3 = 'string'; @@ -3073,10 +2959,10 @@ try { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | ### Response @@ -3094,20 +2980,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamJsonRequest; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationJSON; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $requestBody = new RequestBodyPostMultipleContentTypesSplitParamApplicationJSON(); + $requestBody = new Operations\RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody(); $requestBody->bool = false; $requestBody->num = 9771.91; $requestBody->str = 'string'; @@ -3126,7 +3011,7 @@ try { | Parameter | Type | Required | Description | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md) | :heavy_check_mark: | N/A | +| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md) | :heavy_check_mark: | N/A | | `paramStr` | *string* | :heavy_check_mark: | N/A | @@ -3145,20 +3030,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartRequest; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartFormData; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $requestBody = new RequestBodyPostMultipleContentTypesSplitParamMultipartFormData(); + $requestBody = new Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody(); $requestBody->bool2 = false; $requestBody->num2 = 7000.76; $requestBody->str2 = 'string'; @@ -3175,10 +3059,10 @@ try { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | ### Response @@ -3196,19 +3080,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded(); + $request = new Operations\RequestBodyPostMultipleContentTypesSplitFormRequestBody(); $request->bool3 = false; $request->num3 = 7842.07; $request->str3 = 'string'; @@ -3225,9 +3109,9 @@ try { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `$request` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded](../../models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `$request` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitFormRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3245,19 +3129,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitApplicationJSON; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new RequestBodyPostMultipleContentTypesSplitApplicationJSON(); + $request = new Operations\RequestBodyPostMultipleContentTypesSplitJsonRequestBody(); $request->bool = false; $request->num = 2445.56; $request->str = 'string'; @@ -3276,7 +3160,7 @@ try { | Parameter | Type | Required | Description | | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `$request` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitApplicationJSON](../../models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md) | :heavy_check_mark: | The request object to use for the request. | +| `$request` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitJsonRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3294,19 +3178,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartFormData; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new RequestBodyPostMultipleContentTypesSplitMultipartFormData(); + $request = new Operations\RequestBodyPostMultipleContentTypesSplitMultipartRequestBody(); $request->bool2 = false; $request->num2 = 2079.2; $request->str2 = 'string'; @@ -3323,9 +3207,9 @@ try { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `$request` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartFormData](../../models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `$request` | [\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartRequestBody](../../models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3343,13 +3227,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -3358,7 +3242,7 @@ try { $response = $sdk->requestBodies->requestBodyPostNotNullableNotRequiredStringBody($request); - if ($response->requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -3388,13 +3272,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -3405,7 +3289,7 @@ try { $response = $sdk->requestBodies->requestBodyPostNullArray($request); - if ($response->requestBodyPostNullArray200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -3435,13 +3319,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -3452,7 +3336,7 @@ try { $response = $sdk->requestBodies->requestBodyPostNullDictionary($request); - if ($response->requestBodyPostNullDictionary200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -3482,13 +3366,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -3497,7 +3381,7 @@ try { $response = $sdk->requestBodies->requestBodyPostNullableNotRequiredStringBody($request); - if ($response->requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -3527,13 +3411,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -3542,7 +3426,7 @@ try { $response = $sdk->requestBodies->requestBodyPostNullableRequiredStringBody($request); - if ($response->requestBodyPostNullableRequiredStringBody200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -3572,18 +3456,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { -'9sS}}O%}aJ' +'0x5DbFFb1Ff9' $response = $sdk->requestBodies->requestBodyPutBytes($request); @@ -3617,21 +3501,21 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutBytesWithParamsRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $response = $sdk->requestBodies->requestBodyPutBytesWithParams('o%jIWe4_P6', 'string'); + $response = $sdk->requestBodies->requestBodyPutBytesWithParams('0xC1B9cA4eb5', 'string'); if ($response->res !== null) { // handle response @@ -3664,34 +3548,29 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\DeepObject; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new DeepObject(); + $request = new Shared\DeepObject(); $request->any = 'anyOf[0]'; $request->arr = [ - new SimpleObject(), + new Shared\SimpleObject(), ]; $request->bool = true; $request->int = 1; $request->map = [ - 'Chevrolet' => new SimpleObject(), + 'Chevrolet' => new Shared\SimpleObject(), ]; $request->num = 1.1; - $request->obj = new SimpleObject(); + $request->obj = new Shared\SimpleObject(); $request->obj->any = 'any'; $request->obj->bigint = 8821239038968084; $request->obj->bigintStr = '9223372036854775808'; @@ -3701,12 +3580,12 @@ try { $request->obj->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $request->obj->decimal = 3.141592653589793; $request->obj->decimalStr = '3.14159265358979344719667586'; - $request->obj->enum = Enum::One; + $request->obj->enum = Shared\Enum::One; $request->obj->float32 = 1.1; $request->obj->int = 1; $request->obj->int32 = 1; - $request->obj->int32Enum = SimpleObjectInt32Enum::OneHundredAndEightyOne; - $request->obj->intEnum = SimpleObjectIntEnum::Second; + $request->obj->int32Enum = Shared\Int32Enum::OneHundredAndEightyOne; + $request->obj->intEnum = Shared\IntEnum::Second; $request->obj->intOptNull = 731372; $request->obj->num = 1.1; $request->obj->numOptNull = 8739.03; @@ -3747,23 +3626,22 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartDifferentFileNameRequestBody; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new RequestBodyPutMultipartDifferentFileNameRequestBody(); - $request->differentFileName = new RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName(); - $request->differentFileName->content = 'Y}\'H[5/Z[,'; - $request->differentFileName->differentFileName = 'string'; + $request = new Operations\RequestBodyPutMultipartDifferentFileNameRequestBody(); + $request->differentFileName = new Operations\DifferentFileName(); + $request->differentFileName->content = '0xdF19d43dd2'; + $request->differentFileName->fileName = 'west_tunisian.pdf'; $response = $sdk->requestBodies->requestBodyPutMultipartDifferentFileName($request); @@ -3797,23 +3675,22 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartFileRequestBody; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartFileRequestBodyFile; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new RequestBodyPutMultipartFileRequestBody(); - $request->file = new RequestBodyPutMultipartFileRequestBodyFile(); - $request->file->content = 'OJa,v`.FW-'; - $request->file->file = 'string'; + $request = new Operations\RequestBodyPutMultipartFileRequestBody(); + $request->file = new Operations\File(); + $request->file->content = '0xa9f2Ee38c3'; + $request->file->fileName = 'bandwidth_sedan.pdf'; $response = $sdk->requestBodies->requestBodyPutMultipartFile($request); @@ -3847,22 +3724,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new SimpleObject(); + $request = new Shared\SimpleObject(); $request->any = 'any'; $request->bigint = 8821239038968084; $request->bigintStr = '9223372036854775808'; @@ -3872,12 +3745,12 @@ try { $request->dateTime = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2020-01-01T00:00:00.000000001Z'); $request->decimal = 3.141592653589793; $request->decimalStr = '3.14159265358979344719667586'; - $request->enum = Enum::One; + $request->enum = Shared\Enum::One; $request->float32 = 1.1; $request->int = 1; $request->int32 = 1; - $request->int32Enum = SimpleObjectInt32Enum::FiftyFive; - $request->intEnum = SimpleObjectIntEnum::Third; + $request->int32Enum = Shared\Int32Enum::FiftyFive; + $request->intEnum = Shared\IntEnum::Third; $request->intOptNull = 544005; $request->num = 1.1; $request->numOptNull = 7648.28; @@ -3916,13 +3789,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -3961,14 +3834,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutStringWithParamsRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -4008,19 +3881,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\ReadWriteObjectInput; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new ReadWriteObjectInput(); + $request = new Shared\ReadWriteObject(); $request->num1 = 797612; $request->num2 = 89374; $request->num3 = 459345; @@ -4037,10 +3909,10 @@ try { ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -| `$request` | [\OpenAPI\OpenAPI\Models\Shared\ReadWriteObjectInput](../../models/shared/ReadWriteObjectInput.md) | :heavy_check_mark: | The request object to use for the request. | -| `$serverURL` | *string* | :heavy_minus_sign: | An optional server URL to use. | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +| `$request` | [\OpenAPI\OpenAPI\Models\Shared\ReadWriteObject](../../models/shared/ReadWriteObject.md) | :heavy_check_mark: | The request object to use for the request. | +| `$serverURL` | *string* | :heavy_minus_sign: | An optional server URL to use. | ### Response @@ -4058,19 +3930,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\ReadOnlyObjectInput; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new ReadOnlyObjectInput(); + $request = new Shared\ReadOnlyObjectInput(); $response = $sdk->requestBodies->requestBodyReadOnlyInput($request); @@ -4105,13 +3976,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -4151,13 +4022,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -4197,19 +4068,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\WriteOnlyObject; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new WriteOnlyObject(); + $request = new Shared\WriteOnlyObject(); $request->bool = false; $request->num = 3888.42; $request->string = 'string'; @@ -4247,19 +4117,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\WriteOnlyObject; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new WriteOnlyObject(); + $request = new Shared\WriteOnlyObject(); $request->bool = false; $request->num = 3867.69; $request->string = 'string'; @@ -4297,13 +4166,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/resource/README.md b/php-client-sdk/docs/sdks/resource/README.md index 907144d0b..c31b494a6 100755 --- a/php-client-sdk/docs/sdks/resource/README.md +++ b/php-client-sdk/docs/sdks/resource/README.md @@ -1,5 +1,5 @@ # Resource -(*resource*) + ### Available Operations @@ -19,23 +19,22 @@ declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\CreateFileRequestBody; -use \OpenAPI\OpenAPI\Models\Operations\CreateFileRequestBodyFile; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new CreateFileRequestBody(); - $request->file = new CreateFileRequestBodyFile(); - $request->file->content = '`\'$Z`(L/RH'; - $request->file->file = 'string'; + $request = new Operations\CreateFileRequestBody(); + $request->file = new Operations\CreateFileFile(); + $request->file->content = '0xf10df1a3b9'; + $request->file->fileName = 'rap_national.mp4v'; $response = $sdk->resource->createFile($request); @@ -69,22 +68,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\ExampleResource; -use \OpenAPI\OpenAPI\Models\Shared\ExampleResourceChocolates; -use \OpenAPI\OpenAPI\Models\Shared\ExampleResourceEnumNumber; -use \OpenAPI\OpenAPI\Models\Shared\ExampleResourceEnumStr; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new ExampleResource(); + $request = new Shared\ExampleResource(); $request->arrayOfNumber = [ 1867.47, ]; @@ -92,11 +87,11 @@ try { 'string', ]; $request->chocolates = [ - new ExampleResourceChocolates(), + new Shared\Chocolates(), ]; $request->createdAt = DateTime::createFromFormat('Y-m-d\TH:i:s+', '2023-03-21T05:07:13.653Z'); - $request->enumNumber = ExampleResourceEnumNumber::One; - $request->enumStr = ExampleResourceEnumStr::One; + $request->enumNumber = Shared\EnumNumber::One; + $request->enumStr = Shared\EnumStr::One; $request->id = ''; $request->mapOfInteger = [ 'Unbranded' => 967142, @@ -140,14 +135,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\DeleteResourceRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -186,14 +181,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\GetResourceRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -232,14 +227,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\UpdateResourceRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/responsebodies/README.md b/php-client-sdk/docs/sdks/responsebodies/README.md index 5250fef35..c63b48afc 100755 --- a/php-client-sdk/docs/sdks/responsebodies/README.md +++ b/php-client-sdk/docs/sdks/responsebodies/README.md @@ -1,5 +1,5 @@ # ResponseBodies -(*responseBodies*) + ## Overview @@ -29,13 +29,13 @@ Endpoints for testing response bodies. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -46,7 +46,7 @@ try { $response = $sdk->responseBodies->responseBodyAdditionalPropertiesComplexNumbersPost($request); - if ($response->responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -76,13 +76,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -93,7 +93,7 @@ try { $response = $sdk->responseBodies->responseBodyAdditionalPropertiesDatePost($request); - if ($response->responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -123,28 +123,24 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObject; -use \OpenAPI\OpenAPI\Models\Shared\Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum; -use \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { $request = [ - 'variant' => new SimpleObject(), + 'variant' => new Shared\SimpleObject(), ] $response = $sdk->responseBodies->responseBodyAdditionalPropertiesObjectPost($request); - if ($response->responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -174,13 +170,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -191,7 +187,7 @@ try { $response = $sdk->responseBodies->responseBodyAdditionalPropertiesPost($request); - if ($response->responseBodyAdditionalPropertiesPost200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -221,13 +217,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -258,14 +254,14 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\ResponseBodyEmptyWithHeadersRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -305,13 +301,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -348,13 +344,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -391,13 +387,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -428,13 +424,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -465,19 +461,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\ObjWithZeroValueComplexTypePtrs; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new ObjWithZeroValueComplexTypePtrs(); + $request = new Shared\ObjWithZeroValueComplexTypePtrs(); $request->bigint = 438531; $request->bigintStr = 'string'; $request->date = DateTime::createFromFormat('Y-m-d', '2020-01-01'); @@ -486,7 +481,7 @@ try { $response = $sdk->responseBodies->responseBodyZeroValueComplexTypePtrsPost($request); - if ($response->responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { diff --git a/php-client-sdk/docs/sdks/retries/README.md b/php-client-sdk/docs/sdks/retries/README.md index 422952e12..a5005184b 100755 --- a/php-client-sdk/docs/sdks/retries/README.md +++ b/php-client-sdk/docs/sdks/retries/README.md @@ -1,5 +1,5 @@ # Retries -(*retries*) + ## Overview @@ -19,14 +19,14 @@ Endpoints for testing retries. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\RetriesGetRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/sdk/README.md b/php-client-sdk/docs/sdks/sdk/README.md index 8b14c1436..0c086d06c 100755 --- a/php-client-sdk/docs/sdks/sdk/README.md +++ b/php-client-sdk/docs/sdks/sdk/README.md @@ -23,22 +23,22 @@ Speakeasy Docs declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { 'string' - $response = $sdk->sdk->putAnythingIgnoredGeneration($request); + $response = $sdk->putAnythingIgnoredGeneration($request); - if ($response->putAnythingIgnoredGeneration200ApplicationJSONObject !== null) { + if ($response->object !== null) { // handle response } } catch (Exception $e) { @@ -68,18 +68,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $response = $sdk->sdk->responseBodyJsonGet(); + $response = $sdk->responseBodyJsonGet(); if ($response->httpBinSimpleJsonObject !== null) { // handle response diff --git a/php-client-sdk/docs/sdks/second/README.md b/php-client-sdk/docs/sdks/second/README.md index 4f06049c9..f5ddc484f 100755 --- a/php-client-sdk/docs/sdks/second/README.md +++ b/php-client-sdk/docs/sdks/second/README.md @@ -1,5 +1,5 @@ # Second -(*second*) + ### Available Operations @@ -15,13 +15,13 @@ declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/servers/README.md b/php-client-sdk/docs/sdks/servers/README.md index cca32a461..831bba7c3 100755 --- a/php-client-sdk/docs/sdks/servers/README.md +++ b/php-client-sdk/docs/sdks/servers/README.md @@ -1,5 +1,5 @@ # Servers -(*servers*) + ## Overview @@ -24,13 +24,13 @@ Endpoints for testing servers. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -63,13 +63,13 @@ Select a server by ID. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -106,13 +106,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -149,13 +149,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -192,13 +192,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -229,13 +229,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/telemetry/README.md b/php-client-sdk/docs/sdks/telemetry/README.md index 6bd2335fd..49c7de761 100755 --- a/php-client-sdk/docs/sdks/telemetry/README.md +++ b/php-client-sdk/docs/sdks/telemetry/README.md @@ -1,5 +1,5 @@ # Telemetry -(*telemetry*) + ## Overview @@ -20,14 +20,14 @@ Endpoints for testing telemetry. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Operations\TelemetrySpeakeasyUserAgentGetRequest; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; +use \OpenAPI\OpenAPI\Models\Operations; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -66,13 +66,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/docs/sdks/unions/README.md b/php-client-sdk/docs/sdks/unions/README.md index 48e0241af..1087ccaa7 100755 --- a/php-client-sdk/docs/sdks/unions/README.md +++ b/php-client-sdk/docs/sdks/unions/README.md @@ -1,5 +1,5 @@ # Unions -(*unions*) + ## Overview @@ -33,13 +33,13 @@ Endpoints for testing union types. declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -78,13 +78,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -123,23 +123,20 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\NullableOneOfRefInObject; -use \OpenAPI\OpenAPI\Models\Shared\TypedObject1; -use \OpenAPI\OpenAPI\Models\Shared\TypedObject1Type; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new NullableOneOfRefInObject(); - $request->nullableOneOfOne = new TypedObject1(); - $request->nullableOneOfOne->type = TypedObject1Type::Obj1; + $request = new Shared\NullableOneOfRefInObject(); + $request->nullableOneOfOne = new Shared\TypedObject1(); + $request->nullableOneOfOne->type = Shared\Type::Obj1; $request->nullableOneOfOne->value = 'string'; $request->nullableOneOfTwo = 'string'; $request->oneOfOne = 'string'; @@ -176,13 +173,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -221,19 +218,18 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\NullableOneOfTypeInObject; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new NullableOneOfTypeInObject(); + $request = new Shared\NullableOneOfTypeInObject(); $request->nullableOneOfOne = false; $request->nullableOneOfTwo = 'string'; $request->oneOfOne = false; @@ -270,21 +266,19 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; -use \OpenAPI\OpenAPI\Models\Shared\TypedObject1; -use \OpenAPI\OpenAPI\Models\Shared\TypedObject1Type; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); try { - $request = new TypedObject1(); - $request->type = TypedObject1Type::Obj1; + $request = new Shared\TypedObject1(); + $request->type = Shared\Type::Obj1; $request->value = 'string'; $response = $sdk->unions->nullableTypedObjectPost($request); @@ -319,13 +313,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -364,13 +358,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -409,13 +403,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -454,13 +448,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -499,13 +493,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -544,13 +538,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -589,13 +583,13 @@ DateTime::createFromFormat('Y-m-d', '2022-11-25') declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -634,13 +628,13 @@ try { declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); @@ -679,13 +673,13 @@ DateTime::createFromFormat('Y-m-d\TH:i:s+', '2022-04-12T19:39:53.907Z') declare(strict_types=1); require_once 'vendor/autoload.php'; -use \OpenAPI\OpenAPI\SDK; -use \OpenAPI\OpenAPI\Models\Shared\Security; +use \OpenAPI\OpenAPI; +use \OpenAPI\OpenAPI\Models\Shared; -$security = new Security(); +$security = new Shared\Security(); $security->apiKeyAuth = 'Token YOUR_API_KEY'; -$sdk = SDK::builder() +$sdk = OpenAPI\SDK::builder() ->setSecurity($security) ->build(); diff --git a/php-client-sdk/files.gen b/php-client-sdk/files.gen index 00f5223b8..d0179407f 100755 --- a/php-client-sdk/files.gen +++ b/php-client-sdk/files.gen @@ -1,26 +1,26 @@ src/SDKConfiguration.php -src/Auth.php -src/AuthNew.php -src/Documentation.php +src/Generation.php src/Errors.php -src/First.php +src/Unions.php src/Flattening.php -src/Generation.php src/Globals.php +src/Parameters.php src/NestFirst.php src/Nested.php src/NestedFirst.php src/NestedSecond.php -src/Pagination.php -src/Parameters.php src/RequestBodies.php -src/Resource.php src/ResponseBodies.php -src/Retries.php -src/Second.php src/Servers.php src/Telemetry.php -src/Unions.php +src/AuthNew.php +src/Auth.php +src/Documentation.php +src/Resource.php +src/First.php +src/Second.php +src/Pagination.php +src/Retries.php src/SDK.php src/ServerSomething.php src/SDKBuilder.php @@ -57,83 +57,7 @@ testsPrimary/testUpload.json testsSimpleSecurity/AuthTest.php ../../testprojects/php/composer.json ../../testprojects/php/phpstan.neon -src/Models/Operations/ApiKeyAuthSecurity.php -src/Models/Operations/ApiKeyAuthToken.php -src/Models/Operations/ApiKeyAuthResponse.php -src/Models/Operations/ApiKeyAuthGlobalToken.php -src/Models/Operations/ApiKeyAuthGlobalResponse.php -src/Models/Operations/BasicAuthSecurity.php -src/Models/Operations/BasicAuthRequest.php -src/Models/Operations/BasicAuthUser.php -src/Models/Operations/BasicAuthResponse.php -src/Models/Operations/BearerAuthSecurity.php -src/Models/Operations/BearerAuthToken.php -src/Models/Operations/BearerAuthResponse.php -src/Models/Operations/GlobalBearerAuthToken.php -src/Models/Operations/GlobalBearerAuthResponse.php -src/Models/Operations/Oauth2AuthSecurity.php -src/Models/Operations/Oauth2AuthToken.php -src/Models/Operations/Oauth2AuthResponse.php -src/Models/Operations/Oauth2OverrideSecurity.php -src/Models/Operations/Oauth2OverrideRequest.php -src/Models/Operations/Oauth2OverrideToken.php -src/Models/Operations/Oauth2OverrideResponse.php -src/Models/Operations/OpenIdConnectAuthSecurity.php -src/Models/Operations/OpenIdConnectAuthToken.php -src/Models/Operations/OpenIdConnectAuthResponse.php -src/Models/Operations/ApiKeyAuthGlobalNewResponse.php -src/Models/Operations/AuthGlobalResponse.php -src/Models/Operations/BasicAuthNewSecurity.php -src/Models/Operations/BasicAuthNewResponse.php -src/Models/Operations/MultipleMixedOptionsAuthSecurity.php -src/Models/Operations/MultipleMixedOptionsAuthResponse.php -src/Models/Operations/MultipleMixedSchemeAuthSecurity.php -src/Models/Operations/MultipleMixedSchemeAuthResponse.php -src/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.php -src/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.php -src/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurity.php -src/Models/Operations/MultipleOptionsWithMixedSchemesAuthResponse.php -src/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.php -src/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.php -src/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurity.php -src/Models/Operations/MultipleOptionsWithSimpleSchemesAuthResponse.php -src/Models/Operations/MultipleSimpleOptionsAuthSecurity.php -src/Models/Operations/MultipleSimpleOptionsAuthResponse.php -src/Models/Operations/MultipleSimpleSchemeAuthSecurity.php -src/Models/Operations/MultipleSimpleSchemeAuthResponse.php -src/Models/Operations/Oauth2AuthNewSecurity.php -src/Models/Operations/Oauth2AuthNewResponse.php -src/Models/Operations/OpenIdConnectAuthNewSecurity.php -src/Models/Operations/OpenIdConnectAuthNewResponse.php -src/Models/Operations/GetDocumentationPerLanguageRequest.php -src/Models/Operations/GetDocumentationPerLanguageResponse.php -src/Models/Operations/ConnectionErrorGetResponse.php -src/Models/Operations/StatusGetErrorRequest.php -src/Models/Operations/StatusGetErrorResponse.php -src/Models/Operations/StatusGetXSpeakeasyErrorsRequest.php -src/Models/Operations/StatusGetXSpeakeasyErrors501ApplicationJSON.php -src/Models/Operations/StatusGetXSpeakeasyErrorsResponse.php -src/Models/Operations/GroupFirstGetResponse.php -src/Models/Operations/ComponentBodyAndParamConflictRequest.php -src/Models/Operations/ComponentBodyAndParamConflictRes.php -src/Models/Operations/ComponentBodyAndParamConflictResponse.php -src/Models/Operations/ComponentBodyAndParamNoConflictRequest.php -src/Models/Operations/ComponentBodyAndParamNoConflictRes.php -src/Models/Operations/ComponentBodyAndParamNoConflictResponse.php -src/Models/Operations/ConflictingParamsRequest.php -src/Models/Operations/ConflictingParamsRes.php -src/Models/Operations/ConflictingParamsResponse.php -src/Models/Operations/InlineBodyAndParamConflictRequestBody.php -src/Models/Operations/InlineBodyAndParamConflictRequest.php -src/Models/Operations/InlineBodyAndParamConflictResJson.php -src/Models/Operations/InlineBodyAndParamConflictRes.php -src/Models/Operations/InlineBodyAndParamConflictResponse.php -src/Models/Operations/InlineBodyAndParamNoConflictRequestBody.php -src/Models/Operations/InlineBodyAndParamNoConflictRequest.php -src/Models/Operations/InlineBodyAndParamNoConflictResJson.php -src/Models/Operations/InlineBodyAndParamNoConflictRes.php -src/Models/Operations/InlineBodyAndParamNoConflictResponse.php -src/Models/Operations/TypeFromAnchor.php +src/Models/Operations/AnchorTypesGetTypeFromAnchor.php src/Models/Operations/AnchorTypesGetResponse.php src/Models/Operations/ArrayCircularReferenceGetResponse.php src/Models/Operations/CircularReferenceGetResponse.php @@ -144,7 +68,7 @@ src/Models/Operations/DateTimeParamWithDefaultResponse.php src/Models/Operations/DecimalParamWithDefaultRequest.php src/Models/Operations/DecimalParamWithDefaultResponse.php src/Models/Operations/DeprecatedFieldInSchemaPostResponse.php -src/Models/Operations/DeprecatedObjectInSchemaGet200ApplicationJSON.php +src/Models/Operations/DeprecatedObjectInSchemaGetResponseBody.php src/Models/Operations/DeprecatedObjectInSchemaGetResponse.php src/Models/Operations/DeprecatedOperationNoCommentsGetRequest.php src/Models/Operations/DeprecatedOperationNoCommentsGetResponse.php @@ -152,123 +76,158 @@ src/Models/Operations/DeprecatedOperationWithCommentsGetRequest.php src/Models/Operations/DeprecatedOperationWithCommentsGetResponse.php src/Models/Operations/EmptyObjectGetRequest.php src/Models/Operations/EmptyObjectGetResponse.php -src/Models/Operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.php +src/Models/Operations/EmptyResponseObjectWithCommentGetResponseBody.php src/Models/Operations/EmptyResponseObjectWithCommentGetResponse.php -src/Models/Operations/GetGlobalNameOverride200ApplicationJSON.php +src/Models/Operations/GetGlobalNameOverrideResponseBody.php src/Models/Operations/GetGlobalNameOverrideResponse.php -src/Models/Operations/IgnoredGenerationGet200ApplicationJSON.php +src/Models/Operations/IgnoredGenerationGetResponseBody.php src/Models/Operations/IgnoredGenerationGetResponse.php -src/Models/Operations/IgnoresPostApplicationJSON.php +src/Models/Operations/IgnoresPostRequestBody.php src/Models/Operations/IgnoresPostRequest.php src/Models/Operations/IgnoresPostResponse.php -src/Models/Operations/NameOverrideGetEnumNameOverride.php +src/Models/Operations/EnumNameOverride.php src/Models/Operations/NameOverrideGetRequest.php -src/Models/Operations/OverriddenResponse.php +src/Models/Operations/NameOverrideGetOverriddenResponse.php src/Models/Operations/NameOverrideGetResponse.php src/Models/Operations/ObjectCircularReferenceGetResponse.php src/Models/Operations/OneOfCircularReferenceGetResponse.php -src/Models/Operations/TypedParameterGenerationGetObj.php +src/Models/Operations/Obj.php src/Models/Operations/TypedParameterGenerationGetRequest.php src/Models/Operations/TypedParameterGenerationGetResponse.php src/Models/Operations/UsageExamplePostSecurity.php src/Models/Operations/UsageExamplePostRequestBody.php -src/Models/Operations/UsageExamplePostEnumParameter.php -src/Models/Operations/UsageExamplePostOptEnumParameter.php +src/Models/Operations/EnumParameter.php +src/Models/Operations/OptEnumParameter.php src/Models/Operations/UsageExamplePostRequest.php -src/Models/Operations/UsageExamplePost200ApplicationJSONJSON.php -src/Models/Operations/UsageExamplePost200ApplicationJSON.php +src/Models/Operations/UsageExamplePostJson.php +src/Models/Operations/UsageExamplePostResponseBody.php src/Models/Operations/UsageExamplePostResponse.php +src/Models/Operations/ConnectionErrorGetResponse.php +src/Models/Operations/StatusGetErrorRequest.php +src/Models/Operations/StatusGetErrorResponse.php +src/Models/Operations/StatusGetXSpeakeasyErrorsRequest.php +src/Models/Operations/StatusGetXSpeakeasyErrorsResponseBody.php +src/Models/Operations/StatusGetXSpeakeasyErrorsResponse.php +src/Models/Operations/FlattenedTypedObjectPostRes.php +src/Models/Operations/FlattenedTypedObjectPostResponse.php +src/Models/Operations/MixedTypeOneOfPostRes.php +src/Models/Operations/MixedTypeOneOfPostResponse.php +src/Models/Operations/NullableOneOfRefInObjectPostRes.php +src/Models/Operations/NullableOneOfRefInObjectPostResponse.php +src/Models/Operations/NullableOneOfSchemaPostRes.php +src/Models/Operations/NullableOneOfSchemaPostResponse.php +src/Models/Operations/NullableOneOfTypeInObjectPostRes.php +src/Models/Operations/NullableOneOfTypeInObjectPostResponse.php +src/Models/Operations/NullableTypedObjectPostRes.php +src/Models/Operations/NullableTypedObjectPostResponse.php +src/Models/Operations/PrimitiveTypeOneOfPostRes.php +src/Models/Operations/PrimitiveTypeOneOfPostResponse.php +src/Models/Operations/StronglyTypedOneOfPostRes.php +src/Models/Operations/StronglyTypedOneOfPostResponse.php +src/Models/Operations/TypedObjectNullableOneOfPostRes.php +src/Models/Operations/TypedObjectNullableOneOfPostResponse.php +src/Models/Operations/TypedObjectOneOfPostRes.php +src/Models/Operations/TypedObjectOneOfPostResponse.php +src/Models/Operations/UnionBigIntDecimalRes.php +src/Models/Operations/UnionBigIntDecimalResponse.php +src/Models/Operations/UnionDateNullRes.php +src/Models/Operations/UnionDateNullResponse.php +src/Models/Operations/UnionDateTimeBigIntRes.php +src/Models/Operations/UnionDateTimeBigIntResponse.php +src/Models/Operations/UnionDateTimeNullRes.php +src/Models/Operations/UnionDateTimeNullResponse.php +src/Models/Operations/WeaklyTypedOneOfPostRes.php +src/Models/Operations/WeaklyTypedOneOfPostResponse.php +src/Models/Operations/ComponentBodyAndParamConflictRequest.php +src/Models/Operations/ComponentBodyAndParamConflictRes.php +src/Models/Operations/ComponentBodyAndParamConflictResponse.php +src/Models/Operations/ComponentBodyAndParamNoConflictRequest.php +src/Models/Operations/ComponentBodyAndParamNoConflictRes.php +src/Models/Operations/ComponentBodyAndParamNoConflictResponse.php +src/Models/Operations/ConflictingParamsRequest.php +src/Models/Operations/ConflictingParamsRes.php +src/Models/Operations/ConflictingParamsResponse.php +src/Models/Operations/InlineBodyAndParamConflictRequestBody.php +src/Models/Operations/InlineBodyAndParamConflictRequest.php +src/Models/Operations/Json.php +src/Models/Operations/InlineBodyAndParamConflictRes.php +src/Models/Operations/InlineBodyAndParamConflictResponse.php +src/Models/Operations/InlineBodyAndParamNoConflictRequestBody.php +src/Models/Operations/InlineBodyAndParamNoConflictRequest.php +src/Models/Operations/InlineBodyAndParamNoConflictJson.php +src/Models/Operations/InlineBodyAndParamNoConflictRes.php +src/Models/Operations/InlineBodyAndParamNoConflictResponse.php src/Models/Operations/GlobalPathParameterGetRequest.php src/Models/Operations/GlobalPathParameterGetRes.php src/Models/Operations/GlobalPathParameterGetResponse.php src/Models/Operations/GlobalsQueryParameterGetRequest.php -src/Models/Operations/GlobalsQueryParameterGetResArgs.php +src/Models/Operations/Args.php src/Models/Operations/GlobalsQueryParameterGetRes.php src/Models/Operations/GlobalsQueryParameterGetResponse.php -src/Models/Operations/NestFirstGetResponse.php -src/Models/Operations/NestedGetResponse.php -src/Models/Operations/NestedFirstGetResponse.php -src/Models/Operations/NestedSecondGetResponse.php -src/Models/Operations/PaginationCursorBodyRequestBody.php -src/Models/Operations/PaginationCursorBodyRes.php -src/Models/Operations/PaginationCursorBodyResponse.php -src/Models/Operations/PaginationCursorParamsRequest.php -src/Models/Operations/PaginationCursorParamsRes.php -src/Models/Operations/PaginationCursorParamsResponse.php -src/Models/Operations/PaginationLimitOffsetOffsetBodyRes.php -src/Models/Operations/PaginationLimitOffsetOffsetBodyResponse.php -src/Models/Operations/PaginationLimitOffsetOffsetParamsRequest.php -src/Models/Operations/PaginationLimitOffsetOffsetParamsRes.php -src/Models/Operations/PaginationLimitOffsetOffsetParamsResponse.php -src/Models/Operations/PaginationLimitOffsetPageBodyRes.php -src/Models/Operations/PaginationLimitOffsetPageBodyResponse.php -src/Models/Operations/PaginationLimitOffsetPageParamsRequest.php -src/Models/Operations/PaginationLimitOffsetPageParamsRes.php -src/Models/Operations/PaginationLimitOffsetPageParamsResponse.php src/Models/Operations/DeepObjectQueryParamsMapRequest.php src/Models/Operations/DeepObjectQueryParamsMapRes.php src/Models/Operations/DeepObjectQueryParamsMapResponse.php -src/Models/Operations/DeepObjectQueryParamsObjectObjArrParam.php +src/Models/Operations/ObjArrParam.php src/Models/Operations/DeepObjectQueryParamsObjectRequest.php -src/Models/Operations/DeepObjectQueryParamsObjectResArgs.php +src/Models/Operations/DeepObjectQueryParamsObjectArgs.php src/Models/Operations/DeepObjectQueryParamsObjectRes.php src/Models/Operations/DeepObjectQueryParamsObjectResponse.php src/Models/Operations/DuplicateParamRequest.php src/Models/Operations/DuplicateParamDuplicateParamResponse.php src/Models/Operations/DuplicateParamResponse.php src/Models/Operations/FormQueryParamsArrayRequest.php -src/Models/Operations/FormQueryParamsArrayResArgs.php +src/Models/Operations/FormQueryParamsArrayArgs.php src/Models/Operations/FormQueryParamsArrayRes.php src/Models/Operations/FormQueryParamsArrayResponse.php -src/Models/Operations/FormQueryParamsCamelObjectObjParam.php -src/Models/Operations/FormQueryParamsCamelObjectObjParamExploded.php +src/Models/Operations/ObjParam.php +src/Models/Operations/ObjParamExploded.php src/Models/Operations/FormQueryParamsCamelObjectRequest.php -src/Models/Operations/FormQueryParamsCamelObjectResArgs.php +src/Models/Operations/FormQueryParamsCamelObjectArgs.php src/Models/Operations/FormQueryParamsCamelObjectRes.php src/Models/Operations/FormQueryParamsCamelObjectResponse.php src/Models/Operations/FormQueryParamsMapRequest.php src/Models/Operations/FormQueryParamsMapRes.php src/Models/Operations/FormQueryParamsMapResponse.php src/Models/Operations/FormQueryParamsObjectRequest.php -src/Models/Operations/FormQueryParamsObjectResArgs.php +src/Models/Operations/FormQueryParamsObjectArgs.php src/Models/Operations/FormQueryParamsObjectRes.php src/Models/Operations/FormQueryParamsObjectResponse.php src/Models/Operations/FormQueryParamsPrimitiveRequest.php -src/Models/Operations/FormQueryParamsPrimitiveResArgs.php +src/Models/Operations/FormQueryParamsPrimitiveArgs.php src/Models/Operations/FormQueryParamsPrimitiveRes.php src/Models/Operations/FormQueryParamsPrimitiveResponse.php src/Models/Operations/FormQueryParamsRefParamObjectRequest.php -src/Models/Operations/FormQueryParamsRefParamObjectResArgs.php +src/Models/Operations/FormQueryParamsRefParamObjectArgs.php src/Models/Operations/FormQueryParamsRefParamObjectRes.php src/Models/Operations/FormQueryParamsRefParamObjectResponse.php src/Models/Operations/HeaderParamsArrayRequest.php -src/Models/Operations/HeaderParamsArrayResHeaders.php +src/Models/Operations/Headers.php src/Models/Operations/HeaderParamsArrayRes.php src/Models/Operations/HeaderParamsArrayResponse.php src/Models/Operations/HeaderParamsMapRequest.php -src/Models/Operations/HeaderParamsMapResHeaders.php +src/Models/Operations/HeaderParamsMapHeaders.php src/Models/Operations/HeaderParamsMapRes.php src/Models/Operations/HeaderParamsMapResponse.php src/Models/Operations/HeaderParamsObjectRequest.php -src/Models/Operations/HeaderParamsObjectResHeaders.php +src/Models/Operations/HeaderParamsObjectHeaders.php src/Models/Operations/HeaderParamsObjectRes.php src/Models/Operations/HeaderParamsObjectResponse.php src/Models/Operations/HeaderParamsPrimitiveRequest.php -src/Models/Operations/HeaderParamsPrimitiveResHeaders.php +src/Models/Operations/HeaderParamsPrimitiveHeaders.php src/Models/Operations/HeaderParamsPrimitiveRes.php src/Models/Operations/HeaderParamsPrimitiveResponse.php src/Models/Operations/JsonQueryParamsObjectRequest.php -src/Models/Operations/JsonQueryParamsObjectResArgs.php +src/Models/Operations/JsonQueryParamsObjectArgs.php src/Models/Operations/JsonQueryParamsObjectRes.php src/Models/Operations/JsonQueryParamsObjectResponse.php src/Models/Operations/MixedParametersCamelCaseRequest.php -src/Models/Operations/MixedParametersCamelCaseResArgs.php -src/Models/Operations/MixedParametersCamelCaseResHeaders.php +src/Models/Operations/MixedParametersCamelCaseArgs.php +src/Models/Operations/MixedParametersCamelCaseHeaders.php src/Models/Operations/MixedParametersCamelCaseRes.php src/Models/Operations/MixedParametersCamelCaseResponse.php src/Models/Operations/MixedParametersPrimitivesRequest.php -src/Models/Operations/MixedParametersPrimitivesResArgs.php -src/Models/Operations/MixedParametersPrimitivesResHeaders.php +src/Models/Operations/MixedParametersPrimitivesArgs.php +src/Models/Operations/MixedParametersPrimitivesHeaders.php src/Models/Operations/MixedParametersPrimitivesRes.php src/Models/Operations/MixedParametersPrimitivesResponse.php src/Models/Operations/MixedQueryParamsRequest.php @@ -278,7 +237,7 @@ src/Models/Operations/PathParameterJsonRequest.php src/Models/Operations/PathParameterJsonRes.php src/Models/Operations/PathParameterJsonResponse.php src/Models/Operations/PipeDelimitedQueryParamsArrayRequest.php -src/Models/Operations/PipeDelimitedQueryParamsArrayResArgs.php +src/Models/Operations/PipeDelimitedQueryParamsArrayArgs.php src/Models/Operations/PipeDelimitedQueryParamsArrayRes.php src/Models/Operations/PipeDelimitedQueryParamsArrayResponse.php src/Models/Operations/SimplePathParameterArraysRequest.php @@ -293,14 +252,18 @@ src/Models/Operations/SimplePathParameterObjectsResponse.php src/Models/Operations/SimplePathParameterPrimitivesRequest.php src/Models/Operations/SimplePathParameterPrimitivesRes.php src/Models/Operations/SimplePathParameterPrimitivesResponse.php +src/Models/Operations/NestFirstGetResponse.php +src/Models/Operations/NestedGetResponse.php +src/Models/Operations/NestedFirstGetResponse.php +src/Models/Operations/NestedSecondGetResponse.php src/Models/Operations/NullableObjectPostRes.php src/Models/Operations/NullableObjectPostResponse.php -src/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.php -src/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.php -src/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.php +src/Models/Operations/NullableOptionalObj.php +src/Models/Operations/NullableRequiredObj.php +src/Models/Operations/RequiredObj.php src/Models/Operations/NullableRequiredEmptyObjectPostRequestBody.php src/Models/Operations/NullableRequiredEmptyObjectPostResponse.php -src/Models/Operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.php +src/Models/Operations/NullableRequiredEnum.php src/Models/Operations/NullableRequiredPropertyPostRequestBody.php src/Models/Operations/NullableRequiredPropertyPostResponse.php src/Models/Operations/NullableRequiredSharedObjectPostRequestBody.php @@ -336,123 +299,123 @@ src/Models/Operations/RequestBodyPostApplicationJsonSimpleResponse.php src/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.php src/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.php src/Models/Operations/RequestBodyPostComplexNumberTypesRequest.php -src/Models/Operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.php +src/Models/Operations/RequestBodyPostComplexNumberTypesResponseBody.php src/Models/Operations/RequestBodyPostComplexNumberTypesResponse.php -src/Models/Operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.php +src/Models/Operations/RequestBodyPostDefaultsAndConstsResponseBody.php src/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.php -src/Models/Operations/RequestBodyPostEmptyObjectRequestBodyEmpty.php -src/Models/Operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.php +src/Models/Operations/EmptyT.php +src/Models/Operations/EmptyWithEmptyProperties.php src/Models/Operations/RequestBodyPostEmptyObjectRequestBody.php -src/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.php -src/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.php -src/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSON.php +src/Models/Operations/RequestBodyPostEmptyObjectEmpty.php +src/Models/Operations/EmptyRespWithEmptyProperies.php +src/Models/Operations/RequestBodyPostEmptyObjectResponseBody.php src/Models/Operations/RequestBodyPostEmptyObjectResponse.php -src/Models/Operations/RequestBodyPostFormDeepResForm.php +src/Models/Operations/Form.php src/Models/Operations/RequestBodyPostFormDeepRes.php src/Models/Operations/RequestBodyPostFormDeepResponse.php src/Models/Operations/RequestBodyPostFormMapPrimitiveRes.php src/Models/Operations/RequestBodyPostFormMapPrimitiveResponse.php -src/Models/Operations/RequestBodyPostFormSimpleResForm.php -src/Models/Operations/RequestBodyPostFormSimpleResHeaders.php +src/Models/Operations/RequestBodyPostFormSimpleForm.php +src/Models/Operations/RequestBodyPostFormSimpleHeaders.php src/Models/Operations/RequestBodyPostFormSimpleRes.php src/Models/Operations/RequestBodyPostFormSimpleResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesDateResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.php -src/Models/Operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesInt32ResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.php -src/Models/Operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesNumberResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.php -src/Models/Operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.php +src/Models/Operations/RequestBodyPostJsonDataTypesStringResponseBody.php src/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.php src/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.php src/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.php -src/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.php +src/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.php src/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.php src/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.php -src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.php +src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.php -src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.php +src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.php -src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.php +src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.php -src/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.php +src/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRes.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormResponse.php -src/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.php +src/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRes.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.php -src/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.php +src/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.php src/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.php -src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.php +src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.php src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.php -src/Models/Operations/RequestBodyPostNullArray200ApplicationJSON.php +src/Models/Operations/RequestBodyPostNullArrayResponseBody.php src/Models/Operations/RequestBodyPostNullArrayResponse.php -src/Models/Operations/RequestBodyPostNullDictionary200ApplicationJSON.php +src/Models/Operations/RequestBodyPostNullDictionaryResponseBody.php src/Models/Operations/RequestBodyPostNullDictionaryResponse.php -src/Models/Operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.php +src/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.php src/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.php -src/Models/Operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.php +src/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponseBody.php src/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.php src/Models/Operations/RequestBodyPutBytesRes.php src/Models/Operations/RequestBodyPutBytesResponse.php src/Models/Operations/RequestBodyPutBytesWithParamsRequest.php -src/Models/Operations/RequestBodyPutBytesWithParamsResArgs.php +src/Models/Operations/RequestBodyPutBytesWithParamsArgs.php src/Models/Operations/RequestBodyPutBytesWithParamsRes.php src/Models/Operations/RequestBodyPutBytesWithParamsResponse.php -src/Models/Operations/RequestBodyPutMultipartDeepResForm.php +src/Models/Operations/RequestBodyPutMultipartDeepForm.php src/Models/Operations/RequestBodyPutMultipartDeepRes.php src/Models/Operations/RequestBodyPutMultipartDeepResponse.php -src/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.php +src/Models/Operations/DifferentFileName.php src/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.php src/Models/Operations/RequestBodyPutMultipartDifferentFileNameRes.php src/Models/Operations/RequestBodyPutMultipartDifferentFileNameResponse.php -src/Models/Operations/RequestBodyPutMultipartFileRequestBodyFile.php +src/Models/Operations/File.php src/Models/Operations/RequestBodyPutMultipartFileRequestBody.php src/Models/Operations/RequestBodyPutMultipartFileRes.php src/Models/Operations/RequestBodyPutMultipartFileResponse.php -src/Models/Operations/RequestBodyPutMultipartSimpleResForm.php -src/Models/Operations/RequestBodyPutMultipartSimpleResHeaders.php +src/Models/Operations/RequestBodyPutMultipartSimpleForm.php +src/Models/Operations/RequestBodyPutMultipartSimpleHeaders.php src/Models/Operations/RequestBodyPutMultipartSimpleRes.php src/Models/Operations/RequestBodyPutMultipartSimpleResponse.php src/Models/Operations/RequestBodyPutStringRes.php src/Models/Operations/RequestBodyPutStringResponse.php src/Models/Operations/RequestBodyPutStringWithParamsRequest.php -src/Models/Operations/RequestBodyPutStringWithParamsResArgs.php +src/Models/Operations/RequestBodyPutStringWithParamsArgs.php src/Models/Operations/RequestBodyPutStringWithParamsRes.php src/Models/Operations/RequestBodyPutStringWithParamsResponse.php src/Models/Operations/RequestBodyReadAndWriteResponse.php @@ -462,23 +425,13 @@ src/Models/Operations/RequestBodyReadWriteOnlyUnionResponse.php src/Models/Operations/RequestBodyWriteOnlyResponse.php src/Models/Operations/RequestBodyWriteOnlyOutputResponse.php src/Models/Operations/RequestBodyWriteOnlyUnionResponse.php -src/Models/Operations/CreateFileRequestBodyFile.php -src/Models/Operations/CreateFileRequestBody.php -src/Models/Operations/CreateFileResponse.php -src/Models/Operations/CreateResourceResponse.php -src/Models/Operations/DeleteResourceRequest.php -src/Models/Operations/DeleteResourceResponse.php -src/Models/Operations/GetResourceRequest.php -src/Models/Operations/GetResourceResponse.php -src/Models/Operations/UpdateResourceRequest.php -src/Models/Operations/UpdateResourceResponse.php -src/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.php +src/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.php src/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.php -src/Models/Operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.php +src/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.php src/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.php -src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.php +src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.php src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.php -src/Models/Operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.php +src/Models/Operations/ResponseBodyAdditionalPropertiesPostResponseBody.php src/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.php src/Models/Operations/ResponseBodyBytesGetResponse.php src/Models/Operations/ResponseBodyEmptyWithHeadersRequest.php @@ -487,12 +440,8 @@ src/Models/Operations/ResponseBodyOptionalGetResponse.php src/Models/Operations/ResponseBodyReadOnlyResponse.php src/Models/Operations/ResponseBodyStringGetResponse.php src/Models/Operations/ResponseBodyXmlGetResponse.php -src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.php +src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.php src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.php -src/Models/Operations/RetriesGetRequest.php -src/Models/Operations/RetriesGetRetries.php -src/Models/Operations/RetriesGetResponse.php -src/Models/Operations/GroupSecondGetResponse.php src/Models/Operations/SelectGlobalServerResponse.php src/Models/Operations/SelectServerWithIDResponse.php src/Models/Operations/ServerWithProtocolTemplateResponse.php @@ -504,70 +453,119 @@ src/Models/Operations/TelemetrySpeakeasyUserAgentGetRes.php src/Models/Operations/TelemetrySpeakeasyUserAgentGetResponse.php src/Models/Operations/TelemetryUserAgentGetRes.php src/Models/Operations/TelemetryUserAgentGetResponse.php -src/Models/Operations/FlattenedTypedObjectPostRes.php -src/Models/Operations/FlattenedTypedObjectPostResponse.php -src/Models/Operations/MixedTypeOneOfPostRes.php -src/Models/Operations/MixedTypeOneOfPostResponse.php -src/Models/Operations/NullableOneOfRefInObjectPostRes.php -src/Models/Operations/NullableOneOfRefInObjectPostResponse.php -src/Models/Operations/NullableOneOfSchemaPostRes.php -src/Models/Operations/NullableOneOfSchemaPostResponse.php -src/Models/Operations/NullableOneOfTypeInObjectPostRes.php -src/Models/Operations/NullableOneOfTypeInObjectPostResponse.php -src/Models/Operations/NullableTypedObjectPostRes.php -src/Models/Operations/NullableTypedObjectPostResponse.php -src/Models/Operations/PrimitiveTypeOneOfPostRes.php -src/Models/Operations/PrimitiveTypeOneOfPostResponse.php -src/Models/Operations/StronglyTypedOneOfPostRes.php -src/Models/Operations/StronglyTypedOneOfPostResponse.php -src/Models/Operations/TypedObjectNullableOneOfPostRes.php -src/Models/Operations/TypedObjectNullableOneOfPostResponse.php -src/Models/Operations/TypedObjectOneOfPostRes.php -src/Models/Operations/TypedObjectOneOfPostResponse.php -src/Models/Operations/UnionBigIntDecimalRes.php -src/Models/Operations/UnionBigIntDecimalResponse.php -src/Models/Operations/UnionDateNullRes.php -src/Models/Operations/UnionDateNullResponse.php -src/Models/Operations/UnionDateTimeBigIntRes.php -src/Models/Operations/UnionDateTimeBigIntResponse.php -src/Models/Operations/UnionDateTimeNullRes.php -src/Models/Operations/UnionDateTimeNullResponse.php -src/Models/Operations/WeaklyTypedOneOfPostRes.php -src/Models/Operations/WeaklyTypedOneOfPostResponse.php -src/Models/Operations/PutAnythingIgnoredGeneration200ApplicationJSON.php +src/Models/Operations/ApiKeyAuthGlobalNewResponse.php +src/Models/Operations/AuthGlobalResponse.php +src/Models/Operations/BasicAuthNewSecurity.php +src/Models/Operations/BasicAuthNewResponse.php +src/Models/Operations/MultipleMixedOptionsAuthSecurity.php +src/Models/Operations/MultipleMixedOptionsAuthResponse.php +src/Models/Operations/MultipleMixedSchemeAuthSecurity.php +src/Models/Operations/MultipleMixedSchemeAuthResponse.php +src/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.php +src/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.php +src/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurity.php +src/Models/Operations/MultipleOptionsWithMixedSchemesAuthResponse.php +src/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.php +src/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.php +src/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurity.php +src/Models/Operations/MultipleOptionsWithSimpleSchemesAuthResponse.php +src/Models/Operations/MultipleSimpleOptionsAuthSecurity.php +src/Models/Operations/MultipleSimpleOptionsAuthResponse.php +src/Models/Operations/MultipleSimpleSchemeAuthSecurity.php +src/Models/Operations/MultipleSimpleSchemeAuthResponse.php +src/Models/Operations/Oauth2AuthNewSecurity.php +src/Models/Operations/Oauth2AuthNewResponse.php +src/Models/Operations/OpenIdConnectAuthNewSecurity.php +src/Models/Operations/OpenIdConnectAuthNewResponse.php +src/Models/Operations/ApiKeyAuthSecurity.php +src/Models/Operations/ApiKeyAuthToken.php +src/Models/Operations/ApiKeyAuthResponse.php +src/Models/Operations/ApiKeyAuthGlobalToken.php +src/Models/Operations/ApiKeyAuthGlobalResponse.php +src/Models/Operations/BasicAuthSecurity.php +src/Models/Operations/BasicAuthRequest.php +src/Models/Operations/BasicAuthUser.php +src/Models/Operations/BasicAuthResponse.php +src/Models/Operations/BearerAuthSecurity.php +src/Models/Operations/BearerAuthToken.php +src/Models/Operations/BearerAuthResponse.php +src/Models/Operations/GlobalBearerAuthToken.php +src/Models/Operations/GlobalBearerAuthResponse.php +src/Models/Operations/Oauth2AuthSecurity.php +src/Models/Operations/Oauth2AuthToken.php +src/Models/Operations/Oauth2AuthResponse.php +src/Models/Operations/Oauth2OverrideSecurity.php +src/Models/Operations/Oauth2OverrideRequest.php +src/Models/Operations/Oauth2OverrideToken.php +src/Models/Operations/Oauth2OverrideResponse.php +src/Models/Operations/OpenIdConnectAuthSecurity.php +src/Models/Operations/OpenIdConnectAuthToken.php +src/Models/Operations/OpenIdConnectAuthResponse.php +src/Models/Operations/GetDocumentationPerLanguageRequest.php +src/Models/Operations/GetDocumentationPerLanguageResponse.php +src/Models/Operations/CreateFileFile.php +src/Models/Operations/CreateFileRequestBody.php +src/Models/Operations/CreateFileResponse.php +src/Models/Operations/CreateResourceResponse.php +src/Models/Operations/DeleteResourceRequest.php +src/Models/Operations/DeleteResourceResponse.php +src/Models/Operations/GetResourceRequest.php +src/Models/Operations/GetResourceResponse.php +src/Models/Operations/UpdateResourceRequest.php +src/Models/Operations/UpdateResourceResponse.php +src/Models/Operations/GroupFirstGetResponse.php +src/Models/Operations/GroupSecondGetResponse.php +src/Models/Operations/PaginationCursorBodyRequestBody.php +src/Models/Operations/PaginationCursorBodyRes.php +src/Models/Operations/PaginationCursorBodyResponse.php +src/Models/Operations/PaginationCursorParamsRequest.php +src/Models/Operations/PaginationCursorParamsRes.php +src/Models/Operations/PaginationCursorParamsResponse.php +src/Models/Operations/PaginationLimitOffsetOffsetBodyRes.php +src/Models/Operations/PaginationLimitOffsetOffsetBodyResponse.php +src/Models/Operations/PaginationLimitOffsetOffsetParamsRequest.php +src/Models/Operations/PaginationLimitOffsetOffsetParamsRes.php +src/Models/Operations/PaginationLimitOffsetOffsetParamsResponse.php +src/Models/Operations/PaginationLimitOffsetPageBodyRes.php +src/Models/Operations/PaginationLimitOffsetPageBodyResponse.php +src/Models/Operations/PaginationLimitOffsetPageParamsRequest.php +src/Models/Operations/PaginationLimitOffsetPageParamsRes.php +src/Models/Operations/PaginationLimitOffsetPageParamsResponse.php +src/Models/Operations/RetriesGetRequest.php +src/Models/Operations/RetriesGetRetries.php +src/Models/Operations/RetriesGetResponse.php +src/Models/Operations/PutAnythingIgnoredGenerationResponseBody.php src/Models/Operations/PutAnythingIgnoredGenerationResponse.php src/Models/Operations/ResponseBodyJsonGetResponse.php -src/Models/Shared/AuthServiceRequestBodyBasicAuth.php -src/Models/Shared/AuthServiceRequestBodyHeaderAuth.php -src/Models/Shared/AuthServiceRequestBody.php -src/Models/Shared/SchemeBasicAuth.php -src/Models/Shared/Security.php -src/Models/Shared/ErrorType.php -src/Models/Shared/Error.php -src/Models/Shared/SimpleObjectInt32Enum.php -src/Models/Shared/SimpleObjectIntEnum.php +src/Models/Shared/Int32Enum.php +src/Models/Shared/IntEnum.php src/Models/Shared/SimpleObject.php src/Models/Shared/Enum.php src/Models/Shared/ArrayCircularReferenceObject.php src/Models/Shared/ValidCircularReferenceObject.php -src/Models/Shared/DeprecatedFieldInObjectDeprecatedEnum.php +src/Models/Shared/DeprecatedEnum.php src/Models/Shared/DeprecatedFieldInObject.php src/Models/Shared/DeprecatedObject.php src/Models/Shared/EmptyObjectParam.php -src/Models/Shared/HttpBinSimpleJsonObjectSlideshowSlides.php -src/Models/Shared/HttpBinSimpleJsonObjectSlideshow.php +src/Models/Shared/Slides.php +src/Models/Shared/Slideshow.php src/Models/Shared/HttpBinSimpleJsonObject.php src/Models/Shared/ObjectCircularReferenceObject.php src/Models/Shared/OneOfCircularReferenceObject.php src/Models/Shared/FakerStrings.php src/Models/Shared/FakerFormattedStrings.php -src/Models/Shared/LimitOffsetConfig.php +src/Models/Shared/ErrorType.php +src/Models/Shared/Error.php +src/Models/Shared/NullableOneOfRefInObject.php +src/Models/Shared/Type.php +src/Models/Shared/TypedObject1.php +src/Models/Shared/NullableOneOfTypeInObject.php src/Models/Shared/RefQueryParamObjExploded.php src/Models/Shared/RefQueryParamObj.php src/Models/Shared/DeepObject.php src/Models/Shared/NullableObject.php -src/Models/Shared/SimpleObjectCamelCaseInt32EnumVal.php -src/Models/Shared/SimpleObjectCamelCaseIntEnumVal.php +src/Models/Shared/Int32EnumVal.php +src/Models/Shared/IntEnumVal.php src/Models/Shared/SimpleObjectCamelCase.php src/Models/Shared/ArrObjValue.php src/Models/Shared/ArrObjValueCamelCase.php @@ -580,112 +578,38 @@ src/Models/Shared/DefaultsAndConstsOutputConstEnumStr.php src/Models/Shared/DefaultsAndConstsOutputDefaultEnumInt.php src/Models/Shared/DefaultsAndConstsOutputDefaultEnumStr.php src/Models/Shared/DefaultsAndConstsOutput.php -src/Models/Shared/DefaultsAndConstsConstEnumInt.php -src/Models/Shared/DefaultsAndConstsConstEnumStr.php -src/Models/Shared/DefaultsAndConstsDefaultEnumInt.php -src/Models/Shared/DefaultsAndConstsDefaultEnumStr.php +src/Models/Shared/ConstEnumInt.php +src/Models/Shared/ConstEnumStr.php +src/Models/Shared/DefaultEnumInt.php +src/Models/Shared/DefaultEnumStr.php src/Models/Shared/DefaultsAndConsts.php -src/Models/Shared/ReadWriteObjectInput.php +src/Models/Shared/ReadWriteObject.php src/Models/Shared/ReadWriteObjectOutput.php src/Models/Shared/ReadOnlyObject.php src/Models/Shared/ReadOnlyObjectInput.php src/Models/Shared/WriteOnlyObject.php src/Models/Shared/WriteOnlyObjectOutput.php -src/Models/Shared/FileResource.php -src/Models/Shared/ExampleResourceChocolates.php -src/Models/Shared/ExampleResourceEnumNumber.php -src/Models/Shared/ExampleResourceEnumStr.php -src/Models/Shared/ExampleResource.php -src/Models/Shared/TypedObject1Type.php -src/Models/Shared/TypedObject1.php -src/Models/Shared/ObjWithZeroValueComplexTypePtrs.php -src/Models/Shared/NullableOneOfRefInObject.php -src/Models/Shared/NullableOneOfTypeInObject.php -src/Models/Shared/AllOfToAllOf.php -src/Models/Shared/OneOfGenerationStressTest.php -src/Models/Shared/UnsupportedEnums.php -src/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse.php -src/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody.php -src/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.php -src/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.php -USAGE.md -docs/models/operations/ApiKeyAuthSecurity.md -docs/models/operations/ApiKeyAuthToken.md -docs/models/operations/ApiKeyAuthResponse.md -docs/models/operations/ApiKeyAuthGlobalToken.md -docs/models/operations/ApiKeyAuthGlobalResponse.md -docs/models/operations/BasicAuthSecurity.md -docs/models/operations/BasicAuthRequest.md -docs/models/operations/BasicAuthUser.md -docs/models/operations/BasicAuthResponse.md -docs/models/operations/BearerAuthSecurity.md -docs/models/operations/BearerAuthToken.md -docs/models/operations/BearerAuthResponse.md -docs/models/operations/GlobalBearerAuthToken.md -docs/models/operations/GlobalBearerAuthResponse.md -docs/models/operations/Oauth2AuthSecurity.md -docs/models/operations/Oauth2AuthToken.md -docs/models/operations/Oauth2AuthResponse.md -docs/models/operations/Oauth2OverrideSecurity.md -docs/models/operations/Oauth2OverrideRequest.md -docs/models/operations/Oauth2OverrideToken.md -docs/models/operations/Oauth2OverrideResponse.md -docs/models/operations/OpenIdConnectAuthSecurity.md -docs/models/operations/OpenIdConnectAuthToken.md -docs/models/operations/OpenIdConnectAuthResponse.md -docs/models/operations/ApiKeyAuthGlobalNewResponse.md -docs/models/operations/AuthGlobalResponse.md -docs/models/operations/BasicAuthNewSecurity.md -docs/models/operations/BasicAuthNewResponse.md -docs/models/operations/MultipleMixedOptionsAuthSecurity.md -docs/models/operations/MultipleMixedOptionsAuthResponse.md -docs/models/operations/MultipleMixedSchemeAuthSecurity.md -docs/models/operations/MultipleMixedSchemeAuthResponse.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.md -docs/models/operations/MultipleOptionsWithMixedSchemesAuthResponse.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.md -docs/models/operations/MultipleOptionsWithSimpleSchemesAuthResponse.md -docs/models/operations/MultipleSimpleOptionsAuthSecurity.md -docs/models/operations/MultipleSimpleOptionsAuthResponse.md -docs/models/operations/MultipleSimpleSchemeAuthSecurity.md -docs/models/operations/MultipleSimpleSchemeAuthResponse.md -docs/models/operations/Oauth2AuthNewSecurity.md -docs/models/operations/Oauth2AuthNewResponse.md -docs/models/operations/OpenIdConnectAuthNewSecurity.md -docs/models/operations/OpenIdConnectAuthNewResponse.md -docs/models/operations/GetDocumentationPerLanguageRequest.md -docs/models/operations/GetDocumentationPerLanguageResponse.md -docs/models/operations/ConnectionErrorGetResponse.md -docs/models/operations/StatusGetErrorRequest.md -docs/models/operations/StatusGetErrorResponse.md -docs/models/operations/StatusGetXSpeakeasyErrorsRequest.md -docs/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.md -docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md -docs/models/operations/GroupFirstGetResponse.md -docs/models/operations/ComponentBodyAndParamConflictRequest.md -docs/models/operations/ComponentBodyAndParamConflictRes.md -docs/models/operations/ComponentBodyAndParamConflictResponse.md -docs/models/operations/ComponentBodyAndParamNoConflictRequest.md -docs/models/operations/ComponentBodyAndParamNoConflictRes.md -docs/models/operations/ComponentBodyAndParamNoConflictResponse.md -docs/models/operations/ConflictingParamsRequest.md -docs/models/operations/ConflictingParamsRes.md -docs/models/operations/ConflictingParamsResponse.md -docs/models/operations/InlineBodyAndParamConflictRequestBody.md -docs/models/operations/InlineBodyAndParamConflictRequest.md -docs/models/operations/InlineBodyAndParamConflictResJson.md -docs/models/operations/InlineBodyAndParamConflictRes.md -docs/models/operations/InlineBodyAndParamConflictResponse.md -docs/models/operations/InlineBodyAndParamNoConflictRequestBody.md -docs/models/operations/InlineBodyAndParamNoConflictRequest.md -docs/models/operations/InlineBodyAndParamNoConflictResJson.md -docs/models/operations/InlineBodyAndParamNoConflictRes.md -docs/models/operations/InlineBodyAndParamNoConflictResponse.md -docs/models/operations/TypeFromAnchor.md +src/Models/Shared/ObjWithZeroValueComplexTypePtrs.php +src/Models/Shared/BasicAuth.php +src/Models/Shared/HeaderAuth.php +src/Models/Shared/AuthServiceRequestBody.php +src/Models/Shared/SchemeBasicAuth.php +src/Models/Shared/Security.php +src/Models/Shared/FileResource.php +src/Models/Shared/Chocolates.php +src/Models/Shared/EnumNumber.php +src/Models/Shared/EnumStr.php +src/Models/Shared/ExampleResource.php +src/Models/Shared/LimitOffsetConfig.php +src/Models/Shared/AllOfToAllOf.php +src/Models/Shared/OneOfGenerationStressTest.php +src/Models/Shared/UnsupportedEnums.php +src/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse.php +src/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody.php +src/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.php +src/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.php +USAGE.md +docs/models/operations/AnchorTypesGetTypeFromAnchor.md docs/models/operations/AnchorTypesGetResponse.md docs/models/operations/ArrayCircularReferenceGetResponse.md docs/models/operations/CircularReferenceGetResponse.md @@ -696,7 +620,7 @@ docs/models/operations/DateTimeParamWithDefaultResponse.md docs/models/operations/DecimalParamWithDefaultRequest.md docs/models/operations/DecimalParamWithDefaultResponse.md docs/models/operations/DeprecatedFieldInSchemaPostResponse.md -docs/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.md +docs/models/operations/DeprecatedObjectInSchemaGetResponseBody.md docs/models/operations/DeprecatedObjectInSchemaGetResponse.md docs/models/operations/DeprecatedOperationNoCommentsGetRequest.md docs/models/operations/DeprecatedOperationNoCommentsGetResponse.md @@ -704,123 +628,158 @@ docs/models/operations/DeprecatedOperationWithCommentsGetRequest.md docs/models/operations/DeprecatedOperationWithCommentsGetResponse.md docs/models/operations/EmptyObjectGetRequest.md docs/models/operations/EmptyObjectGetResponse.md -docs/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.md +docs/models/operations/EmptyResponseObjectWithCommentGetResponseBody.md docs/models/operations/EmptyResponseObjectWithCommentGetResponse.md -docs/models/operations/GetGlobalNameOverride200ApplicationJSON.md +docs/models/operations/GetGlobalNameOverrideResponseBody.md docs/models/operations/GetGlobalNameOverrideResponse.md -docs/models/operations/IgnoredGenerationGet200ApplicationJSON.md +docs/models/operations/IgnoredGenerationGetResponseBody.md docs/models/operations/IgnoredGenerationGetResponse.md -docs/models/operations/IgnoresPostApplicationJSON.md +docs/models/operations/IgnoresPostRequestBody.md docs/models/operations/IgnoresPostRequest.md docs/models/operations/IgnoresPostResponse.md -docs/models/operations/NameOverrideGetEnumNameOverride.md +docs/models/operations/EnumNameOverride.md docs/models/operations/NameOverrideGetRequest.md -docs/models/operations/OverriddenResponse.md +docs/models/operations/NameOverrideGetOverriddenResponse.md docs/models/operations/NameOverrideGetResponse.md docs/models/operations/ObjectCircularReferenceGetResponse.md docs/models/operations/OneOfCircularReferenceGetResponse.md -docs/models/operations/TypedParameterGenerationGetObj.md +docs/models/operations/Obj.md docs/models/operations/TypedParameterGenerationGetRequest.md docs/models/operations/TypedParameterGenerationGetResponse.md docs/models/operations/UsageExamplePostSecurity.md docs/models/operations/UsageExamplePostRequestBody.md -docs/models/operations/UsageExamplePostEnumParameter.md -docs/models/operations/UsageExamplePostOptEnumParameter.md +docs/models/operations/EnumParameter.md +docs/models/operations/OptEnumParameter.md docs/models/operations/UsageExamplePostRequest.md -docs/models/operations/UsageExamplePost200ApplicationJSONJSON.md -docs/models/operations/UsageExamplePost200ApplicationJSON.md +docs/models/operations/UsageExamplePostJson.md +docs/models/operations/UsageExamplePostResponseBody.md docs/models/operations/UsageExamplePostResponse.md +docs/models/operations/ConnectionErrorGetResponse.md +docs/models/operations/StatusGetErrorRequest.md +docs/models/operations/StatusGetErrorResponse.md +docs/models/operations/StatusGetXSpeakeasyErrorsRequest.md +docs/models/operations/StatusGetXSpeakeasyErrorsResponseBody.md +docs/models/operations/StatusGetXSpeakeasyErrorsResponse.md +docs/models/operations/FlattenedTypedObjectPostRes.md +docs/models/operations/FlattenedTypedObjectPostResponse.md +docs/models/operations/MixedTypeOneOfPostRes.md +docs/models/operations/MixedTypeOneOfPostResponse.md +docs/models/operations/NullableOneOfRefInObjectPostRes.md +docs/models/operations/NullableOneOfRefInObjectPostResponse.md +docs/models/operations/NullableOneOfSchemaPostRes.md +docs/models/operations/NullableOneOfSchemaPostResponse.md +docs/models/operations/NullableOneOfTypeInObjectPostRes.md +docs/models/operations/NullableOneOfTypeInObjectPostResponse.md +docs/models/operations/NullableTypedObjectPostRes.md +docs/models/operations/NullableTypedObjectPostResponse.md +docs/models/operations/PrimitiveTypeOneOfPostRes.md +docs/models/operations/PrimitiveTypeOneOfPostResponse.md +docs/models/operations/StronglyTypedOneOfPostRes.md +docs/models/operations/StronglyTypedOneOfPostResponse.md +docs/models/operations/TypedObjectNullableOneOfPostRes.md +docs/models/operations/TypedObjectNullableOneOfPostResponse.md +docs/models/operations/TypedObjectOneOfPostRes.md +docs/models/operations/TypedObjectOneOfPostResponse.md +docs/models/operations/UnionBigIntDecimalRes.md +docs/models/operations/UnionBigIntDecimalResponse.md +docs/models/operations/UnionDateNullRes.md +docs/models/operations/UnionDateNullResponse.md +docs/models/operations/UnionDateTimeBigIntRes.md +docs/models/operations/UnionDateTimeBigIntResponse.md +docs/models/operations/UnionDateTimeNullRes.md +docs/models/operations/UnionDateTimeNullResponse.md +docs/models/operations/WeaklyTypedOneOfPostRes.md +docs/models/operations/WeaklyTypedOneOfPostResponse.md +docs/models/operations/ComponentBodyAndParamConflictRequest.md +docs/models/operations/ComponentBodyAndParamConflictRes.md +docs/models/operations/ComponentBodyAndParamConflictResponse.md +docs/models/operations/ComponentBodyAndParamNoConflictRequest.md +docs/models/operations/ComponentBodyAndParamNoConflictRes.md +docs/models/operations/ComponentBodyAndParamNoConflictResponse.md +docs/models/operations/ConflictingParamsRequest.md +docs/models/operations/ConflictingParamsRes.md +docs/models/operations/ConflictingParamsResponse.md +docs/models/operations/InlineBodyAndParamConflictRequestBody.md +docs/models/operations/InlineBodyAndParamConflictRequest.md +docs/models/operations/Json.md +docs/models/operations/InlineBodyAndParamConflictRes.md +docs/models/operations/InlineBodyAndParamConflictResponse.md +docs/models/operations/InlineBodyAndParamNoConflictRequestBody.md +docs/models/operations/InlineBodyAndParamNoConflictRequest.md +docs/models/operations/InlineBodyAndParamNoConflictJson.md +docs/models/operations/InlineBodyAndParamNoConflictRes.md +docs/models/operations/InlineBodyAndParamNoConflictResponse.md docs/models/operations/GlobalPathParameterGetRequest.md docs/models/operations/GlobalPathParameterGetRes.md docs/models/operations/GlobalPathParameterGetResponse.md docs/models/operations/GlobalsQueryParameterGetRequest.md -docs/models/operations/GlobalsQueryParameterGetResArgs.md +docs/models/operations/Args.md docs/models/operations/GlobalsQueryParameterGetRes.md docs/models/operations/GlobalsQueryParameterGetResponse.md -docs/models/operations/NestFirstGetResponse.md -docs/models/operations/NestedGetResponse.md -docs/models/operations/NestedFirstGetResponse.md -docs/models/operations/NestedSecondGetResponse.md -docs/models/operations/PaginationCursorBodyRequestBody.md -docs/models/operations/PaginationCursorBodyRes.md -docs/models/operations/PaginationCursorBodyResponse.md -docs/models/operations/PaginationCursorParamsRequest.md -docs/models/operations/PaginationCursorParamsRes.md -docs/models/operations/PaginationCursorParamsResponse.md -docs/models/operations/PaginationLimitOffsetOffsetBodyRes.md -docs/models/operations/PaginationLimitOffsetOffsetBodyResponse.md -docs/models/operations/PaginationLimitOffsetOffsetParamsRequest.md -docs/models/operations/PaginationLimitOffsetOffsetParamsRes.md -docs/models/operations/PaginationLimitOffsetOffsetParamsResponse.md -docs/models/operations/PaginationLimitOffsetPageBodyRes.md -docs/models/operations/PaginationLimitOffsetPageBodyResponse.md -docs/models/operations/PaginationLimitOffsetPageParamsRequest.md -docs/models/operations/PaginationLimitOffsetPageParamsRes.md -docs/models/operations/PaginationLimitOffsetPageParamsResponse.md docs/models/operations/DeepObjectQueryParamsMapRequest.md docs/models/operations/DeepObjectQueryParamsMapRes.md docs/models/operations/DeepObjectQueryParamsMapResponse.md -docs/models/operations/DeepObjectQueryParamsObjectObjArrParam.md +docs/models/operations/ObjArrParam.md docs/models/operations/DeepObjectQueryParamsObjectRequest.md -docs/models/operations/DeepObjectQueryParamsObjectResArgs.md +docs/models/operations/DeepObjectQueryParamsObjectArgs.md docs/models/operations/DeepObjectQueryParamsObjectRes.md docs/models/operations/DeepObjectQueryParamsObjectResponse.md docs/models/operations/DuplicateParamRequest.md docs/models/operations/DuplicateParamDuplicateParamResponse.md docs/models/operations/DuplicateParamResponse.md docs/models/operations/FormQueryParamsArrayRequest.md -docs/models/operations/FormQueryParamsArrayResArgs.md +docs/models/operations/FormQueryParamsArrayArgs.md docs/models/operations/FormQueryParamsArrayRes.md docs/models/operations/FormQueryParamsArrayResponse.md -docs/models/operations/FormQueryParamsCamelObjectObjParam.md -docs/models/operations/FormQueryParamsCamelObjectObjParamExploded.md +docs/models/operations/ObjParam.md +docs/models/operations/ObjParamExploded.md docs/models/operations/FormQueryParamsCamelObjectRequest.md -docs/models/operations/FormQueryParamsCamelObjectResArgs.md +docs/models/operations/FormQueryParamsCamelObjectArgs.md docs/models/operations/FormQueryParamsCamelObjectRes.md docs/models/operations/FormQueryParamsCamelObjectResponse.md docs/models/operations/FormQueryParamsMapRequest.md docs/models/operations/FormQueryParamsMapRes.md docs/models/operations/FormQueryParamsMapResponse.md docs/models/operations/FormQueryParamsObjectRequest.md -docs/models/operations/FormQueryParamsObjectResArgs.md +docs/models/operations/FormQueryParamsObjectArgs.md docs/models/operations/FormQueryParamsObjectRes.md docs/models/operations/FormQueryParamsObjectResponse.md docs/models/operations/FormQueryParamsPrimitiveRequest.md -docs/models/operations/FormQueryParamsPrimitiveResArgs.md +docs/models/operations/FormQueryParamsPrimitiveArgs.md docs/models/operations/FormQueryParamsPrimitiveRes.md docs/models/operations/FormQueryParamsPrimitiveResponse.md docs/models/operations/FormQueryParamsRefParamObjectRequest.md -docs/models/operations/FormQueryParamsRefParamObjectResArgs.md +docs/models/operations/FormQueryParamsRefParamObjectArgs.md docs/models/operations/FormQueryParamsRefParamObjectRes.md docs/models/operations/FormQueryParamsRefParamObjectResponse.md docs/models/operations/HeaderParamsArrayRequest.md -docs/models/operations/HeaderParamsArrayResHeaders.md +docs/models/operations/Headers.md docs/models/operations/HeaderParamsArrayRes.md docs/models/operations/HeaderParamsArrayResponse.md docs/models/operations/HeaderParamsMapRequest.md -docs/models/operations/HeaderParamsMapResHeaders.md +docs/models/operations/HeaderParamsMapHeaders.md docs/models/operations/HeaderParamsMapRes.md docs/models/operations/HeaderParamsMapResponse.md docs/models/operations/HeaderParamsObjectRequest.md -docs/models/operations/HeaderParamsObjectResHeaders.md +docs/models/operations/HeaderParamsObjectHeaders.md docs/models/operations/HeaderParamsObjectRes.md docs/models/operations/HeaderParamsObjectResponse.md docs/models/operations/HeaderParamsPrimitiveRequest.md -docs/models/operations/HeaderParamsPrimitiveResHeaders.md +docs/models/operations/HeaderParamsPrimitiveHeaders.md docs/models/operations/HeaderParamsPrimitiveRes.md docs/models/operations/HeaderParamsPrimitiveResponse.md docs/models/operations/JsonQueryParamsObjectRequest.md -docs/models/operations/JsonQueryParamsObjectResArgs.md +docs/models/operations/JsonQueryParamsObjectArgs.md docs/models/operations/JsonQueryParamsObjectRes.md docs/models/operations/JsonQueryParamsObjectResponse.md docs/models/operations/MixedParametersCamelCaseRequest.md -docs/models/operations/MixedParametersCamelCaseResArgs.md -docs/models/operations/MixedParametersCamelCaseResHeaders.md +docs/models/operations/MixedParametersCamelCaseArgs.md +docs/models/operations/MixedParametersCamelCaseHeaders.md docs/models/operations/MixedParametersCamelCaseRes.md docs/models/operations/MixedParametersCamelCaseResponse.md docs/models/operations/MixedParametersPrimitivesRequest.md -docs/models/operations/MixedParametersPrimitivesResArgs.md -docs/models/operations/MixedParametersPrimitivesResHeaders.md +docs/models/operations/MixedParametersPrimitivesArgs.md +docs/models/operations/MixedParametersPrimitivesHeaders.md docs/models/operations/MixedParametersPrimitivesRes.md docs/models/operations/MixedParametersPrimitivesResponse.md docs/models/operations/MixedQueryParamsRequest.md @@ -830,7 +789,7 @@ docs/models/operations/PathParameterJsonRequest.md docs/models/operations/PathParameterJsonRes.md docs/models/operations/PathParameterJsonResponse.md docs/models/operations/PipeDelimitedQueryParamsArrayRequest.md -docs/models/operations/PipeDelimitedQueryParamsArrayResArgs.md +docs/models/operations/PipeDelimitedQueryParamsArrayArgs.md docs/models/operations/PipeDelimitedQueryParamsArrayRes.md docs/models/operations/PipeDelimitedQueryParamsArrayResponse.md docs/models/operations/SimplePathParameterArraysRequest.md @@ -845,14 +804,18 @@ docs/models/operations/SimplePathParameterObjectsResponse.md docs/models/operations/SimplePathParameterPrimitivesRequest.md docs/models/operations/SimplePathParameterPrimitivesRes.md docs/models/operations/SimplePathParameterPrimitivesResponse.md +docs/models/operations/NestFirstGetResponse.md +docs/models/operations/NestedGetResponse.md +docs/models/operations/NestedFirstGetResponse.md +docs/models/operations/NestedSecondGetResponse.md docs/models/operations/NullableObjectPostRes.md docs/models/operations/NullableObjectPostResponse.md -docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.md -docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.md -docs/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.md +docs/models/operations/NullableOptionalObj.md +docs/models/operations/NullableRequiredObj.md +docs/models/operations/RequiredObj.md docs/models/operations/NullableRequiredEmptyObjectPostRequestBody.md docs/models/operations/NullableRequiredEmptyObjectPostResponse.md -docs/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.md +docs/models/operations/NullableRequiredEnum.md docs/models/operations/NullableRequiredPropertyPostRequestBody.md docs/models/operations/NullableRequiredPropertyPostResponse.md docs/models/operations/NullableRequiredSharedObjectPostRequestBody.md @@ -888,123 +851,123 @@ docs/models/operations/RequestBodyPostApplicationJsonSimpleResponse.md docs/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.md docs/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.md docs/models/operations/RequestBodyPostComplexNumberTypesRequest.md -docs/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.md +docs/models/operations/RequestBodyPostComplexNumberTypesResponseBody.md docs/models/operations/RequestBodyPostComplexNumberTypesResponse.md -docs/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.md +docs/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.md docs/models/operations/RequestBodyPostDefaultsAndConstsResponse.md -docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.md -docs/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.md +docs/models/operations/EmptyT.md +docs/models/operations/EmptyWithEmptyProperties.md docs/models/operations/RequestBodyPostEmptyObjectRequestBody.md -docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.md -docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.md -docs/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.md +docs/models/operations/RequestBodyPostEmptyObjectEmpty.md +docs/models/operations/EmptyRespWithEmptyProperies.md +docs/models/operations/RequestBodyPostEmptyObjectResponseBody.md docs/models/operations/RequestBodyPostEmptyObjectResponse.md -docs/models/operations/RequestBodyPostFormDeepResForm.md +docs/models/operations/Form.md docs/models/operations/RequestBodyPostFormDeepRes.md docs/models/operations/RequestBodyPostFormDeepResponse.md docs/models/operations/RequestBodyPostFormMapPrimitiveRes.md docs/models/operations/RequestBodyPostFormMapPrimitiveResponse.md -docs/models/operations/RequestBodyPostFormSimpleResForm.md -docs/models/operations/RequestBodyPostFormSimpleResHeaders.md +docs/models/operations/RequestBodyPostFormSimpleForm.md +docs/models/operations/RequestBodyPostFormSimpleHeaders.md docs/models/operations/RequestBodyPostFormSimpleRes.md docs/models/operations/RequestBodyPostFormSimpleResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDateResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesFloat32Response.md -docs/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesInt32Response.md -docs/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesNumberResponse.md -docs/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.md +docs/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.md docs/models/operations/RequestBodyPostJsonDataTypesStringResponse.md docs/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.md docs/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.md +docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.md docs/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitFormResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.md -docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.md +docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.md docs/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.md -docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.md +docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.md docs/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.md -docs/models/operations/RequestBodyPostNullArray200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullArrayResponseBody.md docs/models/operations/RequestBodyPostNullArrayResponse.md -docs/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullDictionaryResponseBody.md docs/models/operations/RequestBodyPostNullDictionaryResponse.md -docs/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.md docs/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.md -docs/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.md +docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.md docs/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.md docs/models/operations/RequestBodyPutBytesRes.md docs/models/operations/RequestBodyPutBytesResponse.md docs/models/operations/RequestBodyPutBytesWithParamsRequest.md -docs/models/operations/RequestBodyPutBytesWithParamsResArgs.md +docs/models/operations/RequestBodyPutBytesWithParamsArgs.md docs/models/operations/RequestBodyPutBytesWithParamsRes.md docs/models/operations/RequestBodyPutBytesWithParamsResponse.md -docs/models/operations/RequestBodyPutMultipartDeepResForm.md +docs/models/operations/RequestBodyPutMultipartDeepForm.md docs/models/operations/RequestBodyPutMultipartDeepRes.md docs/models/operations/RequestBodyPutMultipartDeepResponse.md -docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.md +docs/models/operations/DifferentFileName.md docs/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.md docs/models/operations/RequestBodyPutMultipartDifferentFileNameRes.md docs/models/operations/RequestBodyPutMultipartDifferentFileNameResponse.md -docs/models/operations/RequestBodyPutMultipartFileRequestBodyFile.md +docs/models/operations/File.md docs/models/operations/RequestBodyPutMultipartFileRequestBody.md docs/models/operations/RequestBodyPutMultipartFileRes.md docs/models/operations/RequestBodyPutMultipartFileResponse.md -docs/models/operations/RequestBodyPutMultipartSimpleResForm.md -docs/models/operations/RequestBodyPutMultipartSimpleResHeaders.md +docs/models/operations/RequestBodyPutMultipartSimpleForm.md +docs/models/operations/RequestBodyPutMultipartSimpleHeaders.md docs/models/operations/RequestBodyPutMultipartSimpleRes.md docs/models/operations/RequestBodyPutMultipartSimpleResponse.md docs/models/operations/RequestBodyPutStringRes.md docs/models/operations/RequestBodyPutStringResponse.md docs/models/operations/RequestBodyPutStringWithParamsRequest.md -docs/models/operations/RequestBodyPutStringWithParamsResArgs.md +docs/models/operations/RequestBodyPutStringWithParamsArgs.md docs/models/operations/RequestBodyPutStringWithParamsRes.md docs/models/operations/RequestBodyPutStringWithParamsResponse.md docs/models/operations/RequestBodyReadAndWriteResponse.md @@ -1014,23 +977,13 @@ docs/models/operations/RequestBodyReadWriteOnlyUnionResponse.md docs/models/operations/RequestBodyWriteOnlyResponse.md docs/models/operations/RequestBodyWriteOnlyOutputResponse.md docs/models/operations/RequestBodyWriteOnlyUnionResponse.md -docs/models/operations/CreateFileRequestBodyFile.md -docs/models/operations/CreateFileRequestBody.md -docs/models/operations/CreateFileResponse.md -docs/models/operations/CreateResourceResponse.md -docs/models/operations/DeleteResourceRequest.md -docs/models/operations/DeleteResourceResponse.md -docs/models/operations/GetResourceRequest.md -docs/models/operations/GetResourceResponse.md -docs/models/operations/UpdateResourceRequest.md -docs/models/operations/UpdateResourceResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.md -docs/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.md +docs/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.md docs/models/operations/ResponseBodyAdditionalPropertiesPostResponse.md docs/models/operations/ResponseBodyBytesGetResponse.md docs/models/operations/ResponseBodyEmptyWithHeadersRequest.md @@ -1039,12 +992,8 @@ docs/models/operations/ResponseBodyOptionalGetResponse.md docs/models/operations/ResponseBodyReadOnlyResponse.md docs/models/operations/ResponseBodyStringGetResponse.md docs/models/operations/ResponseBodyXmlGetResponse.md -docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.md +docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.md docs/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.md -docs/models/operations/RetriesGetRequest.md -docs/models/operations/RetriesGetRetries.md -docs/models/operations/RetriesGetResponse.md -docs/models/operations/GroupSecondGetResponse.md docs/models/operations/SelectGlobalServerResponse.md docs/models/operations/SelectServerWithIDResponse.md docs/models/operations/ServerWithProtocolTemplateResponse.md @@ -1056,70 +1005,119 @@ docs/models/operations/TelemetrySpeakeasyUserAgentGetRes.md docs/models/operations/TelemetrySpeakeasyUserAgentGetResponse.md docs/models/operations/TelemetryUserAgentGetRes.md docs/models/operations/TelemetryUserAgentGetResponse.md -docs/models/operations/FlattenedTypedObjectPostRes.md -docs/models/operations/FlattenedTypedObjectPostResponse.md -docs/models/operations/MixedTypeOneOfPostRes.md -docs/models/operations/MixedTypeOneOfPostResponse.md -docs/models/operations/NullableOneOfRefInObjectPostRes.md -docs/models/operations/NullableOneOfRefInObjectPostResponse.md -docs/models/operations/NullableOneOfSchemaPostRes.md -docs/models/operations/NullableOneOfSchemaPostResponse.md -docs/models/operations/NullableOneOfTypeInObjectPostRes.md -docs/models/operations/NullableOneOfTypeInObjectPostResponse.md -docs/models/operations/NullableTypedObjectPostRes.md -docs/models/operations/NullableTypedObjectPostResponse.md -docs/models/operations/PrimitiveTypeOneOfPostRes.md -docs/models/operations/PrimitiveTypeOneOfPostResponse.md -docs/models/operations/StronglyTypedOneOfPostRes.md -docs/models/operations/StronglyTypedOneOfPostResponse.md -docs/models/operations/TypedObjectNullableOneOfPostRes.md -docs/models/operations/TypedObjectNullableOneOfPostResponse.md -docs/models/operations/TypedObjectOneOfPostRes.md -docs/models/operations/TypedObjectOneOfPostResponse.md -docs/models/operations/UnionBigIntDecimalRes.md -docs/models/operations/UnionBigIntDecimalResponse.md -docs/models/operations/UnionDateNullRes.md -docs/models/operations/UnionDateNullResponse.md -docs/models/operations/UnionDateTimeBigIntRes.md -docs/models/operations/UnionDateTimeBigIntResponse.md -docs/models/operations/UnionDateTimeNullRes.md -docs/models/operations/UnionDateTimeNullResponse.md -docs/models/operations/WeaklyTypedOneOfPostRes.md -docs/models/operations/WeaklyTypedOneOfPostResponse.md -docs/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.md +docs/models/operations/ApiKeyAuthGlobalNewResponse.md +docs/models/operations/AuthGlobalResponse.md +docs/models/operations/BasicAuthNewSecurity.md +docs/models/operations/BasicAuthNewResponse.md +docs/models/operations/MultipleMixedOptionsAuthSecurity.md +docs/models/operations/MultipleMixedOptionsAuthResponse.md +docs/models/operations/MultipleMixedSchemeAuthSecurity.md +docs/models/operations/MultipleMixedSchemeAuthResponse.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthSecurity.md +docs/models/operations/MultipleOptionsWithMixedSchemesAuthResponse.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthSecurity.md +docs/models/operations/MultipleOptionsWithSimpleSchemesAuthResponse.md +docs/models/operations/MultipleSimpleOptionsAuthSecurity.md +docs/models/operations/MultipleSimpleOptionsAuthResponse.md +docs/models/operations/MultipleSimpleSchemeAuthSecurity.md +docs/models/operations/MultipleSimpleSchemeAuthResponse.md +docs/models/operations/Oauth2AuthNewSecurity.md +docs/models/operations/Oauth2AuthNewResponse.md +docs/models/operations/OpenIdConnectAuthNewSecurity.md +docs/models/operations/OpenIdConnectAuthNewResponse.md +docs/models/operations/ApiKeyAuthSecurity.md +docs/models/operations/ApiKeyAuthToken.md +docs/models/operations/ApiKeyAuthResponse.md +docs/models/operations/ApiKeyAuthGlobalToken.md +docs/models/operations/ApiKeyAuthGlobalResponse.md +docs/models/operations/BasicAuthSecurity.md +docs/models/operations/BasicAuthRequest.md +docs/models/operations/BasicAuthUser.md +docs/models/operations/BasicAuthResponse.md +docs/models/operations/BearerAuthSecurity.md +docs/models/operations/BearerAuthToken.md +docs/models/operations/BearerAuthResponse.md +docs/models/operations/GlobalBearerAuthToken.md +docs/models/operations/GlobalBearerAuthResponse.md +docs/models/operations/Oauth2AuthSecurity.md +docs/models/operations/Oauth2AuthToken.md +docs/models/operations/Oauth2AuthResponse.md +docs/models/operations/Oauth2OverrideSecurity.md +docs/models/operations/Oauth2OverrideRequest.md +docs/models/operations/Oauth2OverrideToken.md +docs/models/operations/Oauth2OverrideResponse.md +docs/models/operations/OpenIdConnectAuthSecurity.md +docs/models/operations/OpenIdConnectAuthToken.md +docs/models/operations/OpenIdConnectAuthResponse.md +docs/models/operations/GetDocumentationPerLanguageRequest.md +docs/models/operations/GetDocumentationPerLanguageResponse.md +docs/models/operations/CreateFileFile.md +docs/models/operations/CreateFileRequestBody.md +docs/models/operations/CreateFileResponse.md +docs/models/operations/CreateResourceResponse.md +docs/models/operations/DeleteResourceRequest.md +docs/models/operations/DeleteResourceResponse.md +docs/models/operations/GetResourceRequest.md +docs/models/operations/GetResourceResponse.md +docs/models/operations/UpdateResourceRequest.md +docs/models/operations/UpdateResourceResponse.md +docs/models/operations/GroupFirstGetResponse.md +docs/models/operations/GroupSecondGetResponse.md +docs/models/operations/PaginationCursorBodyRequestBody.md +docs/models/operations/PaginationCursorBodyRes.md +docs/models/operations/PaginationCursorBodyResponse.md +docs/models/operations/PaginationCursorParamsRequest.md +docs/models/operations/PaginationCursorParamsRes.md +docs/models/operations/PaginationCursorParamsResponse.md +docs/models/operations/PaginationLimitOffsetOffsetBodyRes.md +docs/models/operations/PaginationLimitOffsetOffsetBodyResponse.md +docs/models/operations/PaginationLimitOffsetOffsetParamsRequest.md +docs/models/operations/PaginationLimitOffsetOffsetParamsRes.md +docs/models/operations/PaginationLimitOffsetOffsetParamsResponse.md +docs/models/operations/PaginationLimitOffsetPageBodyRes.md +docs/models/operations/PaginationLimitOffsetPageBodyResponse.md +docs/models/operations/PaginationLimitOffsetPageParamsRequest.md +docs/models/operations/PaginationLimitOffsetPageParamsRes.md +docs/models/operations/PaginationLimitOffsetPageParamsResponse.md +docs/models/operations/RetriesGetRequest.md +docs/models/operations/RetriesGetRetries.md +docs/models/operations/RetriesGetResponse.md +docs/models/operations/PutAnythingIgnoredGenerationResponseBody.md docs/models/operations/PutAnythingIgnoredGenerationResponse.md docs/models/operations/ResponseBodyJsonGetResponse.md -docs/models/shared/AuthServiceRequestBodyBasicAuth.md -docs/models/shared/AuthServiceRequestBodyHeaderAuth.md -docs/models/shared/AuthServiceRequestBody.md -docs/models/shared/SchemeBasicAuth.md -docs/models/shared/Security.md -docs/models/shared/ErrorType.md -docs/models/shared/Error.md -docs/models/shared/SimpleObjectInt32Enum.md -docs/models/shared/SimpleObjectIntEnum.md +docs/models/shared/Int32Enum.md +docs/models/shared/IntEnum.md docs/models/shared/SimpleObject.md docs/models/shared/Enum.md docs/models/shared/ArrayCircularReferenceObject.md docs/models/shared/ValidCircularReferenceObject.md -docs/models/shared/DeprecatedFieldInObjectDeprecatedEnum.md +docs/models/shared/DeprecatedEnum.md docs/models/shared/DeprecatedFieldInObject.md docs/models/shared/DeprecatedObject.md docs/models/shared/EmptyObjectParam.md -docs/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.md -docs/models/shared/HttpBinSimpleJsonObjectSlideshow.md +docs/models/shared/Slides.md +docs/models/shared/Slideshow.md docs/models/shared/HttpBinSimpleJsonObject.md docs/models/shared/ObjectCircularReferenceObject.md docs/models/shared/OneOfCircularReferenceObject.md docs/models/shared/FakerStrings.md docs/models/shared/FakerFormattedStrings.md -docs/models/shared/LimitOffsetConfig.md +docs/models/shared/ErrorType.md +docs/models/shared/Error.md +docs/models/shared/NullableOneOfRefInObject.md +docs/models/shared/Type.md +docs/models/shared/TypedObject1.md +docs/models/shared/NullableOneOfTypeInObject.md docs/models/shared/RefQueryParamObjExploded.md docs/models/shared/RefQueryParamObj.md docs/models/shared/DeepObject.md docs/models/shared/NullableObject.md -docs/models/shared/SimpleObjectCamelCaseInt32EnumVal.md -docs/models/shared/SimpleObjectCamelCaseIntEnumVal.md +docs/models/shared/Int32EnumVal.md +docs/models/shared/IntEnumVal.md docs/models/shared/SimpleObjectCamelCase.md docs/models/shared/ArrObjValue.md docs/models/shared/ArrObjValueCamelCase.md @@ -1132,27 +1130,29 @@ docs/models/shared/DefaultsAndConstsOutputConstEnumStr.md docs/models/shared/DefaultsAndConstsOutputDefaultEnumInt.md docs/models/shared/DefaultsAndConstsOutputDefaultEnumStr.md docs/models/shared/DefaultsAndConstsOutput.md -docs/models/shared/DefaultsAndConstsConstEnumInt.md -docs/models/shared/DefaultsAndConstsConstEnumStr.md -docs/models/shared/DefaultsAndConstsDefaultEnumInt.md -docs/models/shared/DefaultsAndConstsDefaultEnumStr.md +docs/models/shared/ConstEnumInt.md +docs/models/shared/ConstEnumStr.md +docs/models/shared/DefaultEnumInt.md +docs/models/shared/DefaultEnumStr.md docs/models/shared/DefaultsAndConsts.md -docs/models/shared/ReadWriteObjectInput.md +docs/models/shared/ReadWriteObject.md docs/models/shared/ReadWriteObjectOutput.md docs/models/shared/ReadOnlyObject.md docs/models/shared/ReadOnlyObjectInput.md docs/models/shared/WriteOnlyObject.md docs/models/shared/WriteOnlyObjectOutput.md +docs/models/shared/ObjWithZeroValueComplexTypePtrs.md +docs/models/shared/BasicAuth.md +docs/models/shared/HeaderAuth.md +docs/models/shared/AuthServiceRequestBody.md +docs/models/shared/SchemeBasicAuth.md +docs/models/shared/Security.md docs/models/shared/FileResource.md -docs/models/shared/ExampleResourceChocolates.md -docs/models/shared/ExampleResourceEnumNumber.md -docs/models/shared/ExampleResourceEnumStr.md +docs/models/shared/Chocolates.md +docs/models/shared/EnumNumber.md +docs/models/shared/EnumStr.md docs/models/shared/ExampleResource.md -docs/models/shared/TypedObject1Type.md -docs/models/shared/TypedObject1.md -docs/models/shared/ObjWithZeroValueComplexTypePtrs.md -docs/models/shared/NullableOneOfRefInObject.md -docs/models/shared/NullableOneOfTypeInObject.md +docs/models/shared/LimitOffsetConfig.md docs/models/shared/AllOfToAllOf.md docs/models/shared/OneOfGenerationStressTest.md docs/models/shared/UnsupportedEnums.md @@ -1161,26 +1161,26 @@ docs/models/callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequest docs/models/callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.md docs/models/callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.md docs/sdks/sdk/README.md -docs/sdks/auth/README.md -docs/sdks/authnew/README.md -docs/sdks/documentation/README.md +docs/sdks/generation/README.md docs/sdks/errors/README.md -docs/sdks/first/README.md +docs/sdks/unions/README.md docs/sdks/flattening/README.md -docs/sdks/generation/README.md docs/sdks/globals/README.md +docs/sdks/parameters/README.md docs/sdks/nestfirst/README.md docs/sdks/nested/README.md docs/sdks/nestedfirst/README.md docs/sdks/nestedsecond/README.md -docs/sdks/pagination/README.md -docs/sdks/parameters/README.md docs/sdks/requestbodies/README.md -docs/sdks/resource/README.md docs/sdks/responsebodies/README.md -docs/sdks/retries/README.md -docs/sdks/second/README.md docs/sdks/servers/README.md docs/sdks/telemetry/README.md -docs/sdks/unions/README.md +docs/sdks/authnew/README.md +docs/sdks/auth/README.md +docs/sdks/documentation/README.md +docs/sdks/resource/README.md +docs/sdks/first/README.md +docs/sdks/second/README.md +docs/sdks/pagination/README.md +docs/sdks/retries/README.md .gitattributes \ No newline at end of file diff --git a/php-client-sdk/gen.yaml b/php-client-sdk/gen.yaml index 7b6a40c10..3b4f9fa9a 100755 --- a/php-client-sdk/gen.yaml +++ b/php-client-sdk/gen.yaml @@ -2,15 +2,15 @@ configVersion: 1.0.0 management: docChecksum: 0c1717dc8f9e83b99bad896fa719645c docVersion: 0.1.0 - speakeasyVersion: 1.112.1 - generationVersion: 2.173.0 + speakeasyVersion: 1.114.1 + generationVersion: 2.181.1 generation: comments: {} sdkClassName: SDK repoURL: https://github.com/speakeasy-api/openapi-generation-tests.git features: php: - core: 2.89.0 + core: 3.1.0 deprecations: 2.81.1 docs: 0.0.3 enums: 2.81.1 @@ -28,7 +28,15 @@ features: nameOverrides: 2.81.1 serverIDs: 2.81.1 php: - version: 1.36.2 + version: 2.0.0 + imports: + option: openapi + paths: + callbacks: Models/Callbacks + errors: Models/Errors + operations: Models/Operations + shared: Models/Shared + webhooks: Models/Webhooks maxMethodParams: 5 namespace: OpenAPI\OpenAPI packageName: openapi/openapi diff --git a/php-client-sdk/phpstan.neon b/php-client-sdk/phpstan.neon index edcb2f48d..244f87cd1 100755 --- a/php-client-sdk/phpstan.neon +++ b/php-client-sdk/phpstan.neon @@ -1,3 +1,5 @@ parameters: + reportUnmatchedIgnoredErrors: false ignoreErrors: - - '#.*?class ReflectionProperty constructor expects object\|string.*?#' \ No newline at end of file + - '#.*?class ReflectionProperty constructor expects object\|string.*?#' + - '#^Strict comparison using === between .*? will always evaluate to false\.$#' \ No newline at end of file diff --git a/php-client-sdk/src/Auth.php b/php-client-sdk/src/Auth.php index 5aaf2c0fb..576bbd34e 100755 --- a/php-client-sdk/src/Auth.php +++ b/php-client-sdk/src/Auth.php @@ -43,8 +43,10 @@ public function apiKeyAuth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ApiKeyAuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -79,8 +81,10 @@ public function apiKeyAuthGlobal( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ApiKeyAuthGlobalResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -126,8 +130,10 @@ public function basicAuth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\BasicAuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -165,8 +171,10 @@ public function bearerAuth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\BearerAuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -201,8 +209,10 @@ public function globalBearerAuth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\GlobalBearerAuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -240,8 +250,10 @@ public function oauth2Auth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\Oauth2AuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -285,8 +297,10 @@ public function oauth2Override( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\Oauth2OverrideResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -324,8 +338,10 @@ public function openIdConnectAuth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\OpenIdConnectAuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/AuthNew.php b/php-client-sdk/src/AuthNew.php index c0901fe73..345720a1e 100755 --- a/php-client-sdk/src/AuthNew.php +++ b/php-client-sdk/src/AuthNew.php @@ -98,8 +98,10 @@ public function apiKeyAuthGlobalNew( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ApiKeyAuthGlobalNewResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -142,8 +144,10 @@ public function authGlobal( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\AuthGlobalResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -189,8 +193,10 @@ public function basicAuthNew( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\BasicAuthNewResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -236,8 +242,10 @@ public function multipleMixedOptionsAuth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\MultipleMixedOptionsAuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -283,8 +291,10 @@ public function multipleMixedSchemeAuth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\MultipleMixedSchemeAuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -330,8 +340,10 @@ public function multipleOptionsWithMixedSchemesAuth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithMixedSchemesAuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -377,8 +389,10 @@ public function multipleOptionsWithSimpleSchemesAuth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\MultipleOptionsWithSimpleSchemesAuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -424,8 +438,10 @@ public function multipleSimpleOptionsAuth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\MultipleSimpleOptionsAuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -471,8 +487,10 @@ public function multipleSimpleSchemeAuth( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\MultipleSimpleSchemeAuthResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -518,8 +536,10 @@ public function oauth2AuthNew( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\Oauth2AuthNewResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -565,8 +585,10 @@ public function openIdConnectAuthNew( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\OpenIdConnectAuthNewResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Documentation.php b/php-client-sdk/src/Documentation.php index 1feba35d9..08bd0fcc8 100755 --- a/php-client-sdk/src/Documentation.php +++ b/php-client-sdk/src/Documentation.php @@ -46,8 +46,10 @@ public function getDocumentationPerLanguage( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\GetDocumentationPerLanguageResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Errors.php b/php-client-sdk/src/Errors.php index ad9aee8e6..8196c25ff 100755 --- a/php-client-sdk/src/Errors.php +++ b/php-client-sdk/src/Errors.php @@ -55,8 +55,10 @@ public function connectionErrorGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ConnectionErrorGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -90,8 +92,10 @@ public function statusGetError( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\StatusGetErrorResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -132,8 +136,10 @@ public function statusGetXSpeakeasyErrors( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\StatusGetXSpeakeasyErrorsResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -148,7 +154,7 @@ public function statusGetXSpeakeasyErrors( else if ($httpResponse->getStatusCode() === 501) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->statusGetXSpeakeasyErrors501ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\StatusGetXSpeakeasyErrors501ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\StatusGetXSpeakeasyErrorsResponseBody', 'json'); } } diff --git a/php-client-sdk/src/First.php b/php-client-sdk/src/First.php index 8edf5218f..4ec50ef65 100755 --- a/php-client-sdk/src/First.php +++ b/php-client-sdk/src/First.php @@ -40,8 +40,10 @@ public function get( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\GroupFirstGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Flattening.php b/php-client-sdk/src/Flattening.php index 03cfbe248..35acdede2 100755 --- a/php-client-sdk/src/Flattening.php +++ b/php-client-sdk/src/Flattening.php @@ -54,8 +54,10 @@ public function componentBodyAndParamConflict( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ComponentBodyAndParamConflictResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -102,8 +104,10 @@ public function componentBodyAndParamNoConflict( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ComponentBodyAndParamNoConflictResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -145,8 +149,10 @@ public function conflictingParams( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ConflictingParamsResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -193,8 +199,10 @@ public function inlineBodyAndParamConflict( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamConflictResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -241,8 +249,10 @@ public function inlineBodyAndParamNoConflict( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamNoConflictResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Generation.php b/php-client-sdk/src/Generation.php index da2d551a7..cbd7e9402 100755 --- a/php-client-sdk/src/Generation.php +++ b/php-client-sdk/src/Generation.php @@ -40,15 +40,17 @@ public function anchorTypesGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\AnchorTypesGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->typeFromAnchor = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\TypeFromAnchor', 'json'); + $response->typeFromAnchor = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\AnchorTypesGetTypeFromAnchor', 'json'); } } @@ -74,8 +76,10 @@ public function arrayCircularReferenceGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ArrayCircularReferenceGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -108,8 +112,10 @@ public function circularReferenceGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\CircularReferenceGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -148,8 +154,10 @@ public function dateParamWithDefault( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\DateParamWithDefaultResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -184,8 +192,10 @@ public function dateTimeParamWithDefault( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\DateTimeParamWithDefaultResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -220,8 +230,10 @@ public function decimalParamWithDefault( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\DecimalParamWithDefaultResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -257,8 +269,10 @@ public function deprecatedFieldInSchemaPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\DeprecatedFieldInSchemaPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -287,15 +301,17 @@ public function deprecatedObjectInSchemaGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\DeprecatedObjectInSchemaGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->deprecatedObjectInSchemaGet200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\DeprecatedObjectInSchemaGet200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\DeprecatedObjectInSchemaGetResponseBody', 'json'); } } @@ -330,8 +346,10 @@ public function deprecatedOperationNoCommentsGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\DeprecatedOperationNoCommentsGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -372,8 +390,10 @@ public function deprecatedOperationWithCommentsGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\DeprecatedOperationWithCommentsGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -407,8 +427,10 @@ public function emptyObjectGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\EmptyObjectGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -437,8 +459,10 @@ public function emptyResponseObjectWithCommentGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\EmptyResponseObjectWithCommentGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -470,15 +494,17 @@ public function globalNameOverridden( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\GetGlobalNameOverrideResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->getGlobalNameOverride200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\GetGlobalNameOverride200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\GetGlobalNameOverrideResponseBody', 'json'); } } @@ -504,15 +530,17 @@ public function ignoredGenerationGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\IgnoredGenerationGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->ignoredGenerationGet200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\IgnoredGenerationGet200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\IgnoredGenerationGetResponseBody', 'json'); } } @@ -522,12 +550,12 @@ public function ignoredGenerationGet( /** * ignoresPost * - * @param \OpenAPI\OpenAPI\Models\Operations\IgnoresPostApplicationJSON $requestBody + * @param \OpenAPI\OpenAPI\Models\Operations\IgnoresPostRequestBody $requestBody * @param ?string $testParam * @return \OpenAPI\OpenAPI\Models\Operations\IgnoresPostResponse */ public function ignoresPost( - \OpenAPI\OpenAPI\Models\Operations\IgnoresPostApplicationJSON $requestBody, + \OpenAPI\OpenAPI\Models\Operations\IgnoresPostRequestBody $requestBody, ?string $testParam = null, ): \OpenAPI\OpenAPI\Models\Operations\IgnoresPostResponse { @@ -552,8 +580,10 @@ public function ignoresPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\IgnoresPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -570,12 +600,12 @@ public function ignoresPost( /** * nameOverride * - * @param \OpenAPI\OpenAPI\Models\Operations\NameOverrideGetEnumNameOverride $testEnumQueryParam + * @param \OpenAPI\OpenAPI\Models\Operations\EnumNameOverride $testEnumQueryParam * @param string $testQueryParam * @return \OpenAPI\OpenAPI\Models\Operations\NameOverrideGetResponse */ public function nameOverride( - \OpenAPI\OpenAPI\Models\Operations\NameOverrideGetEnumNameOverride $testEnumQueryParam, + \OpenAPI\OpenAPI\Models\Operations\EnumNameOverride $testEnumQueryParam, string $testQueryParam, ): \OpenAPI\OpenAPI\Models\Operations\NameOverrideGetResponse { @@ -595,15 +625,17 @@ public function nameOverride( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NameOverrideGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->overriddenResponse = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\OverriddenResponse', 'json'); + $response->overriddenResponse = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\NameOverrideGetOverriddenResponse', 'json'); } } @@ -629,8 +661,10 @@ public function objectCircularReferenceGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ObjectCircularReferenceGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -663,8 +697,10 @@ public function oneOfCircularReferenceGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\OneOfCircularReferenceGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -684,14 +720,14 @@ public function oneOfCircularReferenceGet( * @param ?int $bigint * @param ?\DateTime $date * @param ?float $decimal - * @param ?\OpenAPI\OpenAPI\Models\Operations\TypedParameterGenerationGetObj $obj + * @param ?\OpenAPI\OpenAPI\Models\Operations\Obj $obj * @return \OpenAPI\OpenAPI\Models\Operations\TypedParameterGenerationGetResponse */ public function typedParameterGenerationGet( ?int $bigint = null, ?\DateTime $date = null, ?float $decimal = null, - ?\OpenAPI\OpenAPI\Models\Operations\TypedParameterGenerationGetObj $obj = null, + ?\OpenAPI\OpenAPI\Models\Operations\Obj $obj = null, ): \OpenAPI\OpenAPI\Models\Operations\TypedParameterGenerationGetResponse { $request = new \OpenAPI\OpenAPI\Models\Operations\TypedParameterGenerationGetRequest(); @@ -712,8 +748,10 @@ public function typedParameterGenerationGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\TypedParameterGenerationGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -756,15 +794,17 @@ public function usageExamplePost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\UsageExamplePostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->usageExamplePost200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\UsageExamplePost200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\UsageExamplePostResponseBody', 'json'); } } diff --git a/php-client-sdk/src/Globals.php b/php-client-sdk/src/Globals.php index 0631f45e9..50599700a 100755 --- a/php-client-sdk/src/Globals.php +++ b/php-client-sdk/src/Globals.php @@ -45,8 +45,10 @@ public function globalPathParameterGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\GlobalPathParameterGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -85,8 +87,10 @@ public function globalsQueryParameterGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\GlobalsQueryParameterGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Models/Operations/AnchorTypesGetResponse.php b/php-client-sdk/src/Models/Operations/AnchorTypesGetResponse.php index 679d4ac39..d6b4b0f96 100755 --- a/php-client-sdk/src/Models/Operations/AnchorTypesGetResponse.php +++ b/php-client-sdk/src/Models/Operations/AnchorTypesGetResponse.php @@ -38,10 +38,10 @@ class AnchorTypesGetResponse /** * A successful response that contains the simpleObject sent in the request body * - * @var ?\OpenAPI\OpenAPI\Models\Operations\TypeFromAnchor $typeFromAnchor + * @var ?\OpenAPI\OpenAPI\Models\Operations\AnchorTypesGetTypeFromAnchor $typeFromAnchor */ - public ?TypeFromAnchor $typeFromAnchor = null; + public ?AnchorTypesGetTypeFromAnchor $typeFromAnchor = null; public function __construct() { diff --git a/php-client-sdk/src/Models/Operations/AnchorTypesGetTypeFromAnchor.php b/php-client-sdk/src/Models/Operations/AnchorTypesGetTypeFromAnchor.php new file mode 100755 index 000000000..424969958 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/AnchorTypesGetTypeFromAnchor.php @@ -0,0 +1,34 @@ +json = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/Args.php b/php-client-sdk/src/Models/Operations/Args.php new file mode 100755 index 000000000..7c13b422b --- /dev/null +++ b/php-client-sdk/src/Models/Operations/Args.php @@ -0,0 +1,22 @@ +globalQueryParam = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/CreateFileFile.php b/php-client-sdk/src/Models/Operations/CreateFileFile.php new file mode 100755 index 000000000..966406db3 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/CreateFileFile.php @@ -0,0 +1,25 @@ +content = ""; + $this->fileName = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/CreateFileRequestBody.php b/php-client-sdk/src/Models/Operations/CreateFileRequestBody.php index 0cb27c582..681174a2d 100755 --- a/php-client-sdk/src/Models/Operations/CreateFileRequestBody.php +++ b/php-client-sdk/src/Models/Operations/CreateFileRequestBody.php @@ -12,7 +12,7 @@ class CreateFileRequestBody { #[SpeakeasyMetadata('multipartForm:file=true')] - public ?CreateFileRequestBodyFile $file = null; + public ?CreateFileFile $file = null; public function __construct() { diff --git a/php-client-sdk/src/Models/Operations/CreateFileRequestBodyFile.php b/php-client-sdk/src/Models/Operations/CreateFileRequestBodyFile.php deleted file mode 100755 index f6b042245..000000000 --- a/php-client-sdk/src/Models/Operations/CreateFileRequestBodyFile.php +++ /dev/null @@ -1,25 +0,0 @@ -content = ""; - $this->file = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectArgs.php b/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectArgs.php new file mode 100755 index 000000000..654cd831e --- /dev/null +++ b/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectArgs.php @@ -0,0 +1,121 @@ + $objArrParamArr + */ + #[\JMS\Serializer\Annotation\SerializedName('objArrParam[arr]')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $objArrParamArr; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[any]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamAny; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[bigintStr]')] + #[\JMS\Serializer\Annotation\Type('string')] + #[\JMS\Serializer\Annotation\SkipWhenEmpty] + public ?string $objParamBigintStr = null; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[bigint]')] + #[\JMS\Serializer\Annotation\Type('string')] + #[\JMS\Serializer\Annotation\SkipWhenEmpty] + public ?string $objParamBigint = null; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[boolOpt]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamBoolOpt; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[bool]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamBool; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[dateTime]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamDateTime; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[date]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamDate; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[decimalStr]')] + #[\JMS\Serializer\Annotation\Type('string')] + #[\JMS\Serializer\Annotation\SkipWhenEmpty] + public ?string $objParamDecimalStr = null; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[decimal]')] + #[\JMS\Serializer\Annotation\Type('string')] + #[\JMS\Serializer\Annotation\SkipWhenEmpty] + public ?string $objParamDecimal = null; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[enum]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamEnum; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[float32]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamFloat32; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[int32Enum]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamInt32Enum; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[int32]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamInt32; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[intEnum]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamIntEnum; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[int]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamInt; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[num]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamNum; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[strOpt]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamStrOpt; + + #[\JMS\Serializer\Annotation\SerializedName('objParam[str]')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $objParamStr; + + public function __construct() + { + $this->objArrParamArr = []; + $this->objParamAny = ""; + $this->objParamBigintStr = null; + $this->objParamBigint = null; + $this->objParamBoolOpt = ""; + $this->objParamBool = ""; + $this->objParamDateTime = ""; + $this->objParamDate = ""; + $this->objParamDecimalStr = null; + $this->objParamDecimal = null; + $this->objParamEnum = ""; + $this->objParamFloat32 = ""; + $this->objParamInt32Enum = ""; + $this->objParamInt32 = ""; + $this->objParamIntEnum = ""; + $this->objParamInt = ""; + $this->objParamNum = ""; + $this->objParamStrOpt = ""; + $this->objParamStr = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectObjArrParam.php b/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectObjArrParam.php deleted file mode 100755 index 3cc665ed4..000000000 --- a/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectObjArrParam.php +++ /dev/null @@ -1,32 +0,0 @@ - $arr - */ - #[SpeakeasyMetadata('queryParam:name=arr')] - public ?array $arr = null; - - public function __construct() - { - $this->arr = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectRequest.php b/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectRequest.php index a45017256..7426794c0 100755 --- a/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectRequest.php +++ b/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectRequest.php @@ -20,7 +20,7 @@ class DeepObjectQueryParamsObjectRequest public \OpenAPI\OpenAPI\Models\Shared\SimpleObject $objParam; #[SpeakeasyMetadata('queryParam:style=deepObject,explode=true,name=objArrParam')] - public ?DeepObjectQueryParamsObjectObjArrParam $objArrParam = null; + public ?ObjArrParam $objArrParam = null; public function __construct() { diff --git a/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectRes.php b/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectRes.php index 39c5f5eb1..6fa696482 100755 --- a/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectRes.php +++ b/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectRes.php @@ -18,8 +18,8 @@ class DeepObjectQueryParamsObjectRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectResArgs')] - public DeepObjectQueryParamsObjectResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectArgs')] + public DeepObjectQueryParamsObjectArgs $args; #[\JMS\Serializer\Annotation\SerializedName('url')] #[\JMS\Serializer\Annotation\Type('string')] @@ -27,7 +27,7 @@ class DeepObjectQueryParamsObjectRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectResArgs(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectArgs(); $this->url = ""; } } diff --git a/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectResArgs.php b/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectResArgs.php deleted file mode 100755 index fb2bd2e83..000000000 --- a/php-client-sdk/src/Models/Operations/DeepObjectQueryParamsObjectResArgs.php +++ /dev/null @@ -1,121 +0,0 @@ - $objArrParamArr - */ - #[\JMS\Serializer\Annotation\SerializedName('objArrParam[arr]')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $objArrParamArr; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[any]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamAny; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[bigintStr]')] - #[\JMS\Serializer\Annotation\Type('string')] - #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?string $objParamBigintStr = null; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[bigint]')] - #[\JMS\Serializer\Annotation\Type('string')] - #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?string $objParamBigint = null; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[boolOpt]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamBoolOpt; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[bool]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamBool; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[dateTime]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamDateTime; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[date]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamDate; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[decimalStr]')] - #[\JMS\Serializer\Annotation\Type('string')] - #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?string $objParamDecimalStr = null; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[decimal]')] - #[\JMS\Serializer\Annotation\Type('string')] - #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?string $objParamDecimal = null; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[enum]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamEnum; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[float32]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamFloat32; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[int32Enum]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamInt32Enum; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[int32]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamInt32; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[intEnum]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamIntEnum; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[int]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamInt; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[num]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamNum; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[strOpt]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamStrOpt; - - #[\JMS\Serializer\Annotation\SerializedName('objParam[str]')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $objParamStr; - - public function __construct() - { - $this->objArrParamArr = []; - $this->objParamAny = ""; - $this->objParamBigintStr = null; - $this->objParamBigint = null; - $this->objParamBoolOpt = ""; - $this->objParamBool = ""; - $this->objParamDateTime = ""; - $this->objParamDate = ""; - $this->objParamDecimalStr = null; - $this->objParamDecimal = null; - $this->objParamEnum = ""; - $this->objParamFloat32 = ""; - $this->objParamInt32Enum = ""; - $this->objParamInt32 = ""; - $this->objParamIntEnum = ""; - $this->objParamInt = ""; - $this->objParamNum = ""; - $this->objParamStrOpt = ""; - $this->objParamStr = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/DeprecatedObjectInSchemaGet200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/DeprecatedObjectInSchemaGet200ApplicationJSON.php deleted file mode 100755 index 58cddca13..000000000 --- a/php-client-sdk/src/Models/Operations/DeprecatedObjectInSchemaGet200ApplicationJSON.php +++ /dev/null @@ -1,34 +0,0 @@ -json = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/DeprecatedObjectInSchemaGetResponse.php b/php-client-sdk/src/Models/Operations/DeprecatedObjectInSchemaGetResponse.php index de885c6f8..ed5bcc118 100755 --- a/php-client-sdk/src/Models/Operations/DeprecatedObjectInSchemaGetResponse.php +++ b/php-client-sdk/src/Models/Operations/DeprecatedObjectInSchemaGetResponse.php @@ -38,16 +38,16 @@ class DeprecatedObjectInSchemaGetResponse /** * A successful response that contains a deprecatedObject sent in the request body * - * @var ?\OpenAPI\OpenAPI\Models\Operations\DeprecatedObjectInSchemaGet200ApplicationJSON $deprecatedObjectInSchemaGet200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\DeprecatedObjectInSchemaGetResponseBody $object */ - public ?DeprecatedObjectInSchemaGet200ApplicationJSON $deprecatedObjectInSchemaGet200ApplicationJSONObject = null; + public ?DeprecatedObjectInSchemaGetResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->deprecatedObjectInSchemaGet200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/DeprecatedObjectInSchemaGetResponseBody.php b/php-client-sdk/src/Models/Operations/DeprecatedObjectInSchemaGetResponseBody.php new file mode 100755 index 000000000..1ba08ef36 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/DeprecatedObjectInSchemaGetResponseBody.php @@ -0,0 +1,34 @@ +json = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/DifferentFileName.php b/php-client-sdk/src/Models/Operations/DifferentFileName.php new file mode 100755 index 000000000..dd8005d3b --- /dev/null +++ b/php-client-sdk/src/Models/Operations/DifferentFileName.php @@ -0,0 +1,25 @@ +content = ""; + $this->fileName = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/EmptyRespWithEmptyProperies.php b/php-client-sdk/src/Models/Operations/EmptyRespWithEmptyProperies.php new file mode 100755 index 000000000..63c647e5d --- /dev/null +++ b/php-client-sdk/src/Models/Operations/EmptyRespWithEmptyProperies.php @@ -0,0 +1,17 @@ +content = ""; + $this->fileName = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/Form.php b/php-client-sdk/src/Models/Operations/Form.php new file mode 100755 index 000000000..ab63a5f81 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/Form.php @@ -0,0 +1,52 @@ +arr = ""; + $this->bool = ""; + $this->int = ""; + $this->map = ""; + $this->num = ""; + $this->obj = ""; + $this->str = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsArrayArgs.php b/php-client-sdk/src/Models/Operations/FormQueryParamsArrayArgs.php new file mode 100755 index 000000000..51cf0806c --- /dev/null +++ b/php-client-sdk/src/Models/Operations/FormQueryParamsArrayArgs.php @@ -0,0 +1,32 @@ + $arrParamExploded + */ + #[\JMS\Serializer\Annotation\SerializedName('arrParamExploded')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $arrParamExploded; + + public function __construct() + { + $this->arrParam = ""; + $this->arrParamExploded = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsArrayRes.php b/php-client-sdk/src/Models/Operations/FormQueryParamsArrayRes.php index 5e791073b..109ce82c7 100755 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsArrayRes.php +++ b/php-client-sdk/src/Models/Operations/FormQueryParamsArrayRes.php @@ -18,8 +18,8 @@ class FormQueryParamsArrayRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\FormQueryParamsArrayResArgs')] - public FormQueryParamsArrayResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\FormQueryParamsArrayArgs')] + public FormQueryParamsArrayArgs $args; #[\JMS\Serializer\Annotation\SerializedName('url')] #[\JMS\Serializer\Annotation\Type('string')] @@ -27,7 +27,7 @@ class FormQueryParamsArrayRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsArrayResArgs(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsArrayArgs(); $this->url = ""; } } diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsArrayResArgs.php b/php-client-sdk/src/Models/Operations/FormQueryParamsArrayResArgs.php deleted file mode 100755 index 011982eae..000000000 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsArrayResArgs.php +++ /dev/null @@ -1,32 +0,0 @@ - $arrParamExploded - */ - #[\JMS\Serializer\Annotation\SerializedName('arrParamExploded')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $arrParamExploded; - - public function __construct() - { - $this->arrParam = ""; - $this->arrParamExploded = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectArgs.php b/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectArgs.php new file mode 100755 index 000000000..b6ac344f2 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectArgs.php @@ -0,0 +1,27 @@ +itemCount = ""; + $this->searchTerm = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectObjParam.php b/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectObjParam.php deleted file mode 100755 index 70974a61c..000000000 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectObjParam.php +++ /dev/null @@ -1,31 +0,0 @@ -encodedCount = null; - $this->encodedTerm = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectObjParamExploded.php b/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectObjParamExploded.php deleted file mode 100755 index 923a70cfd..000000000 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectObjParamExploded.php +++ /dev/null @@ -1,31 +0,0 @@ -itemCount = null; - $this->searchTerm = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectRequest.php b/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectRequest.php index fff31b37d..230380961 100755 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectRequest.php +++ b/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectRequest.php @@ -12,14 +12,14 @@ class FormQueryParamsCamelObjectRequest { #[SpeakeasyMetadata('queryParam:style=form,explode=true,name=obj_param_exploded')] - public FormQueryParamsCamelObjectObjParamExploded $objParamExploded; + public ObjParamExploded $objParamExploded; #[SpeakeasyMetadata('queryParam:style=form,explode=false,name=obj_param')] - public ?FormQueryParamsCamelObjectObjParam $objParam = null; + public ?ObjParam $objParam = null; public function __construct() { - $this->objParamExploded = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectObjParamExploded(); + $this->objParamExploded = new \OpenAPI\OpenAPI\Models\Operations\ObjParamExploded(); $this->objParam = null; } } diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectRes.php b/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectRes.php index a838d1623..f82dee22a 100755 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectRes.php +++ b/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectRes.php @@ -18,8 +18,8 @@ class FormQueryParamsCamelObjectRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectResArgs')] - public FormQueryParamsCamelObjectResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectArgs')] + public FormQueryParamsCamelObjectArgs $args; #[\JMS\Serializer\Annotation\SerializedName('url')] #[\JMS\Serializer\Annotation\Type('string')] @@ -27,7 +27,7 @@ class FormQueryParamsCamelObjectRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectResArgs(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectArgs(); $this->url = ""; } } diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectResArgs.php b/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectResArgs.php deleted file mode 100755 index 56e03f9cf..000000000 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsCamelObjectResArgs.php +++ /dev/null @@ -1,27 +0,0 @@ -itemCount = ""; - $this->searchTerm = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsObjectArgs.php b/php-client-sdk/src/Models/Operations/FormQueryParamsObjectArgs.php new file mode 100755 index 000000000..1f8c94ff4 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/FormQueryParamsObjectArgs.php @@ -0,0 +1,130 @@ +any = ""; + $this->bigint = null; + $this->bigintStr = null; + $this->bool = ""; + $this->boolOpt = null; + $this->date = ""; + $this->dateTime = ""; + $this->decimal = null; + $this->decimalStr = null; + $this->enum = ""; + $this->float32 = ""; + $this->int = ""; + $this->int32 = ""; + $this->int32Enum = ""; + $this->intEnum = ""; + $this->intOptNull = null; + $this->num = ""; + $this->numOptNull = null; + $this->objParam = ""; + $this->str = ""; + $this->strOpt = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsObjectRes.php b/php-client-sdk/src/Models/Operations/FormQueryParamsObjectRes.php index 630f596f1..41638e5af 100755 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsObjectRes.php +++ b/php-client-sdk/src/Models/Operations/FormQueryParamsObjectRes.php @@ -18,8 +18,8 @@ class FormQueryParamsObjectRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\FormQueryParamsObjectResArgs')] - public FormQueryParamsObjectResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\FormQueryParamsObjectArgs')] + public FormQueryParamsObjectArgs $args; #[\JMS\Serializer\Annotation\SerializedName('url')] #[\JMS\Serializer\Annotation\Type('string')] @@ -27,7 +27,7 @@ class FormQueryParamsObjectRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsObjectResArgs(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsObjectArgs(); $this->url = ""; } } diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsObjectResArgs.php b/php-client-sdk/src/Models/Operations/FormQueryParamsObjectResArgs.php deleted file mode 100755 index b56f5bc9e..000000000 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsObjectResArgs.php +++ /dev/null @@ -1,130 +0,0 @@ -any = ""; - $this->bigint = null; - $this->bigintStr = null; - $this->bool = ""; - $this->boolOpt = null; - $this->date = ""; - $this->dateTime = ""; - $this->decimal = null; - $this->decimalStr = null; - $this->enum = ""; - $this->float32 = ""; - $this->int = ""; - $this->int32 = ""; - $this->int32Enum = ""; - $this->intEnum = ""; - $this->intOptNull = null; - $this->num = ""; - $this->numOptNull = null; - $this->objParam = ""; - $this->str = ""; - $this->strOpt = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsPrimitiveArgs.php b/php-client-sdk/src/Models/Operations/FormQueryParamsPrimitiveArgs.php new file mode 100755 index 000000000..ae39f764f --- /dev/null +++ b/php-client-sdk/src/Models/Operations/FormQueryParamsPrimitiveArgs.php @@ -0,0 +1,37 @@ +boolParam = ""; + $this->intParam = ""; + $this->numParam = ""; + $this->strParam = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsPrimitiveRes.php b/php-client-sdk/src/Models/Operations/FormQueryParamsPrimitiveRes.php index 86ae84063..91f25871d 100755 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsPrimitiveRes.php +++ b/php-client-sdk/src/Models/Operations/FormQueryParamsPrimitiveRes.php @@ -18,8 +18,8 @@ class FormQueryParamsPrimitiveRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\FormQueryParamsPrimitiveResArgs')] - public FormQueryParamsPrimitiveResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\FormQueryParamsPrimitiveArgs')] + public FormQueryParamsPrimitiveArgs $args; #[\JMS\Serializer\Annotation\SerializedName('url')] #[\JMS\Serializer\Annotation\Type('string')] @@ -27,7 +27,7 @@ class FormQueryParamsPrimitiveRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsPrimitiveResArgs(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsPrimitiveArgs(); $this->url = ""; } } diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsPrimitiveResArgs.php b/php-client-sdk/src/Models/Operations/FormQueryParamsPrimitiveResArgs.php deleted file mode 100755 index a4b2507f3..000000000 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsPrimitiveResArgs.php +++ /dev/null @@ -1,37 +0,0 @@ -boolParam = ""; - $this->intParam = ""; - $this->numParam = ""; - $this->strParam = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsRefParamObjectArgs.php b/php-client-sdk/src/Models/Operations/FormQueryParamsRefParamObjectArgs.php new file mode 100755 index 000000000..e464259e4 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/FormQueryParamsRefParamObjectArgs.php @@ -0,0 +1,42 @@ +bool = ""; + $this->int = ""; + $this->num = ""; + $this->refObjParam = ""; + $this->str = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsRefParamObjectRes.php b/php-client-sdk/src/Models/Operations/FormQueryParamsRefParamObjectRes.php index da257d687..f2320a82c 100755 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsRefParamObjectRes.php +++ b/php-client-sdk/src/Models/Operations/FormQueryParamsRefParamObjectRes.php @@ -18,8 +18,8 @@ class FormQueryParamsRefParamObjectRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\FormQueryParamsRefParamObjectResArgs')] - public FormQueryParamsRefParamObjectResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\FormQueryParamsRefParamObjectArgs')] + public FormQueryParamsRefParamObjectArgs $args; #[\JMS\Serializer\Annotation\SerializedName('url')] #[\JMS\Serializer\Annotation\Type('string')] @@ -27,7 +27,7 @@ class FormQueryParamsRefParamObjectRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsRefParamObjectResArgs(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsRefParamObjectArgs(); $this->url = ""; } } diff --git a/php-client-sdk/src/Models/Operations/FormQueryParamsRefParamObjectResArgs.php b/php-client-sdk/src/Models/Operations/FormQueryParamsRefParamObjectResArgs.php deleted file mode 100755 index 6f22c0374..000000000 --- a/php-client-sdk/src/Models/Operations/FormQueryParamsRefParamObjectResArgs.php +++ /dev/null @@ -1,42 +0,0 @@ -bool = ""; - $this->int = ""; - $this->num = ""; - $this->refObjParam = ""; - $this->str = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/GetGlobalNameOverride200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/GetGlobalNameOverride200ApplicationJSON.php deleted file mode 100755 index be91f0e89..000000000 --- a/php-client-sdk/src/Models/Operations/GetGlobalNameOverride200ApplicationJSON.php +++ /dev/null @@ -1,34 +0,0 @@ -json = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/GetGlobalNameOverrideResponse.php b/php-client-sdk/src/Models/Operations/GetGlobalNameOverrideResponse.php index dd692dc7b..918e56077 100755 --- a/php-client-sdk/src/Models/Operations/GetGlobalNameOverrideResponse.php +++ b/php-client-sdk/src/Models/Operations/GetGlobalNameOverrideResponse.php @@ -38,16 +38,16 @@ class GetGlobalNameOverrideResponse /** * A successful response that contains the simpleObject sent in the request body * - * @var ?\OpenAPI\OpenAPI\Models\Operations\GetGlobalNameOverride200ApplicationJSON $getGlobalNameOverride200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\GetGlobalNameOverrideResponseBody $object */ - public ?GetGlobalNameOverride200ApplicationJSON $getGlobalNameOverride200ApplicationJSONObject = null; + public ?GetGlobalNameOverrideResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->getGlobalNameOverride200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/GetGlobalNameOverrideResponseBody.php b/php-client-sdk/src/Models/Operations/GetGlobalNameOverrideResponseBody.php new file mode 100755 index 000000000..c1c8698d6 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/GetGlobalNameOverrideResponseBody.php @@ -0,0 +1,34 @@ +json = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/GlobalsQueryParameterGetRes.php b/php-client-sdk/src/Models/Operations/GlobalsQueryParameterGetRes.php index 3a1b4989d..bdf37b82d 100755 --- a/php-client-sdk/src/Models/Operations/GlobalsQueryParameterGetRes.php +++ b/php-client-sdk/src/Models/Operations/GlobalsQueryParameterGetRes.php @@ -18,11 +18,11 @@ class GlobalsQueryParameterGetRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\GlobalsQueryParameterGetResArgs')] - public GlobalsQueryParameterGetResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\Args')] + public Args $args; public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\GlobalsQueryParameterGetResArgs(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\Args(); } } diff --git a/php-client-sdk/src/Models/Operations/GlobalsQueryParameterGetResArgs.php b/php-client-sdk/src/Models/Operations/GlobalsQueryParameterGetResArgs.php deleted file mode 100755 index 77f2cb261..000000000 --- a/php-client-sdk/src/Models/Operations/GlobalsQueryParameterGetResArgs.php +++ /dev/null @@ -1,22 +0,0 @@ -globalQueryParam = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/HeaderParamsArrayRes.php b/php-client-sdk/src/Models/Operations/HeaderParamsArrayRes.php index d6deb616e..301ffe955 100755 --- a/php-client-sdk/src/Models/Operations/HeaderParamsArrayRes.php +++ b/php-client-sdk/src/Models/Operations/HeaderParamsArrayRes.php @@ -18,11 +18,11 @@ class HeaderParamsArrayRes { #[\JMS\Serializer\Annotation\SerializedName('headers')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\HeaderParamsArrayResHeaders')] - public HeaderParamsArrayResHeaders $headers; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\Headers')] + public Headers $headers; public function __construct() { - $this->headers = new \OpenAPI\OpenAPI\Models\Operations\HeaderParamsArrayResHeaders(); + $this->headers = new \OpenAPI\OpenAPI\Models\Operations\Headers(); } } diff --git a/php-client-sdk/src/Models/Operations/HeaderParamsArrayResHeaders.php b/php-client-sdk/src/Models/Operations/HeaderParamsArrayResHeaders.php deleted file mode 100755 index 536d52575..000000000 --- a/php-client-sdk/src/Models/Operations/HeaderParamsArrayResHeaders.php +++ /dev/null @@ -1,22 +0,0 @@ -xHeaderArray = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/HeaderParamsMapHeaders.php b/php-client-sdk/src/Models/Operations/HeaderParamsMapHeaders.php new file mode 100755 index 000000000..9ef8949b7 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/HeaderParamsMapHeaders.php @@ -0,0 +1,27 @@ +xHeaderMap = ""; + $this->xHeaderMapExplode = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/HeaderParamsMapRes.php b/php-client-sdk/src/Models/Operations/HeaderParamsMapRes.php index ab6c663d5..e72b754aa 100755 --- a/php-client-sdk/src/Models/Operations/HeaderParamsMapRes.php +++ b/php-client-sdk/src/Models/Operations/HeaderParamsMapRes.php @@ -18,11 +18,11 @@ class HeaderParamsMapRes { #[\JMS\Serializer\Annotation\SerializedName('headers')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\HeaderParamsMapResHeaders')] - public HeaderParamsMapResHeaders $headers; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\HeaderParamsMapHeaders')] + public HeaderParamsMapHeaders $headers; public function __construct() { - $this->headers = new \OpenAPI\OpenAPI\Models\Operations\HeaderParamsMapResHeaders(); + $this->headers = new \OpenAPI\OpenAPI\Models\Operations\HeaderParamsMapHeaders(); } } diff --git a/php-client-sdk/src/Models/Operations/HeaderParamsMapResHeaders.php b/php-client-sdk/src/Models/Operations/HeaderParamsMapResHeaders.php deleted file mode 100755 index ced07f649..000000000 --- a/php-client-sdk/src/Models/Operations/HeaderParamsMapResHeaders.php +++ /dev/null @@ -1,27 +0,0 @@ -xHeaderMap = ""; - $this->xHeaderMapExplode = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/HeaderParamsObjectHeaders.php b/php-client-sdk/src/Models/Operations/HeaderParamsObjectHeaders.php new file mode 100755 index 000000000..8110490e5 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/HeaderParamsObjectHeaders.php @@ -0,0 +1,27 @@ +xHeaderObj = ""; + $this->xHeaderObjExplode = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/HeaderParamsObjectRes.php b/php-client-sdk/src/Models/Operations/HeaderParamsObjectRes.php index da2d7625c..954ea06d8 100755 --- a/php-client-sdk/src/Models/Operations/HeaderParamsObjectRes.php +++ b/php-client-sdk/src/Models/Operations/HeaderParamsObjectRes.php @@ -18,11 +18,11 @@ class HeaderParamsObjectRes { #[\JMS\Serializer\Annotation\SerializedName('headers')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\HeaderParamsObjectResHeaders')] - public HeaderParamsObjectResHeaders $headers; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\HeaderParamsObjectHeaders')] + public HeaderParamsObjectHeaders $headers; public function __construct() { - $this->headers = new \OpenAPI\OpenAPI\Models\Operations\HeaderParamsObjectResHeaders(); + $this->headers = new \OpenAPI\OpenAPI\Models\Operations\HeaderParamsObjectHeaders(); } } diff --git a/php-client-sdk/src/Models/Operations/HeaderParamsObjectResHeaders.php b/php-client-sdk/src/Models/Operations/HeaderParamsObjectResHeaders.php deleted file mode 100755 index 5cc30ede0..000000000 --- a/php-client-sdk/src/Models/Operations/HeaderParamsObjectResHeaders.php +++ /dev/null @@ -1,27 +0,0 @@ -xHeaderObj = ""; - $this->xHeaderObjExplode = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/HeaderParamsPrimitiveHeaders.php b/php-client-sdk/src/Models/Operations/HeaderParamsPrimitiveHeaders.php new file mode 100755 index 000000000..ae58e6cc2 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/HeaderParamsPrimitiveHeaders.php @@ -0,0 +1,37 @@ +xHeaderBoolean = ""; + $this->xHeaderInteger = ""; + $this->xHeaderNumber = ""; + $this->xHeaderString = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/HeaderParamsPrimitiveRes.php b/php-client-sdk/src/Models/Operations/HeaderParamsPrimitiveRes.php index 9a75566a4..4cab1d688 100755 --- a/php-client-sdk/src/Models/Operations/HeaderParamsPrimitiveRes.php +++ b/php-client-sdk/src/Models/Operations/HeaderParamsPrimitiveRes.php @@ -18,11 +18,11 @@ class HeaderParamsPrimitiveRes { #[\JMS\Serializer\Annotation\SerializedName('headers')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\HeaderParamsPrimitiveResHeaders')] - public HeaderParamsPrimitiveResHeaders $headers; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\HeaderParamsPrimitiveHeaders')] + public HeaderParamsPrimitiveHeaders $headers; public function __construct() { - $this->headers = new \OpenAPI\OpenAPI\Models\Operations\HeaderParamsPrimitiveResHeaders(); + $this->headers = new \OpenAPI\OpenAPI\Models\Operations\HeaderParamsPrimitiveHeaders(); } } diff --git a/php-client-sdk/src/Models/Operations/HeaderParamsPrimitiveResHeaders.php b/php-client-sdk/src/Models/Operations/HeaderParamsPrimitiveResHeaders.php deleted file mode 100755 index 0ef11dd5c..000000000 --- a/php-client-sdk/src/Models/Operations/HeaderParamsPrimitiveResHeaders.php +++ /dev/null @@ -1,37 +0,0 @@ -xHeaderBoolean = ""; - $this->xHeaderInteger = ""; - $this->xHeaderNumber = ""; - $this->xHeaderString = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/Headers.php b/php-client-sdk/src/Models/Operations/Headers.php new file mode 100755 index 000000000..a7435630f --- /dev/null +++ b/php-client-sdk/src/Models/Operations/Headers.php @@ -0,0 +1,22 @@ +xHeaderArray = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/IgnoredGenerationGet200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/IgnoredGenerationGet200ApplicationJSON.php deleted file mode 100755 index 1e61b0e34..000000000 --- a/php-client-sdk/src/Models/Operations/IgnoredGenerationGet200ApplicationJSON.php +++ /dev/null @@ -1,34 +0,0 @@ -json = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/IgnoredGenerationGetResponse.php b/php-client-sdk/src/Models/Operations/IgnoredGenerationGetResponse.php index 3fdc22542..ff11d7b58 100755 --- a/php-client-sdk/src/Models/Operations/IgnoredGenerationGetResponse.php +++ b/php-client-sdk/src/Models/Operations/IgnoredGenerationGetResponse.php @@ -38,16 +38,16 @@ class IgnoredGenerationGetResponse /** * A successful response that contains the simpleObject sent in the request body * - * @var ?\OpenAPI\OpenAPI\Models\Operations\IgnoredGenerationGet200ApplicationJSON $ignoredGenerationGet200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\IgnoredGenerationGetResponseBody $object */ - public ?IgnoredGenerationGet200ApplicationJSON $ignoredGenerationGet200ApplicationJSONObject = null; + public ?IgnoredGenerationGetResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->ignoredGenerationGet200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/IgnoredGenerationGetResponseBody.php b/php-client-sdk/src/Models/Operations/IgnoredGenerationGetResponseBody.php new file mode 100755 index 000000000..d059e5a1f --- /dev/null +++ b/php-client-sdk/src/Models/Operations/IgnoredGenerationGetResponseBody.php @@ -0,0 +1,34 @@ +json = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/IgnoresPostApplicationJSON.php b/php-client-sdk/src/Models/Operations/IgnoresPostApplicationJSON.php deleted file mode 100755 index a2d4628b4..000000000 --- a/php-client-sdk/src/Models/Operations/IgnoresPostApplicationJSON.php +++ /dev/null @@ -1,29 +0,0 @@ -callbackUrl = null; - $this->testProp = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/IgnoresPostRequest.php b/php-client-sdk/src/Models/Operations/IgnoresPostRequest.php index 05a6a4289..8765e14b0 100755 --- a/php-client-sdk/src/Models/Operations/IgnoresPostRequest.php +++ b/php-client-sdk/src/Models/Operations/IgnoresPostRequest.php @@ -12,14 +12,14 @@ class IgnoresPostRequest { #[SpeakeasyMetadata('request:mediaType=application/json')] - public IgnoresPostApplicationJSON $requestBody; + public IgnoresPostRequestBody $requestBody; #[SpeakeasyMetadata('queryParam:style=form,explode=true,name=testParam')] public ?string $testParam = null; public function __construct() { - $this->requestBody = new \OpenAPI\OpenAPI\Models\Operations\IgnoresPostApplicationJSON(); + $this->requestBody = new \OpenAPI\OpenAPI\Models\Operations\IgnoresPostRequestBody(); $this->testParam = null; } } diff --git a/php-client-sdk/src/Models/Operations/IgnoresPostRequestBody.php b/php-client-sdk/src/Models/Operations/IgnoresPostRequestBody.php new file mode 100755 index 000000000..55d552469 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/IgnoresPostRequestBody.php @@ -0,0 +1,29 @@ +callbackUrl = null; + $this->testProp = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/InlineBodyAndParamConflictRes.php b/php-client-sdk/src/Models/Operations/InlineBodyAndParamConflictRes.php index 3fb9afdc1..dc190a20b 100755 --- a/php-client-sdk/src/Models/Operations/InlineBodyAndParamConflictRes.php +++ b/php-client-sdk/src/Models/Operations/InlineBodyAndParamConflictRes.php @@ -27,12 +27,12 @@ class InlineBodyAndParamConflictRes public array $args; #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamConflictResJson')] - public InlineBodyAndParamConflictResJson $json; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\Json')] + public Json $json; public function __construct() { $this->args = []; - $this->json = new \OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamConflictResJson(); + $this->json = new \OpenAPI\OpenAPI\Models\Operations\Json(); } } diff --git a/php-client-sdk/src/Models/Operations/InlineBodyAndParamConflictResJson.php b/php-client-sdk/src/Models/Operations/InlineBodyAndParamConflictResJson.php deleted file mode 100755 index 7e11948a9..000000000 --- a/php-client-sdk/src/Models/Operations/InlineBodyAndParamConflictResJson.php +++ /dev/null @@ -1,22 +0,0 @@ -str = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/InlineBodyAndParamNoConflictJson.php b/php-client-sdk/src/Models/Operations/InlineBodyAndParamNoConflictJson.php new file mode 100755 index 000000000..bf83f623a --- /dev/null +++ b/php-client-sdk/src/Models/Operations/InlineBodyAndParamNoConflictJson.php @@ -0,0 +1,22 @@ +bodyStr = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/InlineBodyAndParamNoConflictRes.php b/php-client-sdk/src/Models/Operations/InlineBodyAndParamNoConflictRes.php index 09380242a..5a2e396a1 100755 --- a/php-client-sdk/src/Models/Operations/InlineBodyAndParamNoConflictRes.php +++ b/php-client-sdk/src/Models/Operations/InlineBodyAndParamNoConflictRes.php @@ -27,12 +27,12 @@ class InlineBodyAndParamNoConflictRes public array $args; #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamNoConflictResJson')] - public InlineBodyAndParamNoConflictResJson $json; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamNoConflictJson')] + public InlineBodyAndParamNoConflictJson $json; public function __construct() { $this->args = []; - $this->json = new \OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamNoConflictResJson(); + $this->json = new \OpenAPI\OpenAPI\Models\Operations\InlineBodyAndParamNoConflictJson(); } } diff --git a/php-client-sdk/src/Models/Operations/InlineBodyAndParamNoConflictResJson.php b/php-client-sdk/src/Models/Operations/InlineBodyAndParamNoConflictResJson.php deleted file mode 100755 index 604def2b6..000000000 --- a/php-client-sdk/src/Models/Operations/InlineBodyAndParamNoConflictResJson.php +++ /dev/null @@ -1,22 +0,0 @@ -bodyStr = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/Json.php b/php-client-sdk/src/Models/Operations/Json.php new file mode 100755 index 000000000..41c4da503 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/Json.php @@ -0,0 +1,22 @@ +str = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/JsonQueryParamsObjectArgs.php b/php-client-sdk/src/Models/Operations/JsonQueryParamsObjectArgs.php new file mode 100755 index 000000000..fbba46741 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/JsonQueryParamsObjectArgs.php @@ -0,0 +1,27 @@ +deepObjParam = ""; + $this->simpleObjParam = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/JsonQueryParamsObjectRes.php b/php-client-sdk/src/Models/Operations/JsonQueryParamsObjectRes.php index 31c8887b9..c72b5307e 100755 --- a/php-client-sdk/src/Models/Operations/JsonQueryParamsObjectRes.php +++ b/php-client-sdk/src/Models/Operations/JsonQueryParamsObjectRes.php @@ -18,8 +18,8 @@ class JsonQueryParamsObjectRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\JsonQueryParamsObjectResArgs')] - public JsonQueryParamsObjectResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\JsonQueryParamsObjectArgs')] + public JsonQueryParamsObjectArgs $args; #[\JMS\Serializer\Annotation\SerializedName('url')] #[\JMS\Serializer\Annotation\Type('string')] @@ -27,7 +27,7 @@ class JsonQueryParamsObjectRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\JsonQueryParamsObjectResArgs(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\JsonQueryParamsObjectArgs(); $this->url = ""; } } diff --git a/php-client-sdk/src/Models/Operations/JsonQueryParamsObjectResArgs.php b/php-client-sdk/src/Models/Operations/JsonQueryParamsObjectResArgs.php deleted file mode 100755 index dcae70d37..000000000 --- a/php-client-sdk/src/Models/Operations/JsonQueryParamsObjectResArgs.php +++ /dev/null @@ -1,27 +0,0 @@ -deepObjParam = ""; - $this->simpleObjParam = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseArgs.php b/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseArgs.php new file mode 100755 index 000000000..5f2df7335 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseArgs.php @@ -0,0 +1,22 @@ +queryStringParam = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseHeaders.php b/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseHeaders.php new file mode 100755 index 000000000..6aef9cc5e --- /dev/null +++ b/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseHeaders.php @@ -0,0 +1,22 @@ +headerParam = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseRes.php b/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseRes.php index 5daa15480..722128e17 100755 --- a/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseRes.php +++ b/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseRes.php @@ -18,12 +18,12 @@ class MixedParametersCamelCaseRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseResArgs')] - public MixedParametersCamelCaseResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseArgs')] + public MixedParametersCamelCaseArgs $args; #[\JMS\Serializer\Annotation\SerializedName('headers')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseResHeaders')] - public MixedParametersCamelCaseResHeaders $headers; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseHeaders')] + public MixedParametersCamelCaseHeaders $headers; #[\JMS\Serializer\Annotation\SerializedName('url')] #[\JMS\Serializer\Annotation\Type('string')] @@ -31,8 +31,8 @@ class MixedParametersCamelCaseRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseResArgs(); - $this->headers = new \OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseResHeaders(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseArgs(); + $this->headers = new \OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseHeaders(); $this->url = ""; } } diff --git a/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseResArgs.php b/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseResArgs.php deleted file mode 100755 index db65bfdaf..000000000 --- a/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseResArgs.php +++ /dev/null @@ -1,22 +0,0 @@ -queryStringParam = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseResHeaders.php b/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseResHeaders.php deleted file mode 100755 index fd5cdf613..000000000 --- a/php-client-sdk/src/Models/Operations/MixedParametersCamelCaseResHeaders.php +++ /dev/null @@ -1,22 +0,0 @@ -headerParam = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesArgs.php b/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesArgs.php new file mode 100755 index 000000000..5841c5b99 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesArgs.php @@ -0,0 +1,22 @@ +queryStringParam = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesHeaders.php b/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesHeaders.php new file mode 100755 index 000000000..1c58ae054 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesHeaders.php @@ -0,0 +1,22 @@ +headerparam = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesRes.php b/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesRes.php index 39d4a6e73..d0fdd8508 100755 --- a/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesRes.php +++ b/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesRes.php @@ -18,12 +18,12 @@ class MixedParametersPrimitivesRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesResArgs')] - public MixedParametersPrimitivesResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesArgs')] + public MixedParametersPrimitivesArgs $args; #[\JMS\Serializer\Annotation\SerializedName('headers')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesResHeaders')] - public MixedParametersPrimitivesResHeaders $headers; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesHeaders')] + public MixedParametersPrimitivesHeaders $headers; #[\JMS\Serializer\Annotation\SerializedName('url')] #[\JMS\Serializer\Annotation\Type('string')] @@ -31,8 +31,8 @@ class MixedParametersPrimitivesRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesResArgs(); - $this->headers = new \OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesResHeaders(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesArgs(); + $this->headers = new \OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesHeaders(); $this->url = ""; } } diff --git a/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesResArgs.php b/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesResArgs.php deleted file mode 100755 index 2245bd926..000000000 --- a/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesResArgs.php +++ /dev/null @@ -1,22 +0,0 @@ -queryStringParam = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesResHeaders.php b/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesResHeaders.php deleted file mode 100755 index 4fbf1c80d..000000000 --- a/php-client-sdk/src/Models/Operations/MixedParametersPrimitivesResHeaders.php +++ /dev/null @@ -1,22 +0,0 @@ -headerparam = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/NameOverrideGetEnumNameOverride.php b/php-client-sdk/src/Models/Operations/NameOverrideGetEnumNameOverride.php deleted file mode 100755 index 8b6168ee9..000000000 --- a/php-client-sdk/src/Models/Operations/NameOverrideGetEnumNameOverride.php +++ /dev/null @@ -1,18 +0,0 @@ -json = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/NameOverrideGetRequest.php b/php-client-sdk/src/Models/Operations/NameOverrideGetRequest.php index 45a7e3416..494365ee2 100755 --- a/php-client-sdk/src/Models/Operations/NameOverrideGetRequest.php +++ b/php-client-sdk/src/Models/Operations/NameOverrideGetRequest.php @@ -14,17 +14,17 @@ class NameOverrideGetRequest /** * An enum type * - * @var \OpenAPI\OpenAPI\Models\Operations\NameOverrideGetEnumNameOverride $testEnumQueryParam + * @var \OpenAPI\OpenAPI\Models\Operations\EnumNameOverride $testEnumQueryParam */ #[SpeakeasyMetadata('queryParam:style=form,explode=true,name=enumNameOverride')] - public NameOverrideGetEnumNameOverride $testEnumQueryParam; + public EnumNameOverride $testEnumQueryParam; #[SpeakeasyMetadata('queryParam:style=form,explode=true,name=nameOverride')] public string $testQueryParam; public function __construct() { - $this->testEnumQueryParam = \OpenAPI\OpenAPI\Models\Operations\NameOverrideGetEnumNameOverride::Value1; + $this->testEnumQueryParam = \OpenAPI\OpenAPI\Models\Operations\EnumNameOverride::Value1; $this->testQueryParam = ""; } } diff --git a/php-client-sdk/src/Models/Operations/NameOverrideGetResponse.php b/php-client-sdk/src/Models/Operations/NameOverrideGetResponse.php index 81506ea6b..ac41f5245 100755 --- a/php-client-sdk/src/Models/Operations/NameOverrideGetResponse.php +++ b/php-client-sdk/src/Models/Operations/NameOverrideGetResponse.php @@ -38,10 +38,10 @@ class NameOverrideGetResponse /** * A successful response that contains the simpleObject sent in the request body * - * @var ?\OpenAPI\OpenAPI\Models\Operations\OverriddenResponse $overriddenResponse + * @var ?\OpenAPI\OpenAPI\Models\Operations\NameOverrideGetOverriddenResponse $overriddenResponse */ - public ?OverriddenResponse $overriddenResponse = null; + public ?NameOverrideGetOverriddenResponse $overriddenResponse = null; public function __construct() { diff --git a/php-client-sdk/src/Models/Operations/NullableOptionalObj.php b/php-client-sdk/src/Models/Operations/NullableOptionalObj.php new file mode 100755 index 000000000..94bbcd0a4 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/NullableOptionalObj.php @@ -0,0 +1,17 @@ +nullableOptionalObj = null; - $this->nullableRequiredObj = new \OpenAPI\OpenAPI\Models\Operations\NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj(); - $this->requiredObj = new \OpenAPI\OpenAPI\Models\Operations\NullableRequiredEmptyObjectPostRequestBodyRequiredObj(); + $this->nullableRequiredObj = new \OpenAPI\OpenAPI\Models\Operations\NullableRequiredObj(); + $this->requiredObj = new \OpenAPI\OpenAPI\Models\Operations\RequiredObj(); } } diff --git a/php-client-sdk/src/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.php b/php-client-sdk/src/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.php deleted file mode 100755 index 14f578f23..000000000 --- a/php-client-sdk/src/Models/Operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.php +++ /dev/null @@ -1,17 +0,0 @@ -contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->nullableRequiredEmptyObjectPost200ApplicationJSONString = null; + $this->res = null; } } diff --git a/php-client-sdk/src/Models/Operations/NullableRequiredEnum.php b/php-client-sdk/src/Models/Operations/NullableRequiredEnum.php new file mode 100755 index 000000000..45855200b --- /dev/null +++ b/php-client-sdk/src/Models/Operations/NullableRequiredEnum.php @@ -0,0 +1,16 @@ +')] - public NullableRequiredPropertyPostRequestBodyNullableRequiredEnum $nullableRequiredEnum; + #[\JMS\Serializer\Annotation\Type('enum')] + public NullableRequiredEnum $nullableRequiredEnum; #[\JMS\Serializer\Annotation\SerializedName('NullableRequiredInt')] #[\JMS\Serializer\Annotation\Type('int')] @@ -37,7 +37,7 @@ public function __construct() { $this->nullableOptionalInt = null; $this->nullableRequiredArray = []; - $this->nullableRequiredEnum = \OpenAPI\OpenAPI\Models\Operations\NullableRequiredPropertyPostRequestBodyNullableRequiredEnum::First; + $this->nullableRequiredEnum = \OpenAPI\OpenAPI\Models\Operations\NullableRequiredEnum::First; $this->nullableRequiredInt = 0; } } diff --git a/php-client-sdk/src/Models/Operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.php b/php-client-sdk/src/Models/Operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.php deleted file mode 100755 index 417a27458..000000000 --- a/php-client-sdk/src/Models/Operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.php +++ /dev/null @@ -1,16 +0,0 @@ -contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->nullableRequiredPropertyPost200ApplicationJSONString = null; + $this->res = null; } } diff --git a/php-client-sdk/src/Models/Operations/NullableRequiredSharedObjectPostResponse.php b/php-client-sdk/src/Models/Operations/NullableRequiredSharedObjectPostResponse.php index 90f4b2d54..561b57b7c 100755 --- a/php-client-sdk/src/Models/Operations/NullableRequiredSharedObjectPostResponse.php +++ b/php-client-sdk/src/Models/Operations/NullableRequiredSharedObjectPostResponse.php @@ -38,16 +38,16 @@ class NullableRequiredSharedObjectPostResponse /** * OK * - * @var ?string $nullableRequiredSharedObjectPost200ApplicationJSONString + * @var ?string $res */ - public ?string $nullableRequiredSharedObjectPost200ApplicationJSONString = null; + public ?string $res = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->nullableRequiredSharedObjectPost200ApplicationJSONString = null; + $this->res = null; } } diff --git a/php-client-sdk/src/Models/Operations/Obj.php b/php-client-sdk/src/Models/Operations/Obj.php new file mode 100755 index 000000000..def7cf38f --- /dev/null +++ b/php-client-sdk/src/Models/Operations/Obj.php @@ -0,0 +1,35 @@ +bool = false; + $this->num = 0; + $this->str = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/ObjArrParam.php b/php-client-sdk/src/Models/Operations/ObjArrParam.php new file mode 100755 index 000000000..e9ab0e9cd --- /dev/null +++ b/php-client-sdk/src/Models/Operations/ObjArrParam.php @@ -0,0 +1,32 @@ + $arr + */ + #[SpeakeasyMetadata('queryParam:name=arr')] + public ?array $arr = null; + + public function __construct() + { + $this->arr = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/ObjParam.php b/php-client-sdk/src/Models/Operations/ObjParam.php new file mode 100755 index 000000000..f3ee32555 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/ObjParam.php @@ -0,0 +1,31 @@ +encodedCount = null; + $this->encodedTerm = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/ObjParamExploded.php b/php-client-sdk/src/Models/Operations/ObjParamExploded.php new file mode 100755 index 000000000..a378971a9 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/ObjParamExploded.php @@ -0,0 +1,31 @@ +itemCount = null; + $this->searchTerm = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/OptEnumParameter.php b/php-client-sdk/src/Models/Operations/OptEnumParameter.php new file mode 100755 index 000000000..9a4345a5d --- /dev/null +++ b/php-client-sdk/src/Models/Operations/OptEnumParameter.php @@ -0,0 +1,18 @@ +json = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/PipeDelimitedQueryParamsArrayArgs.php b/php-client-sdk/src/Models/Operations/PipeDelimitedQueryParamsArrayArgs.php new file mode 100755 index 000000000..a4982160d --- /dev/null +++ b/php-client-sdk/src/Models/Operations/PipeDelimitedQueryParamsArrayArgs.php @@ -0,0 +1,32 @@ + $arrParamExploded + */ + #[\JMS\Serializer\Annotation\SerializedName('arrParamExploded')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $arrParamExploded; + + public function __construct() + { + $this->arrParam = ""; + $this->arrParamExploded = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/PipeDelimitedQueryParamsArrayRes.php b/php-client-sdk/src/Models/Operations/PipeDelimitedQueryParamsArrayRes.php index eed42332d..eac4c067d 100755 --- a/php-client-sdk/src/Models/Operations/PipeDelimitedQueryParamsArrayRes.php +++ b/php-client-sdk/src/Models/Operations/PipeDelimitedQueryParamsArrayRes.php @@ -18,8 +18,8 @@ class PipeDelimitedQueryParamsArrayRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\PipeDelimitedQueryParamsArrayResArgs')] - public PipeDelimitedQueryParamsArrayResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\PipeDelimitedQueryParamsArrayArgs')] + public PipeDelimitedQueryParamsArrayArgs $args; #[\JMS\Serializer\Annotation\SerializedName('url')] #[\JMS\Serializer\Annotation\Type('string')] @@ -27,7 +27,7 @@ class PipeDelimitedQueryParamsArrayRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\PipeDelimitedQueryParamsArrayResArgs(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\PipeDelimitedQueryParamsArrayArgs(); $this->url = ""; } } diff --git a/php-client-sdk/src/Models/Operations/PipeDelimitedQueryParamsArrayResArgs.php b/php-client-sdk/src/Models/Operations/PipeDelimitedQueryParamsArrayResArgs.php deleted file mode 100755 index 4e0682d83..000000000 --- a/php-client-sdk/src/Models/Operations/PipeDelimitedQueryParamsArrayResArgs.php +++ /dev/null @@ -1,32 +0,0 @@ - $arrParamExploded - */ - #[\JMS\Serializer\Annotation\SerializedName('arrParamExploded')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $arrParamExploded; - - public function __construct() - { - $this->arrParam = ""; - $this->arrParamExploded = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/PutAnythingIgnoredGeneration200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/PutAnythingIgnoredGeneration200ApplicationJSON.php deleted file mode 100755 index afe024fb4..000000000 --- a/php-client-sdk/src/Models/Operations/PutAnythingIgnoredGeneration200ApplicationJSON.php +++ /dev/null @@ -1,29 +0,0 @@ -json = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/PutAnythingIgnoredGenerationResponse.php b/php-client-sdk/src/Models/Operations/PutAnythingIgnoredGenerationResponse.php index f27b065f7..15e9c76a4 100755 --- a/php-client-sdk/src/Models/Operations/PutAnythingIgnoredGenerationResponse.php +++ b/php-client-sdk/src/Models/Operations/PutAnythingIgnoredGenerationResponse.php @@ -38,16 +38,16 @@ class PutAnythingIgnoredGenerationResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\PutAnythingIgnoredGeneration200ApplicationJSON $putAnythingIgnoredGeneration200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\PutAnythingIgnoredGenerationResponseBody $object */ - public ?PutAnythingIgnoredGeneration200ApplicationJSON $putAnythingIgnoredGeneration200ApplicationJSONObject = null; + public ?PutAnythingIgnoredGenerationResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->putAnythingIgnoredGeneration200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/PutAnythingIgnoredGenerationResponseBody.php b/php-client-sdk/src/Models/Operations/PutAnythingIgnoredGenerationResponseBody.php new file mode 100755 index 000000000..dcd2f492c --- /dev/null +++ b/php-client-sdk/src/Models/Operations/PutAnythingIgnoredGenerationResponseBody.php @@ -0,0 +1,29 @@ +json = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.php index 891c7da12..191b4d556 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostApplicationJsonArrayCamelCaseResponse /** * OK * - * @var ?array<\OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase> $simpleObjectCamelCases + * @var ?array<\OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCase> $res */ - public ?array $simpleObjectCamelCases = null; + public ?array $res = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->simpleObjectCamelCases = null; + $this->res = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.php index fa943a1f8..e665abf53 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse /** * OK * - * @var ?array> $arrs + * @var ?array> $res */ - public ?array $arrs = null; + public ?array $res = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->arrs = null; + $this->res = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.php index 41996d175..7f21bdb91 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse /** * OK * - * @var ?array> $arrs + * @var ?array> $res */ - public ?array $arrs = null; + public ?array $res = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->arrs = null; + $this->res = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.php index 4ca695c71..b263ed864 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostApplicationJsonArrayOfArrayResponse /** * OK * - * @var ?array> $arrs + * @var ?array> $res */ - public ?array $arrs = null; + public ?array $res = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->arrs = null; + $this->res = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.php index 0026f86db..0636161b7 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse /** * OK * - * @var ?array> $maps + * @var ?array> $res */ - public ?array $maps = null; + public ?array $res = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->maps = null; + $this->res = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.php index 66b30417c..205eb4a79 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostApplicationJsonArrayOfMapResponse /** * OK * - * @var ?array> $maps + * @var ?array> $res */ - public ?array $maps = null; + public ?array $res = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->maps = null; + $this->res = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.php index deb9eaf9d..89fd2381c 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostApplicationJsonArrayOfPrimitiveResponse /** * OK * - * @var ?array $strings + * @var ?array $res */ - public ?array $strings = null; + public ?array $res = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->strings = null; + $this->res = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.php index b573206e3..22eb9d14e 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostApplicationJsonArrayResponse /** * OK * - * @var ?array<\OpenAPI\OpenAPI\Models\Shared\SimpleObject> $simpleObjects + * @var ?array<\OpenAPI\OpenAPI\Models\Shared\SimpleObject> $res */ - public ?array $simpleObjects = null; + public ?array $res = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->simpleObjects = null; + $this->res = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.php deleted file mode 100755 index 7aa2f9848..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.php +++ /dev/null @@ -1,33 +0,0 @@ -json = new \OpenAPI\OpenAPI\Models\Shared\ComplexNumberTypes(); - $this->url = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostComplexNumberTypesResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostComplexNumberTypesResponse.php index 4c6151e7f..6313e8994 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostComplexNumberTypesResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostComplexNumberTypesResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostComplexNumberTypesResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostComplexNumberTypes200ApplicationJSON $requestBodyPostComplexNumberTypes200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostComplexNumberTypesResponseBody $object */ - public ?RequestBodyPostComplexNumberTypes200ApplicationJSON $requestBodyPostComplexNumberTypes200ApplicationJSONObject = null; + public ?RequestBodyPostComplexNumberTypesResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostComplexNumberTypes200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostComplexNumberTypesResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostComplexNumberTypesResponseBody.php new file mode 100755 index 000000000..6738952bd --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostComplexNumberTypesResponseBody.php @@ -0,0 +1,33 @@ +json = new \OpenAPI\OpenAPI\Models\Shared\ComplexNumberTypes(); + $this->url = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.php deleted file mode 100755 index 1110ca9bb..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -json = new \OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsOutput(); - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.php index 542531e9f..5d6bf5271 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostDefaultsAndConstsResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostDefaultsAndConsts200ApplicationJSON $requestBodyPostDefaultsAndConsts200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostDefaultsAndConstsResponseBody $object */ - public ?RequestBodyPostDefaultsAndConsts200ApplicationJSON $requestBodyPostDefaultsAndConsts200ApplicationJSONObject = null; + public ?RequestBodyPostDefaultsAndConstsResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostDefaultsAndConsts200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostDefaultsAndConstsResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostDefaultsAndConstsResponseBody.php new file mode 100755 index 000000000..f43a1dc1c --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostDefaultsAndConstsResponseBody.php @@ -0,0 +1,28 @@ +json = new \OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsOutput(); + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSON.php deleted file mode 100755 index 225590f41..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSON.php +++ /dev/null @@ -1,35 +0,0 @@ -empty = null; - $this->emptyRespWithEmptyProperies = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.php b/php-client-sdk/src/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.php deleted file mode 100755 index f02eb612f..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.php +++ /dev/null @@ -1,17 +0,0 @@ -contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostEmptyObject200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostEmptyObjectResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostEmptyObjectResponseBody.php new file mode 100755 index 000000000..84373b367 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostEmptyObjectResponseBody.php @@ -0,0 +1,35 @@ +empty = null; + $this->emptyRespWithEmptyProperies = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostFormDeepRes.php b/php-client-sdk/src/Models/Operations/RequestBodyPostFormDeepRes.php index 5da156b63..95ff8d1a6 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostFormDeepRes.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostFormDeepRes.php @@ -18,11 +18,11 @@ class RequestBodyPostFormDeepRes { #[\JMS\Serializer\Annotation\SerializedName('form')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormDeepResForm')] - public RequestBodyPostFormDeepResForm $form; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\Form')] + public Form $form; public function __construct() { - $this->form = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormDeepResForm(); + $this->form = new \OpenAPI\OpenAPI\Models\Operations\Form(); } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostFormDeepResForm.php b/php-client-sdk/src/Models/Operations/RequestBodyPostFormDeepResForm.php deleted file mode 100755 index a098a8468..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostFormDeepResForm.php +++ /dev/null @@ -1,52 +0,0 @@ -arr = ""; - $this->bool = ""; - $this->int = ""; - $this->map = ""; - $this->num = ""; - $this->obj = ""; - $this->str = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleForm.php b/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleForm.php new file mode 100755 index 000000000..4409cb400 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleForm.php @@ -0,0 +1,91 @@ +any = ""; + $this->bool = ""; + $this->boolOpt = null; + $this->date = ""; + $this->dateTime = ""; + $this->enum = ""; + $this->float32 = ""; + $this->int = ""; + $this->int32 = ""; + $this->intOptNull = null; + $this->num = ""; + $this->numOptNull = null; + $this->str = ""; + $this->strOpt = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleHeaders.php b/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleHeaders.php new file mode 100755 index 000000000..01914d29c --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleHeaders.php @@ -0,0 +1,22 @@ +contentType = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleRes.php b/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleRes.php index 0becb9d45..fd46e6677 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleRes.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleRes.php @@ -18,16 +18,16 @@ class RequestBodyPostFormSimpleRes { #[\JMS\Serializer\Annotation\SerializedName('form')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleResForm')] - public RequestBodyPostFormSimpleResForm $form; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleForm')] + public RequestBodyPostFormSimpleForm $form; #[\JMS\Serializer\Annotation\SerializedName('headers')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleResHeaders')] - public RequestBodyPostFormSimpleResHeaders $headers; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleHeaders')] + public RequestBodyPostFormSimpleHeaders $headers; public function __construct() { - $this->form = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleResForm(); - $this->headers = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleResHeaders(); + $this->form = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleForm(); + $this->headers = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleHeaders(); } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleResForm.php b/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleResForm.php deleted file mode 100755 index f4e705a2e..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleResForm.php +++ /dev/null @@ -1,91 +0,0 @@ -any = ""; - $this->bool = ""; - $this->boolOpt = null; - $this->date = ""; - $this->dateTime = ""; - $this->enum = ""; - $this->float32 = ""; - $this->int = ""; - $this->int32 = ""; - $this->intOptNull = null; - $this->num = ""; - $this->numOptNull = null; - $this->str = ""; - $this->strOpt = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleResHeaders.php b/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleResHeaders.php deleted file mode 100755 index feb535ecb..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostFormSimpleResHeaders.php +++ /dev/null @@ -1,22 +0,0 @@ -contentType = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.php deleted file mode 100755 index 68505ed91..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.php +++ /dev/null @@ -1,38 +0,0 @@ - $json - */ - #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $json; - - public function __construct() - { - $this->data = ""; - $this->json = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.php deleted file mode 100755 index a505a3b72..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.php +++ /dev/null @@ -1,38 +0,0 @@ - $json - */ - #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $json; - - public function __construct() - { - $this->data = ""; - $this->json = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.php deleted file mode 100755 index 5ff3155ba..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.php +++ /dev/null @@ -1,38 +0,0 @@ - $json - */ - #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $json; - - public function __construct() - { - $this->data = ""; - $this->json = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.php deleted file mode 100755 index 182cec3d6..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.php +++ /dev/null @@ -1,33 +0,0 @@ -data = ""; - $this->json = 0; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.php deleted file mode 100755 index 63a964e17..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.php +++ /dev/null @@ -1,33 +0,0 @@ -data = ""; - $this->json = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.php deleted file mode 100755 index 444617d2b..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -json = false; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.php deleted file mode 100755 index 96e81847b..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.php +++ /dev/null @@ -1,33 +0,0 @@ -")] - public \DateTime $json; - - public function __construct() - { - $this->data = ""; - $this->json = new \DateTime(); - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.php deleted file mode 100755 index 13236d856..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.php +++ /dev/null @@ -1,33 +0,0 @@ -")] - public \DateTime $json; - - public function __construct() - { - $this->data = ""; - $this->json = new \DateTime(); - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.php deleted file mode 100755 index a6e470722..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.php +++ /dev/null @@ -1,33 +0,0 @@ -data = ""; - $this->json = 0; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.php deleted file mode 100755 index 3a6f32fb3..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.php +++ /dev/null @@ -1,33 +0,0 @@ -data = ""; - $this->json = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.php deleted file mode 100755 index 2edc0ae29..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -json = 0; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.php deleted file mode 100755 index aadc07f68..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -json = 0; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.php deleted file mode 100755 index 52a3562be..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -json = 0; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.php deleted file mode 100755 index a2663f44f..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.php +++ /dev/null @@ -1,38 +0,0 @@ - $json - */ - #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $json; - - public function __construct() - { - $this->data = ""; - $this->json = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.php deleted file mode 100755 index d547fb2df..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.php +++ /dev/null @@ -1,38 +0,0 @@ - $json - */ - #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $json; - - public function __construct() - { - $this->data = ""; - $this->json = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.php deleted file mode 100755 index ab79e82f5..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.php +++ /dev/null @@ -1,38 +0,0 @@ - $json - */ - #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $json; - - public function __construct() - { - $this->data = ""; - $this->json = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.php deleted file mode 100755 index 218fffdec..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -json = 0; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.php deleted file mode 100755 index dac1503f5..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -json = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.php index 1adca2346..ee95e584a 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesArrayBigIntResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON $requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayBigIntResponseBody $object */ - public ?RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON $requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesArrayBigIntResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.php new file mode 100755 index 000000000..a0bb2082d --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.php @@ -0,0 +1,38 @@ + $json + */ + #[\JMS\Serializer\Annotation\SerializedName('json')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $json; + + public function __construct() + { + $this->data = ""; + $this->json = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.php index 733c0ecf6..6d8bd6327 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesArrayDateResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON $requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayDateResponseBody $object */ - public ?RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON $requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesArrayDateResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.php new file mode 100755 index 000000000..c3aec30dd --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.php @@ -0,0 +1,38 @@ + $json + */ + #[\JMS\Serializer\Annotation\SerializedName('json')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $json; + + public function __construct() + { + $this->data = ""; + $this->json = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.php index e6e967a43..c6689efb9 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesArrayDecimalStrResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON $requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody $object */ - public ?RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON $requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.php new file mode 100755 index 000000000..f3e7a1e74 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.php @@ -0,0 +1,38 @@ + $json + */ + #[\JMS\Serializer\Annotation\SerializedName('json')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $json; + + public function __construct() + { + $this->data = ""; + $this->json = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.php index fa7e72066..12a7898eb 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesBigIntResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesBigInt200ApplicationJSON $requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBigIntResponseBody $object */ - public ?RequestBodyPostJSONDataTypesBigInt200ApplicationJSON $requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesBigIntResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponseBody.php new file mode 100755 index 000000000..641ff9857 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponseBody.php @@ -0,0 +1,33 @@ +data = ""; + $this->json = 0; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.php index f58f19dd5..4837ec5ee 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesBigIntStrResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON $requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBigIntStrResponseBody $object */ - public ?RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON $requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesBigIntStrResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.php new file mode 100755 index 000000000..482136409 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.php @@ -0,0 +1,33 @@ +data = ""; + $this->json = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.php index 304d89349..a2d7f049d 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesBooleanResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesBoolean200ApplicationJSON $requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBooleanResponseBody $object */ - public ?RequestBodyPostJSONDataTypesBoolean200ApplicationJSON $requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesBooleanResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponseBody.php new file mode 100755 index 000000000..bf159696d --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponseBody.php @@ -0,0 +1,28 @@ +json = false; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.php index 34a5784cf..1fde438b7 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesDateResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesDate200ApplicationJSON $requestBodyPostJSONDataTypesDate200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDateResponseBody $object */ - public ?RequestBodyPostJSONDataTypesDate200ApplicationJSON $requestBodyPostJSONDataTypesDate200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesDateResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesDate200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateResponseBody.php new file mode 100755 index 000000000..fb248b15b --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateResponseBody.php @@ -0,0 +1,33 @@ +")] + public \DateTime $json; + + public function __construct() + { + $this->data = ""; + $this->json = new \DateTime(); + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.php index 729b1f006..0f721a0fb 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesDateTimeResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesDateTime200ApplicationJSON $requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDateTimeResponseBody $object */ - public ?RequestBodyPostJSONDataTypesDateTime200ApplicationJSON $requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesDateTimeResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.php new file mode 100755 index 000000000..2dfd4cc31 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.php @@ -0,0 +1,33 @@ +")] + public \DateTime $json; + + public function __construct() + { + $this->data = ""; + $this->json = new \DateTime(); + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.php index bf8e07082..ad1fcaffb 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesDecimalResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesDecimal200ApplicationJSON $requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDecimalResponseBody $object */ - public ?RequestBodyPostJSONDataTypesDecimal200ApplicationJSON $requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesDecimalResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponseBody.php new file mode 100755 index 000000000..3d52c49a7 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponseBody.php @@ -0,0 +1,33 @@ +data = ""; + $this->json = 0; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.php index eac8ba6c3..755b4c168 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesDecimalStrResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON $requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDecimalStrResponseBody $object */ - public ?RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON $requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesDecimalStrResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.php new file mode 100755 index 000000000..58c851ae8 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.php @@ -0,0 +1,33 @@ +data = ""; + $this->json = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.php index 888c24394..95a587364 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesFloat32Response /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesFloat32200ApplicationJSON $requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesFloat32ResponseBody $object */ - public ?RequestBodyPostJSONDataTypesFloat32200ApplicationJSON $requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesFloat32ResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.php new file mode 100755 index 000000000..5f304e53a --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.php @@ -0,0 +1,28 @@ +json = 0; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.php index e421a96e1..5e28d7534 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesInt32Response /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesInt32200ApplicationJSON $requestBodyPostJSONDataTypesInt32200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesInt32ResponseBody $object */ - public ?RequestBodyPostJSONDataTypesInt32200ApplicationJSON $requestBodyPostJSONDataTypesInt32200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesInt32ResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesInt32200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesInt32ResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesInt32ResponseBody.php new file mode 100755 index 000000000..0e0c319ec --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesInt32ResponseBody.php @@ -0,0 +1,28 @@ +json = 0; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.php index 4d1f7dbfb..65dc51d95 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesIntegerResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesInteger200ApplicationJSON $requestBodyPostJSONDataTypesInteger200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesIntegerResponseBody $object */ - public ?RequestBodyPostJSONDataTypesInteger200ApplicationJSON $requestBodyPostJSONDataTypesInteger200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesIntegerResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesInteger200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponseBody.php new file mode 100755 index 000000000..d1f6a3f8e --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponseBody.php @@ -0,0 +1,28 @@ +json = 0; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.php index b36c3b1a2..891b5af97 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesMapBigIntStrResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON $requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapBigIntStrResponseBody $object */ - public ?RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON $requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesMapBigIntStrResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.php new file mode 100755 index 000000000..c85664fbb --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.php @@ -0,0 +1,38 @@ + $json + */ + #[\JMS\Serializer\Annotation\SerializedName('json')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $json; + + public function __construct() + { + $this->data = ""; + $this->json = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.php index 9000e8003..776c55755 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesMapDateTimeResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON $requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapDateTimeResponseBody $object */ - public ?RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON $requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesMapDateTimeResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.php new file mode 100755 index 000000000..7d307fd14 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.php @@ -0,0 +1,38 @@ + $json + */ + #[\JMS\Serializer\Annotation\SerializedName('json')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $json; + + public function __construct() + { + $this->data = ""; + $this->json = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.php index d21a6278b..7e76ed758 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesMapDecimalResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON $requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapDecimalResponseBody $object */ - public ?RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON $requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesMapDecimalResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.php new file mode 100755 index 000000000..aaa92b3f7 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.php @@ -0,0 +1,38 @@ + $json + */ + #[\JMS\Serializer\Annotation\SerializedName('json')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $json; + + public function __construct() + { + $this->data = ""; + $this->json = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.php index f38a74d33..7ad3750a4 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesNumberResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesNumber200ApplicationJSON $requestBodyPostJSONDataTypesNumber200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesNumberResponseBody $object */ - public ?RequestBodyPostJSONDataTypesNumber200ApplicationJSON $requestBodyPostJSONDataTypesNumber200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesNumberResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesNumber200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesNumberResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesNumberResponseBody.php new file mode 100755 index 000000000..4f722845d --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesNumberResponseBody.php @@ -0,0 +1,28 @@ +json = 0; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.php index 2bdce26f9..f074c0d50 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostJsonDataTypesStringResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesString200ApplicationJSON $requestBodyPostJSONDataTypesString200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesStringResponseBody $object */ - public ?RequestBodyPostJSONDataTypesString200ApplicationJSON $requestBodyPostJSONDataTypesString200ApplicationJSONObject = null; + public ?RequestBodyPostJsonDataTypesStringResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostJSONDataTypesString200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesStringResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesStringResponseBody.php new file mode 100755 index 000000000..993403ada --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostJsonDataTypesStringResponseBody.php @@ -0,0 +1,28 @@ +json = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.php deleted file mode 100755 index 1dcafffae..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.php +++ /dev/null @@ -1,32 +0,0 @@ -bool = false; - $this->num = 0; - $this->str = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.php new file mode 100755 index 000000000..4a8de5725 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.php @@ -0,0 +1,32 @@ +bool = false; + $this->num = 0; + $this->str = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.php deleted file mode 100755 index da0154c00..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.php +++ /dev/null @@ -1,32 +0,0 @@ -bool = false; - $this->num = 0; - $this->str = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.php deleted file mode 100755 index c88236507..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.php +++ /dev/null @@ -1,29 +0,0 @@ -bool3 = false; - $this->num3 = 0; - $this->str3 = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.php new file mode 100755 index 000000000..e1fd15cc2 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.php @@ -0,0 +1,29 @@ +bool3 = false; + $this->num3 = 0; + $this->str3 = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.php new file mode 100755 index 000000000..600baa437 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.php @@ -0,0 +1,32 @@ +bool = false; + $this->num = 0; + $this->str = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.php deleted file mode 100755 index e17370d4e..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.php +++ /dev/null @@ -1,29 +0,0 @@ -bool2 = false; - $this->num2 = 0; - $this->str2 = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.php new file mode 100755 index 000000000..c8255cf25 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.php @@ -0,0 +1,29 @@ +bool2 = false; + $this->num2 = 0; + $this->str2 = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.php deleted file mode 100755 index ee04d7875..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.php +++ /dev/null @@ -1,32 +0,0 @@ -bool = false; - $this->num = 0; - $this->str = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.php deleted file mode 100755 index c7de4f8c7..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.php +++ /dev/null @@ -1,29 +0,0 @@ -bool3 = false; - $this->num3 = 0; - $this->str3 = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.php index 3126d9a36..2bac44408 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.php @@ -12,14 +12,14 @@ class RequestBodyPostMultipleContentTypesSplitParamFormRequest { #[SpeakeasyMetadata('request:mediaType=application/x-www-form-urlencoded')] - public RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded $requestBody; + public RequestBodyPostMultipleContentTypesSplitParamFormRequestBody $requestBody; #[SpeakeasyMetadata('queryParam:style=form,explode=true,name=paramStr')] public string $paramStr; public function __construct() { - $this->requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded(); + $this->requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamFormRequestBody(); $this->paramStr = ""; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.php new file mode 100755 index 000000000..87279786b --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.php @@ -0,0 +1,29 @@ +bool3 = false; + $this->num3 = 0; + $this->str3 = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.php index d0ddeac54..9e5ad4fdc 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.php @@ -12,14 +12,14 @@ class RequestBodyPostMultipleContentTypesSplitParamJsonRequest { #[SpeakeasyMetadata('request:mediaType=application/json')] - public RequestBodyPostMultipleContentTypesSplitParamApplicationJSON $requestBody; + public RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody $requestBody; #[SpeakeasyMetadata('queryParam:style=form,explode=true,name=paramStr')] public string $paramStr; public function __construct() { - $this->requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationJSON(); + $this->requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody(); $this->paramStr = ""; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.php new file mode 100755 index 000000000..c77723197 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.php @@ -0,0 +1,32 @@ +bool = false; + $this->num = 0; + $this->str = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.php deleted file mode 100755 index ab48f8fda..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.php +++ /dev/null @@ -1,29 +0,0 @@ -bool2 = false; - $this->num2 = 0; - $this->str2 = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.php index 9b327191e..eb03cb01f 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.php @@ -12,14 +12,14 @@ class RequestBodyPostMultipleContentTypesSplitParamMultipartRequest { #[SpeakeasyMetadata('request:mediaType=multipart/form-data')] - public RequestBodyPostMultipleContentTypesSplitParamMultipartFormData $requestBody; + public RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody $requestBody; #[SpeakeasyMetadata('queryParam:style=form,explode=true,name=paramStr')] public string $paramStr; public function __construct() { - $this->requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartFormData(); + $this->requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody(); $this->paramStr = ""; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.php new file mode 100755 index 000000000..58a3974fa --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.php @@ -0,0 +1,29 @@ +bool2 = false; + $this->num2 = 0; + $this->str2 = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.php deleted file mode 100755 index 6862385c0..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -data = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.php index 0024ae58b..362cb6223 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostNotNullableNotRequiredStringBodyResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON $requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNotNullableNotRequiredStringBodyResponseBody $object */ - public ?RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON $requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject = null; + public ?RequestBodyPostNotNullableNotRequiredStringBodyResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.php new file mode 100755 index 000000000..22e694beb --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.php @@ -0,0 +1,28 @@ +data = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullArray200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullArray200ApplicationJSON.php deleted file mode 100755 index 48473e7e4..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostNullArray200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -data = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullArrayResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullArrayResponse.php index 49315354b..511fa2bea 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostNullArrayResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostNullArrayResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostNullArrayResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullArray200ApplicationJSON $requestBodyPostNullArray200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullArrayResponseBody $object */ - public ?RequestBodyPostNullArray200ApplicationJSON $requestBodyPostNullArray200ApplicationJSONObject = null; + public ?RequestBodyPostNullArrayResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostNullArray200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullArrayResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullArrayResponseBody.php new file mode 100755 index 000000000..e8dae0d13 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostNullArrayResponseBody.php @@ -0,0 +1,28 @@ +data = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullDictionary200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullDictionary200ApplicationJSON.php deleted file mode 100755 index ce5935d1d..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostNullDictionary200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -data = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullDictionaryResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullDictionaryResponse.php index 6b87c7b08..ef59caa80 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostNullDictionaryResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostNullDictionaryResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostNullDictionaryResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullDictionary200ApplicationJSON $requestBodyPostNullDictionary200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullDictionaryResponseBody $object */ - public ?RequestBodyPostNullDictionary200ApplicationJSON $requestBodyPostNullDictionary200ApplicationJSONObject = null; + public ?RequestBodyPostNullDictionaryResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostNullDictionary200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullDictionaryResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullDictionaryResponseBody.php new file mode 100755 index 000000000..a62d00156 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostNullDictionaryResponseBody.php @@ -0,0 +1,28 @@ +data = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.php deleted file mode 100755 index 4d90b235e..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -data = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.php index 054dba277..7966fbe18 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostNullableNotRequiredStringBodyResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON $requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableNotRequiredStringBodyResponseBody $object */ - public ?RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON $requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject = null; + public ?RequestBodyPostNullableNotRequiredStringBodyResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.php new file mode 100755 index 000000000..83314e5b9 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.php @@ -0,0 +1,28 @@ +data = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.php deleted file mode 100755 index fa8b72095..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -data = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.php index 302bbef3a..8b20a6f15 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.php @@ -38,16 +38,16 @@ class RequestBodyPostNullableRequiredStringBodyResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableRequiredStringBody200ApplicationJSON $requestBodyPostNullableRequiredStringBody200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableRequiredStringBodyResponseBody $object */ - public ?RequestBodyPostNullableRequiredStringBody200ApplicationJSON $requestBodyPostNullableRequiredStringBody200ApplicationJSONObject = null; + public ?RequestBodyPostNullableRequiredStringBodyResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->requestBodyPostNullableRequiredStringBody200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponseBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponseBody.php new file mode 100755 index 000000000..7f5977eaf --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponseBody.php @@ -0,0 +1,28 @@ +data = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutBytesWithParamsArgs.php b/php-client-sdk/src/Models/Operations/RequestBodyPutBytesWithParamsArgs.php new file mode 100755 index 000000000..17f46eb62 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPutBytesWithParamsArgs.php @@ -0,0 +1,22 @@ +queryStringParam = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutBytesWithParamsRes.php b/php-client-sdk/src/Models/Operations/RequestBodyPutBytesWithParamsRes.php index 61848f0ff..ad3ba62bf 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutBytesWithParamsRes.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPutBytesWithParamsRes.php @@ -18,8 +18,8 @@ class RequestBodyPutBytesWithParamsRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPutBytesWithParamsResArgs')] - public RequestBodyPutBytesWithParamsResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPutBytesWithParamsArgs')] + public RequestBodyPutBytesWithParamsArgs $args; #[\JMS\Serializer\Annotation\SerializedName('data')] #[\JMS\Serializer\Annotation\Type('string')] @@ -27,7 +27,7 @@ class RequestBodyPutBytesWithParamsRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutBytesWithParamsResArgs(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutBytesWithParamsArgs(); $this->data = ""; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutBytesWithParamsResArgs.php b/php-client-sdk/src/Models/Operations/RequestBodyPutBytesWithParamsResArgs.php deleted file mode 100755 index 12802d7e7..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutBytesWithParamsResArgs.php +++ /dev/null @@ -1,22 +0,0 @@ -queryStringParam = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDeepForm.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDeepForm.php new file mode 100755 index 000000000..da784b62f --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDeepForm.php @@ -0,0 +1,52 @@ +arr = ""; + $this->bool = ""; + $this->int = ""; + $this->map = ""; + $this->num = ""; + $this->obj = ""; + $this->str = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDeepRes.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDeepRes.php index 0b69964c1..7e9191329 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDeepRes.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDeepRes.php @@ -18,11 +18,11 @@ class RequestBodyPutMultipartDeepRes { #[\JMS\Serializer\Annotation\SerializedName('form')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartDeepResForm')] - public RequestBodyPutMultipartDeepResForm $form; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartDeepForm')] + public RequestBodyPutMultipartDeepForm $form; public function __construct() { - $this->form = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartDeepResForm(); + $this->form = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartDeepForm(); } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDeepResForm.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDeepResForm.php deleted file mode 100755 index c8011cea1..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDeepResForm.php +++ /dev/null @@ -1,52 +0,0 @@ -arr = ""; - $this->bool = ""; - $this->int = ""; - $this->map = ""; - $this->num = ""; - $this->obj = ""; - $this->str = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.php index 09e3f7961..e12c89c9c 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.php @@ -12,7 +12,7 @@ class RequestBodyPutMultipartDifferentFileNameRequestBody { #[SpeakeasyMetadata('multipartForm:file=true')] - public ?RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName $differentFileName = null; + public ?DifferentFileName $differentFileName = null; public function __construct() { diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.php deleted file mode 100755 index 9dda46580..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.php +++ /dev/null @@ -1,25 +0,0 @@ -content = ""; - $this->differentFileName = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartFileRequestBody.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartFileRequestBody.php index 0b50d466b..3fc9eba48 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartFileRequestBody.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartFileRequestBody.php @@ -12,7 +12,7 @@ class RequestBodyPutMultipartFileRequestBody { #[SpeakeasyMetadata('multipartForm:file=true')] - public ?RequestBodyPutMultipartFileRequestBodyFile $file = null; + public ?File $file = null; public function __construct() { diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartFileRequestBodyFile.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartFileRequestBodyFile.php deleted file mode 100755 index 12103a186..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartFileRequestBodyFile.php +++ /dev/null @@ -1,25 +0,0 @@ -content = ""; - $this->file = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleForm.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleForm.php new file mode 100755 index 000000000..ffc002b52 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleForm.php @@ -0,0 +1,91 @@ +any = ""; + $this->bool = ""; + $this->boolOpt = null; + $this->date = ""; + $this->dateTime = ""; + $this->enum = ""; + $this->float32 = ""; + $this->int = ""; + $this->int32 = ""; + $this->intOptNull = null; + $this->num = ""; + $this->numOptNull = null; + $this->str = ""; + $this->strOpt = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleHeaders.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleHeaders.php new file mode 100755 index 000000000..36fbd343b --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleHeaders.php @@ -0,0 +1,22 @@ +contentType = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleRes.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleRes.php index 9b09a03e9..3a839c5f9 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleRes.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleRes.php @@ -18,16 +18,16 @@ class RequestBodyPutMultipartSimpleRes { #[\JMS\Serializer\Annotation\SerializedName('form')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleResForm')] - public RequestBodyPutMultipartSimpleResForm $form; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleForm')] + public RequestBodyPutMultipartSimpleForm $form; #[\JMS\Serializer\Annotation\SerializedName('headers')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleResHeaders')] - public RequestBodyPutMultipartSimpleResHeaders $headers; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleHeaders')] + public RequestBodyPutMultipartSimpleHeaders $headers; public function __construct() { - $this->form = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleResForm(); - $this->headers = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleResHeaders(); + $this->form = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleForm(); + $this->headers = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleHeaders(); } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleResForm.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleResForm.php deleted file mode 100755 index 9cee37b36..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleResForm.php +++ /dev/null @@ -1,91 +0,0 @@ -any = ""; - $this->bool = ""; - $this->boolOpt = null; - $this->date = ""; - $this->dateTime = ""; - $this->enum = ""; - $this->float32 = ""; - $this->int = ""; - $this->int32 = ""; - $this->intOptNull = null; - $this->num = ""; - $this->numOptNull = null; - $this->str = ""; - $this->strOpt = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleResHeaders.php b/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleResHeaders.php deleted file mode 100755 index 46b8c5ee2..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutMultipartSimpleResHeaders.php +++ /dev/null @@ -1,22 +0,0 @@ -contentType = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutStringWithParamsArgs.php b/php-client-sdk/src/Models/Operations/RequestBodyPutStringWithParamsArgs.php new file mode 100755 index 000000000..522aa0e5f --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequestBodyPutStringWithParamsArgs.php @@ -0,0 +1,22 @@ +queryStringParam = ""; + } +} diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutStringWithParamsRes.php b/php-client-sdk/src/Models/Operations/RequestBodyPutStringWithParamsRes.php index c525d44f2..6bad1f219 100755 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutStringWithParamsRes.php +++ b/php-client-sdk/src/Models/Operations/RequestBodyPutStringWithParamsRes.php @@ -18,8 +18,8 @@ class RequestBodyPutStringWithParamsRes { #[\JMS\Serializer\Annotation\SerializedName('args')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPutStringWithParamsResArgs')] - public RequestBodyPutStringWithParamsResArgs $args; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Operations\RequestBodyPutStringWithParamsArgs')] + public RequestBodyPutStringWithParamsArgs $args; #[\JMS\Serializer\Annotation\SerializedName('data')] #[\JMS\Serializer\Annotation\Type('string')] @@ -27,7 +27,7 @@ class RequestBodyPutStringWithParamsRes public function __construct() { - $this->args = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutStringWithParamsResArgs(); + $this->args = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutStringWithParamsArgs(); $this->data = ""; } } diff --git a/php-client-sdk/src/Models/Operations/RequestBodyPutStringWithParamsResArgs.php b/php-client-sdk/src/Models/Operations/RequestBodyPutStringWithParamsResArgs.php deleted file mode 100755 index e2043b571..000000000 --- a/php-client-sdk/src/Models/Operations/RequestBodyPutStringWithParamsResArgs.php +++ /dev/null @@ -1,22 +0,0 @@ -queryStringParam = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/RequiredObj.php b/php-client-sdk/src/Models/Operations/RequiredObj.php new file mode 100755 index 000000000..66e76b89b --- /dev/null +++ b/php-client-sdk/src/Models/Operations/RequiredObj.php @@ -0,0 +1,17 @@ + $json - */ - #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $json; - - public function __construct() - { - $this->json = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.php b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.php index 675b80317..240861e49 100755 --- a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.php +++ b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.php @@ -38,16 +38,16 @@ class ResponseBodyAdditionalPropertiesComplexNumbersPostResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON $responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody $object */ - public ?ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON $responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject = null; + public ?ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.php b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.php new file mode 100755 index 000000000..17ec920da --- /dev/null +++ b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.php @@ -0,0 +1,33 @@ + $json + */ + #[\JMS\Serializer\Annotation\SerializedName('json')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $json; + + public function __construct() + { + $this->json = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.php deleted file mode 100755 index 549739f52..000000000 --- a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.php +++ /dev/null @@ -1,33 +0,0 @@ - $json - */ - #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $json; - - public function __construct() - { - $this->json = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.php b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.php index ea3c6cce5..241ca5edb 100755 --- a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.php +++ b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.php @@ -38,16 +38,16 @@ class ResponseBodyAdditionalPropertiesDatePostResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON $responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesDatePostResponseBody $object */ - public ?ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON $responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject = null; + public ?ResponseBodyAdditionalPropertiesDatePostResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.php b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.php new file mode 100755 index 000000000..1f8e8fe23 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.php @@ -0,0 +1,33 @@ + $json + */ + #[\JMS\Serializer\Annotation\SerializedName('json')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $json; + + public function __construct() + { + $this->json = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.php deleted file mode 100755 index 03c3c4d39..000000000 --- a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.php +++ /dev/null @@ -1,33 +0,0 @@ - $json - */ - #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $json; - - public function __construct() - { - $this->json = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.php b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.php index 8502f7285..0de73ffdf 100755 --- a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.php +++ b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.php @@ -38,16 +38,16 @@ class ResponseBodyAdditionalPropertiesObjectPostResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON $responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesObjectPostResponseBody $object */ - public ?ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON $responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject = null; + public ?ResponseBodyAdditionalPropertiesObjectPostResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.php b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.php new file mode 100755 index 000000000..1ef5efa9b --- /dev/null +++ b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.php @@ -0,0 +1,33 @@ + $json + */ + #[\JMS\Serializer\Annotation\SerializedName('json')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $json; + + public function __construct() + { + $this->json = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.php deleted file mode 100755 index 98857ebc5..000000000 --- a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.php +++ /dev/null @@ -1,33 +0,0 @@ - $json - */ - #[\JMS\Serializer\Annotation\SerializedName('json')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $json; - - public function __construct() - { - $this->json = []; - } -} diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.php b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.php index 8af5fca08..d9bccf9d6 100755 --- a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.php +++ b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.php @@ -38,16 +38,16 @@ class ResponseBodyAdditionalPropertiesPostResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesPost200ApplicationJSON $responseBodyAdditionalPropertiesPost200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesPostResponseBody $object */ - public ?ResponseBodyAdditionalPropertiesPost200ApplicationJSON $responseBodyAdditionalPropertiesPost200ApplicationJSONObject = null; + public ?ResponseBodyAdditionalPropertiesPostResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->responseBodyAdditionalPropertiesPost200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesPostResponseBody.php b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesPostResponseBody.php new file mode 100755 index 000000000..9d423d515 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/ResponseBodyAdditionalPropertiesPostResponseBody.php @@ -0,0 +1,33 @@ + $json + */ + #[\JMS\Serializer\Annotation\SerializedName('json')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $json; + + public function __construct() + { + $this->json = []; + } +} diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyOptionalGetResponse.php b/php-client-sdk/src/Models/Operations/ResponseBodyOptionalGetResponse.php index 32e7b92e2..e5e562e6d 100755 --- a/php-client-sdk/src/Models/Operations/ResponseBodyOptionalGetResponse.php +++ b/php-client-sdk/src/Models/Operations/ResponseBodyOptionalGetResponse.php @@ -38,10 +38,10 @@ class ResponseBodyOptionalGetResponse /** * OK * - * @var ?string $responseBodyOptionalGet200TextPlainString + * @var ?string $res */ - public ?string $responseBodyOptionalGet200TextPlainString = null; + public ?string $res = null; /** * OK @@ -56,7 +56,7 @@ public function __construct() $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->responseBodyOptionalGet200TextPlainString = null; + $this->res = null; $this->typedObject1 = null; } } diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.php deleted file mode 100755 index 66a11b9e2..000000000 --- a/php-client-sdk/src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -json = new \OpenAPI\OpenAPI\Models\Shared\ObjWithZeroValueComplexTypePtrs(); - } -} diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.php b/php-client-sdk/src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.php index 01e9cc7c0..d33f1f1aa 100755 --- a/php-client-sdk/src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.php +++ b/php-client-sdk/src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.php @@ -38,16 +38,16 @@ class ResponseBodyZeroValueComplexTypePtrsPostResponse /** * OK * - * @var ?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON $responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\ResponseBodyZeroValueComplexTypePtrsPostResponseBody $object */ - public ?ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON $responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject = null; + public ?ResponseBodyZeroValueComplexTypePtrsPostResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.php b/php-client-sdk/src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.php new file mode 100755 index 000000000..35ac0934b --- /dev/null +++ b/php-client-sdk/src/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.php @@ -0,0 +1,28 @@ +json = new \OpenAPI\OpenAPI\Models\Shared\ObjWithZeroValueComplexTypePtrs(); + } +} diff --git a/php-client-sdk/src/Models/Operations/StatusGetXSpeakeasyErrors501ApplicationJSON.php b/php-client-sdk/src/Models/Operations/StatusGetXSpeakeasyErrors501ApplicationJSON.php deleted file mode 100755 index ce2e0cdf1..000000000 --- a/php-client-sdk/src/Models/Operations/StatusGetXSpeakeasyErrors501ApplicationJSON.php +++ /dev/null @@ -1,41 +0,0 @@ -')] - #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?\OpenAPI\OpenAPI\Models\Shared\ErrorType $type = null; - - public function __construct() - { - $this->code = null; - $this->message = null; - $this->type = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/StatusGetXSpeakeasyErrorsResponse.php b/php-client-sdk/src/Models/Operations/StatusGetXSpeakeasyErrorsResponse.php index e8b9f0d47..08bd5ba60 100755 --- a/php-client-sdk/src/Models/Operations/StatusGetXSpeakeasyErrorsResponse.php +++ b/php-client-sdk/src/Models/Operations/StatusGetXSpeakeasyErrorsResponse.php @@ -46,10 +46,10 @@ class StatusGetXSpeakeasyErrorsResponse /** * Not Implemented * - * @var ?\OpenAPI\OpenAPI\Models\Operations\StatusGetXSpeakeasyErrors501ApplicationJSON $statusGetXSpeakeasyErrors501ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\StatusGetXSpeakeasyErrorsResponseBody $object */ - public ?StatusGetXSpeakeasyErrors501ApplicationJSON $statusGetXSpeakeasyErrors501ApplicationJSONObject = null; + public ?StatusGetXSpeakeasyErrorsResponseBody $object = null; public function __construct() { @@ -57,6 +57,6 @@ public function __construct() $this->statusCode = 0; $this->rawResponse = null; $this->error = null; - $this->statusGetXSpeakeasyErrors501ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/StatusGetXSpeakeasyErrorsResponseBody.php b/php-client-sdk/src/Models/Operations/StatusGetXSpeakeasyErrorsResponseBody.php new file mode 100755 index 000000000..a99431b4e --- /dev/null +++ b/php-client-sdk/src/Models/Operations/StatusGetXSpeakeasyErrorsResponseBody.php @@ -0,0 +1,41 @@ +')] + #[\JMS\Serializer\Annotation\SkipWhenEmpty] + public ?\OpenAPI\OpenAPI\Models\Shared\ErrorType $type = null; + + public function __construct() + { + $this->code = null; + $this->message = null; + $this->type = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/TypeFromAnchor.php b/php-client-sdk/src/Models/Operations/TypeFromAnchor.php deleted file mode 100755 index 54bbd3ff8..000000000 --- a/php-client-sdk/src/Models/Operations/TypeFromAnchor.php +++ /dev/null @@ -1,34 +0,0 @@ -json = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/TypedParameterGenerationGetObj.php b/php-client-sdk/src/Models/Operations/TypedParameterGenerationGetObj.php deleted file mode 100755 index 46d1a75af..000000000 --- a/php-client-sdk/src/Models/Operations/TypedParameterGenerationGetObj.php +++ /dev/null @@ -1,35 +0,0 @@ -bool = false; - $this->num = 0; - $this->str = ""; - } -} diff --git a/php-client-sdk/src/Models/Operations/TypedParameterGenerationGetRequest.php b/php-client-sdk/src/Models/Operations/TypedParameterGenerationGetRequest.php index 11ec69ff0..87ea07c77 100755 --- a/php-client-sdk/src/Models/Operations/TypedParameterGenerationGetRequest.php +++ b/php-client-sdk/src/Models/Operations/TypedParameterGenerationGetRequest.php @@ -21,7 +21,7 @@ class TypedParameterGenerationGetRequest public ?float $decimal = null; #[SpeakeasyMetadata('queryParam:style=form,explode=true,name=obj')] - public ?TypedParameterGenerationGetObj $obj = null; + public ?Obj $obj = null; public function __construct() { diff --git a/php-client-sdk/src/Models/Operations/UsageExamplePost200ApplicationJSON.php b/php-client-sdk/src/Models/Operations/UsageExamplePost200ApplicationJSON.php deleted file mode 100755 index b0c75c07f..000000000 --- a/php-client-sdk/src/Models/Operations/UsageExamplePost200ApplicationJSON.php +++ /dev/null @@ -1,28 +0,0 @@ -json = new \OpenAPI\OpenAPI\Models\Operations\UsageExamplePost200ApplicationJSONJSON(); - } -} diff --git a/php-client-sdk/src/Models/Operations/UsageExamplePost200ApplicationJSONJSON.php b/php-client-sdk/src/Models/Operations/UsageExamplePost200ApplicationJSONJSON.php deleted file mode 100755 index f3cefb9c0..000000000 --- a/php-client-sdk/src/Models/Operations/UsageExamplePost200ApplicationJSONJSON.php +++ /dev/null @@ -1,50 +0,0 @@ -fakerFormattedStrings = null; - $this->fakerStrings = null; - $this->simpleObject = null; - } -} diff --git a/php-client-sdk/src/Models/Operations/UsageExamplePostEnumParameter.php b/php-client-sdk/src/Models/Operations/UsageExamplePostEnumParameter.php deleted file mode 100755 index 499f67481..000000000 --- a/php-client-sdk/src/Models/Operations/UsageExamplePostEnumParameter.php +++ /dev/null @@ -1,18 +0,0 @@ -fakerFormattedStrings = null; + $this->fakerStrings = null; + $this->simpleObject = null; + } +} diff --git a/php-client-sdk/src/Models/Operations/UsageExamplePostOptEnumParameter.php b/php-client-sdk/src/Models/Operations/UsageExamplePostOptEnumParameter.php deleted file mode 100755 index 8af0926e1..000000000 --- a/php-client-sdk/src/Models/Operations/UsageExamplePostOptEnumParameter.php +++ /dev/null @@ -1,18 +0,0 @@ -decimalStrParameter = ""; $this->decimalStrParameterOptional = null; $this->doubleParameter = 0; - $this->enumParameter = \OpenAPI\OpenAPI\Models\Operations\UsageExamplePostEnumParameter::Value1; + $this->enumParameter = \OpenAPI\OpenAPI\Models\Operations\EnumParameter::Value1; $this->falseyNumberParameter = 0; $this->float32Parameter = 0; $this->floatParameter = 0; diff --git a/php-client-sdk/src/Models/Operations/UsageExamplePostResponse.php b/php-client-sdk/src/Models/Operations/UsageExamplePostResponse.php index 7eba8f13b..aaadde592 100755 --- a/php-client-sdk/src/Models/Operations/UsageExamplePostResponse.php +++ b/php-client-sdk/src/Models/Operations/UsageExamplePostResponse.php @@ -38,16 +38,16 @@ class UsageExamplePostResponse /** * A successful response that contains the simpleObject sent in the request body * - * @var ?\OpenAPI\OpenAPI\Models\Operations\UsageExamplePost200ApplicationJSON $usageExamplePost200ApplicationJSONObject + * @var ?\OpenAPI\OpenAPI\Models\Operations\UsageExamplePostResponseBody $object */ - public ?UsageExamplePost200ApplicationJSON $usageExamplePost200ApplicationJSONObject = null; + public ?UsageExamplePostResponseBody $object = null; public function __construct() { $this->contentType = ""; $this->statusCode = 0; $this->rawResponse = null; - $this->usageExamplePost200ApplicationJSONObject = null; + $this->object = null; } } diff --git a/php-client-sdk/src/Models/Operations/UsageExamplePostResponseBody.php b/php-client-sdk/src/Models/Operations/UsageExamplePostResponseBody.php new file mode 100755 index 000000000..e668a80c9 --- /dev/null +++ b/php-client-sdk/src/Models/Operations/UsageExamplePostResponseBody.php @@ -0,0 +1,28 @@ +json = new \OpenAPI\OpenAPI\Models\Operations\UsageExamplePostJson(); + } +} diff --git a/php-client-sdk/src/Models/Shared/AuthServiceRequestBody.php b/php-client-sdk/src/Models/Shared/AuthServiceRequestBody.php index 26eaa22e3..ccb5c47db 100755 --- a/php-client-sdk/src/Models/Shared/AuthServiceRequestBody.php +++ b/php-client-sdk/src/Models/Shared/AuthServiceRequestBody.php @@ -12,17 +12,17 @@ class AuthServiceRequestBody { #[\JMS\Serializer\Annotation\SerializedName('basicAuth')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth')] + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Shared\BasicAuth')] #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?AuthServiceRequestBodyBasicAuth $basicAuth = null; + public ?BasicAuth $basicAuth = null; /** * $headerAuth * - * @var ?array<\OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth> $headerAuth + * @var ?array<\OpenAPI\OpenAPI\Models\Shared\HeaderAuth> $headerAuth */ #[\JMS\Serializer\Annotation\SerializedName('headerAuth')] - #[\JMS\Serializer\Annotation\Type('array')] + #[\JMS\Serializer\Annotation\Type('array')] #[\JMS\Serializer\Annotation\SkipWhenEmpty] public ?array $headerAuth = null; diff --git a/php-client-sdk/src/Models/Shared/AuthServiceRequestBodyBasicAuth.php b/php-client-sdk/src/Models/Shared/AuthServiceRequestBodyBasicAuth.php deleted file mode 100755 index 407261383..000000000 --- a/php-client-sdk/src/Models/Shared/AuthServiceRequestBodyBasicAuth.php +++ /dev/null @@ -1,27 +0,0 @@ -password = ""; - $this->username = ""; - } -} diff --git a/php-client-sdk/src/Models/Shared/AuthServiceRequestBodyHeaderAuth.php b/php-client-sdk/src/Models/Shared/AuthServiceRequestBodyHeaderAuth.php deleted file mode 100755 index 3c0e85794..000000000 --- a/php-client-sdk/src/Models/Shared/AuthServiceRequestBodyHeaderAuth.php +++ /dev/null @@ -1,27 +0,0 @@ -expectedValue = ""; - $this->headerName = ""; - } -} diff --git a/php-client-sdk/src/Models/Shared/BasicAuth.php b/php-client-sdk/src/Models/Shared/BasicAuth.php new file mode 100755 index 000000000..393cb1274 --- /dev/null +++ b/php-client-sdk/src/Models/Shared/BasicAuth.php @@ -0,0 +1,27 @@ +password = ""; + $this->username = ""; + } +} diff --git a/php-client-sdk/src/Models/Shared/Chocolates.php b/php-client-sdk/src/Models/Shared/Chocolates.php new file mode 100755 index 000000000..efdf55e6a --- /dev/null +++ b/php-client-sdk/src/Models/Shared/Chocolates.php @@ -0,0 +1,22 @@ +description = ""; + } +} diff --git a/php-client-sdk/src/Models/Shared/ConstEnumInt.php b/php-client-sdk/src/Models/Shared/ConstEnumInt.php new file mode 100755 index 000000000..0402aeb32 --- /dev/null +++ b/php-client-sdk/src/Models/Shared/ConstEnumInt.php @@ -0,0 +1,17 @@ +')] - public DefaultsAndConstsConstEnumInt $constEnumInt; + #[\JMS\Serializer\Annotation\Type('enum')] + public ConstEnumInt $constEnumInt; #[\JMS\Serializer\Annotation\SerializedName('constEnumStr')] - #[\JMS\Serializer\Annotation\Type('enum')] - public DefaultsAndConstsConstEnumStr $constEnumStr; + #[\JMS\Serializer\Annotation\Type('enum')] + public ConstEnumStr $constEnumStr; #[\JMS\Serializer\Annotation\SerializedName('constInt')] #[\JMS\Serializer\Annotation\Type('int')] @@ -99,14 +99,14 @@ class DefaultsAndConsts public ?string $defaultDecimalStr = null; #[\JMS\Serializer\Annotation\SerializedName('defaultEnumInt')] - #[\JMS\Serializer\Annotation\Type('enum')] + #[\JMS\Serializer\Annotation\Type('enum')] #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?DefaultsAndConstsDefaultEnumInt $defaultEnumInt = null; + public ?DefaultEnumInt $defaultEnumInt = null; #[\JMS\Serializer\Annotation\SerializedName('defaultEnumStr')] - #[\JMS\Serializer\Annotation\Type('enum')] + #[\JMS\Serializer\Annotation\Type('enum')] #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?DefaultsAndConstsDefaultEnumStr $defaultEnumStr = null; + public ?DefaultEnumStr $defaultEnumStr = null; #[\JMS\Serializer\Annotation\SerializedName('defaultInt')] #[\JMS\Serializer\Annotation\Type('int')] @@ -146,8 +146,8 @@ public function __construct() $this->constDateTime = new \DateTime(); $this->constDecimal = 0; $this->constDecimalStr = ""; - $this->constEnumInt = \OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsConstEnumInt::One; - $this->constEnumStr = \OpenAPI\OpenAPI\Models\Shared\DefaultsAndConstsConstEnumStr::One; + $this->constEnumInt = \OpenAPI\OpenAPI\Models\Shared\ConstEnumInt::One; + $this->constEnumStr = \OpenAPI\OpenAPI\Models\Shared\ConstEnumStr::One; $this->constInt = 0; $this->constNum = 0; $this->constStr = ""; diff --git a/php-client-sdk/src/Models/Shared/DefaultsAndConstsConstEnumInt.php b/php-client-sdk/src/Models/Shared/DefaultsAndConstsConstEnumInt.php deleted file mode 100755 index 119cd6748..000000000 --- a/php-client-sdk/src/Models/Shared/DefaultsAndConstsConstEnumInt.php +++ /dev/null @@ -1,17 +0,0 @@ -')] + #[\JMS\Serializer\Annotation\Type('enum')] #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?DeprecatedFieldInObjectDeprecatedEnum $deprecatedEnum = null; + public ?DeprecatedEnum $deprecatedEnum = null; /** * diff --git a/php-client-sdk/src/Models/Shared/DeprecatedFieldInObjectDeprecatedEnum.php b/php-client-sdk/src/Models/Shared/DeprecatedFieldInObjectDeprecatedEnum.php deleted file mode 100755 index 38ed5c62c..000000000 --- a/php-client-sdk/src/Models/Shared/DeprecatedFieldInObjectDeprecatedEnum.php +++ /dev/null @@ -1,21 +0,0 @@ - $chocolates + * @var array<\OpenAPI\OpenAPI\Models\Shared\Chocolates> $chocolates */ #[\JMS\Serializer\Annotation\SerializedName('chocolates')] - #[\JMS\Serializer\Annotation\Type('array')] + #[\JMS\Serializer\Annotation\Type('array')] public array $chocolates; #[\JMS\Serializer\Annotation\SerializedName('createdAt')] @@ -46,14 +46,14 @@ class ExampleResource public ?\DateTime $createdAt = null; #[\JMS\Serializer\Annotation\SerializedName('enumNumber')] - #[\JMS\Serializer\Annotation\Type('enum')] + #[\JMS\Serializer\Annotation\Type('enum')] #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?ExampleResourceEnumNumber $enumNumber = null; + public ?EnumNumber $enumNumber = null; #[\JMS\Serializer\Annotation\SerializedName('enumStr')] - #[\JMS\Serializer\Annotation\Type('enum')] + #[\JMS\Serializer\Annotation\Type('enum')] #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?ExampleResourceEnumStr $enumStr = null; + public ?EnumStr $enumStr = null; #[\JMS\Serializer\Annotation\SerializedName('id')] #[\JMS\Serializer\Annotation\Type('string')] diff --git a/php-client-sdk/src/Models/Shared/ExampleResourceChocolates.php b/php-client-sdk/src/Models/Shared/ExampleResourceChocolates.php deleted file mode 100755 index 05c9f6044..000000000 --- a/php-client-sdk/src/Models/Shared/ExampleResourceChocolates.php +++ /dev/null @@ -1,22 +0,0 @@ -description = ""; - } -} diff --git a/php-client-sdk/src/Models/Shared/ExampleResourceEnumNumber.php b/php-client-sdk/src/Models/Shared/ExampleResourceEnumNumber.php deleted file mode 100755 index 537678ee4..000000000 --- a/php-client-sdk/src/Models/Shared/ExampleResourceEnumNumber.php +++ /dev/null @@ -1,17 +0,0 @@ -expectedValue = ""; + $this->headerName = ""; + } +} diff --git a/php-client-sdk/src/Models/Shared/HttpBinSimpleJsonObject.php b/php-client-sdk/src/Models/Shared/HttpBinSimpleJsonObject.php index 9d5e6dba9..e9fcb3d6c 100755 --- a/php-client-sdk/src/Models/Shared/HttpBinSimpleJsonObject.php +++ b/php-client-sdk/src/Models/Shared/HttpBinSimpleJsonObject.php @@ -12,11 +12,11 @@ class HttpBinSimpleJsonObject { #[\JMS\Serializer\Annotation\SerializedName('slideshow')] - #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Shared\HttpBinSimpleJsonObjectSlideshow')] - public HttpBinSimpleJsonObjectSlideshow $slideshow; + #[\JMS\Serializer\Annotation\Type('OpenAPI\OpenAPI\Models\Shared\Slideshow')] + public Slideshow $slideshow; public function __construct() { - $this->slideshow = new \OpenAPI\OpenAPI\Models\Shared\HttpBinSimpleJsonObjectSlideshow(); + $this->slideshow = new \OpenAPI\OpenAPI\Models\Shared\Slideshow(); } } diff --git a/php-client-sdk/src/Models/Shared/HttpBinSimpleJsonObjectSlideshow.php b/php-client-sdk/src/Models/Shared/HttpBinSimpleJsonObjectSlideshow.php deleted file mode 100755 index 6f0aeb261..000000000 --- a/php-client-sdk/src/Models/Shared/HttpBinSimpleJsonObjectSlideshow.php +++ /dev/null @@ -1,42 +0,0 @@ - $slides - */ - #[\JMS\Serializer\Annotation\SerializedName('slides')] - #[\JMS\Serializer\Annotation\Type('array')] - public array $slides; - - #[\JMS\Serializer\Annotation\SerializedName('title')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $title; - - public function __construct() - { - $this->author = ""; - $this->date = ""; - $this->slides = []; - $this->title = ""; - } -} diff --git a/php-client-sdk/src/Models/Shared/HttpBinSimpleJsonObjectSlideshowSlides.php b/php-client-sdk/src/Models/Shared/HttpBinSimpleJsonObjectSlideshowSlides.php deleted file mode 100755 index 7e887b78a..000000000 --- a/php-client-sdk/src/Models/Shared/HttpBinSimpleJsonObjectSlideshowSlides.php +++ /dev/null @@ -1,38 +0,0 @@ - $items - */ - #[\JMS\Serializer\Annotation\SerializedName('items')] - #[\JMS\Serializer\Annotation\Type('array')] - #[\JMS\Serializer\Annotation\SkipWhenEmpty] - public ?array $items = null; - - #[\JMS\Serializer\Annotation\SerializedName('title')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $title; - - #[\JMS\Serializer\Annotation\SerializedName('type')] - #[\JMS\Serializer\Annotation\Type('string')] - public string $type; - - public function __construct() - { - $this->items = null; - $this->title = ""; - $this->type = ""; - } -} diff --git a/php-client-sdk/src/Models/Shared/Int32Enum.php b/php-client-sdk/src/Models/Shared/Int32Enum.php new file mode 100755 index 000000000..60f5e2455 --- /dev/null +++ b/php-client-sdk/src/Models/Shared/Int32Enum.php @@ -0,0 +1,18 @@ +num1 = 0; + $this->num2 = 0; + $this->num3 = 0; + } +} diff --git a/php-client-sdk/src/Models/Shared/ReadWriteObjectInput.php b/php-client-sdk/src/Models/Shared/ReadWriteObjectInput.php deleted file mode 100755 index e2a6ec173..000000000 --- a/php-client-sdk/src/Models/Shared/ReadWriteObjectInput.php +++ /dev/null @@ -1,32 +0,0 @@ -num1 = 0; - $this->num2 = 0; - $this->num3 = 0; - } -} diff --git a/php-client-sdk/src/Models/Shared/SimpleObject.php b/php-client-sdk/src/Models/Shared/SimpleObject.php index 5bbf9c04f..65e9b5eac 100755 --- a/php-client-sdk/src/Models/Shared/SimpleObject.php +++ b/php-client-sdk/src/Models/Shared/SimpleObject.php @@ -190,30 +190,30 @@ class SimpleObject /** * An int32 enum property. * - * @var \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum $int32Enum + * @var \OpenAPI\OpenAPI\Models\Shared\Int32Enum $int32Enum */ #[\JMS\Serializer\Annotation\SerializedName('int32Enum')] - #[\JMS\Serializer\Annotation\Type('enum')] + #[\JMS\Serializer\Annotation\Type('enum')] #[SpeakeasyMetadata('header:name=int32Enum')] #[SpeakeasyMetadata('pathParam:name=int32Enum')] #[SpeakeasyMetadata('queryParam:name=int32Enum')] #[SpeakeasyMetadata('form:name=int32Enum')] #[SpeakeasyMetadata('multipartForm:name=int32Enum')] - public SimpleObjectInt32Enum $int32Enum; + public Int32Enum $int32Enum; /** * An integer enum property. * - * @var \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum $intEnum + * @var \OpenAPI\OpenAPI\Models\Shared\IntEnum $intEnum */ #[\JMS\Serializer\Annotation\SerializedName('intEnum')] - #[\JMS\Serializer\Annotation\Type('enum')] + #[\JMS\Serializer\Annotation\Type('enum')] #[SpeakeasyMetadata('header:name=intEnum')] #[SpeakeasyMetadata('pathParam:name=intEnum')] #[SpeakeasyMetadata('queryParam:name=intEnum')] #[SpeakeasyMetadata('form:name=intEnum')] #[SpeakeasyMetadata('multipartForm:name=intEnum')] - public SimpleObjectIntEnum $intEnum; + public IntEnum $intEnum; /** * An optional integer property will be null for tests. @@ -303,8 +303,8 @@ public function __construct() $this->float32 = 0; $this->int = 0; $this->int32 = 0; - $this->int32Enum = \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum::FiftyFive; - $this->intEnum = \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum::First; + $this->int32Enum = \OpenAPI\OpenAPI\Models\Shared\Int32Enum::FiftyFive; + $this->intEnum = \OpenAPI\OpenAPI\Models\Shared\IntEnum::First; $this->intOptNull = null; $this->num = 0; $this->numOptNull = null; diff --git a/php-client-sdk/src/Models/Shared/SimpleObjectCamelCase.php b/php-client-sdk/src/Models/Shared/SimpleObjectCamelCase.php index bef5048cb..4329e848f 100755 --- a/php-client-sdk/src/Models/Shared/SimpleObjectCamelCase.php +++ b/php-client-sdk/src/Models/Shared/SimpleObjectCamelCase.php @@ -102,11 +102,11 @@ class SimpleObjectCamelCase /** * An int32 enum property. * - * @var \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal $int32EnumVal + * @var \OpenAPI\OpenAPI\Models\Shared\Int32EnumVal $int32EnumVal */ #[\JMS\Serializer\Annotation\SerializedName('int32_enum_val')] - #[\JMS\Serializer\Annotation\Type('enum')] - public SimpleObjectCamelCaseInt32EnumVal $int32EnumVal; + #[\JMS\Serializer\Annotation\Type('enum')] + public Int32EnumVal $int32EnumVal; /** * An int32 property. @@ -120,11 +120,11 @@ class SimpleObjectCamelCase /** * An integer enum property. * - * @var \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal $intEnumVal + * @var \OpenAPI\OpenAPI\Models\Shared\IntEnumVal $intEnumVal */ #[\JMS\Serializer\Annotation\SerializedName('int_enum_val')] - #[\JMS\Serializer\Annotation\Type('enum')] - public SimpleObjectCamelCaseIntEnumVal $intEnumVal; + #[\JMS\Serializer\Annotation\Type('enum')] + public IntEnumVal $intEnumVal; /** * An optional integer property will be null for tests. @@ -195,9 +195,9 @@ public function __construct() $this->decimalVal = null; $this->enumVal = \OpenAPI\OpenAPI\Models\Shared\Enum::One; $this->float32Val = 0; - $this->int32EnumVal = \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseInt32EnumVal::FiftyFive; + $this->int32EnumVal = \OpenAPI\OpenAPI\Models\Shared\Int32EnumVal::FiftyFive; $this->int32Val = 0; - $this->intEnumVal = \OpenAPI\OpenAPI\Models\Shared\SimpleObjectCamelCaseIntEnumVal::First; + $this->intEnumVal = \OpenAPI\OpenAPI\Models\Shared\IntEnumVal::First; $this->intOptNullVal = null; $this->intVal = 0; $this->numOptNullVal = null; diff --git a/php-client-sdk/src/Models/Shared/SimpleObjectCamelCaseInt32EnumVal.php b/php-client-sdk/src/Models/Shared/SimpleObjectCamelCaseInt32EnumVal.php deleted file mode 100755 index 1f0616299..000000000 --- a/php-client-sdk/src/Models/Shared/SimpleObjectCamelCaseInt32EnumVal.php +++ /dev/null @@ -1,18 +0,0 @@ - $items + */ + #[\JMS\Serializer\Annotation\SerializedName('items')] + #[\JMS\Serializer\Annotation\Type('array')] + #[\JMS\Serializer\Annotation\SkipWhenEmpty] + public ?array $items = null; + + #[\JMS\Serializer\Annotation\SerializedName('title')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $title; + + #[\JMS\Serializer\Annotation\SerializedName('type')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $type; + + public function __construct() + { + $this->items = null; + $this->title = ""; + $this->type = ""; + } +} diff --git a/php-client-sdk/src/Models/Shared/Slideshow.php b/php-client-sdk/src/Models/Shared/Slideshow.php new file mode 100755 index 000000000..4347d0d00 --- /dev/null +++ b/php-client-sdk/src/Models/Shared/Slideshow.php @@ -0,0 +1,42 @@ + $slides + */ + #[\JMS\Serializer\Annotation\SerializedName('slides')] + #[\JMS\Serializer\Annotation\Type('array')] + public array $slides; + + #[\JMS\Serializer\Annotation\SerializedName('title')] + #[\JMS\Serializer\Annotation\Type('string')] + public string $title; + + public function __construct() + { + $this->author = ""; + $this->date = ""; + $this->slides = []; + $this->title = ""; + } +} diff --git a/php-client-sdk/src/Models/Shared/Type.php b/php-client-sdk/src/Models/Shared/Type.php new file mode 100755 index 000000000..d4383c5e5 --- /dev/null +++ b/php-client-sdk/src/Models/Shared/Type.php @@ -0,0 +1,15 @@ +')] - public TypedObject1Type $type; + #[\JMS\Serializer\Annotation\Type('enum')] + public Type $type; #[\JMS\Serializer\Annotation\SerializedName('value')] #[\JMS\Serializer\Annotation\Type('string')] @@ -21,7 +21,7 @@ class TypedObject1 public function __construct() { - $this->type = \OpenAPI\OpenAPI\Models\Shared\TypedObject1Type::Obj1; + $this->type = \OpenAPI\OpenAPI\Models\Shared\Type::Obj1; $this->value = ""; } } diff --git a/php-client-sdk/src/Models/Shared/TypedObject1Type.php b/php-client-sdk/src/Models/Shared/TypedObject1Type.php deleted file mode 100755 index 3afff0f48..000000000 --- a/php-client-sdk/src/Models/Shared/TypedObject1Type.php +++ /dev/null @@ -1,15 +0,0 @@ -getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NestFirstGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Nested.php b/php-client-sdk/src/Nested.php index dde708c72..e1657db2b 100755 --- a/php-client-sdk/src/Nested.php +++ b/php-client-sdk/src/Nested.php @@ -40,8 +40,10 @@ public function get( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NestedGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/NestedFirst.php b/php-client-sdk/src/NestedFirst.php index 9bec9691f..90d8c85f1 100755 --- a/php-client-sdk/src/NestedFirst.php +++ b/php-client-sdk/src/NestedFirst.php @@ -40,8 +40,10 @@ public function get( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NestedFirstGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/NestedSecond.php b/php-client-sdk/src/NestedSecond.php index d89d4e2e5..5c5e5c379 100755 --- a/php-client-sdk/src/NestedSecond.php +++ b/php-client-sdk/src/NestedSecond.php @@ -40,8 +40,10 @@ public function get( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NestedSecondGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Pagination.php b/php-client-sdk/src/Pagination.php index 80985ddfc..9da79b4cd 100755 --- a/php-client-sdk/src/Pagination.php +++ b/php-client-sdk/src/Pagination.php @@ -78,8 +78,10 @@ public function paginationCursorBody( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\PaginationCursorBodyResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -125,8 +127,10 @@ public function paginationCursorParams( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\PaginationCursorParamsResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -173,8 +177,10 @@ public function paginationLimitOffsetOffsetBody( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\PaginationLimitOffsetOffsetBodyResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -223,8 +229,10 @@ public function paginationLimitOffsetOffsetParams( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\PaginationLimitOffsetOffsetParamsResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -271,8 +279,10 @@ public function paginationLimitOffsetPageBody( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\PaginationLimitOffsetPageBodyResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -318,8 +328,10 @@ public function paginationLimitOffsetPageParams( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\PaginationLimitOffsetPageParamsResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Parameters.php b/php-client-sdk/src/Parameters.php index ce362d67e..a6a4baa2e 100755 --- a/php-client-sdk/src/Parameters.php +++ b/php-client-sdk/src/Parameters.php @@ -49,8 +49,10 @@ public function deepObjectQueryParamsMap( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsMapResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -68,12 +70,12 @@ public function deepObjectQueryParamsMap( * deepObjectQueryParamsObject * * @param \OpenAPI\OpenAPI\Models\Shared\SimpleObject $objParam - * @param ?\OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectObjArrParam $objArrParam + * @param ?\OpenAPI\OpenAPI\Models\Operations\ObjArrParam $objArrParam * @return \OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectResponse */ public function deepObjectQueryParamsObject( \OpenAPI\OpenAPI\Models\Shared\SimpleObject $objParam, - ?\OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectObjArrParam $objArrParam = null, + ?\OpenAPI\OpenAPI\Models\Operations\ObjArrParam $objArrParam = null, ): \OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectResponse { $request = new \OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectRequest(); @@ -92,8 +94,10 @@ public function deepObjectQueryParamsObject( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -131,8 +135,10 @@ public function duplicateParam( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\DuplicateParamResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -174,8 +180,10 @@ public function formQueryParamsArray( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsArrayResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -192,13 +200,13 @@ public function formQueryParamsArray( /** * formQueryParamsCamelObject * - * @param \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectObjParamExploded $objParamExploded - * @param ?\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectObjParam $objParam + * @param \OpenAPI\OpenAPI\Models\Operations\ObjParamExploded $objParamExploded + * @param ?\OpenAPI\OpenAPI\Models\Operations\ObjParam $objParam * @return \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectResponse */ public function formQueryParamsCamelObject( - \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectObjParamExploded $objParamExploded, - ?\OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectObjParam $objParam = null, + \OpenAPI\OpenAPI\Models\Operations\ObjParamExploded $objParamExploded, + ?\OpenAPI\OpenAPI\Models\Operations\ObjParam $objParam = null, ): \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectResponse { $request = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectRequest(); @@ -217,8 +225,10 @@ public function formQueryParamsCamelObject( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsCamelObjectResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -260,8 +270,10 @@ public function formQueryParamsMap( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsMapResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -303,8 +315,10 @@ public function formQueryParamsObject( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsObjectResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -352,8 +366,10 @@ public function formQueryParamsPrimitive( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsPrimitiveResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -395,8 +411,10 @@ public function formQueryParamsRefParamObject( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\FormQueryParamsRefParamObjectResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -438,8 +456,10 @@ public function headerParamsArray( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\HeaderParamsArrayResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -484,8 +504,10 @@ public function headerParamsMap( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\HeaderParamsMapResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -530,8 +552,10 @@ public function headerParamsObject( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\HeaderParamsObjectResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -582,8 +606,10 @@ public function headerParamsPrimitive( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\HeaderParamsPrimitiveResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -625,8 +651,10 @@ public function jsonQueryParamsObject( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\JsonQueryParamsObjectResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -675,8 +703,10 @@ public function mixedParametersCamelCase( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\MixedParametersCamelCaseResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -725,8 +755,10 @@ public function mixedParametersPrimitives( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\MixedParametersPrimitivesResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -771,8 +803,10 @@ public function mixedQueryParams( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\MixedQueryParamsResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -810,8 +844,10 @@ public function pathParameterJson( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\PathParameterJsonResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -859,8 +895,10 @@ public function pipeDelimitedQueryParamsArray( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\PipeDelimitedQueryParamsArrayResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -898,8 +936,10 @@ public function simplePathParameterArrays( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\SimplePathParameterArraysResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -940,8 +980,10 @@ public function simplePathParameterMaps( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\SimplePathParameterMapsResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -982,8 +1024,10 @@ public function simplePathParameterObjects( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\SimplePathParameterObjectsResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1030,8 +1074,10 @@ public function simplePathParameterPrimitives( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\SimplePathParameterPrimitivesResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/RequestBodies.php b/php-client-sdk/src/RequestBodies.php index 66980d08d..c8800435f 100755 --- a/php-client-sdk/src/RequestBodies.php +++ b/php-client-sdk/src/RequestBodies.php @@ -139,8 +139,10 @@ public function nullableObjectPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NullableObjectPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -180,14 +182,16 @@ public function nullableRequiredEmptyObjectPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NullableRequiredEmptyObjectPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { - $response->nullableRequiredEmptyObjectPost200ApplicationJSONString = $httpResponse->getBody()->getContents(); + $response->res = $httpResponse->getBody()->getContents(); } } @@ -220,14 +224,16 @@ public function nullableRequiredPropertyPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NullableRequiredPropertyPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { - $response->nullableRequiredPropertyPost200ApplicationJSONString = $httpResponse->getBody()->getContents(); + $response->res = $httpResponse->getBody()->getContents(); } } @@ -260,14 +266,16 @@ public function nullableRequiredSharedObjectPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NullableRequiredSharedObjectPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { - $response->nullableRequiredSharedObjectPost200ApplicationJSONString = $httpResponse->getBody()->getContents(); + $response->res = $httpResponse->getBody()->getContents(); } } @@ -307,15 +315,17 @@ public function requestBodyPostApplicationJsonArray( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonArrayResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->simpleObjects = $serializer->deserialize((string)$httpResponse->getBody(), 'array', 'json'); + $response->res = $serializer->deserialize((string)$httpResponse->getBody(), 'array', 'json'); } } @@ -355,15 +365,17 @@ public function requestBodyPostApplicationJsonArrayCamelCase( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonArrayCamelCaseResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->simpleObjectCamelCases = $serializer->deserialize((string)$httpResponse->getBody(), 'array', 'json'); + $response->res = $serializer->deserialize((string)$httpResponse->getBody(), 'array', 'json'); } } @@ -396,8 +408,10 @@ public function requestBodyPostApplicationJsonArrayObj( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonArrayObjResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -437,8 +451,10 @@ public function requestBodyPostApplicationJsonArrayObjCamelCase( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonArrayObjCamelCaseResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -485,15 +501,17 @@ public function requestBodyPostApplicationJsonArrayOfArray( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonArrayOfArrayResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->arrs = $serializer->deserialize((string)$httpResponse->getBody(), 'array>', 'json'); + $response->res = $serializer->deserialize((string)$httpResponse->getBody(), 'array>', 'json'); } } @@ -533,15 +551,17 @@ public function requestBodyPostApplicationJsonArrayOfArrayCamelCase( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->arrs = $serializer->deserialize((string)$httpResponse->getBody(), 'array>', 'json'); + $response->res = $serializer->deserialize((string)$httpResponse->getBody(), 'array>', 'json'); } } @@ -581,15 +601,17 @@ public function requestBodyPostApplicationJsonArrayOfArrayOfPrimitive( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->arrs = $serializer->deserialize((string)$httpResponse->getBody(), 'array>', 'json'); + $response->res = $serializer->deserialize((string)$httpResponse->getBody(), 'array>', 'json'); } } @@ -629,15 +651,17 @@ public function requestBodyPostApplicationJsonArrayOfMap( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonArrayOfMapResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->maps = $serializer->deserialize((string)$httpResponse->getBody(), 'array>', 'json'); + $response->res = $serializer->deserialize((string)$httpResponse->getBody(), 'array>', 'json'); } } @@ -677,15 +701,17 @@ public function requestBodyPostApplicationJsonArrayOfMapCamelCase( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->maps = $serializer->deserialize((string)$httpResponse->getBody(), 'array>', 'json'); + $response->res = $serializer->deserialize((string)$httpResponse->getBody(), 'array>', 'json'); } } @@ -725,15 +751,17 @@ public function requestBodyPostApplicationJsonArrayOfPrimitive( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonArrayOfPrimitiveResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->strings = $serializer->deserialize((string)$httpResponse->getBody(), 'array', 'json'); + $response->res = $serializer->deserialize((string)$httpResponse->getBody(), 'array', 'json'); } } @@ -766,8 +794,10 @@ public function requestBodyPostApplicationJsonDeep( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonDeepResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -807,8 +837,10 @@ public function requestBodyPostApplicationJsonDeepCamelCase( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonDeepCamelCaseResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -855,8 +887,10 @@ public function requestBodyPostApplicationJsonMap( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMapResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -903,8 +937,10 @@ public function requestBodyPostApplicationJsonMapCamelCase( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMapCamelCaseResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -944,8 +980,10 @@ public function requestBodyPostApplicationJsonMapObj( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMapObjResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -985,8 +1023,10 @@ public function requestBodyPostApplicationJsonMapObjCamelCase( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMapObjCamelCaseResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1033,8 +1073,10 @@ public function requestBodyPostApplicationJsonMapOfArray( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMapOfArrayResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1081,8 +1123,10 @@ public function requestBodyPostApplicationJsonMapOfArrayCamelCase( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1129,8 +1173,10 @@ public function requestBodyPostApplicationJsonMapOfMap( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMapOfMapResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1177,8 +1223,10 @@ public function requestBodyPostApplicationJsonMapOfMapCamelCase( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMapOfMapCamelCaseResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1225,8 +1273,10 @@ public function requestBodyPostApplicationJsonMapOfMapOfPrimitive( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMapOfMapOfPrimitiveResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1273,8 +1323,10 @@ public function requestBodyPostApplicationJsonMapOfPrimitive( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMapOfPrimitiveResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1314,8 +1366,10 @@ public function requestBodyPostApplicationJsonMultipleJsonFiltered( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonMultipleJsonFilteredResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1355,8 +1409,10 @@ public function requestBodyPostApplicationJsonSimple( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonSimpleResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1396,8 +1452,10 @@ public function requestBodyPostApplicationJsonSimpleCamelCase( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostApplicationJsonSimpleCamelCaseResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1438,15 +1496,17 @@ public function requestBodyPostComplexNumberTypes( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostComplexNumberTypesResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostComplexNumberTypes200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostComplexNumberTypes200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostComplexNumberTypesResponseBody', 'json'); } } @@ -1479,15 +1539,17 @@ public function requestBodyPostDefaultsAndConsts( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostDefaultsAndConstsResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostDefaultsAndConsts200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostDefaultsAndConsts200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostDefaultsAndConstsResponseBody', 'json'); } } @@ -1520,15 +1582,17 @@ public function requestBodyPostEmptyObject( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostEmptyObjectResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostEmptyObject200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostEmptyObject200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostEmptyObjectResponseBody', 'json'); } } @@ -1561,8 +1625,10 @@ public function requestBodyPostFormDeep( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormDeepResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1602,8 +1668,10 @@ public function requestBodyPostFormMapPrimitive( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormMapPrimitiveResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1643,8 +1711,10 @@ public function requestBodyPostFormSimple( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostFormSimpleResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -1684,15 +1754,17 @@ public function requestBodyPostJsonDataTypesArrayBigInt( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayBigIntResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayBigIntResponseBody', 'json'); } } @@ -1725,15 +1797,17 @@ public function requestBodyPostJsonDataTypesArrayDate( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayDateResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayDateResponseBody', 'json'); } } @@ -1766,15 +1840,17 @@ public function requestBodyPostJsonDataTypesArrayDecimalStr( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayDecimalStrResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody', 'json'); } } @@ -1807,15 +1883,17 @@ public function requestBodyPostJsonDataTypesBigInt( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBigIntResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesBigInt200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBigIntResponseBody', 'json'); } } @@ -1848,15 +1926,17 @@ public function requestBodyPostJsonDataTypesBigIntStr( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBigIntStrResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBigIntStrResponseBody', 'json'); } } @@ -1889,15 +1969,17 @@ public function requestBodyPostJsonDataTypesBoolean( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBooleanResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesBoolean200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesBooleanResponseBody', 'json'); } } @@ -1930,15 +2012,17 @@ public function requestBodyPostJsonDataTypesDate( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDateResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesDate200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesDate200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDateResponseBody', 'json'); } } @@ -1971,15 +2055,17 @@ public function requestBodyPostJsonDataTypesDateTime( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDateTimeResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesDateTime200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDateTimeResponseBody', 'json'); } } @@ -2012,15 +2098,17 @@ public function requestBodyPostJsonDataTypesDecimal( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDecimalResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesDecimal200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDecimalResponseBody', 'json'); } } @@ -2053,15 +2141,17 @@ public function requestBodyPostJsonDataTypesDecimalStr( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDecimalStrResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesDecimalStrResponseBody', 'json'); } } @@ -2094,15 +2184,17 @@ public function requestBodyPostJsonDataTypesFloat32( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesFloat32Response(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesFloat32200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesFloat32ResponseBody', 'json'); } } @@ -2135,15 +2227,17 @@ public function requestBodyPostJsonDataTypesInt32( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesInt32Response(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesInt32200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesInt32200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesInt32ResponseBody', 'json'); } } @@ -2176,15 +2270,17 @@ public function requestBodyPostJsonDataTypesInteger( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesIntegerResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesInteger200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesInteger200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesIntegerResponseBody', 'json'); } } @@ -2217,15 +2313,17 @@ public function requestBodyPostJsonDataTypesMapBigIntStr( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapBigIntStrResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapBigIntStrResponseBody', 'json'); } } @@ -2258,15 +2356,17 @@ public function requestBodyPostJsonDataTypesMapDateTime( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapDateTimeResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapDateTimeResponseBody', 'json'); } } @@ -2299,15 +2399,17 @@ public function requestBodyPostJsonDataTypesMapDecimal( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapDecimalResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesMapDecimalResponseBody', 'json'); } } @@ -2340,15 +2442,17 @@ public function requestBodyPostJsonDataTypesNumber( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesNumberResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesNumber200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesNumber200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesNumberResponseBody', 'json'); } } @@ -2381,15 +2485,17 @@ public function requestBodyPostJsonDataTypesString( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesStringResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostJSONDataTypesString200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJSONDataTypesString200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostJsonDataTypesStringResponseBody', 'json'); } } @@ -2422,8 +2528,10 @@ public function requestBodyPostMultipleContentTypesComponentFiltered( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesComponentFilteredResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -2440,11 +2548,11 @@ public function requestBodyPostMultipleContentTypesComponentFiltered( /** * requestBodyPostMultipleContentTypesInlineFiltered * - * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON $request + * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredRequestBody $request * @return \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredResponse */ public function requestBodyPostMultipleContentTypesInlineFiltered( - \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON $request, + \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredRequestBody $request, ): \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredResponse { $baseUrl = Utils\Utils::templateUrl($this->sdkConfiguration->getServerUrl(), $this->sdkConfiguration->getServerDefaults()); @@ -2463,8 +2571,10 @@ public function requestBodyPostMultipleContentTypesInlineFiltered( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -2481,12 +2591,12 @@ public function requestBodyPostMultipleContentTypesInlineFiltered( /** * requestBodyPostMultipleContentTypesSplitParamForm * - * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded $requestBody + * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamFormRequestBody $requestBody * @param string $paramStr * @return \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamFormResponse */ public function requestBodyPostMultipleContentTypesSplitParamForm( - \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded $requestBody, + \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamFormRequestBody $requestBody, string $paramStr, ): \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamFormResponse { @@ -2511,8 +2621,10 @@ public function requestBodyPostMultipleContentTypesSplitParamForm( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamFormResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -2529,12 +2641,12 @@ public function requestBodyPostMultipleContentTypesSplitParamForm( /** * requestBodyPostMultipleContentTypesSplitParamJson * - * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationJSON $requestBody + * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody $requestBody * @param string $paramStr * @return \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamJsonResponse */ public function requestBodyPostMultipleContentTypesSplitParamJson( - \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationJSON $requestBody, + \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody $requestBody, string $paramStr, ): \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamJsonResponse { @@ -2559,8 +2671,10 @@ public function requestBodyPostMultipleContentTypesSplitParamJson( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamJsonResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -2577,12 +2691,12 @@ public function requestBodyPostMultipleContentTypesSplitParamJson( /** * requestBodyPostMultipleContentTypesSplitParamMultipart * - * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartFormData $requestBody + * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody $requestBody * @param string $paramStr * @return \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartResponse */ public function requestBodyPostMultipleContentTypesSplitParamMultipart( - \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartFormData $requestBody, + \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody $requestBody, string $paramStr, ): \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartResponse { @@ -2607,8 +2721,10 @@ public function requestBodyPostMultipleContentTypesSplitParamMultipart( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -2625,11 +2741,11 @@ public function requestBodyPostMultipleContentTypesSplitParamMultipart( /** * requestBodyPostMultipleContentTypesSplitForm * - * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded $request + * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitFormRequestBody $request * @return \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitFormResponse */ public function requestBodyPostMultipleContentTypesSplitForm( - \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded $request, + \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitFormRequestBody $request, ): \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitFormResponse { $baseUrl = Utils\Utils::templateUrl($this->sdkConfiguration->getServerUrl(), $this->sdkConfiguration->getServerDefaults()); @@ -2648,8 +2764,10 @@ public function requestBodyPostMultipleContentTypesSplitForm( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitFormResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -2666,11 +2784,11 @@ public function requestBodyPostMultipleContentTypesSplitForm( /** * requestBodyPostMultipleContentTypesSplitJson * - * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitApplicationJSON $request + * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitJsonRequestBody $request * @return \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitJsonResponse */ public function requestBodyPostMultipleContentTypesSplitJson( - \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitApplicationJSON $request, + \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitJsonRequestBody $request, ): \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitJsonResponse { $baseUrl = Utils\Utils::templateUrl($this->sdkConfiguration->getServerUrl(), $this->sdkConfiguration->getServerDefaults()); @@ -2689,8 +2807,10 @@ public function requestBodyPostMultipleContentTypesSplitJson( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitJsonResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -2707,11 +2827,11 @@ public function requestBodyPostMultipleContentTypesSplitJson( /** * requestBodyPostMultipleContentTypesSplitMultipart * - * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartFormData $request + * @param \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartRequestBody $request * @return \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartResponse */ public function requestBodyPostMultipleContentTypesSplitMultipart( - \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartFormData $request, + \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartRequestBody $request, ): \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartResponse { $baseUrl = Utils\Utils::templateUrl($this->sdkConfiguration->getServerUrl(), $this->sdkConfiguration->getServerDefaults()); @@ -2730,8 +2850,10 @@ public function requestBodyPostMultipleContentTypesSplitMultipart( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -2770,15 +2892,17 @@ public function requestBodyPostNotNullableNotRequiredStringBody( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNotNullableNotRequiredStringBodyResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNotNullableNotRequiredStringBodyResponseBody', 'json'); } } @@ -2811,15 +2935,17 @@ public function requestBodyPostNullArray( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullArrayResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostNullArray200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullArray200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullArrayResponseBody', 'json'); } } @@ -2852,15 +2978,17 @@ public function requestBodyPostNullDictionary( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullDictionaryResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostNullDictionary200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullDictionary200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullDictionaryResponseBody', 'json'); } } @@ -2892,15 +3020,17 @@ public function requestBodyPostNullableNotRequiredStringBody( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableNotRequiredStringBodyResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableNotRequiredStringBodyResponseBody', 'json'); } } @@ -2933,15 +3063,17 @@ public function requestBodyPostNullableRequiredStringBody( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableRequiredStringBodyResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->requestBodyPostNullableRequiredStringBody200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableRequiredStringBody200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\RequestBodyPostNullableRequiredStringBodyResponseBody', 'json'); } } @@ -2974,8 +3106,10 @@ public function requestBodyPutBytes( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutBytesResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3022,8 +3156,10 @@ public function requestBodyPutBytesWithParams( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutBytesWithParamsResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3063,8 +3199,10 @@ public function requestBodyPutMultipartDeep( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartDeepResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3104,8 +3242,10 @@ public function requestBodyPutMultipartDifferentFileName( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartDifferentFileNameResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3145,8 +3285,10 @@ public function requestBodyPutMultipartFile( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartFileResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3186,8 +3328,10 @@ public function requestBodyPutMultipartSimple( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartSimpleResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3227,8 +3371,10 @@ public function requestBodyPutString( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutStringResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3275,8 +3421,10 @@ public function requestBodyPutStringWithParams( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutStringWithParamsResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3293,12 +3441,12 @@ public function requestBodyPutStringWithParams( /** * requestBodyReadAndWrite * - * @param \OpenAPI\OpenAPI\Models\Shared\ReadWriteObjectInput $request + * @param \OpenAPI\OpenAPI\Models\Shared\ReadWriteObject $request * @param string $serverURL * @return \OpenAPI\OpenAPI\Models\Operations\RequestBodyReadAndWriteResponse */ public function requestBodyReadAndWrite( - \OpenAPI\OpenAPI\Models\Shared\ReadWriteObjectInput $request, + \OpenAPI\OpenAPI\Models\Shared\ReadWriteObject $request, ?string $serverURL = null, ): \OpenAPI\OpenAPI\Models\Operations\RequestBodyReadAndWriteResponse { @@ -3323,8 +3471,10 @@ public function requestBodyReadAndWrite( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyReadAndWriteResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3371,8 +3521,10 @@ public function requestBodyReadOnlyInput( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyReadOnlyInputResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3419,8 +3571,10 @@ public function requestBodyReadOnlyUnion( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyReadOnlyUnionResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3467,8 +3621,10 @@ public function requestBodyReadWriteOnlyUnion( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyReadWriteOnlyUnionResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3515,8 +3671,10 @@ public function requestBodyWriteOnly( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyWriteOnlyResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3563,8 +3721,10 @@ public function requestBodyWriteOnlyOutput( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyWriteOnlyOutputResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -3611,8 +3771,10 @@ public function requestBodyWriteOnlyUnion( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyWriteOnlyUnionResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Resource.php b/php-client-sdk/src/Resource.php index fdc9f40d4..04789a028 100755 --- a/php-client-sdk/src/Resource.php +++ b/php-client-sdk/src/Resource.php @@ -47,8 +47,10 @@ public function createFile( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\CreateFileResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -88,8 +90,10 @@ public function createResource( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\CreateResourceResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -127,8 +131,10 @@ public function deleteResource( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\DeleteResourceResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -162,8 +168,10 @@ public function getResource( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\GetResourceResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -201,8 +209,10 @@ public function updateResource( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\UpdateResourceResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/ResponseBodies.php b/php-client-sdk/src/ResponseBodies.php index ec6e4b90d..87d731aee 100755 --- a/php-client-sdk/src/ResponseBodies.php +++ b/php-client-sdk/src/ResponseBodies.php @@ -55,15 +55,17 @@ public function responseBodyAdditionalPropertiesComplexNumbersPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesComplexNumbersPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody', 'json'); } } @@ -96,15 +98,17 @@ public function responseBodyAdditionalPropertiesDatePost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesDatePostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesDatePostResponseBody', 'json'); } } @@ -137,15 +141,17 @@ public function responseBodyAdditionalPropertiesObjectPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesObjectPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesObjectPostResponseBody', 'json'); } } @@ -178,15 +184,17 @@ public function responseBodyAdditionalPropertiesPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->responseBodyAdditionalPropertiesPost200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesPost200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\ResponseBodyAdditionalPropertiesPostResponseBody', 'json'); } } @@ -212,8 +220,10 @@ public function responseBodyBytesGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyBytesGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -254,8 +264,10 @@ public function responseBodyEmptyWithHeaders( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyEmptyWithHeadersResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -293,8 +305,10 @@ public function responseBodyOptionalGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyOptionalGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -304,7 +318,7 @@ public function responseBodyOptionalGet( $response->typedObject1 = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Shared\TypedObject1', 'json'); } if (Utils\Utils::matchContentType($contentType, 'text/plain')) { - $response->responseBodyOptionalGet200TextPlainString = $httpResponse->getBody()->getContents(); + $response->res = $httpResponse->getBody()->getContents(); } } @@ -337,8 +351,10 @@ public function responseBodyReadOnly( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyReadOnlyResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -371,8 +387,10 @@ public function responseBodyStringGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyStringGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -404,8 +422,10 @@ public function responseBodyXmlGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyXmlGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -444,15 +464,17 @@ public function responseBodyZeroValueComplexTypePtrsPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyZeroValueComplexTypePtrsPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\ResponseBodyZeroValueComplexTypePtrsPostResponseBody', 'json'); } } diff --git a/php-client-sdk/src/Retries.php b/php-client-sdk/src/Retries.php index 812e8020e..77073d291 100755 --- a/php-client-sdk/src/Retries.php +++ b/php-client-sdk/src/Retries.php @@ -60,8 +60,10 @@ public function retriesGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\RetriesGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/SDK.php b/php-client-sdk/src/SDK.php index 117d0461d..be2d0dc62 100755 --- a/php-client-sdk/src/SDK.php +++ b/php-client-sdk/src/SDK.php @@ -35,25 +35,11 @@ class SDK ]; /** - * Endpoints for testing authentication. - * - * @var Auth $$auth - */ - public Auth $auth; - - /** - * Endpoints for testing authentication. - * - * @var AuthNew $$authNew - */ - public AuthNew $authNew; - - /** - * Testing for documentation extensions and tooling. + * Endpoints for purely testing valid generation behavior. * - * @var Documentation $$documentation + * @var Generation $$generation */ - public Documentation $documentation; + public Generation $generation; /** * Endpoints for testing error responses. @@ -62,7 +48,12 @@ class SDK */ public Errors $errors; - public First $first; + /** + * Endpoints for testing union types. + * + * @var Unions $$unions + */ + public Unions $unions; /** * Endpoints for testing flattening through request body and parameter combinations. @@ -72,18 +63,18 @@ class SDK public Flattening $flattening; /** - * Endpoints for purely testing valid generation behavior. + * Endpoints for testing global parameters. * - * @var Generation $$generation + * @var Globals $$globals */ - public Generation $generation; + public Globals $globals; /** - * Endpoints for testing global parameters. + * Endpoints for testing parameters. * - * @var Globals $$globals + * @var Parameters $$parameters */ - public Globals $globals; + public Parameters $parameters; public NestFirst $nestFirst; @@ -94,64 +85,73 @@ class SDK public NestedSecond $nestedSecond; /** - * Endpoints for testing the pagination extension + * Endpoints for testing request bodies. * - * @var Pagination $$pagination + * @var RequestBodies $$requestBodies */ - public Pagination $pagination; + public RequestBodies $requestBodies; /** - * Endpoints for testing parameters. + * Endpoints for testing response bodies. * - * @var Parameters $$parameters + * @var ResponseBodies $$responseBodies */ - public Parameters $parameters; + public ResponseBodies $responseBodies; /** - * Endpoints for testing request bodies. + * Endpoints for testing servers. * - * @var RequestBodies $$requestBodies + * @var Servers $$servers */ - public RequestBodies $requestBodies; - - public Resource $resource; + public Servers $servers; /** - * Endpoints for testing response bodies. + * Endpoints for testing telemetry. * - * @var ResponseBodies $$responseBodies + * @var Telemetry $$telemetry */ - public ResponseBodies $responseBodies; + public Telemetry $telemetry; /** - * Endpoints for testing retries. + * Endpoints for testing authentication. * - * @var Retries $$retries + * @var AuthNew $$authNew */ - public Retries $retries; + public AuthNew $authNew; - public Second $second; + /** + * Endpoints for testing authentication. + * + * @var Auth $$auth + */ + public Auth $auth; /** - * Endpoints for testing servers. + * Testing for documentation extensions and tooling. * - * @var Servers $$servers + * @var Documentation $$documentation */ - public Servers $servers; + public Documentation $documentation; + + public Resource $resource; + + public First $first; + + public Second $second; /** - * Endpoints for testing telemetry. + * Endpoints for testing the pagination extension * - * @var Telemetry $$telemetry + * @var Pagination $$pagination */ - public Telemetry $telemetry; + public Pagination $pagination; /** - * Endpoints for testing union types. + * Endpoints for testing retries. * - * @var Unions $$unions + * @var Retries $$retries */ - public Unions $unions; + public Retries $retries; private SDKConfiguration $sdkConfiguration; @@ -172,22 +172,18 @@ public function __construct(SDKConfiguration $sdkConfiguration) { $this->sdkConfiguration = $sdkConfiguration; - $this->auth = new Auth($this->sdkConfiguration); - - $this->authNew = new AuthNew($this->sdkConfiguration); - - $this->documentation = new Documentation($this->sdkConfiguration); + $this->generation = new Generation($this->sdkConfiguration); $this->errors = new Errors($this->sdkConfiguration); - $this->first = new First($this->sdkConfiguration); + $this->unions = new Unions($this->sdkConfiguration); $this->flattening = new Flattening($this->sdkConfiguration); - $this->generation = new Generation($this->sdkConfiguration); - $this->globals = new Globals($this->sdkConfiguration); + $this->parameters = new Parameters($this->sdkConfiguration); + $this->nestFirst = new NestFirst($this->sdkConfiguration); $this->nested = new Nested($this->sdkConfiguration); @@ -196,25 +192,29 @@ public function __construct(SDKConfiguration $sdkConfiguration) $this->nestedSecond = new NestedSecond($this->sdkConfiguration); - $this->pagination = new Pagination($this->sdkConfiguration); + $this->requestBodies = new RequestBodies($this->sdkConfiguration); - $this->parameters = new Parameters($this->sdkConfiguration); + $this->responseBodies = new ResponseBodies($this->sdkConfiguration); - $this->requestBodies = new RequestBodies($this->sdkConfiguration); + $this->servers = new Servers($this->sdkConfiguration); - $this->resource = new Resource($this->sdkConfiguration); + $this->telemetry = new Telemetry($this->sdkConfiguration); - $this->responseBodies = new ResponseBodies($this->sdkConfiguration); + $this->authNew = new AuthNew($this->sdkConfiguration); - $this->retries = new Retries($this->sdkConfiguration); + $this->auth = new Auth($this->sdkConfiguration); - $this->second = new Second($this->sdkConfiguration); + $this->documentation = new Documentation($this->sdkConfiguration); - $this->servers = new Servers($this->sdkConfiguration); + $this->resource = new Resource($this->sdkConfiguration); - $this->telemetry = new Telemetry($this->sdkConfiguration); + $this->first = new First($this->sdkConfiguration); - $this->unions = new Unions($this->sdkConfiguration); + $this->second = new Second($this->sdkConfiguration); + + $this->pagination = new Pagination($this->sdkConfiguration); + + $this->retries = new Retries($this->sdkConfiguration); } /** @@ -243,15 +243,17 @@ public function putAnythingIgnoredGeneration( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\PutAnythingIgnoredGenerationResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; if ($httpResponse->getStatusCode() === 200) { if (Utils\Utils::matchContentType($contentType, 'application/json')) { $serializer = Utils\JSON::createSerializer(); - $response->putAnythingIgnoredGeneration200ApplicationJSONObject = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\PutAnythingIgnoredGeneration200ApplicationJSON', 'json'); + $response->object = $serializer->deserialize((string)$httpResponse->getBody(), 'OpenAPI\OpenAPI\Models\Operations\PutAnythingIgnoredGenerationResponseBody', 'json'); } } @@ -277,8 +279,10 @@ public function responseBodyJsonGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ResponseBodyJsonGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/SDKConfiguration.php b/php-client-sdk/src/SDKConfiguration.php index 653fdee3c..938cd1228 100755 --- a/php-client-sdk/src/SDKConfiguration.php +++ b/php-client-sdk/src/SDKConfiguration.php @@ -36,9 +36,9 @@ class SDKConfiguration ]; public string $language = 'php'; public string $openapiDocVersion = '0.1.0'; - public string $sdkVersion = '1.36.2'; - public string $genVersion = '2.173.0'; - public string $userAgent = 'speakeasy-sdk/php 1.36.2 2.173.0 0.1.0 openapi/openapi'; + public string $sdkVersion = '2.0.0'; + public string $genVersion = '2.181.1'; + public string $userAgent = 'speakeasy-sdk/php 2.0.0 2.181.1 0.1.0 openapi/openapi'; /** @var array>> */ public ?array $globals = [ 'parameters' => [] diff --git a/php-client-sdk/src/Second.php b/php-client-sdk/src/Second.php index 7a7d45fe2..6aa8f96ce 100755 --- a/php-client-sdk/src/Second.php +++ b/php-client-sdk/src/Second.php @@ -40,8 +40,10 @@ public function get( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\GroupSecondGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Servers.php b/php-client-sdk/src/Servers.php index 498bc0d1e..16657e847 100755 --- a/php-client-sdk/src/Servers.php +++ b/php-client-sdk/src/Servers.php @@ -69,8 +69,10 @@ public function selectGlobalServer( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\SelectGlobalServerResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -108,8 +110,10 @@ public function selectServerWithID( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\SelectServerWithIDResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -148,8 +152,10 @@ public function serverWithProtocolTemplate( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ServerWithProtocolTemplateResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -187,8 +193,10 @@ public function serverWithTemplates( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ServerWithTemplatesResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -217,8 +225,10 @@ public function serverWithTemplatesGlobal( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ServerWithTemplatesGlobalResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -256,8 +266,10 @@ public function serversByIDWithTemplates( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\ServersByIDWithTemplatesResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Telemetry.php b/php-client-sdk/src/Telemetry.php index 024b677ba..5a9d4aabb 100755 --- a/php-client-sdk/src/Telemetry.php +++ b/php-client-sdk/src/Telemetry.php @@ -49,8 +49,10 @@ public function telemetrySpeakeasyUserAgentGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\TelemetrySpeakeasyUserAgentGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -83,8 +85,10 @@ public function telemetryUserAgentGet( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\TelemetryUserAgentGetResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/src/Unions.php b/php-client-sdk/src/Unions.php index c13f478d1..ec682863d 100755 --- a/php-client-sdk/src/Unions.php +++ b/php-client-sdk/src/Unions.php @@ -47,8 +47,10 @@ public function flattenedTypedObjectPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\FlattenedTypedObjectPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -88,8 +90,10 @@ public function mixedTypeOneOfPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\MixedTypeOneOfPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -129,8 +133,10 @@ public function nullableOneOfRefInObjectPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NullableOneOfRefInObjectPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -170,8 +176,10 @@ public function nullableOneOfSchemaPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NullableOneOfSchemaPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -211,8 +219,10 @@ public function nullableOneOfTypeInObjectPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NullableOneOfTypeInObjectPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -252,8 +262,10 @@ public function nullableTypedObjectPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\NullableTypedObjectPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -293,8 +305,10 @@ public function primitiveTypeOneOfPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\PrimitiveTypeOneOfPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -334,8 +348,10 @@ public function stronglyTypedOneOfPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\StronglyTypedOneOfPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -375,8 +391,10 @@ public function typedObjectNullableOneOfPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\TypedObjectNullableOneOfPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -416,8 +434,10 @@ public function typedObjectOneOfPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\TypedObjectOneOfPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -457,8 +477,10 @@ public function unionBigIntDecimal( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\UnionBigIntDecimalResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -498,8 +520,10 @@ public function unionDateNull( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\UnionDateNullResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -539,8 +563,10 @@ public function unionDateTimeBigInt( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\UnionDateTimeBigIntResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -580,8 +606,10 @@ public function unionDateTimeNull( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\UnionDateTimeNullResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; @@ -621,8 +649,10 @@ public function weaklyTypedOneOfPost( $contentType = $httpResponse->getHeader('Content-Type')[0] ?? ''; + $statusCode = $httpResponse->getStatusCode(); + $response = new \OpenAPI\OpenAPI\Models\Operations\WeaklyTypedOneOfPostResponse(); - $response->statusCode = $httpResponse->getStatusCode(); + $response->statusCode = $statusCode; $response->contentType = $contentType; $response->rawResponse = $httpResponse; diff --git a/php-client-sdk/testsPrimary/AuthTest.php b/php-client-sdk/testsPrimary/AuthTest.php index 8df7bfdac..4bca8e911 100755 --- a/php-client-sdk/testsPrimary/AuthTest.php +++ b/php-client-sdk/testsPrimary/AuthTest.php @@ -10,7 +10,6 @@ require_once 'vendor/autoload.php'; use OpenAPI\OpenAPI\Tests\CommonHelpers; -use OpenAPI\OpenAPI\Tests\Helpers\Helpers; use PHPUnit\Framework\TestCase; final class AuthTest extends TestCase @@ -24,7 +23,7 @@ public function testBasicAuth(): void $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $request->basicAuth = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth(); + $request->basicAuth = new \OpenAPI\OpenAPI\Models\Shared\BasicAuth(); $request->basicAuth->username = 'testUser'; $request->basicAuth->password = 'testPass'; @@ -50,7 +49,7 @@ public function testApiKeyAuthGlobal(): void $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $header = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header->headerName = 'x-api-key'; $header->expectedValue = 'test_api_key'; @@ -127,7 +126,7 @@ public function testOauth2Auth(): void $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $header = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header->headerName = 'Authorization'; $header->expectedValue = 'Bearer testToken'; @@ -153,7 +152,7 @@ public function testOpenIdConnectAuth(): void $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $header = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header->headerName = 'Authorization'; $header->expectedValue = 'Bearer testToken'; @@ -180,11 +179,11 @@ public function testMultipleSimpleSchemeAuth(): void $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $header1 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header1 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header1->headerName = 'x-api-key'; $header1->expectedValue = 'test_api_key'; - $header2 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header2 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header2->headerName = 'Authorization'; $header2->expectedValue = 'Bearer testToken'; @@ -212,11 +211,11 @@ public function testMultipleMixedSchemeAuth(): void $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $request->basicAuth = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth(); + $request->basicAuth = new \OpenAPI\OpenAPI\Models\Shared\BasicAuth(); $request->basicAuth->username = 'testUser'; $request->basicAuth->password = 'testPass'; - $header1 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header1 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header1->headerName = 'x-api-key'; $header1->expectedValue = 'test_api_key'; @@ -246,7 +245,7 @@ public function testMultipleSimpleOptionsAuthFirstOption(): void $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $header1 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header1 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header1->headerName = 'x-api-key'; $header1->expectedValue = 'test_api_key'; @@ -273,7 +272,7 @@ public function testMultipleSimpleOptionsAuthSecondOption(): void $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $header1 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header1 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header1->headerName = 'Authorization'; $header1->expectedValue = 'Bearer testToken'; @@ -300,7 +299,7 @@ public function testMultipleMixedOptionsAuthFirstOption(): void $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $header1 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header1 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header1->headerName = 'x-api-key'; $header1->expectedValue = 'test_api_key'; @@ -326,7 +325,7 @@ public function testMultipleMixedOptionsAuthSecondOption(): void $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $request->basicAuth = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth(); + $request->basicAuth = new \OpenAPI\OpenAPI\Models\Shared\BasicAuth(); $request->basicAuth->username = 'testUser'; $request->basicAuth->password = 'testPass'; @@ -351,11 +350,11 @@ public function testMultipleOptionsWithSimpleSchemesAuthFirstOption(): void $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $header1 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header1 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header1->headerName = 'x-api-key'; $header1->expectedValue = 'test_api_key'; - $header2 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header2 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header2->headerName = 'Authorization'; $header2->expectedValue = 'Bearer testToken'; @@ -385,11 +384,11 @@ public function testMultipleOptionsWithSimpleSchemesAuthSecondOption(): void $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $header1 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header1 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header1->headerName = 'x-api-key'; $header1->expectedValue = 'test_api_key'; - $header2 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header2 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header2->headerName = 'Authorization'; $header2->expectedValue = 'Bearer testToken'; @@ -419,11 +418,11 @@ public function testMultipleOptionsWithMixedSchemesAuthFirstOption(): void $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $header1 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header1 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header1->headerName = 'x-api-key'; $header1->expectedValue = 'test_api_key'; - $header2 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header2 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header2->headerName = 'Authorization'; $header2->expectedValue = 'Bearer testToken'; @@ -452,11 +451,11 @@ public function testMultipleOptionsWithMixedSchemesAuthSecondOption(): void $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); $request = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBody(); - $request->basicAuth = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyBasicAuth(); + $request->basicAuth = new \OpenAPI\OpenAPI\Models\Shared\BasicAuth(); $request->basicAuth->username = 'testUser'; $request->basicAuth->password = 'testPass'; - $header1 = new \OpenAPI\OpenAPI\Models\Shared\AuthServiceRequestBodyHeaderAuth(); + $header1 = new \OpenAPI\OpenAPI\Models\Shared\HeaderAuth(); $header1->headerName = 'x-api-key'; $header1->expectedValue = 'test_api_key'; diff --git a/php-client-sdk/testsPrimary/Helpers/Helpers.php b/php-client-sdk/testsPrimary/Helpers/Helpers.php index 4a974ee3b..1b3376c3a 100755 --- a/php-client-sdk/testsPrimary/Helpers/Helpers.php +++ b/php-client-sdk/testsPrimary/Helpers/Helpers.php @@ -21,8 +21,8 @@ public static function createSimpleObject(): \OpenAPI\OpenAPI\Models\Shared\Simp $object->bool = true; $object->int = 1; $object->int32 = 1; - $object->int32Enum = \OpenAPI\OpenAPI\Models\Shared\SimpleObjectInt32Enum::FiftyFive; - $object->intEnum = \OpenAPI\OpenAPI\Models\Shared\SimpleObjectIntEnum::Second; + $object->int32Enum = \OpenAPI\OpenAPI\Models\Shared\Int32Enum::FiftyFive; + $object->intEnum = \OpenAPI\OpenAPI\Models\Shared\IntEnum::Second; $object->num = 1.1; $object->float32 = 1.1; $object->enum = \OpenAPI\OpenAPI\Models\Shared\Enum::One; diff --git a/php-client-sdk/testsPrimary/ParameterTest.php b/php-client-sdk/testsPrimary/ParameterTest.php index 0a5ee650d..ec898d98a 100755 --- a/php-client-sdk/testsPrimary/ParameterTest.php +++ b/php-client-sdk/testsPrimary/ParameterTest.php @@ -223,24 +223,24 @@ public function testFormQueryParamsArray(): void } public function testPipeDelimitedQueryParamsArray(): void - { - CommonHelpers::recordTest('parameters-pipe-query-params-array'); + { + CommonHelpers::recordTest('parameters-pipe-query-params-array'); - $sdk = \OpenAPI\OpenAPI\SDK::builder()->build(); + $sdk = \OpenAPI\OpenAPI\SDK::builder()->build(); - $obj = Helpers::createSimpleObject(); + $obj = Helpers::createSimpleObject(); - $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); + $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); - $response = $sdk->parameters->pipeDelimitedQueryParamsArray(['test', 'test2'], [1, 2], ['key1' => 'val1', 'key2' => 'val2'], $obj); + $response = $sdk->parameters->pipeDelimitedQueryParamsArray(['test', 'test2'], [1, 2], ['key1' => 'val1', 'key2' => 'val2'], $obj); - $this->assertNotNull($response); - $this->assertEquals(200, $response->statusCode); - $this->assertNotNull($response->res); - $this->assertEquals('http://localhost:35123/anything/queryParams/pipe/array?arrParam=test|test2&arrParamExploded=1&arrParamExploded=2&mapParam=key1|val1|key2|val2&objParam=any|any|bool|true|boolOpt|true|date|2020-01-01|dateTime|2020-01-01T00%3A00%3A00.000001Z|enum|one|float32|1.1|int|1|int32|1|int32Enum|55|intEnum|2|num|1.1|str|test|strOpt|testOptional', $response->res->url); - $this->assertEquals('test|test2', $response->res->args->arrParam); - $this->assertEquals(['1', '2'], $response->res->args->arrParamExploded); - } + $this->assertNotNull($response); + $this->assertEquals(200, $response->statusCode); + $this->assertNotNull($response->res); + $this->assertEquals('http://localhost:35123/anything/queryParams/pipe/array?arrParam=test|test2&arrParamExploded=1&arrParamExploded=2&mapParam=key1|val1|key2|val2&objParam=any|any|bool|true|boolOpt|true|date|2020-01-01|dateTime|2020-01-01T00%3A00%3A00.000001Z|enum|one|float32|1.1|int|1|int32|1|int32Enum|55|intEnum|2|num|1.1|str|test|strOpt|testOptional', $response->res->url); + $this->assertEquals('test|test2', $response->res->args->arrParam); + $this->assertEquals(['1', '2'], $response->res->args->arrParamExploded); + } public function testFormQueryParamsMap(): void { @@ -269,7 +269,7 @@ public function testDeepObjectQueryParamsObject(): void $obj = Helpers::createSimpleObject(); - $objArrParam = new \OpenAPI\OpenAPI\Models\Operations\DeepObjectQueryParamsObjectObjArrParam(); + $objArrParam = new \OpenAPI\OpenAPI\Models\Operations\ObjArrParam(); $objArrParam->arr = ['test', 'test2']; $response = $sdk->parameters->deepObjectQueryParamsObject($obj, $objArrParam); diff --git a/php-client-sdk/testsPrimary/RequestBodiesTest.php b/php-client-sdk/testsPrimary/RequestBodiesTest.php index 49ec245e7..1824b15d1 100755 --- a/php-client-sdk/testsPrimary/RequestBodiesTest.php +++ b/php-client-sdk/testsPrimary/RequestBodiesTest.php @@ -51,8 +51,8 @@ public function testRequestBodyPostApplicationJsonArray(): void $this->assertNotNull($response); $this->assertEquals(200, $response->statusCode); - $this->assertNotNull($response->simpleObjects); - $this->assertEquals($arr, $response->simpleObjects); + $this->assertNotNull($response->res); + $this->assertEquals($arr, $response->res); } public function testRequestBodyPostApplicationJsonArrayOfArray(): void @@ -71,8 +71,8 @@ public function testRequestBodyPostApplicationJsonArrayOfArray(): void $this->assertNotNull($response); $this->assertEquals(200, $response->statusCode); - $this->assertNotNull($response->arrs); - $this->assertEquals($arrArr, $response->arrs); + $this->assertNotNull($response->res); + $this->assertEquals($arrArr, $response->res); } public function testRequestBodyPostApplicationJsonMap(): void @@ -175,8 +175,8 @@ public function testRequestBodyPostApplicationJsonArrayOfMap(): void $this->assertNotNull($response); $this->assertEquals(200, $response->statusCode); - $this->assertNotNull($response->maps); - $this->assertEquals($arrM, $response->maps); + $this->assertNotNull($response->res); + $this->assertEquals($arrM, $response->res); } public function testRequestBodyPostApplicationJsonMapOfPrimitive(): void @@ -214,8 +214,8 @@ public function testRequestBodyPostApplicationJsonArrayOfPrimitive(): void $this->assertNotNull($response); $this->assertEquals(200, $response->statusCode); - $this->assertNotNull($response->strings); - $this->assertEquals($arr, $response->strings); + $this->assertNotNull($response->res); + $this->assertEquals($arr, $response->res); } public function testRequestBodyPostApplicationJsonMapOfMapOfPrimitive(): void @@ -262,8 +262,8 @@ public function testRequestBodyPostApplicationJsonArrayOfArrayOfPrimitive(): voi $this->assertNotNull($response); $this->assertEquals(200, $response->statusCode); - $this->assertNotNull($response->arrs); - $this->assertEquals($arrArr, $response->arrs); + $this->assertNotNull($response->res); + $this->assertEquals($arrArr, $response->res); } public function testRequestBodyPostApplicationJsonArrayObject(): void @@ -389,7 +389,7 @@ public function testRequestBodyPostMultipleContentTypesInlineFiltered(): void $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); - $request = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON(); + $request = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesInlineFilteredRequestBody(); $request->bool = true; $request->num = 1.1; $request->str = 'test'; @@ -412,7 +412,7 @@ public function testRequestBodyPostMultipleContentTypesSplitJson(): void $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); - $request = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitApplicationJSON(); + $request = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitJsonRequestBody(); $request->bool = true; $request->num = 1.1; $request->str = 'test'; @@ -435,7 +435,7 @@ public function testRequestBodyPostMultipleContentTypesSplitMultipart(): void $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); - $request = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartFormData(); + $request = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitMultipartRequestBody(); $request->bool2 = true; $request->num2 = 1.1; $request->str2 = 'test'; @@ -458,7 +458,7 @@ public function testRequestBodyPostMultipleContentTypesSplitForm(): void $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); - $request = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded(); + $request = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitFormRequestBody(); $request->bool3 = true; $request->num3 = 1.1; $request->str3 = 'test'; @@ -481,7 +481,7 @@ public function testRequestBodyPostMultipleContentTypesSplitJsonWithParam(): voi $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); - $requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationJSON(); + $requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody(); $requestBody->bool = true; $requestBody->num = 1.1; $requestBody->str = 'test body'; @@ -505,7 +505,7 @@ public function testRequestBodyPostMultipleContentTypesSplitMultipartWithParam() $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); - $requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartFormData(); + $requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody(); $requestBody->bool2 = true; $requestBody->num2 = 1.1; $requestBody->str2 = 'test body'; @@ -529,7 +529,7 @@ public function testRequestBodyPostMultipleContentTypesSplitFormWithParam(): voi $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); - $requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded(); + $requestBody = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPostMultipleContentTypesSplitParamFormRequestBody(); $requestBody->bool3 = true; $requestBody->num3 = 1.1; $requestBody->str3 = 'test body'; @@ -611,13 +611,13 @@ public function testRequestBodyPutMultipartFile(): void $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); $request = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartFileRequestBody(); - $request->file = new \OpenAPI\OpenAPI\Models\Operations\RequestBodyPutMultipartFileRequestBodyFile(); + $request->file = new \OpenAPI\OpenAPI\Models\Operations\File(); $path = './tests/testUpload.json'; $file = fopen($path, 'r'); $content = fread($file, filesize($path)); - $request->file->file = 'testUpload.json'; + $request->file->fileName = 'testUpload.json'; $request->file->content = $content; $response = $sdk->requestBodies->requestBodyPutMultipartFile($request); @@ -854,7 +854,7 @@ public function testRequestBodyReadAndWrite(): void $this->assertInstanceOf(\OpenAPI\OpenAPI\SDK::class, $sdk); - $r = new \OpenAPI\OpenAPI\Models\Shared\ReadWriteObjectInput(); + $r = new \OpenAPI\OpenAPI\Models\Shared\ReadWriteObject(); $r->num1 = 1; $r->num2 = 2; $r->num3 = 4; diff --git a/php-client-sdk/testsPrimary/ResponseBodiesTest.php b/php-client-sdk/testsPrimary/ResponseBodiesTest.php index 223686307..a64ca2806 100755 --- a/php-client-sdk/testsPrimary/ResponseBodiesTest.php +++ b/php-client-sdk/testsPrimary/ResponseBodiesTest.php @@ -34,16 +34,16 @@ public function testResponseBodyJsonGet(): void $this->assertNotNull($response->httpBinSimpleJsonObject); $obj = new \OpenAPI\OpenAPI\Models\Shared\HttpBinSimpleJsonObject(); - $obj->slideshow = new \OpenAPI\OpenAPI\Models\Shared\HttpBinSimpleJsonObjectSlideshow(); + $obj->slideshow = new \OpenAPI\OpenAPI\Models\Shared\Slideshow(); $obj->slideshow->author = 'Yours Truly'; $obj->slideshow->date = 'date of publication'; $obj->slideshow->title = 'Sample Slide Show'; $obj->slideshow->slides = []; - $slide1 = new \OpenAPI\OpenAPI\Models\Shared\HttpBinSimpleJsonObjectSlideshowSlides(); + $slide1 = new \OpenAPI\OpenAPI\Models\Shared\Slides(); $slide1->title = 'Wake up to WonderWidgets!'; $slide1->type = 'all'; $obj->slideshow->slides[] = $slide1; - $slide2 = new \OpenAPI\OpenAPI\Models\Shared\HttpBinSimpleJsonObjectSlideshowSlides(); + $slide2 = new \OpenAPI\OpenAPI\Models\Shared\Slides(); $slide2->title = 'Overview'; $slide2->type = 'all'; $slide2->items = [ diff --git a/php-client-sdk/testsPrimary/TelemetryTest.php b/php-client-sdk/testsPrimary/TelemetryTest.php index 944501a45..60090741e 100755 --- a/php-client-sdk/testsPrimary/TelemetryTest.php +++ b/php-client-sdk/testsPrimary/TelemetryTest.php @@ -28,7 +28,7 @@ public function testTelemetryUserAgentGet(): void $this->assertNotNull($response); $this->assertEquals(200, $response->statusCode); $this->assertEquals( - 'speakeasy-sdk/php 1.36.2 2.173.0 0.1.0 openapi/openapi', + 'speakeasy-sdk/php 2.0.0 2.181.1 0.1.0 openapi/openapi', $response->res->headers['X-Speakeasy-User-Agent'], ); } @@ -49,7 +49,7 @@ public function testTelemetrySpeakeasyUserAgentGet(): void $this->assertEquals(200, $response->statusCode); $this->assertEquals($userAgent, $response->res->headers['User-Agent']); $this->assertEquals( - 'speakeasy-sdk/php 1.36.2 2.173.0 0.1.0 openapi/openapi', + 'speakeasy-sdk/php 2.0.0 2.181.1 0.1.0 openapi/openapi', $response->res->headers['X-Speakeasy-User-Agent'], ); } diff --git a/python-client-sdk/README.md b/python-client-sdk/README.md index 845bbe710..b280ea8ca 100755 --- a/python-client-sdk/README.md +++ b/python-client-sdk/README.md @@ -25,7 +25,7 @@ s = sdk.SDK( res = s.generation.global_name_overridden() -if res.get_global_name_override_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -34,8 +34,8 @@ if res.get_global_name_override_200_application_json_object is not None: ## Second Do this second ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -62,8 +62,8 @@ req = operations.UsageExamplePostRequest( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -78,13 +78,13 @@ req = operations.UsageExamplePostRequest( decimal_parameter=Decimal('5223.72'), decimal_str_parameter=Decimal('2911.37'), double_parameter=6946.59, - enum_parameter=operations.UsageExamplePostEnumParameter.VALUE1, + enum_parameter=operations.EnumParameter.VALUE1, falsey_number_parameter=0, float32_parameter=1029.75, float_parameter=5669.99, int64_parameter=195232, int_parameter=569663, - opt_enum_parameter=operations.UsageExamplePostOptEnumParameter.VALUE3, + opt_enum_parameter=operations.OptEnumParameter.VALUE3, str_parameter='example 1', ) @@ -93,7 +93,7 @@ res = s.generation.usage_example_post(req, operations.UsageExamplePostSecurity( username="YOUR_USERNAME", )) -if res.usage_example_post_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -107,54 +107,7 @@ if res.usage_example_post_200_application_json_object is not None: * [put_anything_ignored_generation](docs/sdks/sdk/README.md#put_anything_ignored_generation) * [response_body_json_get](docs/sdks/sdk/README.md#response_body_json_get) -### [auth](docs/sdks/auth/README.md) - -* [api_key_auth](docs/sdks/auth/README.md#api_key_auth) -* [api_key_auth_global](docs/sdks/auth/README.md#api_key_auth_global) -* [basic_auth](docs/sdks/auth/README.md#basic_auth) -* [bearer_auth](docs/sdks/auth/README.md#bearer_auth) -* [global_bearer_auth](docs/sdks/auth/README.md#global_bearer_auth) -* [oauth2_auth](docs/sdks/auth/README.md#oauth2_auth) -* [oauth2_override](docs/sdks/auth/README.md#oauth2_override) -* [open_id_connect_auth](docs/sdks/auth/README.md#open_id_connect_auth) - -### [auth_new](docs/sdks/authnew/README.md) - -* [api_key_auth_global_new](docs/sdks/authnew/README.md#api_key_auth_global_new) -* [auth_global](docs/sdks/authnew/README.md#auth_global) -* [basic_auth_new](docs/sdks/authnew/README.md#basic_auth_new) -* [multiple_mixed_options_auth](docs/sdks/authnew/README.md#multiple_mixed_options_auth) -* [multiple_mixed_scheme_auth](docs/sdks/authnew/README.md#multiple_mixed_scheme_auth) -* [multiple_options_with_mixed_schemes_auth](docs/sdks/authnew/README.md#multiple_options_with_mixed_schemes_auth) -* [multiple_options_with_simple_schemes_auth](docs/sdks/authnew/README.md#multiple_options_with_simple_schemes_auth) -* [multiple_simple_options_auth](docs/sdks/authnew/README.md#multiple_simple_options_auth) -* [multiple_simple_scheme_auth](docs/sdks/authnew/README.md#multiple_simple_scheme_auth) -* [oauth2_auth_new](docs/sdks/authnew/README.md#oauth2_auth_new) -* [open_id_connect_auth_new](docs/sdks/authnew/README.md#open_id_connect_auth_new) - -### [documentation](docs/sdks/documentation/README.md) - -* [get_documentation_per_language](docs/sdks/documentation/README.md#get_documentation_per_language) - Gets documentation for some language, I guess. - -### [errors](docs/sdks/errors/README.md) - -* [connection_error_get](docs/sdks/errors/README.md#connection_error_get) -* [status_get_error](docs/sdks/errors/README.md#status_get_error) -* [status_get_x_speakeasy_errors](docs/sdks/errors/README.md#status_get_x_speakeasy_errors) - -### [first](docs/sdks/first/README.md) - -* [get](docs/sdks/first/README.md#get) - -### [flattening](docs/sdks/flattening/README.md) - -* [component_body_and_param_conflict](docs/sdks/flattening/README.md#component_body_and_param_conflict) -* [component_body_and_param_no_conflict](docs/sdks/flattening/README.md#component_body_and_param_no_conflict) -* [conflicting_params](docs/sdks/flattening/README.md#conflicting_params) -* [inline_body_and_param_conflict](docs/sdks/flattening/README.md#inline_body_and_param_conflict) -* [inline_body_and_param_no_conflict](docs/sdks/flattening/README.md#inline_body_and_param_no_conflict) - -### [generation](docs/sdks/generation/README.md) +### [.generation](docs/sdks/generation/README.md) * [anchor_types_get](docs/sdks/generation/README.md#anchor_types_get) * [array_circular_reference_get](docs/sdks/generation/README.md#array_circular_reference_get) @@ -177,38 +130,44 @@ if res.usage_example_post_200_application_json_object is not None: * [typed_parameter_generation_get](docs/sdks/generation/README.md#typed_parameter_generation_get) * [usage_example_post](docs/sdks/generation/README.md#usage_example_post) - An operation used for testing usage examples -### [globals](docs/sdks/globals/README.md) - -* [global_path_parameter_get](docs/sdks/globals/README.md#global_path_parameter_get) -* [globals_query_parameter_get](docs/sdks/globals/README.md#globals_query_parameter_get) - - -### [nest.first](docs/sdks/nestfirst/README.md) - -* [get](docs/sdks/nestfirst/README.md#get) - -### [nested](docs/sdks/nested/README.md) +### [.errors](docs/sdks/errors/README.md) -* [get](docs/sdks/nested/README.md#get) +* [connection_error_get](docs/sdks/errors/README.md#connection_error_get) +* [status_get_error](docs/sdks/errors/README.md#status_get_error) +* [status_get_x_speakeasy_errors](docs/sdks/errors/README.md#status_get_x_speakeasy_errors) -### [nested.first](docs/sdks/nestedfirst/README.md) +### [.unions](docs/sdks/unions/README.md) -* [get](docs/sdks/nestedfirst/README.md#get) +* [flattened_typed_object_post](docs/sdks/unions/README.md#flattened_typed_object_post) +* [mixed_type_one_of_post](docs/sdks/unions/README.md#mixed_type_one_of_post) +* [nullable_one_of_ref_in_object_post](docs/sdks/unions/README.md#nullable_one_of_ref_in_object_post) +* [nullable_one_of_schema_post](docs/sdks/unions/README.md#nullable_one_of_schema_post) +* [nullable_one_of_type_in_object_post](docs/sdks/unions/README.md#nullable_one_of_type_in_object_post) +* [nullable_typed_object_post](docs/sdks/unions/README.md#nullable_typed_object_post) +* [primitive_type_one_of_post](docs/sdks/unions/README.md#primitive_type_one_of_post) +* [strongly_typed_one_of_post](docs/sdks/unions/README.md#strongly_typed_one_of_post) +* [typed_object_nullable_one_of_post](docs/sdks/unions/README.md#typed_object_nullable_one_of_post) +* [typed_object_one_of_post](docs/sdks/unions/README.md#typed_object_one_of_post) +* [union_big_int_decimal](docs/sdks/unions/README.md#union_big_int_decimal) +* [union_date_null](docs/sdks/unions/README.md#union_date_null) +* [union_date_time_big_int](docs/sdks/unions/README.md#union_date_time_big_int) +* [union_date_time_null](docs/sdks/unions/README.md#union_date_time_null) +* [weakly_typed_one_of_post](docs/sdks/unions/README.md#weakly_typed_one_of_post) -### [nested.second](docs/sdks/nestedsecond/README.md) +### [.flattening](docs/sdks/flattening/README.md) -* [get](docs/sdks/nestedsecond/README.md#get) +* [component_body_and_param_conflict](docs/sdks/flattening/README.md#component_body_and_param_conflict) +* [component_body_and_param_no_conflict](docs/sdks/flattening/README.md#component_body_and_param_no_conflict) +* [conflicting_params](docs/sdks/flattening/README.md#conflicting_params) +* [inline_body_and_param_conflict](docs/sdks/flattening/README.md#inline_body_and_param_conflict) +* [inline_body_and_param_no_conflict](docs/sdks/flattening/README.md#inline_body_and_param_no_conflict) -### [pagination](docs/sdks/pagination/README.md) +### [.globals](docs/sdks/globals/README.md) -* [pagination_cursor_body](docs/sdks/pagination/README.md#pagination_cursor_body) -* [pagination_cursor_params](docs/sdks/pagination/README.md#pagination_cursor_params) -* [pagination_limit_offset_offset_body](docs/sdks/pagination/README.md#pagination_limit_offset_offset_body) -* [pagination_limit_offset_offset_params](docs/sdks/pagination/README.md#pagination_limit_offset_offset_params) -* [pagination_limit_offset_page_body](docs/sdks/pagination/README.md#pagination_limit_offset_page_body) -* [pagination_limit_offset_page_params](docs/sdks/pagination/README.md#pagination_limit_offset_page_params) +* [global_path_parameter_get](docs/sdks/globals/README.md#global_path_parameter_get) +* [globals_query_parameter_get](docs/sdks/globals/README.md#globals_query_parameter_get) -### [parameters](docs/sdks/parameters/README.md) +### [.parameters](docs/sdks/parameters/README.md) * [deep_object_query_params_map](docs/sdks/parameters/README.md#deep_object_query_params_map) * [deep_object_query_params_object](docs/sdks/parameters/README.md#deep_object_query_params_object) @@ -234,7 +193,24 @@ if res.usage_example_post_200_application_json_object is not None: * [simple_path_parameter_objects](docs/sdks/parameters/README.md#simple_path_parameter_objects) * [simple_path_parameter_primitives](docs/sdks/parameters/README.md#simple_path_parameter_primitives) -### [request_bodies](docs/sdks/requestbodies/README.md) + +### [.nest.first](docs/sdks/sdkfirst/README.md) + +* [get](docs/sdks/sdkfirst/README.md#get) + +### [.nested](docs/sdks/nested/README.md) + +* [get](docs/sdks/nested/README.md#get) + +### [.nested.first](docs/sdks/sdknestedfirst/README.md) + +* [get](docs/sdks/sdknestedfirst/README.md#get) + +### [.nested.second](docs/sdks/sdksecond/README.md) + +* [get](docs/sdks/sdksecond/README.md#get) + +### [.request_bodies](docs/sdks/requestbodies/README.md) * [nullable_object_post](docs/sdks/requestbodies/README.md#nullable_object_post) * [nullable_required_empty_object_post](docs/sdks/requestbodies/README.md#nullable_required_empty_object_post) @@ -318,15 +294,7 @@ if res.usage_example_post_200_application_json_object is not None: * [request_body_write_only_output](docs/sdks/requestbodies/README.md#request_body_write_only_output) * [request_body_write_only_union](docs/sdks/requestbodies/README.md#request_body_write_only_union) -### [resource](docs/sdks/resource/README.md) - -* [create_file](docs/sdks/resource/README.md#create_file) -* [create_resource](docs/sdks/resource/README.md#create_resource) -* [delete_resource](docs/sdks/resource/README.md#delete_resource) -* [get_resource](docs/sdks/resource/README.md#get_resource) -* [update_resource](docs/sdks/resource/README.md#update_resource) - -### [response_bodies](docs/sdks/responsebodies/README.md) +### [.response_bodies](docs/sdks/responsebodies/README.md) * [response_body_additional_properties_complex_numbers_post](docs/sdks/responsebodies/README.md#response_body_additional_properties_complex_numbers_post) * [response_body_additional_properties_date_post](docs/sdks/responsebodies/README.md#response_body_additional_properties_date_post) @@ -340,15 +308,7 @@ if res.usage_example_post_200_application_json_object is not None: * [response_body_xml_get](docs/sdks/responsebodies/README.md#response_body_xml_get) * [response_body_zero_value_complex_type_ptrs_post](docs/sdks/responsebodies/README.md#response_body_zero_value_complex_type_ptrs_post) -### [retries](docs/sdks/retries/README.md) - -* [retries_get](docs/sdks/retries/README.md#retries_get) - -### [second](docs/sdks/second/README.md) - -* [get](docs/sdks/second/README.md#get) - -### [servers](docs/sdks/servers/README.md) +### [.servers](docs/sdks/servers/README.md) * [select_global_server](docs/sdks/servers/README.md#select_global_server) * [select_server_with_id](docs/sdks/servers/README.md#select_server_with_id) - Select a server by ID. @@ -357,28 +317,68 @@ if res.usage_example_post_200_application_json_object is not None: * [server_with_templates_global](docs/sdks/servers/README.md#server_with_templates_global) * [servers_by_id_with_templates](docs/sdks/servers/README.md#servers_by_id_with_templates) -### [telemetry](docs/sdks/telemetry/README.md) +### [.telemetry](docs/sdks/telemetry/README.md) * [telemetry_speakeasy_user_agent_get](docs/sdks/telemetry/README.md#telemetry_speakeasy_user_agent_get) * [telemetry_user_agent_get](docs/sdks/telemetry/README.md#telemetry_user_agent_get) -### [unions](docs/sdks/unions/README.md) +### [.auth_new](docs/sdks/authnew/README.md) -* [flattened_typed_object_post](docs/sdks/unions/README.md#flattened_typed_object_post) -* [mixed_type_one_of_post](docs/sdks/unions/README.md#mixed_type_one_of_post) -* [nullable_one_of_ref_in_object_post](docs/sdks/unions/README.md#nullable_one_of_ref_in_object_post) -* [nullable_one_of_schema_post](docs/sdks/unions/README.md#nullable_one_of_schema_post) -* [nullable_one_of_type_in_object_post](docs/sdks/unions/README.md#nullable_one_of_type_in_object_post) -* [nullable_typed_object_post](docs/sdks/unions/README.md#nullable_typed_object_post) -* [primitive_type_one_of_post](docs/sdks/unions/README.md#primitive_type_one_of_post) -* [strongly_typed_one_of_post](docs/sdks/unions/README.md#strongly_typed_one_of_post) -* [typed_object_nullable_one_of_post](docs/sdks/unions/README.md#typed_object_nullable_one_of_post) -* [typed_object_one_of_post](docs/sdks/unions/README.md#typed_object_one_of_post) -* [union_big_int_decimal](docs/sdks/unions/README.md#union_big_int_decimal) -* [union_date_null](docs/sdks/unions/README.md#union_date_null) -* [union_date_time_big_int](docs/sdks/unions/README.md#union_date_time_big_int) -* [union_date_time_null](docs/sdks/unions/README.md#union_date_time_null) -* [weakly_typed_one_of_post](docs/sdks/unions/README.md#weakly_typed_one_of_post) +* [api_key_auth_global_new](docs/sdks/authnew/README.md#api_key_auth_global_new) +* [auth_global](docs/sdks/authnew/README.md#auth_global) +* [basic_auth_new](docs/sdks/authnew/README.md#basic_auth_new) +* [multiple_mixed_options_auth](docs/sdks/authnew/README.md#multiple_mixed_options_auth) +* [multiple_mixed_scheme_auth](docs/sdks/authnew/README.md#multiple_mixed_scheme_auth) +* [multiple_options_with_mixed_schemes_auth](docs/sdks/authnew/README.md#multiple_options_with_mixed_schemes_auth) +* [multiple_options_with_simple_schemes_auth](docs/sdks/authnew/README.md#multiple_options_with_simple_schemes_auth) +* [multiple_simple_options_auth](docs/sdks/authnew/README.md#multiple_simple_options_auth) +* [multiple_simple_scheme_auth](docs/sdks/authnew/README.md#multiple_simple_scheme_auth) +* [oauth2_auth_new](docs/sdks/authnew/README.md#oauth2_auth_new) +* [open_id_connect_auth_new](docs/sdks/authnew/README.md#open_id_connect_auth_new) + +### [.auth](docs/sdks/auth/README.md) + +* [api_key_auth](docs/sdks/auth/README.md#api_key_auth) +* [api_key_auth_global](docs/sdks/auth/README.md#api_key_auth_global) +* [basic_auth](docs/sdks/auth/README.md#basic_auth) +* [bearer_auth](docs/sdks/auth/README.md#bearer_auth) +* [global_bearer_auth](docs/sdks/auth/README.md#global_bearer_auth) +* [oauth2_auth](docs/sdks/auth/README.md#oauth2_auth) +* [oauth2_override](docs/sdks/auth/README.md#oauth2_override) +* [open_id_connect_auth](docs/sdks/auth/README.md#open_id_connect_auth) + +### [.documentation](docs/sdks/documentation/README.md) + +* [get_documentation_per_language](docs/sdks/documentation/README.md#get_documentation_per_language) - Gets documentation for some language, I guess. + +### [.resource](docs/sdks/resource/README.md) + +* [create_file](docs/sdks/resource/README.md#create_file) +* [create_resource](docs/sdks/resource/README.md#create_resource) +* [delete_resource](docs/sdks/resource/README.md#delete_resource) +* [get_resource](docs/sdks/resource/README.md#get_resource) +* [update_resource](docs/sdks/resource/README.md#update_resource) + +### [.first](docs/sdks/first/README.md) + +* [get](docs/sdks/first/README.md#get) + +### [.second](docs/sdks/second/README.md) + +* [get](docs/sdks/second/README.md#get) + +### [.pagination](docs/sdks/pagination/README.md) + +* [pagination_cursor_body](docs/sdks/pagination/README.md#pagination_cursor_body) +* [pagination_cursor_params](docs/sdks/pagination/README.md#pagination_cursor_params) +* [pagination_limit_offset_offset_body](docs/sdks/pagination/README.md#pagination_limit_offset_offset_body) +* [pagination_limit_offset_offset_params](docs/sdks/pagination/README.md#pagination_limit_offset_offset_params) +* [pagination_limit_offset_page_body](docs/sdks/pagination/README.md#pagination_limit_offset_page_body) +* [pagination_limit_offset_page_params](docs/sdks/pagination/README.md#pagination_limit_offset_page_params) + +### [.retries](docs/sdks/retries/README.md) + +* [retries_get](docs/sdks/retries/README.md#retries_get) @@ -525,7 +525,7 @@ try: except (error) as e: print(e) # handle exception -except (statusGetXSpeakeasyErrors_501ApplicationJSON_object) as e: +except (501_application/json_object) as e: print(e) # handle exception if res.status_code == 200: @@ -559,29 +559,28 @@ Some of the server options above contain variables. If you want to set the value * `protocol: str` - * `something: ServerSomething` + * `something: models.ServerSomething` For example: - ```python import sdk from sdk.models import shared s = sdk.SDK( + server_idx=4, security=shared.Security( api_key_auth="Token YOUR_API_KEY", ), global_path_param=100, global_query_param='some example global query param', - server_idx=4 ) req = 'string' -res = s.sdk.put_anything_ignored_generation(req) +res = s.put_anything_ignored_generation(req) -if res.put_anything_ignored_generation_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -591,25 +590,24 @@ if res.put_anything_ignored_generation_200_application_json_object is not None: The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example: - ```python import sdk from sdk.models import shared s = sdk.SDK( + server_url="http://localhost:35123", security=shared.Security( api_key_auth="Token YOUR_API_KEY", ), global_path_param=100, global_query_param='some example global query param', - server_url="http://localhost:35123" ) req = 'string' -res = s.sdk.put_anything_ignored_generation(req) +res = s.put_anything_ignored_generation(req) -if res.put_anything_ignored_generation_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -618,7 +616,6 @@ if res.put_anything_ignored_generation_200_application_json_object is not None: The server URL can also be overridden on a per-operation basis, provided a server list was specified for the operation. For example: - ```python import sdk from sdk.models import shared @@ -631,20 +628,8 @@ s = sdk.SDK( global_query_param='some example global query param', ) -req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( - password='owsGgP4_AhRPMSJ', - username='Devonte_Bins', - ), - header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( - expected_value='string', - header_name='string', - ), - ], -) -res = s.auth_new.api_key_auth_global_new(req, server_url="http://localhost:35456") +res = s.errors.connection_error_get(server_url="http://somebrokenapi.broken") if res.status_code == 200: # handle response @@ -672,6 +657,180 @@ s = sdk.SDK(client: http_client) ``` + + + +# Retries + +Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK. + +To change the default retry strategy for a single API call, simply provide a retryConfig object to the call: + + +## Example + +```python +import sdk +from sdk.models import operations, shared +from undefined.utils import BackoffStrategy, RetryConfig + +s = sdk.SDK( + security=shared.Security( + api_key_auth="Token YOUR_API_KEY", + ), + global_path_param=100, + global_query_param='some example global query param', +) + + +res = s.retries.retries_get(request_id='string', num_retries=75342, + RetryConfig('backoff', BackoffStrategy(1, 50, 1.1, 100), False)) + +if res.retries is not None: + # handle response + pass +``` + +If you'd like to override the default retry strategy for all operations that support retries, you can provide a retryConfig at SDK initialization: + + +## Example + +```python +import sdk +from sdk.models import operations, shared +from undefined.utils import BackoffStrategy, RetryConfig + +s = sdk.SDK( + retry_config=RetryConfig('backoff', BackoffStrategy(1, 50, 1.1, 100), False) + security=shared.Security( + api_key_auth="Token YOUR_API_KEY", + ), + global_path_param=100, + global_query_param='some example global query param', +) + + +res = s.retries.retries_get(request_id='string', num_retries=75342) + +if res.retries is not None: + # handle response + pass +``` + + + + + + + + +# Authentication + +## Per-Client Security Schemes + +Your SDK supports the following security schemes globally: + +| Name | Type | Scheme | +| ------------------ | ------------------ | ------------------ | +| `api_key_auth` | apiKey | API key | +| `api_key_auth_new` | apiKey | API key | +| `oauth2` | oauth2 | OAuth2 token | + +You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example: + +```python +import sdk +from sdk.models import shared + +s = sdk.SDK( + security=shared.Security( + api_key_auth="Token YOUR_API_KEY", + ), + global_path_param=100, + global_query_param='some example global query param', +) + +req = 'string' + +res = s.put_anything_ignored_generation(req) + +if res.object is not None: + # handle response + pass +``` + +## Per-Operation Security Schemes + +Some operations in your SDK require the security scheme to be specified at the request level. For example: +## Second +Do this second +```python +import dateutil.parser +import sdk +from decimal import Decimal +from sdk.models import operations, shared + +s = sdk.SDK( + global_path_param=100, + global_query_param='some example global query param', +) + +req = operations.UsageExamplePostRequest( + request_body=operations.UsageExamplePostRequestBody( + faker_formatted_strings=shared.FakerFormattedStrings(), + faker_strings=shared.FakerStrings(), + simple_object=shared.SimpleObject( + any='any', + bigint=8821239038968084, + bigint_str=9223372036854775808, + bool=True, + bool_opt=True, + date_=dateutil.parser.parse('2020-01-01').date(), + date_time=dateutil.parser.isoparse('2020-01-01T00:00:00.000000001Z'), + decimal=Decimal('3.141592653589793'), + decimal_str=Decimal('3.14159265358979344719667586'), + enum=shared.EnumT.ONE, + float32=1.1, + int=1, + int32=1, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, + num=1.1, + str_='test', + str_opt='testOptional', + ), + ), + bigint_parameter=168827, + bigint_str_parameter=446729, + bool_parameter=False, + date_parameter=dateutil.parser.parse('2023-06-11').date(), + date_time_default_parameter=dateutil.parser.isoparse('2022-07-22T13:16:48.221Z'), + date_time_parameter=dateutil.parser.isoparse('2021-10-21T09:16:58.799Z'), + decimal_parameter=Decimal('5223.72'), + decimal_str_parameter=Decimal('2911.37'), + double_parameter=6946.59, + enum_parameter=operations.EnumParameter.VALUE1, + falsey_number_parameter=0, + float32_parameter=1029.75, + float_parameter=5669.99, + int64_parameter=195232, + int_parameter=569663, + opt_enum_parameter=operations.OptEnumParameter.VALUE3, + str_parameter='example 1', +) + +res = s.generation.usage_example_post(req, operations.UsageExamplePostSecurity( + password="YOUR_PASSWORD", + username="YOUR_USERNAME", +)) + +if res.object is not None: + # handle response + pass +``` + + diff --git a/python-client-sdk/USAGE.md b/python-client-sdk/USAGE.md index 45fe3c06f..ab131e004 100755 --- a/python-client-sdk/USAGE.md +++ b/python-client-sdk/USAGE.md @@ -16,7 +16,7 @@ s = sdk.SDK( res = s.generation.global_name_overridden() -if res.get_global_name_override_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -25,8 +25,8 @@ if res.get_global_name_override_200_application_json_object is not None: ## Second Do this second ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -53,8 +53,8 @@ req = operations.UsageExamplePostRequest( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -69,13 +69,13 @@ req = operations.UsageExamplePostRequest( decimal_parameter=Decimal('5223.72'), decimal_str_parameter=Decimal('2911.37'), double_parameter=6946.59, - enum_parameter=operations.UsageExamplePostEnumParameter.VALUE1, + enum_parameter=operations.EnumParameter.VALUE1, falsey_number_parameter=0, float32_parameter=1029.75, float_parameter=5669.99, int64_parameter=195232, int_parameter=569663, - opt_enum_parameter=operations.UsageExamplePostOptEnumParameter.VALUE3, + opt_enum_parameter=operations.OptEnumParameter.VALUE3, str_parameter='example 1', ) @@ -84,7 +84,7 @@ res = s.generation.usage_example_post(req, operations.UsageExamplePostSecurity( username="YOUR_USERNAME", )) -if res.usage_example_post_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` diff --git a/python-client-sdk/docs/models/errors/error.md b/python-client-sdk/docs/models/errors/error.md index 887bc3c53..e87f59644 100755 --- a/python-client-sdk/docs/models/errors/error.md +++ b/python-client-sdk/docs/models/errors/error.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | -| `code` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `type` | [Optional[ErrorType]](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | +| `code` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `type` | [Optional[errors.ErrorType]](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md b/python-client-sdk/docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md deleted file mode 100755 index 7f6dfa675..000000000 --- a/python-client-sdk/docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md +++ /dev/null @@ -1,13 +0,0 @@ -# StatusGetXSpeakeasyErrors501ApplicationJSON - -Not Implemented - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `code` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `type` | [Optional[ErrorType]](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md b/python-client-sdk/docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md new file mode 100755 index 000000000..b04ba5bb6 --- /dev/null +++ b/python-client-sdk/docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md @@ -0,0 +1,13 @@ +# StatusGetXSpeakeasyErrorsResponseBody + +Not Implemented + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `code` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `type` | [Optional[errors.ErrorType]](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/anchortypesgetresponse.md b/python-client-sdk/docs/models/operations/anchortypesgetresponse.md index 718cb8087..847b2c4ff 100755 --- a/python-client-sdk/docs/models/operations/anchortypesgetresponse.md +++ b/python-client-sdk/docs/models/operations/anchortypesgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `type_from_anchor` | [Optional[TypeFromAnchor]](../../models/operations/typefromanchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `type_from_anchor` | [Optional[operations.AnchorTypesGetTypeFromAnchor]](../../models/operations/anchortypesgettypefromanchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md b/python-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md new file mode 100755 index 000000000..2c9266d82 --- /dev/null +++ b/python-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md @@ -0,0 +1,10 @@ +# AnchorTypesGetTypeFromAnchor + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [Optional[shared.SimpleObject]](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/apikeyauthglobalresponse.md b/python-client-sdk/docs/models/operations/apikeyauthglobalresponse.md index de24284be..681b02617 100755 --- a/python-client-sdk/docs/models/operations/apikeyauthglobalresponse.md +++ b/python-client-sdk/docs/models/operations/apikeyauthglobalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [Optional[APIKeyAuthGlobalToken]](../../models/operations/apikeyauthglobaltoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [Optional[operations.APIKeyAuthGlobalToken]](../../models/operations/apikeyauthglobaltoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/apikeyauthresponse.md b/python-client-sdk/docs/models/operations/apikeyauthresponse.md index 703fbf6b2..07edd36c6 100755 --- a/python-client-sdk/docs/models/operations/apikeyauthresponse.md +++ b/python-client-sdk/docs/models/operations/apikeyauthresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [Optional[APIKeyAuthToken]](../../models/operations/apikeyauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| `token` | [Optional[operations.APIKeyAuthToken]](../../models/operations/apikeyauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/args.md b/python-client-sdk/docs/models/operations/args.md new file mode 100755 index 000000000..e19e36991 --- /dev/null +++ b/python-client-sdk/docs/models/operations/args.md @@ -0,0 +1,8 @@ +# Args + + +## Fields + +| Field | Type | Required | Description | +| -------------------- | -------------------- | -------------------- | -------------------- | +| `global_query_param` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/basicauthresponse.md b/python-client-sdk/docs/models/operations/basicauthresponse.md index 9dd2bcd10..37a017cb7 100755 --- a/python-client-sdk/docs/models/operations/basicauthresponse.md +++ b/python-client-sdk/docs/models/operations/basicauthresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `user` | [Optional[BasicAuthUser]](../../models/operations/basicauthuser.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| `user` | [Optional[operations.BasicAuthUser]](../../models/operations/basicauthuser.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/bearerauthresponse.md b/python-client-sdk/docs/models/operations/bearerauthresponse.md index 7198eb5d3..3d628785b 100755 --- a/python-client-sdk/docs/models/operations/bearerauthresponse.md +++ b/python-client-sdk/docs/models/operations/bearerauthresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [Optional[BearerAuthToken]](../../models/operations/bearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| `token` | [Optional[operations.BearerAuthToken]](../../models/operations/bearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md b/python-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md index fd695ab35..3837e4cb0 100755 --- a/python-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md +++ b/python-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[ComponentBodyAndParamConflictRes]](../../models/operations/componentbodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.ComponentBodyAndParamConflictRes]](../../models/operations/componentbodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md b/python-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md index aec469c52..d5cf0843a 100755 --- a/python-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md +++ b/python-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[ComponentBodyAndParamNoConflictRes]](../../models/operations/componentbodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.ComponentBodyAndParamNoConflictRes]](../../models/operations/componentbodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/conflictingparamsresponse.md b/python-client-sdk/docs/models/operations/conflictingparamsresponse.md index c691bc0a3..604d595c6 100755 --- a/python-client-sdk/docs/models/operations/conflictingparamsresponse.md +++ b/python-client-sdk/docs/models/operations/conflictingparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[ConflictingParamsRes]](../../models/operations/conflictingparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.ConflictingParamsRes]](../../models/operations/conflictingparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/createfilefile.md b/python-client-sdk/docs/models/operations/createfilefile.md new file mode 100755 index 000000000..d5ac8f084 --- /dev/null +++ b/python-client-sdk/docs/models/operations/createfilefile.md @@ -0,0 +1,9 @@ +# CreateFileFile + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *bytes* | :heavy_check_mark: | N/A | +| `file_name` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/createfilerequestbody.md b/python-client-sdk/docs/models/operations/createfilerequestbody.md index 6050d7bf8..e38ae91be 100755 --- a/python-client-sdk/docs/models/operations/createfilerequestbody.md +++ b/python-client-sdk/docs/models/operations/createfilerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `file` | [Optional[CreateFileRequestBodyFile]](../../models/operations/createfilerequestbodyfile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | +| `file` | [Optional[operations.CreateFileFile]](../../models/operations/createfilefile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/createfilerequestbodyfile.md b/python-client-sdk/docs/models/operations/createfilerequestbodyfile.md deleted file mode 100755 index 6fb8ba72f..000000000 --- a/python-client-sdk/docs/models/operations/createfilerequestbodyfile.md +++ /dev/null @@ -1,9 +0,0 @@ -# CreateFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content` | *bytes* | :heavy_check_mark: | N/A | -| `file` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapargs.md b/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapargs.md new file mode 100755 index 000000000..5a97f2ada --- /dev/null +++ b/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapargs.md @@ -0,0 +1,17 @@ +# DeepObjectQueryParamsMapArgs + + +## Supported Types + +### + +```python +deepObjectQueryParamsMapArgs: str = /* values here */ +``` + +### + +```python +deepObjectQueryParamsMapArgs: List[str] = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapres.md b/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapres.md index 62f309c1a..b4f7226fe 100755 --- a/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapres.md +++ b/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | Dict[str, [Union[str, List[str]]](../../models/operations/deepobjectqueryparamsmapresargs.md)] | :heavy_check_mark: | N/A | [object Object] | +| `args` | Dict[str, [Union[str, List[str]]](../../models/operations/deepobjectqueryparamsmapargs.md)] | :heavy_check_mark: | N/A | [object Object] | | `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/deepObject/map?mapArrParam[test2]=test3&mapArrParam[test2]=test4&mapArrParam[test]=test&mapArrParam[test]=test2&mapParam[test2]=value2&mapParam[test]=value | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapresargs.md b/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapresargs.md deleted file mode 100755 index 8e91a94ad..000000000 --- a/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapresargs.md +++ /dev/null @@ -1,17 +0,0 @@ -# DeepObjectQueryParamsMapResArgs - - -## Supported Types - -### - -```python -deepObjectQueryParamsMapResArgs: str = /* values here */ -``` - -### - -```python -deepObjectQueryParamsMapResArgs: List[str] = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md b/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md index 81ef99994..c6a4f1e01 100755 --- a/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md +++ b/python-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[DeepObjectQueryParamsMapRes]](../../models/operations/deepobjectqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.DeepObjectQueryParamsMapRes]](../../models/operations/deepobjectqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md b/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md new file mode 100755 index 000000000..164750ae6 --- /dev/null +++ b/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md @@ -0,0 +1,26 @@ +# DeepObjectQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | +| `obj_arr_param_arr` | List[*str*] | :heavy_check_mark: | N/A | | +| `obj_param_any` | *str* | :heavy_check_mark: | N/A | any | +| `obj_param_bigint_str` | *Optional[str]* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `obj_param_bigint` | *Optional[str]* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `obj_param_bool_opt` | *str* | :heavy_check_mark: | N/A | true | +| `obj_param_bool` | *str* | :heavy_check_mark: | N/A | true | +| `obj_param_date_time` | *str* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `obj_param_date` | *str* | :heavy_check_mark: | N/A | 2020-01-01 | +| `obj_param_decimal_str` | *Optional[str]* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `obj_param_decimal` | *Optional[str]* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `obj_param_enum` | *str* | :heavy_check_mark: | N/A | one | +| `obj_param_float32` | *str* | :heavy_check_mark: | N/A | 1.1 | +| `obj_param_int32_enum` | *str* | :heavy_check_mark: | N/A | 55 | +| `obj_param_int32` | *str* | :heavy_check_mark: | N/A | 1 | +| `obj_param_int_enum` | *str* | :heavy_check_mark: | N/A | 2 | +| `obj_param_int` | *str* | :heavy_check_mark: | N/A | 1 | +| `obj_param_num` | *str* | :heavy_check_mark: | N/A | 1.1 | +| `obj_param_str_opt` | *str* | :heavy_check_mark: | N/A | testOptional | +| `obj_param_str` | *str* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md b/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md deleted file mode 100755 index c6ba95ffb..000000000 --- a/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md +++ /dev/null @@ -1,8 +0,0 @@ -# DeepObjectQueryParamsObjectObjArrParam - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | List[*str*] | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md b/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md index f1239f65d..a4088e342 100755 --- a/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md +++ b/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | -| `obj_param` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `obj_arr_param` | [Optional[DeepObjectQueryParamsObjectObjArrParam]](../../models/operations/deepobjectqueryparamsobjectobjarrparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `obj_param` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `obj_arr_param` | [Optional[operations.ObjArrParam]](../../models/operations/objarrparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md b/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md index d38b60f52..086efcc79 100755 --- a/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md +++ b/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [DeepObjectQueryParamsObjectResArgs](../../models/operations/deepobjectqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.DeepObjectQueryParamsObjectArgs](../../models/operations/deepobjectqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/deepObject/obj?objArrParam[arr]=test&objArrParam[arr]=test2&objParam[any]=any&objParam[bigintStr]=9223372036854775808&objParam[bigint]=8821239038968084&objParam[boolOpt]=true&objParam[bool]=true&objParam[dateTime]=2020-01-01T00%3A00%3A00.000000001Z&objParam[date]=2020-01-01&objParam[decimalStr]=3.14159265358979344719667586&objParam[decimal]=3.141592653589793&objParam[enum]=one&objParam[float32]=1.1&objParam[int32Enum]=55&objParam[int32]=1&objParam[intEnum]=2&objParam[int]=1&objParam[num]=1.1&objParam[strOpt]=testOptional&objParam[str]=test | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md b/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md deleted file mode 100755 index 5257eebc3..000000000 --- a/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md +++ /dev/null @@ -1,26 +0,0 @@ -# DeepObjectQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | -| `obj_arr_param_arr` | List[*str*] | :heavy_check_mark: | N/A | | -| `obj_param_any` | *str* | :heavy_check_mark: | N/A | any | -| `obj_param_bigint_str` | *Optional[str]* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `obj_param_bigint` | *Optional[str]* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `obj_param_bool_opt` | *str* | :heavy_check_mark: | N/A | true | -| `obj_param_bool` | *str* | :heavy_check_mark: | N/A | true | -| `obj_param_date_time` | *str* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `obj_param_date` | *str* | :heavy_check_mark: | N/A | 2020-01-01 | -| `obj_param_decimal_str` | *Optional[str]* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `obj_param_decimal` | *Optional[str]* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `obj_param_enum` | *str* | :heavy_check_mark: | N/A | one | -| `obj_param_float32` | *str* | :heavy_check_mark: | N/A | 1.1 | -| `obj_param_int32_enum` | *str* | :heavy_check_mark: | N/A | 55 | -| `obj_param_int32` | *str* | :heavy_check_mark: | N/A | 1 | -| `obj_param_int_enum` | *str* | :heavy_check_mark: | N/A | 2 | -| `obj_param_int` | *str* | :heavy_check_mark: | N/A | 1 | -| `obj_param_num` | *str* | :heavy_check_mark: | N/A | 1.1 | -| `obj_param_str_opt` | *str* | :heavy_check_mark: | N/A | testOptional | -| `obj_param_str` | *str* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md b/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md index 7605c394c..abe056f99 100755 --- a/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md +++ b/python-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[DeepObjectQueryParamsObjectRes]](../../models/operations/deepobjectqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.DeepObjectQueryParamsObjectRes]](../../models/operations/deepobjectqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md b/python-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md deleted file mode 100755 index 8b10a0522..000000000 --- a/python-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# DeprecatedObjectInSchemaGet200ApplicationJSON - -A successful response that contains a deprecatedObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -| ~~`json`~~ | [Optional[shared.DeprecatedObject]](../../models/shared/deprecatedobject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md b/python-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md index 7f4aad0a9..5560ce493 100755 --- a/python-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md +++ b/python-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `deprecated_object_in_schema_get_200_application_json_object` | [Optional[DeprecatedObjectInSchemaGet200ApplicationJSON]](../../models/operations/deprecatedobjectinschemaget200applicationjson.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.DeprecatedObjectInSchemaGetResponseBody]](../../models/operations/deprecatedobjectinschemagetresponsebody.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md b/python-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md new file mode 100755 index 000000000..86105c5b1 --- /dev/null +++ b/python-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md @@ -0,0 +1,10 @@ +# DeprecatedObjectInSchemaGetResponseBody + +A successful response that contains a deprecatedObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| ~~`json`~~ | [Optional[shared.DeprecatedObject]](../../models/shared/deprecatedobject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/differentfilename.md b/python-client-sdk/docs/models/operations/differentfilename.md new file mode 100755 index 000000000..193866504 --- /dev/null +++ b/python-client-sdk/docs/models/operations/differentfilename.md @@ -0,0 +1,9 @@ +# DifferentFileName + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *bytes* | :heavy_check_mark: | N/A | +| `file_name` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/duplicateparamresponse.md b/python-client-sdk/docs/models/operations/duplicateparamresponse.md index d109a5389..f94dca22a 100755 --- a/python-client-sdk/docs/models/operations/duplicateparamresponse.md +++ b/python-client-sdk/docs/models/operations/duplicateparamresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `duplicate_param_response` | [Optional[DuplicateParamDuplicateParamResponse]](../../models/operations/duplicateparamduplicateparamresponse.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `duplicate_param_response` | [Optional[operations.DuplicateParamDuplicateParamResponse]](../../models/operations/duplicateparamduplicateparamresponse.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/empty.md b/python-client-sdk/docs/models/operations/empty.md new file mode 100755 index 000000000..f9f6b3eab --- /dev/null +++ b/python-client-sdk/docs/models/operations/empty.md @@ -0,0 +1,7 @@ +# Empty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md b/python-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md deleted file mode 100755 index bbddca47a..000000000 --- a/python-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md +++ /dev/null @@ -1,9 +0,0 @@ -# EmptyResponseObjectWithCommentGet200ApplicationOctetStream - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md b/python-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md new file mode 100755 index 000000000..5098e6819 --- /dev/null +++ b/python-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md @@ -0,0 +1,9 @@ +# EmptyResponseObjectWithCommentGetResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md b/python-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md new file mode 100755 index 000000000..1da3e5d24 --- /dev/null +++ b/python-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md @@ -0,0 +1,7 @@ +# EmptyRespWithEmptyProperies + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/emptywithemptyproperties.md b/python-client-sdk/docs/models/operations/emptywithemptyproperties.md new file mode 100755 index 000000000..535ae89ed --- /dev/null +++ b/python-client-sdk/docs/models/operations/emptywithemptyproperties.md @@ -0,0 +1,7 @@ +# EmptyWithEmptyProperties + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/enumnameoverride.md b/python-client-sdk/docs/models/operations/enumnameoverride.md new file mode 100755 index 000000000..c678e92bd --- /dev/null +++ b/python-client-sdk/docs/models/operations/enumnameoverride.md @@ -0,0 +1,12 @@ +# EnumNameOverride + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `VALUE1` | value1 | +| `VALUE2` | value2 | +| `VALUE3` | value3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/enumparameter.md b/python-client-sdk/docs/models/operations/enumparameter.md new file mode 100755 index 000000000..11b789b86 --- /dev/null +++ b/python-client-sdk/docs/models/operations/enumparameter.md @@ -0,0 +1,12 @@ +# EnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `VALUE1` | value1 | +| `VALUE2` | value2 | +| `VALUE3` | value3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/file.md b/python-client-sdk/docs/models/operations/file.md new file mode 100755 index 000000000..d1efb7540 --- /dev/null +++ b/python-client-sdk/docs/models/operations/file.md @@ -0,0 +1,9 @@ +# File + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *bytes* | :heavy_check_mark: | N/A | +| `file_name` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md b/python-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md index d69aa12b0..47d1671be 100755 --- a/python-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md +++ b/python-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[FlattenedTypedObjectPostRes]](../../models/operations/flattenedtypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.FlattenedTypedObjectPostRes]](../../models/operations/flattenedtypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/form.md b/python-client-sdk/docs/models/operations/form.md new file mode 100755 index 000000000..9a191d66e --- /dev/null +++ b/python-client-sdk/docs/models/operations/form.md @@ -0,0 +1,14 @@ +# Form + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | *str* | :heavy_check_mark: | N/A | +| `bool` | *str* | :heavy_check_mark: | N/A | +| `int` | *str* | :heavy_check_mark: | N/A | +| `map` | *str* | :heavy_check_mark: | N/A | +| `num` | *str* | :heavy_check_mark: | N/A | +| `obj` | *str* | :heavy_check_mark: | N/A | +| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsarrayargs.md b/python-client-sdk/docs/models/operations/formqueryparamsarrayargs.md new file mode 100755 index 000000000..39df7abe8 --- /dev/null +++ b/python-client-sdk/docs/models/operations/formqueryparamsarrayargs.md @@ -0,0 +1,9 @@ +# FormQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | +| `arr_param` | *str* | :heavy_check_mark: | N/A | test,test2 | +| `arr_param_exploded` | List[*str*] | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsarrayres.md b/python-client-sdk/docs/models/operations/formqueryparamsarrayres.md index bf1b43555..5563d8453 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamsarrayres.md +++ b/python-client-sdk/docs/models/operations/formqueryparamsarrayres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | -| `args` | [FormQueryParamsArrayResArgs](../../models/operations/formqueryparamsarrayresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.FormQueryParamsArrayArgs](../../models/operations/formqueryparamsarrayargs.md) | :heavy_check_mark: | N/A | | | `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/array?arrParam=test%2Ctest2&arrParamExploded=1&arrParamExploded=2 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md b/python-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md deleted file mode 100755 index 4e57897fb..000000000 --- a/python-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | -| `arr_param` | *str* | :heavy_check_mark: | N/A | test,test2 | -| `arr_param_exploded` | List[*str*] | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md b/python-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md index 4940ae5b1..37add7517 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md +++ b/python-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[FormQueryParamsArrayRes]](../../models/operations/formqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.FormQueryParamsArrayRes]](../../models/operations/formqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md b/python-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md new file mode 100755 index 000000000..7ac2aec42 --- /dev/null +++ b/python-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md @@ -0,0 +1,9 @@ +# FormQueryParamsCamelObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `item_count` | *str* | :heavy_check_mark: | N/A | 10 | +| `search_term` | *str* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md b/python-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md deleted file mode 100755 index 6a46ec279..000000000 --- a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParam - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `encoded_count` | *Optional[str]* | :heavy_minus_sign: | N/A | 11 | -| `encoded_term` | *Optional[str]* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md b/python-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md deleted file mode 100755 index 7c7c54990..000000000 --- a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParamExploded - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `item_count` | *Optional[str]* | :heavy_minus_sign: | N/A | 10 | -| `search_term` | *Optional[str]* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md b/python-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md index 62169342e..655f3a6ab 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md +++ b/python-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `obj_param_exploded` | [FormQueryParamsCamelObjectObjParamExploded](../../models/operations/formqueryparamscamelobjectobjparamexploded.md) | :heavy_check_mark: | N/A | -| `obj_param` | [Optional[FormQueryParamsCamelObjectObjParam]](../../models/operations/formqueryparamscamelobjectobjparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `obj_param_exploded` | [operations.ObjParamExploded](../../models/operations/objparamexploded.md) | :heavy_check_mark: | N/A | +| `obj_param` | [Optional[operations.ObjParam]](../../models/operations/objparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md b/python-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md index 1f53976c7..1f378e38a 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md +++ b/python-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsCamelObjectResArgs](../../models/operations/formqueryparamscamelobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.FormQueryParamsCamelObjectArgs](../../models/operations/formqueryparamscamelobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/camelObj?item_count=10&obj_param=encoded_count%2C11%2Cencoded_term%2Cbar&search_term=foo | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md b/python-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md deleted file mode 100755 index 6c991e870..000000000 --- a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `item_count` | *str* | :heavy_check_mark: | N/A | 10 | -| `search_term` | *str* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md b/python-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md index c4bc36b19..378d4d2f0 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md +++ b/python-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[FormQueryParamsCamelObjectRes]](../../models/operations/formqueryparamscamelobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.FormQueryParamsCamelObjectRes]](../../models/operations/formqueryparamscamelobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsmapresponse.md b/python-client-sdk/docs/models/operations/formqueryparamsmapresponse.md index 5412947af..9d9c3c4ce 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamsmapresponse.md +++ b/python-client-sdk/docs/models/operations/formqueryparamsmapresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[FormQueryParamsMapRes]](../../models/operations/formqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.FormQueryParamsMapRes]](../../models/operations/formqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsobjectargs.md b/python-client-sdk/docs/models/operations/formqueryparamsobjectargs.md new file mode 100755 index 000000000..b8345f4d9 --- /dev/null +++ b/python-client-sdk/docs/models/operations/formqueryparamsobjectargs.md @@ -0,0 +1,28 @@ +# FormQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `any` | *str* | :heavy_check_mark: | N/A | any | +| `bigint` | *Optional[str]* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `bigint_str` | *Optional[str]* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `bool` | *str* | :heavy_check_mark: | N/A | true | +| `bool_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | true | +| `date_` | *str* | :heavy_check_mark: | N/A | 2020-01-01 | +| `date_time` | *str* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `decimal` | *Optional[str]* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `decimal_str` | *Optional[str]* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `enum` | *str* | :heavy_check_mark: | N/A | one | +| `float32` | *str* | :heavy_check_mark: | N/A | 1.1 | +| `int` | *str* | :heavy_check_mark: | N/A | 1 | +| `int32` | *str* | :heavy_check_mark: | N/A | 1 | +| `int32_enum` | *str* | :heavy_check_mark: | N/A | 55 | +| `int_enum` | *str* | :heavy_check_mark: | N/A | 2 | +| `int_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | | +| `num` | *str* | :heavy_check_mark: | N/A | 1.1 | +| `num_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | | +| `obj_param` | *str* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `str_` | *str* | :heavy_check_mark: | N/A | test | +| `str_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsobjectres.md b/python-client-sdk/docs/models/operations/formqueryparamsobjectres.md index c0daa9967..417f32714 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamsobjectres.md +++ b/python-client-sdk/docs/models/operations/formqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsObjectResArgs](../../models/operations/formqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.FormQueryParamsObjectArgs](../../models/operations/formqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/obj?any=any&bigint=8821239038968084&bigintStr=9223372036854775808&bool=true&boolOpt=true&date=2020-01-01&dateTime=2020-01-01T00%3A00%3A00.000000001Z&decimal=3.141592653589793&decimalStr=3.14159265358979344719667586&enum=one&float32=1.1&int=1&int32=1&int32Enum=55&intEnum=2&num=1.1&objParam=any%2Cany%2Cbigint%2C8821239038968084%2CbigintStr%2C9223372036854775808%2Cbool%2Ctrue%2CboolOpt%2Ctrue%2Cdate%2C2020-01-01%2CdateTime%2C2020-01-01T00%3A00%3A00.000000001Z%2Cdecimal%2C3.141592653589793%2CdecimalStr%2C3.14159265358979344719667586%2Cenum%2Cone%2Cfloat32%2C1.1%2Cint%2C1%2Cint32%2C1%2Cint32Enum%2C55%2CintEnum%2C2%2Cnum%2C1.1%2Cstr%2Ctest%2CstrOpt%2CtestOptional&str=test&strOpt=testOptional | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md b/python-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md deleted file mode 100755 index 336e9a9f8..000000000 --- a/python-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md +++ /dev/null @@ -1,28 +0,0 @@ -# FormQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `any` | *str* | :heavy_check_mark: | N/A | any | -| `bigint` | *Optional[str]* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `bigint_str` | *Optional[str]* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `bool` | *str* | :heavy_check_mark: | N/A | true | -| `bool_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | true | -| `date_` | *str* | :heavy_check_mark: | N/A | 2020-01-01 | -| `date_time` | *str* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `decimal` | *Optional[str]* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `decimal_str` | *Optional[str]* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `enum` | *str* | :heavy_check_mark: | N/A | one | -| `float32` | *str* | :heavy_check_mark: | N/A | 1.1 | -| `int` | *str* | :heavy_check_mark: | N/A | 1 | -| `int32` | *str* | :heavy_check_mark: | N/A | 1 | -| `int32_enum` | *str* | :heavy_check_mark: | N/A | 55 | -| `int_enum` | *str* | :heavy_check_mark: | N/A | 2 | -| `int_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | | -| `num` | *str* | :heavy_check_mark: | N/A | 1.1 | -| `num_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | | -| `obj_param` | *str* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `str_` | *str* | :heavy_check_mark: | N/A | test | -| `str_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md b/python-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md index 667cd5175..bd4992cec 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md +++ b/python-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[FormQueryParamsObjectRes]](../../models/operations/formqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.FormQueryParamsObjectRes]](../../models/operations/formqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md b/python-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md new file mode 100755 index 000000000..d43d87e93 --- /dev/null +++ b/python-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md @@ -0,0 +1,11 @@ +# FormQueryParamsPrimitiveArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `bool_param` | *str* | :heavy_check_mark: | N/A | true | +| `int_param` | *str* | :heavy_check_mark: | N/A | 1 | +| `num_param` | *str* | :heavy_check_mark: | N/A | 1.1 | +| `str_param` | *str* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md b/python-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md index b0068cb2c..60d211fd3 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md +++ b/python-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsPrimitiveResArgs](../../models/operations/formqueryparamsprimitiveresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.FormQueryParamsPrimitiveArgs](../../models/operations/formqueryparamsprimitiveargs.md) | :heavy_check_mark: | N/A | | | `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/primitive?boolParam=true&intParam=1&numParam=1.1&strParam=test | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md b/python-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md deleted file mode 100755 index ae1d8c7bc..000000000 --- a/python-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md +++ /dev/null @@ -1,11 +0,0 @@ -# FormQueryParamsPrimitiveResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `bool_param` | *str* | :heavy_check_mark: | N/A | true | -| `int_param` | *str* | :heavy_check_mark: | N/A | 1 | -| `num_param` | *str* | :heavy_check_mark: | N/A | 1.1 | -| `str_param` | *str* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md b/python-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md index a844c1c9a..765f49881 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md +++ b/python-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[FormQueryParamsPrimitiveRes]](../../models/operations/formqueryparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.FormQueryParamsPrimitiveRes]](../../models/operations/formqueryparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md b/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md new file mode 100755 index 000000000..a8d534577 --- /dev/null +++ b/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md @@ -0,0 +1,12 @@ +# FormQueryParamsRefParamObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | +| `bool` | *str* | :heavy_check_mark: | N/A | true | +| `int` | *str* | :heavy_check_mark: | N/A | 1 | +| `num` | *str* | :heavy_check_mark: | N/A | 1.1 | +| `ref_obj_param` | *str* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | +| `str_` | *str* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md b/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md index b14eaf92c..8646a19de 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md +++ b/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsRefParamObjectResArgs](../../models/operations/formqueryparamsrefparamobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.FormQueryParamsRefParamObjectArgs](../../models/operations/formqueryparamsrefparamobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/refParamObject?bool=true&int=1&num=1.1&refObjParam=bool%2Ctrue%2Cint%2C1%2Cnum%2C1.1%2Cstr%2Ctest&str=test | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md b/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md deleted file mode 100755 index c4b472af3..000000000 --- a/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md +++ /dev/null @@ -1,12 +0,0 @@ -# FormQueryParamsRefParamObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -| `bool` | *str* | :heavy_check_mark: | N/A | true | -| `int` | *str* | :heavy_check_mark: | N/A | 1 | -| `num` | *str* | :heavy_check_mark: | N/A | 1.1 | -| `ref_obj_param` | *str* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | -| `str_` | *str* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md b/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md index ac2e5462b..1437f9fb9 100755 --- a/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md +++ b/python-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[FormQueryParamsRefParamObjectRes]](../../models/operations/formqueryparamsrefparamobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.FormQueryParamsRefParamObjectRes]](../../models/operations/formqueryparamsrefparamobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md b/python-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md deleted file mode 100755 index 198720a8e..000000000 --- a/python-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# GetGlobalNameOverride200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [Optional[shared.SimpleObject]](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md b/python-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md index 034686fba..0e21a3336 100755 --- a/python-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md +++ b/python-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `get_global_name_override_200_application_json_object` | [Optional[GetGlobalNameOverride200ApplicationJSON]](../../models/operations/getglobalnameoverride200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.GetGlobalNameOverrideResponseBody]](../../models/operations/getglobalnameoverrideresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md b/python-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md new file mode 100755 index 000000000..93a9e6a0f --- /dev/null +++ b/python-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md @@ -0,0 +1,10 @@ +# GetGlobalNameOverrideResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [Optional[shared.SimpleObject]](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/globalbearerauthresponse.md b/python-client-sdk/docs/models/operations/globalbearerauthresponse.md index 77c3a668e..23cb62a14 100755 --- a/python-client-sdk/docs/models/operations/globalbearerauthresponse.md +++ b/python-client-sdk/docs/models/operations/globalbearerauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [Optional[GlobalBearerAuthToken]](../../models/operations/globalbearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [Optional[operations.GlobalBearerAuthToken]](../../models/operations/globalbearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/globalpathparametergetresponse.md b/python-client-sdk/docs/models/operations/globalpathparametergetresponse.md index b5a292652..249571568 100755 --- a/python-client-sdk/docs/models/operations/globalpathparametergetresponse.md +++ b/python-client-sdk/docs/models/operations/globalpathparametergetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[GlobalPathParameterGetRes]](../../models/operations/globalpathparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.GlobalPathParameterGetRes]](../../models/operations/globalpathparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/globalsqueryparametergetres.md b/python-client-sdk/docs/models/operations/globalsqueryparametergetres.md index 5c18e347b..785d72fd2 100755 --- a/python-client-sdk/docs/models/operations/globalsqueryparametergetres.md +++ b/python-client-sdk/docs/models/operations/globalsqueryparametergetres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `args` | [GlobalsQueryParameterGetResArgs](../../models/operations/globalsqueryparametergetresargs.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | +| `args` | [operations.Args](../../models/operations/args.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md b/python-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md deleted file mode 100755 index d0263ebe8..000000000 --- a/python-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# GlobalsQueryParameterGetResArgs - - -## Fields - -| Field | Type | Required | Description | -| -------------------- | -------------------- | -------------------- | -------------------- | -| `global_query_param` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md b/python-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md index d9f54b729..871ae4431 100755 --- a/python-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md +++ b/python-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[GlobalsQueryParameterGetRes]](../../models/operations/globalsqueryparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.GlobalsQueryParameterGetRes]](../../models/operations/globalsqueryparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsarrayres.md b/python-client-sdk/docs/models/operations/headerparamsarrayres.md index a32eec5dd..7e6a8f1e2 100755 --- a/python-client-sdk/docs/models/operations/headerparamsarrayres.md +++ b/python-client-sdk/docs/models/operations/headerparamsarrayres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsArrayResHeaders](../../models/operations/headerparamsarrayresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | +| `headers` | [operations.Headers](../../models/operations/headers.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsarrayresheaders.md b/python-client-sdk/docs/models/operations/headerparamsarrayresheaders.md deleted file mode 100755 index 2cdcb5544..000000000 --- a/python-client-sdk/docs/models/operations/headerparamsarrayresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# HeaderParamsArrayResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `x_header_array` | *str* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsarrayresponse.md b/python-client-sdk/docs/models/operations/headerparamsarrayresponse.md index ed5fc2651..8747bd0aa 100755 --- a/python-client-sdk/docs/models/operations/headerparamsarrayresponse.md +++ b/python-client-sdk/docs/models/operations/headerparamsarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[HeaderParamsArrayRes]](../../models/operations/headerparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.HeaderParamsArrayRes]](../../models/operations/headerparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsmapheaders.md b/python-client-sdk/docs/models/operations/headerparamsmapheaders.md new file mode 100755 index 000000000..e449e18cf --- /dev/null +++ b/python-client-sdk/docs/models/operations/headerparamsmapheaders.md @@ -0,0 +1,9 @@ +# HeaderParamsMapHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | +| `x_header_map` | *str* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | +| `x_header_map_explode` | *str* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsmapres.md b/python-client-sdk/docs/models/operations/headerparamsmapres.md index 1547dba31..bd32f4b01 100755 --- a/python-client-sdk/docs/models/operations/headerparamsmapres.md +++ b/python-client-sdk/docs/models/operations/headerparamsmapres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsMapResHeaders](../../models/operations/headerparamsmapresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `headers` | [operations.HeaderParamsMapHeaders](../../models/operations/headerparamsmapheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsmapresheaders.md b/python-client-sdk/docs/models/operations/headerparamsmapresheaders.md deleted file mode 100755 index 0dc9ed87e..000000000 --- a/python-client-sdk/docs/models/operations/headerparamsmapresheaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsMapResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | -| `x_header_map` | *str* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | -| `x_header_map_explode` | *str* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsmapresponse.md b/python-client-sdk/docs/models/operations/headerparamsmapresponse.md index 25db19121..70f9bcbf3 100755 --- a/python-client-sdk/docs/models/operations/headerparamsmapresponse.md +++ b/python-client-sdk/docs/models/operations/headerparamsmapresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[HeaderParamsMapRes]](../../models/operations/headerparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.HeaderParamsMapRes]](../../models/operations/headerparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsobjectheaders.md b/python-client-sdk/docs/models/operations/headerparamsobjectheaders.md new file mode 100755 index 000000000..a7303dbbf --- /dev/null +++ b/python-client-sdk/docs/models/operations/headerparamsobjectheaders.md @@ -0,0 +1,9 @@ +# HeaderParamsObjectHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `x_header_obj` | *str* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `x_header_obj_explode` | *str* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsobjectres.md b/python-client-sdk/docs/models/operations/headerparamsobjectres.md index c0406c35f..e9c879bae 100755 --- a/python-client-sdk/docs/models/operations/headerparamsobjectres.md +++ b/python-client-sdk/docs/models/operations/headerparamsobjectres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsObjectResHeaders](../../models/operations/headerparamsobjectresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `headers` | [operations.HeaderParamsObjectHeaders](../../models/operations/headerparamsobjectheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsobjectresheaders.md b/python-client-sdk/docs/models/operations/headerparamsobjectresheaders.md deleted file mode 100755 index 30a272b2e..000000000 --- a/python-client-sdk/docs/models/operations/headerparamsobjectresheaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsObjectResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `x_header_obj` | *str* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `x_header_obj_explode` | *str* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsobjectresponse.md b/python-client-sdk/docs/models/operations/headerparamsobjectresponse.md index 44f1c86f1..3bca402f7 100755 --- a/python-client-sdk/docs/models/operations/headerparamsobjectresponse.md +++ b/python-client-sdk/docs/models/operations/headerparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[HeaderParamsObjectRes]](../../models/operations/headerparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.HeaderParamsObjectRes]](../../models/operations/headerparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md b/python-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md new file mode 100755 index 000000000..71ccd6874 --- /dev/null +++ b/python-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md @@ -0,0 +1,11 @@ +# HeaderParamsPrimitiveHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `x_header_boolean` | *str* | :heavy_check_mark: | N/A | true | +| `x_header_integer` | *str* | :heavy_check_mark: | N/A | 1 | +| `x_header_number` | *str* | :heavy_check_mark: | N/A | 1.1 | +| `x_header_string` | *str* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsprimitiveres.md b/python-client-sdk/docs/models/operations/headerparamsprimitiveres.md index 39ce8d8a4..b3eee037a 100755 --- a/python-client-sdk/docs/models/operations/headerparamsprimitiveres.md +++ b/python-client-sdk/docs/models/operations/headerparamsprimitiveres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsPrimitiveResHeaders](../../models/operations/headerparamsprimitiveresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `headers` | [operations.HeaderParamsPrimitiveHeaders](../../models/operations/headerparamsprimitiveheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md b/python-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md deleted file mode 100755 index 3db749d8a..000000000 --- a/python-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md +++ /dev/null @@ -1,11 +0,0 @@ -# HeaderParamsPrimitiveResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `x_header_boolean` | *str* | :heavy_check_mark: | N/A | true | -| `x_header_integer` | *str* | :heavy_check_mark: | N/A | 1 | -| `x_header_number` | *str* | :heavy_check_mark: | N/A | 1.1 | -| `x_header_string` | *str* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md b/python-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md index d5c330051..4f1f0c557 100755 --- a/python-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md +++ b/python-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[HeaderParamsPrimitiveRes]](../../models/operations/headerparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.HeaderParamsPrimitiveRes]](../../models/operations/headerparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/headers.md b/python-client-sdk/docs/models/operations/headers.md new file mode 100755 index 000000000..3fc08a9cb --- /dev/null +++ b/python-client-sdk/docs/models/operations/headers.md @@ -0,0 +1,8 @@ +# Headers + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `x_header_array` | *str* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md b/python-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md deleted file mode 100755 index 1e7c3c83e..000000000 --- a/python-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# IgnoredGenerationGet200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [Optional[shared.SimpleObject]](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md b/python-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md index 7f1ed2c87..7150f3aec 100755 --- a/python-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md +++ b/python-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ignored_generation_get_200_application_json_object` | [Optional[IgnoredGenerationGet200ApplicationJSON]](../../models/operations/ignoredgenerationget200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.IgnoredGenerationGetResponseBody]](../../models/operations/ignoredgenerationgetresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md b/python-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md new file mode 100755 index 000000000..b2e2f7ed8 --- /dev/null +++ b/python-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md @@ -0,0 +1,10 @@ +# IgnoredGenerationGetResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [Optional[shared.SimpleObject]](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/ignorespostapplicationjson.md b/python-client-sdk/docs/models/operations/ignorespostapplicationjson.md deleted file mode 100755 index 30f0ac102..000000000 --- a/python-client-sdk/docs/models/operations/ignorespostapplicationjson.md +++ /dev/null @@ -1,9 +0,0 @@ -# IgnoresPostApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `callback_url` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `test_prop` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/ignorespostrequest.md b/python-client-sdk/docs/models/operations/ignorespostrequest.md index 18c4f56e5..9f4639242 100755 --- a/python-client-sdk/docs/models/operations/ignorespostrequest.md +++ b/python-client-sdk/docs/models/operations/ignorespostrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `request_body` | [IgnoresPostApplicationJSON](../../models/operations/ignorespostapplicationjson.md) | :heavy_check_mark: | N/A | -| `test_param` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `request_body` | [operations.IgnoresPostRequestBody](../../models/operations/ignorespostrequestbody.md) | :heavy_check_mark: | N/A | +| `test_param` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/ignorespostrequestbody.md b/python-client-sdk/docs/models/operations/ignorespostrequestbody.md new file mode 100755 index 000000000..03d8f784b --- /dev/null +++ b/python-client-sdk/docs/models/operations/ignorespostrequestbody.md @@ -0,0 +1,9 @@ +# IgnoresPostRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `callback_url` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `test_prop` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md b/python-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md index f91fd86b3..689543ef8 100755 --- a/python-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md +++ b/python-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `request_body` | [InlineBodyAndParamConflictRequestBody](../../models/operations/inlinebodyandparamconflictrequestbody.md) | :heavy_check_mark: | N/A | -| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `request_body` | [operations.InlineBodyAndParamConflictRequestBody](../../models/operations/inlinebodyandparamconflictrequestbody.md) | :heavy_check_mark: | N/A | +| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md b/python-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md index 8b01e390a..e0b461b32 100755 --- a/python-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md +++ b/python-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `args` | Dict[str, *str*] | :heavy_check_mark: | N/A | -| `json` | [InlineBodyAndParamConflictResJSON](../../models/operations/inlinebodyandparamconflictresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | +| `args` | Dict[str, *str*] | :heavy_check_mark: | N/A | +| `json` | [operations.JSON](../../models/operations/json.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md b/python-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md deleted file mode 100755 index 346a210d9..000000000 --- a/python-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamConflictResJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md b/python-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md index cbf4f3c25..315f7eccd 100755 --- a/python-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md +++ b/python-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[InlineBodyAndParamConflictRes]](../../models/operations/inlinebodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.InlineBodyAndParamConflictRes]](../../models/operations/inlinebodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md b/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md new file mode 100755 index 000000000..0db81f646 --- /dev/null +++ b/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md @@ -0,0 +1,8 @@ +# InlineBodyAndParamNoConflictJSON + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `body_str` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md b/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md index b98436196..b10731cdf 100755 --- a/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md +++ b/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `request_body` | [InlineBodyAndParamNoConflictRequestBody](../../models/operations/inlinebodyandparamnoconflictrequestbody.md) | :heavy_check_mark: | N/A | -| `param_str` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `request_body` | [operations.InlineBodyAndParamNoConflictRequestBody](../../models/operations/inlinebodyandparamnoconflictrequestbody.md) | :heavy_check_mark: | N/A | +| `param_str` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md b/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md index 87fd72412..9b33a5186 100755 --- a/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md +++ b/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `args` | Dict[str, *str*] | :heavy_check_mark: | N/A | -| `json` | [InlineBodyAndParamNoConflictResJSON](../../models/operations/inlinebodyandparamnoconflictresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `args` | Dict[str, *str*] | :heavy_check_mark: | N/A | +| `json` | [operations.InlineBodyAndParamNoConflictJSON](../../models/operations/inlinebodyandparamnoconflictjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md b/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md deleted file mode 100755 index d854bf037..000000000 --- a/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamNoConflictResJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `body_str` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md b/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md index 3eff92e51..d88121b85 100755 --- a/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md +++ b/python-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[InlineBodyAndParamNoConflictRes]](../../models/operations/inlinebodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.InlineBodyAndParamNoConflictRes]](../../models/operations/inlinebodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/json.md b/python-client-sdk/docs/models/operations/json.md new file mode 100755 index 000000000..b717ebbe6 --- /dev/null +++ b/python-client-sdk/docs/models/operations/json.md @@ -0,0 +1,8 @@ +# JSON + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md b/python-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md new file mode 100755 index 000000000..6ea325fc5 --- /dev/null +++ b/python-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md @@ -0,0 +1,9 @@ +# JSONQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `deep_obj_param` | *str* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | +| `simple_obj_param` | *str* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md b/python-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md index 44f4b47e2..92f7c5dba 100755 --- a/python-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md +++ b/python-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [JSONQueryParamsObjectResArgs](../../models/operations/jsonqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.JSONQueryParamsObjectArgs](../../models/operations/jsonqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/json/obj?deepObjParam={"any"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"arr"%3A[{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}]%2C"bool"%3Atrue%2C"int"%3A1%2C"map"%3A{"key"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"key2"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}}%2C"num"%3A1.1%2C"obj"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"str"%3A"test"}&simpleObjParam={"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"} | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md b/python-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md deleted file mode 100755 index 20f373fb4..000000000 --- a/python-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# JSONQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `deep_obj_param` | *str* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | -| `simple_obj_param` | *str* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md b/python-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md index b28022a4b..e87946571 100755 --- a/python-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md +++ b/python-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[JSONQueryParamsObjectRes]](../../models/operations/jsonqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.JSONQueryParamsObjectRes]](../../models/operations/jsonqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md b/python-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md new file mode 100755 index 000000000..fdf86a2c9 --- /dev/null +++ b/python-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | +| `query_string_param` | *str* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md b/python-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md new file mode 100755 index 000000000..495b646f9 --- /dev/null +++ b/python-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `header_param` | *str* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md b/python-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md index 9180ef659..fb86b06d7 100755 --- a/python-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md +++ b/python-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `args` | [MixedParametersCamelCaseResArgs](../../models/operations/mixedparameterscamelcaseresargs.md) | :heavy_check_mark: | N/A | | -| `headers` | [MixedParametersCamelCaseResHeaders](../../models/operations/mixedparameterscamelcaseresheaders.md) | :heavy_check_mark: | N/A | | -| `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `args` | [operations.MixedParametersCamelCaseArgs](../../models/operations/mixedparameterscamelcaseargs.md) | :heavy_check_mark: | N/A | | +| `headers` | [operations.MixedParametersCamelCaseHeaders](../../models/operations/mixedparameterscamelcaseheaders.md) | :heavy_check_mark: | N/A | | +| `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md b/python-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md deleted file mode 100755 index 77369e707..000000000 --- a/python-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | -| `query_string_param` | *str* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md b/python-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md deleted file mode 100755 index a040da2f4..000000000 --- a/python-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `header_param` | *str* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md b/python-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md index da59b1d22..57a9e9f7d 100755 --- a/python-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md +++ b/python-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[MixedParametersCamelCaseRes]](../../models/operations/mixedparameterscamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.MixedParametersCamelCaseRes]](../../models/operations/mixedparameterscamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md b/python-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md new file mode 100755 index 000000000..369f2f1c6 --- /dev/null +++ b/python-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | +| `query_string_param` | *str* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md b/python-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md new file mode 100755 index 000000000..681da0519 --- /dev/null +++ b/python-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `headerparam` | *str* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparametersprimitivesres.md b/python-client-sdk/docs/models/operations/mixedparametersprimitivesres.md index c77936e51..71a402edb 100755 --- a/python-client-sdk/docs/models/operations/mixedparametersprimitivesres.md +++ b/python-client-sdk/docs/models/operations/mixedparametersprimitivesres.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `args` | [MixedParametersPrimitivesResArgs](../../models/operations/mixedparametersprimitivesresargs.md) | :heavy_check_mark: | N/A | | -| `headers` | [MixedParametersPrimitivesResHeaders](../../models/operations/mixedparametersprimitivesresheaders.md) | :heavy_check_mark: | N/A | | -| `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `args` | [operations.MixedParametersPrimitivesArgs](../../models/operations/mixedparametersprimitivesargs.md) | :heavy_check_mark: | N/A | | +| `headers` | [operations.MixedParametersPrimitivesHeaders](../../models/operations/mixedparametersprimitivesheaders.md) | :heavy_check_mark: | N/A | | +| `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md b/python-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md deleted file mode 100755 index 10031b0b2..000000000 --- a/python-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | -| `query_string_param` | *str* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md b/python-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md deleted file mode 100755 index 21da67d6f..000000000 --- a/python-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `headerparam` | *str* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md b/python-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md index f376a0773..93f8a179d 100755 --- a/python-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md +++ b/python-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[MixedParametersPrimitivesRes]](../../models/operations/mixedparametersprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.MixedParametersPrimitivesRes]](../../models/operations/mixedparametersprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedqueryparamsresponse.md b/python-client-sdk/docs/models/operations/mixedqueryparamsresponse.md index a759b67fc..d77639888 100755 --- a/python-client-sdk/docs/models/operations/mixedqueryparamsresponse.md +++ b/python-client-sdk/docs/models/operations/mixedqueryparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[MixedQueryParamsRes]](../../models/operations/mixedqueryparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.MixedQueryParamsRes]](../../models/operations/mixedqueryparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedtypeoneofpostjson.md b/python-client-sdk/docs/models/operations/mixedtypeoneofpostjson.md new file mode 100755 index 000000000..c01232ebd --- /dev/null +++ b/python-client-sdk/docs/models/operations/mixedtypeoneofpostjson.md @@ -0,0 +1,23 @@ +# MixedTypeOneOfPostJSON + + +## Supported Types + +### + +```python +mixedTypeOneOfPostJSON: str = /* values here */ +``` + +### + +```python +mixedTypeOneOfPostJSON: int = /* values here */ +``` + +### SimpleObject + +```python +mixedTypeOneOfPostJSON: shared.SimpleObject = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/operations/mixedtypeoneofpostres.md b/python-client-sdk/docs/models/operations/mixedtypeoneofpostres.md index ba09e549b..3d8f993e9 100755 --- a/python-client-sdk/docs/models/operations/mixedtypeoneofpostres.md +++ b/python-client-sdk/docs/models/operations/mixedtypeoneofpostres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -| `json` | [Union[str, int, shared.SimpleObject]](../../models/operations/mixedtypeoneofpostresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| `json` | [Union[str, int, shared.SimpleObject]](../../models/operations/mixedtypeoneofpostjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/mixedtypeoneofpostresjson.md b/python-client-sdk/docs/models/operations/mixedtypeoneofpostresjson.md deleted file mode 100755 index bb194c335..000000000 --- a/python-client-sdk/docs/models/operations/mixedtypeoneofpostresjson.md +++ /dev/null @@ -1,23 +0,0 @@ -# MixedTypeOneOfPostResJSON - - -## Supported Types - -### - -```python -mixedTypeOneOfPostResJSON: str = /* values here */ -``` - -### - -```python -mixedTypeOneOfPostResJSON: int = /* values here */ -``` - -### SimpleObject - -```python -mixedTypeOneOfPostResJSON: shared.SimpleObject = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md b/python-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md index c32f08737..46e568f1b 100755 --- a/python-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md +++ b/python-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[MixedTypeOneOfPostRes]](../../models/operations/mixedtypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.MixedTypeOneOfPostRes]](../../models/operations/mixedtypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md b/python-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md index 26bd5f7bf..2bfa303eb 100755 --- a/python-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md +++ b/python-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| `option1` | [Optional[MultipleOptionsWithMixedSchemesAuthSecurityOption1]](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | -| `option2` | [Optional[MultipleOptionsWithMixedSchemesAuthSecurityOption2]](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `option1` | [Optional[operations.MultipleOptionsWithMixedSchemesAuthSecurityOption1]](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | +| `option2` | [Optional[operations.MultipleOptionsWithMixedSchemesAuthSecurityOption2]](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md b/python-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md index d13c82174..a2f5b38e2 100755 --- a/python-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md +++ b/python-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | -| `option1` | [Optional[MultipleOptionsWithSimpleSchemesAuthSecurityOption1]](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | -| `option2` | [Optional[MultipleOptionsWithSimpleSchemesAuthSecurityOption2]](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `option1` | [Optional[operations.MultipleOptionsWithSimpleSchemesAuthSecurityOption1]](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | +| `option2` | [Optional[operations.MultipleOptionsWithSimpleSchemesAuthSecurityOption2]](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md b/python-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md deleted file mode 100755 index 9892181d6..000000000 --- a/python-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md +++ /dev/null @@ -1,12 +0,0 @@ -# NameOverrideGetEnumNameOverride - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `VALUE1` | value1 | -| `VALUE2` | value2 | -| `VALUE3` | value3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md b/python-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md new file mode 100755 index 000000000..9f7452e9b --- /dev/null +++ b/python-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md @@ -0,0 +1,10 @@ +# NameOverrideGetOverriddenResponse + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [Optional[shared.SimpleObject]](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nameoverridegetrequest.md b/python-client-sdk/docs/models/operations/nameoverridegetrequest.md index c5c66dc36..a0e77ffad 100755 --- a/python-client-sdk/docs/models/operations/nameoverridegetrequest.md +++ b/python-client-sdk/docs/models/operations/nameoverridegetrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `test_enum_query_param` | [NameOverrideGetEnumNameOverride](../../models/operations/nameoverridegetenumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | -| `test_query_param` | *str* | :heavy_check_mark: | N/A | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `test_enum_query_param` | [operations.EnumNameOverride](../../models/operations/enumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | +| `test_query_param` | *str* | :heavy_check_mark: | N/A | example | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nameoverridegetresponse.md b/python-client-sdk/docs/models/operations/nameoverridegetresponse.md index 2d3a4e116..b2bcc33ad 100755 --- a/python-client-sdk/docs/models/operations/nameoverridegetresponse.md +++ b/python-client-sdk/docs/models/operations/nameoverridegetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `overridden_response` | [Optional[OverriddenResponse]](../../models/operations/overriddenresponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `overridden_response` | [Optional[operations.NameOverrideGetOverriddenResponse]](../../models/operations/nameoverridegetoverriddenresponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullableobjectpostresponse.md b/python-client-sdk/docs/models/operations/nullableobjectpostresponse.md index 431c3fe4e..a3fe9aa5f 100755 --- a/python-client-sdk/docs/models/operations/nullableobjectpostresponse.md +++ b/python-client-sdk/docs/models/operations/nullableobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[NullableObjectPostRes]](../../models/operations/nullableobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.NullableObjectPostRes]](../../models/operations/nullableobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md b/python-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md index 7a2069142..9e1fceafb 100755 --- a/python-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md +++ b/python-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[NullableOneOfRefInObjectPostRes]](../../models/operations/nullableoneofrefinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.NullableOneOfRefInObjectPostRes]](../../models/operations/nullableoneofrefinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullableoneofschemapostjson.md b/python-client-sdk/docs/models/operations/nullableoneofschemapostjson.md new file mode 100755 index 000000000..e429b37a3 --- /dev/null +++ b/python-client-sdk/docs/models/operations/nullableoneofschemapostjson.md @@ -0,0 +1,17 @@ +# NullableOneOfSchemaPostJSON + + +## Supported Types + +### TypedObject1 + +```python +nullableOneOfSchemaPostJSON: shared.TypedObject1 = /* values here */ +``` + +### TypedObject2 + +```python +nullableOneOfSchemaPostJSON: shared.TypedObject2 = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/operations/nullableoneofschemapostres.md b/python-client-sdk/docs/models/operations/nullableoneofschemapostres.md index 560db945b..27c8adb77 100755 --- a/python-client-sdk/docs/models/operations/nullableoneofschemapostres.md +++ b/python-client-sdk/docs/models/operations/nullableoneofschemapostres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -| `json` | [Optional[Union[shared.TypedObject1, shared.TypedObject2]]](../../models/operations/nullableoneofschemapostresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| `json` | [Optional[Union[shared.TypedObject1, shared.TypedObject2]]](../../models/operations/nullableoneofschemapostjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullableoneofschemapostresjson.md b/python-client-sdk/docs/models/operations/nullableoneofschemapostresjson.md deleted file mode 100755 index 7ca4a254b..000000000 --- a/python-client-sdk/docs/models/operations/nullableoneofschemapostresjson.md +++ /dev/null @@ -1,17 +0,0 @@ -# NullableOneOfSchemaPostResJSON - - -## Supported Types - -### TypedObject1 - -```python -nullableOneOfSchemaPostResJSON: shared.TypedObject1 = /* values here */ -``` - -### TypedObject2 - -```python -nullableOneOfSchemaPostResJSON: shared.TypedObject2 = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md b/python-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md index 75a8e7d57..9cae94074 100755 --- a/python-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md +++ b/python-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[NullableOneOfSchemaPostRes]](../../models/operations/nullableoneofschemapostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.NullableOneOfSchemaPostRes]](../../models/operations/nullableoneofschemapostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md b/python-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md index 19dc1bde1..adb7f3755 100755 --- a/python-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md +++ b/python-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[NullableOneOfTypeInObjectPostRes]](../../models/operations/nullableoneoftypeinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.NullableOneOfTypeInObjectPostRes]](../../models/operations/nullableoneoftypeinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullableoptionalobj.md b/python-client-sdk/docs/models/operations/nullableoptionalobj.md new file mode 100755 index 000000000..a4e5f26bb --- /dev/null +++ b/python-client-sdk/docs/models/operations/nullableoptionalobj.md @@ -0,0 +1,7 @@ +# NullableOptionalObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md b/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md index b545a4918..480384808 100755 --- a/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md +++ b/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `nullable_optional_obj` | [Optional[NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj]](../../models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md) | :heavy_minus_sign: | N/A | -| `nullable_required_obj` | [Optional[NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj]](../../models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md) | :heavy_check_mark: | N/A | -| `required_obj` | [NullableRequiredEmptyObjectPostRequestBodyRequiredObj](../../models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | +| `nullable_optional_obj` | [Optional[operations.NullableOptionalObj]](../../models/operations/nullableoptionalobj.md) | :heavy_minus_sign: | N/A | +| `nullable_required_obj` | [Optional[operations.NullableRequiredObj]](../../models/operations/nullablerequiredobj.md) | :heavy_check_mark: | N/A | +| `required_obj` | [operations.RequiredObj](../../models/operations/requiredobj.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md b/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md deleted file mode 100755 index 4bd625eb3..000000000 --- a/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md b/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md deleted file mode 100755 index f5a542eea..000000000 --- a/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md b/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md deleted file mode 100755 index 20a807232..000000000 --- a/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md b/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md index 36886b0ce..33b4d9390 100755 --- a/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md +++ b/python-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullable_required_empty_object_post_200_application_json_string` | *Optional[str]* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *Optional[str]* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullablerequiredenum.md b/python-client-sdk/docs/models/operations/nullablerequiredenum.md new file mode 100755 index 000000000..99c697b3d --- /dev/null +++ b/python-client-sdk/docs/models/operations/nullablerequiredenum.md @@ -0,0 +1,9 @@ +# NullableRequiredEnum + + +## Values + +| Name | Value | +| -------- | -------- | +| `FIRST` | first | +| `SECOND` | second | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullablerequiredobj.md b/python-client-sdk/docs/models/operations/nullablerequiredobj.md new file mode 100755 index 000000000..b1e3ab8c2 --- /dev/null +++ b/python-client-sdk/docs/models/operations/nullablerequiredobj.md @@ -0,0 +1,7 @@ +# NullableRequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md b/python-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md index 023097c98..239c10478 100755 --- a/python-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md +++ b/python-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `nullable_optional_int` | *Optional[int]* | :heavy_minus_sign: | N/A | -| `nullable_required_array` | List[*float*] | :heavy_check_mark: | N/A | -| `nullable_required_enum` | [Optional[NullableRequiredPropertyPostRequestBodyNullableRequiredEnum]](../../models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md) | :heavy_check_mark: | N/A | -| `nullable_required_int` | *Optional[int]* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `nullable_optional_int` | *Optional[int]* | :heavy_minus_sign: | N/A | +| `nullable_required_array` | List[*float*] | :heavy_check_mark: | N/A | +| `nullable_required_enum` | [Optional[operations.NullableRequiredEnum]](../../models/operations/nullablerequiredenum.md) | :heavy_check_mark: | N/A | +| `nullable_required_int` | *Optional[int]* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md b/python-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md deleted file mode 100755 index 67d85fb92..000000000 --- a/python-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md +++ /dev/null @@ -1,9 +0,0 @@ -# NullableRequiredPropertyPostRequestBodyNullableRequiredEnum - - -## Values - -| Name | Value | -| -------- | -------- | -| `FIRST` | first | -| `SECOND` | second | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md b/python-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md index 9f9be26f3..5f77d5cf4 100755 --- a/python-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md +++ b/python-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullable_required_property_post_200_application_json_string` | *Optional[str]* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *Optional[str]* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md b/python-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md index b28254ced..d20178363 100755 --- a/python-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md +++ b/python-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullable_required_shared_object_post_200_application_json_string` | *Optional[str]* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *Optional[str]* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md b/python-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md index 2d60aa115..769952fa1 100755 --- a/python-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md +++ b/python-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[NullableTypedObjectPostRes]](../../models/operations/nullabletypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.NullableTypedObjectPostRes]](../../models/operations/nullabletypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/oauth2authresponse.md b/python-client-sdk/docs/models/operations/oauth2authresponse.md index b6e9f9c9e..58511b21a 100755 --- a/python-client-sdk/docs/models/operations/oauth2authresponse.md +++ b/python-client-sdk/docs/models/operations/oauth2authresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [Optional[Oauth2AuthToken]](../../models/operations/oauth2authtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| `token` | [Optional[operations.Oauth2AuthToken]](../../models/operations/oauth2authtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/oauth2overrideresponse.md b/python-client-sdk/docs/models/operations/oauth2overrideresponse.md index 12bc69090..af4594377 100755 --- a/python-client-sdk/docs/models/operations/oauth2overrideresponse.md +++ b/python-client-sdk/docs/models/operations/oauth2overrideresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [Optional[Oauth2OverrideToken]](../../models/operations/oauth2overridetoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [Optional[operations.Oauth2OverrideToken]](../../models/operations/oauth2overridetoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/obj.md b/python-client-sdk/docs/models/operations/obj.md new file mode 100755 index 000000000..46df7f0e1 --- /dev/null +++ b/python-client-sdk/docs/models/operations/obj.md @@ -0,0 +1,10 @@ +# Obj + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *bool* | :heavy_check_mark: | N/A | +| `num` | *float* | :heavy_check_mark: | N/A | +| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/objarrparam.md b/python-client-sdk/docs/models/operations/objarrparam.md new file mode 100755 index 000000000..de107092e --- /dev/null +++ b/python-client-sdk/docs/models/operations/objarrparam.md @@ -0,0 +1,8 @@ +# ObjArrParam + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | List[*str*] | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/objparam.md b/python-client-sdk/docs/models/operations/objparam.md new file mode 100755 index 000000000..b6660cc94 --- /dev/null +++ b/python-client-sdk/docs/models/operations/objparam.md @@ -0,0 +1,9 @@ +# ObjParam + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `encoded_count` | *Optional[str]* | :heavy_minus_sign: | N/A | 11 | +| `encoded_term` | *Optional[str]* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/objparamexploded.md b/python-client-sdk/docs/models/operations/objparamexploded.md new file mode 100755 index 000000000..4a96757bd --- /dev/null +++ b/python-client-sdk/docs/models/operations/objparamexploded.md @@ -0,0 +1,9 @@ +# ObjParamExploded + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `item_count` | *Optional[str]* | :heavy_minus_sign: | N/A | 10 | +| `search_term` | *Optional[str]* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/openidconnectauthresponse.md b/python-client-sdk/docs/models/operations/openidconnectauthresponse.md index a831ee2e3..6627fdf85 100755 --- a/python-client-sdk/docs/models/operations/openidconnectauthresponse.md +++ b/python-client-sdk/docs/models/operations/openidconnectauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [Optional[OpenIDConnectAuthToken]](../../models/operations/openidconnectauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [Optional[operations.OpenIDConnectAuthToken]](../../models/operations/openidconnectauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/optenumparameter.md b/python-client-sdk/docs/models/operations/optenumparameter.md new file mode 100755 index 000000000..e4a2544eb --- /dev/null +++ b/python-client-sdk/docs/models/operations/optenumparameter.md @@ -0,0 +1,12 @@ +# OptEnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `VALUE1` | value1 | +| `VALUE2` | value2 | +| `VALUE3` | value3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/overriddenresponse.md b/python-client-sdk/docs/models/operations/overriddenresponse.md deleted file mode 100755 index fd3fc09a4..000000000 --- a/python-client-sdk/docs/models/operations/overriddenresponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# OverriddenResponse - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [Optional[shared.SimpleObject]](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/paginationcursorbodyresponse.md b/python-client-sdk/docs/models/operations/paginationcursorbodyresponse.md index 31d30879e..15b7471b9 100755 --- a/python-client-sdk/docs/models/operations/paginationcursorbodyresponse.md +++ b/python-client-sdk/docs/models/operations/paginationcursorbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[PaginationCursorBodyRes]](../../models/operations/paginationcursorbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.PaginationCursorBodyRes]](../../models/operations/paginationcursorbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/paginationcursorparamsresponse.md b/python-client-sdk/docs/models/operations/paginationcursorparamsresponse.md index a1ca5a435..0e252adc6 100755 --- a/python-client-sdk/docs/models/operations/paginationcursorparamsresponse.md +++ b/python-client-sdk/docs/models/operations/paginationcursorparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[PaginationCursorParamsRes]](../../models/operations/paginationcursorparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.PaginationCursorParamsRes]](../../models/operations/paginationcursorparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md b/python-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md index f5ae066f5..6fbe939dd 100755 --- a/python-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md +++ b/python-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[PaginationLimitOffsetOffsetBodyRes]](../../models/operations/paginationlimitoffsetoffsetbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.PaginationLimitOffsetOffsetBodyRes]](../../models/operations/paginationlimitoffsetoffsetbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md b/python-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md index f94c4581e..7331569a8 100755 --- a/python-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md +++ b/python-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[PaginationLimitOffsetOffsetParamsRes]](../../models/operations/paginationlimitoffsetoffsetparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.PaginationLimitOffsetOffsetParamsRes]](../../models/operations/paginationlimitoffsetoffsetparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md b/python-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md index 60a5228a8..e075bd592 100755 --- a/python-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md +++ b/python-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[PaginationLimitOffsetPageBodyRes]](../../models/operations/paginationlimitoffsetpagebodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.PaginationLimitOffsetPageBodyRes]](../../models/operations/paginationlimitoffsetpagebodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md b/python-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md index 0af056a6c..09bcdbfca 100755 --- a/python-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md +++ b/python-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[PaginationLimitOffsetPageParamsRes]](../../models/operations/paginationlimitoffsetpageparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.PaginationLimitOffsetPageParamsRes]](../../models/operations/paginationlimitoffsetpageparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/pathparameterjsonresponse.md b/python-client-sdk/docs/models/operations/pathparameterjsonresponse.md index e1ee41cb0..8f6e8e675 100755 --- a/python-client-sdk/docs/models/operations/pathparameterjsonresponse.md +++ b/python-client-sdk/docs/models/operations/pathparameterjsonresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[PathParameterJSONRes]](../../models/operations/pathparameterjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.PathParameterJSONRes]](../../models/operations/pathparameterjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md b/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md new file mode 100755 index 000000000..3b9718900 --- /dev/null +++ b/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md @@ -0,0 +1,9 @@ +# PipeDelimitedQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | +| `arr_param` | *str* | :heavy_check_mark: | N/A | test\|test2 | +| `arr_param_exploded` | List[*str*] | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md b/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md index 90f11188c..2db9a1cb3 100755 --- a/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md +++ b/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `args` | [PipeDelimitedQueryParamsArrayResArgs](../../models/operations/pipedelimitedqueryparamsarrayresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.PipeDelimitedQueryParamsArrayArgs](../../models/operations/pipedelimitedqueryparamsarrayargs.md) | :heavy_check_mark: | N/A | | | `url` | *str* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/pipe/array?arrParam=test\|test2&arrParamExploded=1&arrParamExploded=2&mapParam=key1\|val1\|key2\|val2&objParam=any\|any\|bigint\|8821239038968084\|bigintStr\|9223372036854775808\|bool\|true\|boolOpt\|true\|date\|2020-01-01\|dateTime\|2020-01-01T00%3A00%3A00.000000001Z\|decimal\|3.141592653589793\|decimalStr\|3.14159265358979344719667586\|enum\|one\|float32\|1.1\|int\|1\|int32\|1\|int32Enum\|55\|intEnum\|2\|num\|1.1\|str\|test\|strOpt\|testOptional | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md b/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md deleted file mode 100755 index 23ee0eb5d..000000000 --- a/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# PipeDelimitedQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | -| `arr_param` | *str* | :heavy_check_mark: | N/A | test\|test2 | -| `arr_param_exploded` | List[*str*] | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md b/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md index 4b0f5d4e9..3d8318532 100755 --- a/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md +++ b/python-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[PipeDelimitedQueryParamsArrayRes]](../../models/operations/pipedelimitedqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.PipeDelimitedQueryParamsArrayRes]](../../models/operations/pipedelimitedqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/primitivetypeoneofpostjson.md b/python-client-sdk/docs/models/operations/primitivetypeoneofpostjson.md new file mode 100755 index 000000000..fac70b418 --- /dev/null +++ b/python-client-sdk/docs/models/operations/primitivetypeoneofpostjson.md @@ -0,0 +1,29 @@ +# PrimitiveTypeOneOfPostJSON + + +## Supported Types + +### + +```python +primitiveTypeOneOfPostJSON: str = /* values here */ +``` + +### + +```python +primitiveTypeOneOfPostJSON: int = /* values here */ +``` + +### + +```python +primitiveTypeOneOfPostJSON: float = /* values here */ +``` + +### + +```python +primitiveTypeOneOfPostJSON: bool = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/operations/primitivetypeoneofpostres.md b/python-client-sdk/docs/models/operations/primitivetypeoneofpostres.md index d9bd6b80c..d601cf666 100755 --- a/python-client-sdk/docs/models/operations/primitivetypeoneofpostres.md +++ b/python-client-sdk/docs/models/operations/primitivetypeoneofpostres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| `json` | [Union[str, int, float, bool]](../../models/operations/primitivetypeoneofpostresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `json` | [Union[str, int, float, bool]](../../models/operations/primitivetypeoneofpostjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/primitivetypeoneofpostresjson.md b/python-client-sdk/docs/models/operations/primitivetypeoneofpostresjson.md deleted file mode 100755 index e24469265..000000000 --- a/python-client-sdk/docs/models/operations/primitivetypeoneofpostresjson.md +++ /dev/null @@ -1,29 +0,0 @@ -# PrimitiveTypeOneOfPostResJSON - - -## Supported Types - -### - -```python -primitiveTypeOneOfPostResJSON: str = /* values here */ -``` - -### - -```python -primitiveTypeOneOfPostResJSON: int = /* values here */ -``` - -### - -```python -primitiveTypeOneOfPostResJSON: float = /* values here */ -``` - -### - -```python -primitiveTypeOneOfPostResJSON: bool = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md b/python-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md index 0d2279d1a..d031d2620 100755 --- a/python-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md +++ b/python-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[PrimitiveTypeOneOfPostRes]](../../models/operations/primitivetypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.PrimitiveTypeOneOfPostRes]](../../models/operations/primitivetypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md b/python-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md deleted file mode 100755 index 56afc7b69..000000000 --- a/python-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# PutAnythingIgnoredGeneration200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md b/python-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md index 214d0b653..8beebd2ec 100755 --- a/python-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md +++ b/python-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `put_anything_ignored_generation_200_application_json_object` | [Optional[PutAnythingIgnoredGeneration200ApplicationJSON]](../../models/operations/putanythingignoredgeneration200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.PutAnythingIgnoredGenerationResponseBody]](../../models/operations/putanythingignoredgenerationresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md b/python-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md new file mode 100755 index 000000000..a27a0f784 --- /dev/null +++ b/python-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md @@ -0,0 +1,10 @@ +# PutAnythingIgnoredGenerationResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md index 60a92a874..8683a7eae 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `simple_object_camel_cases` | List[[shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List[[shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md index 87fb13bf7..58d67baec 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | List[List[[shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)]] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List[List[[shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)]] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md index 3b2fb2f17..168c93bb9 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | List[List[*str*]] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List[List[*str*]] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md index 29e0d9ba5..fe85ca457 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | List[List[[shared.SimpleObject](../../models/shared/simpleobject.md)]] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List[List[[shared.SimpleObject](../../models/shared/simpleobject.md)]] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md index c0a9cbe62..62fff1e43 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `maps` | List[Dict[str, [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)]] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List[Dict[str, [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)]] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md index a4e8eb522..873748df8 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `maps` | List[Dict[str, [shared.SimpleObject](../../models/shared/simpleobject.md)]] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List[Dict[str, [shared.SimpleObject](../../models/shared/simpleobject.md)]] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md index 32cc7defc..a5eecf919 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `strings` | List[*str*] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List[*str*] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md index fac3354e3..d629e87ac 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `simple_objects` | List[[shared.SimpleObject](../../models/shared/simpleobject.md)] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | List[[shared.SimpleObject](../../models/shared/simpleobject.md)] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md index 1835789bd..e4c4158dc 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostApplicationJSONDeepCamelCaseRes]](../../models/operations/requestbodypostapplicationjsondeepcamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostApplicationJSONDeepCamelCaseRes]](../../models/operations/requestbodypostapplicationjsondeepcamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md index ccc96548f..a8f203a79 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostApplicationJSONDeepRes]](../../models/operations/requestbodypostapplicationjsondeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostApplicationJSONDeepRes]](../../models/operations/requestbodypostapplicationjsondeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md index 9a3bbe138..6943667c3 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostApplicationJSONMultipleJSONFilteredRes]](../../models/operations/requestbodypostapplicationjsonmultiplejsonfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostApplicationJSONMultipleJSONFilteredRes]](../../models/operations/requestbodypostapplicationjsonmultiplejsonfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md index a26a32cff..f5e7e4bb2 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostApplicationJSONSimpleCamelCaseRes]](../../models/operations/requestbodypostapplicationjsonsimplecamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostApplicationJSONSimpleCamelCaseRes]](../../models/operations/requestbodypostapplicationjsonsimplecamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md index d4c989e96..30225c50e 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostApplicationJSONSimpleRes]](../../models/operations/requestbodypostapplicationjsonsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostApplicationJSONSimpleRes]](../../models/operations/requestbodypostapplicationjsonsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md deleted file mode 100755 index fe98314a1..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostComplexNumberTypes200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | -| `json` | [shared.ComplexNumberTypes](../../models/shared/complexnumbertypes.md) | :heavy_check_mark: | N/A | -| `url` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md b/python-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md index aa505154e..5300a0da8 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_complex_number_types_200_application_json_object` | [Optional[RequestBodyPostComplexNumberTypes200ApplicationJSON]](../../models/operations/requestbodypostcomplexnumbertypes200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostComplexNumberTypesResponseBody]](../../models/operations/requestbodypostcomplexnumbertypesresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md new file mode 100755 index 000000000..7de170721 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostComplexNumberTypesResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | +| `json` | [shared.ComplexNumberTypes](../../models/shared/complexnumbertypes.md) | :heavy_check_mark: | N/A | +| `url` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md deleted file mode 100755 index ba33a2549..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostDefaultsAndConsts200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -| `json` | [shared.DefaultsAndConstsOutput](../../models/shared/defaultsandconstsoutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md b/python-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md index 38129532e..2075a280f 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_defaults_and_consts_200_application_json_object` | [Optional[RequestBodyPostDefaultsAndConsts200ApplicationJSON]](../../models/operations/requestbodypostdefaultsandconsts200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostDefaultsAndConstsResponseBody]](../../models/operations/requestbodypostdefaultsandconstsresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md new file mode 100755 index 000000000..2955038a3 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostDefaultsAndConstsResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | +| `json` | [shared.DefaultsAndConstsOutput](../../models/shared/defaultsandconstsoutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md deleted file mode 100755 index edc31f07c..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `empty` | [Optional[RequestBodyPostEmptyObject200ApplicationJSONEmpty]](../../models/operations/requestbodypostemptyobject200applicationjsonempty.md) | :heavy_minus_sign: | N/A | -| `empty_resp_with_empty_properies` | [Optional[RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies]](../../models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md b/python-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md deleted file mode 100755 index 6248bf538..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md b/python-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md deleted file mode 100755 index 27326d373..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md b/python-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md new file mode 100755 index 000000000..7624b0484 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md @@ -0,0 +1,7 @@ +# RequestBodyPostEmptyObjectEmpty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md b/python-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md index c0b8fe1c5..0108252cb 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md +++ b/python-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `empty` | [Optional[RequestBodyPostEmptyObjectRequestBodyEmpty]](../../models/operations/requestbodypostemptyobjectrequestbodyempty.md) | :heavy_minus_sign: | N/A | -| `empty_with_empty_properties` | [Optional[RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties]](../../models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | +| `empty` | [Optional[operations.Empty]](../../models/operations/empty.md) | :heavy_minus_sign: | N/A | +| `empty_with_empty_properties` | [Optional[operations.EmptyWithEmptyProperties]](../../models/operations/emptywithemptyproperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md b/python-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md deleted file mode 100755 index 60e906506..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md b/python-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md deleted file mode 100755 index 66bb29b41..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md b/python-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md index 05eaa80cf..244bb8ffd 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_empty_object_200_application_json_object` | [Optional[RequestBodyPostEmptyObject200ApplicationJSON]](../../models/operations/requestbodypostemptyobject200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostEmptyObjectResponseBody]](../../models/operations/requestbodypostemptyobjectresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md new file mode 100755 index 000000000..a773ecd77 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostEmptyObjectResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | +| `empty` | [Optional[operations.RequestBodyPostEmptyObjectEmpty]](../../models/operations/requestbodypostemptyobjectempty.md) | :heavy_minus_sign: | N/A | +| `empty_resp_with_empty_properies` | [Optional[operations.EmptyRespWithEmptyProperies]](../../models/operations/emptyrespwithemptyproperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostformdeepres.md b/python-client-sdk/docs/models/operations/requestbodypostformdeepres.md index 72395db0a..5109b0bba 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostformdeepres.md +++ b/python-client-sdk/docs/models/operations/requestbodypostformdeepres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPostFormDeepResForm](../../models/operations/requestbodypostformdeepresform.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | +| `form` | [operations.Form](../../models/operations/form.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostformdeepresform.md b/python-client-sdk/docs/models/operations/requestbodypostformdeepresform.md deleted file mode 100755 index 0ffcc554b..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostformdeepresform.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPostFormDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | *str* | :heavy_check_mark: | N/A | -| `bool` | *str* | :heavy_check_mark: | N/A | -| `int` | *str* | :heavy_check_mark: | N/A | -| `map` | *str* | :heavy_check_mark: | N/A | -| `num` | *str* | :heavy_check_mark: | N/A | -| `obj` | *str* | :heavy_check_mark: | N/A | -| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md b/python-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md index 608800d05..2d686aa76 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostFormDeepRes]](../../models/operations/requestbodypostformdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostFormDeepRes]](../../models/operations/requestbodypostformdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md b/python-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md index c724edf6e..4aeddad39 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostFormMapPrimitiveRes]](../../models/operations/requestbodypostformmapprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostFormMapPrimitiveRes]](../../models/operations/requestbodypostformmapprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostformsimpleform.md b/python-client-sdk/docs/models/operations/requestbodypostformsimpleform.md new file mode 100755 index 000000000..06b9759c8 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostformsimpleform.md @@ -0,0 +1,21 @@ +# RequestBodyPostFormSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `any` | *str* | :heavy_check_mark: | N/A | +| `bool` | *str* | :heavy_check_mark: | N/A | +| `bool_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `date_` | *str* | :heavy_check_mark: | N/A | +| `date_time` | *str* | :heavy_check_mark: | N/A | +| `enum` | *str* | :heavy_check_mark: | N/A | +| `float32` | *str* | :heavy_check_mark: | N/A | +| `int` | *str* | :heavy_check_mark: | N/A | +| `int32` | *str* | :heavy_check_mark: | N/A | +| `int_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `num` | *str* | :heavy_check_mark: | N/A | +| `num_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `str_` | *str* | :heavy_check_mark: | N/A | +| `str_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md b/python-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md new file mode 100755 index 000000000..a0f31d8dd --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md @@ -0,0 +1,8 @@ +# RequestBodyPostFormSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content_type` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostformsimpleres.md b/python-client-sdk/docs/models/operations/requestbodypostformsimpleres.md index 188da40ab..c90f438cb 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostformsimpleres.md +++ b/python-client-sdk/docs/models/operations/requestbodypostformsimpleres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPostFormSimpleResForm](../../models/operations/requestbodypostformsimpleresform.md) | :heavy_check_mark: | N/A | -| `headers` | [RequestBodyPostFormSimpleResHeaders](../../models/operations/requestbodypostformsimpleresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `form` | [operations.RequestBodyPostFormSimpleForm](../../models/operations/requestbodypostformsimpleform.md) | :heavy_check_mark: | N/A | +| `headers` | [operations.RequestBodyPostFormSimpleHeaders](../../models/operations/requestbodypostformsimpleheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md b/python-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md deleted file mode 100755 index ab4976ac1..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPostFormSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `any` | *str* | :heavy_check_mark: | N/A | -| `bool` | *str* | :heavy_check_mark: | N/A | -| `bool_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `date_` | *str* | :heavy_check_mark: | N/A | -| `date_time` | *str* | :heavy_check_mark: | N/A | -| `enum` | *str* | :heavy_check_mark: | N/A | -| `float32` | *str* | :heavy_check_mark: | N/A | -| `int` | *str* | :heavy_check_mark: | N/A | -| `int32` | *str* | :heavy_check_mark: | N/A | -| `int_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `num` | *str* | :heavy_check_mark: | N/A | -| `num_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `str_` | *str* | :heavy_check_mark: | N/A | -| `str_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md b/python-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md deleted file mode 100755 index f5cb44a12..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPostFormSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content_type` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md b/python-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md index 65438bf09..adc6e7848 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostFormSimpleRes]](../../models/operations/requestbodypostformsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostFormSimpleRes]](../../models/operations/requestbodypostformsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md deleted file mode 100755 index aa3a51274..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | List[*int*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md index 226148f2d..41465abae 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_array_big_int_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesArrayBigIntResponseBody]](../../models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md new file mode 100755 index 000000000..ca2cbd4f1 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesArrayBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | List[*int*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md deleted file mode 100755 index 7aa197def..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | List[[datetime](https://docs.python.org/3/library/datetime.html#datetime-objects)] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md index 3c795cbc7..0fe98362c 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_array_date_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesArrayDateResponseBody]](../../models/operations/requestbodypostjsondatatypesarraydateresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md new file mode 100755 index 000000000..4ff25be93 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesArrayDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | List[[datetime](https://docs.python.org/3/library/datetime.html#datetime-objects)] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md deleted file mode 100755 index d995fa8d3..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | List[*Decimal*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md index 7625e9f35..faa43bd62 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_array_decimal_str_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody]](../../models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md new file mode 100755 index 000000000..466e5c41a --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | List[*Decimal*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md deleted file mode 100755 index f858193ac..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md index 549447fdf..e385d38e7 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_big_int_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesBigInt200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesbigint200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesBigIntResponseBody]](../../models/operations/requestbodypostjsondatatypesbigintresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md new file mode 100755 index 000000000..fef57c26e --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md deleted file mode 100755 index 8f0ae35a8..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md index d9edb47cb..b71462ec8 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_big_int_str_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesBigIntStrResponseBody]](../../models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md new file mode 100755 index 000000000..836cc710e --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md deleted file mode 100755 index d92732dd8..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesBoolean200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *bool* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md index 2b1abd54c..902208095 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_boolean_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesBoolean200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesboolean200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesBooleanResponseBody]](../../models/operations/requestbodypostjsondatatypesbooleanresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md new file mode 100755 index 000000000..8fd95ca3d --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesBooleanResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *bool* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md deleted file mode 100755 index 9d2739d55..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md index 9b75509dd..ead97bc13 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_date_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesDate200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesdate200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesDateResponseBody]](../../models/operations/requestbodypostjsondatatypesdateresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md new file mode 100755 index 000000000..da45e572b --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md deleted file mode 100755 index 932c6f8eb..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md index ec75c09f6..8e7befe63 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_date_time_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesDateTime200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesDateTimeResponseBody]](../../models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md new file mode 100755 index 000000000..cd68afaa8 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md deleted file mode 100755 index 7312c3197..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | *Decimal* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md index 4dda7105b..a9174176a 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_decimal_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesDecimal200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesDecimalResponseBody]](../../models/operations/requestbodypostjsondatatypesdecimalresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md new file mode 100755 index 000000000..307ee6d72 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | *Decimal* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md deleted file mode 100755 index a096b9198..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | *Decimal* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md index ead43f988..ceea0d93f 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_decimal_str_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesDecimalStrResponseBody]](../../models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md new file mode 100755 index 000000000..4b5328a91 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | *Decimal* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md deleted file mode 100755 index 1dbbdf782..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesFloat32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md index cd2bfd2c2..e9a354f70 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_float32_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesFloat32200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesFloat32ResponseBody]](../../models/operations/requestbodypostjsondatatypesfloat32responsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md new file mode 100755 index 000000000..60060da77 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesFloat32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md deleted file mode 100755 index d31d44e6d..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInt32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md index 4f9258d41..1a38a4872 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_int32_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesInt32200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesint32200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesInt32ResponseBody]](../../models/operations/requestbodypostjsondatatypesint32responsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md new file mode 100755 index 000000000..44dd6c910 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesInt32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md deleted file mode 100755 index d579483ba..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInteger200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md index 585e61059..d3727ffe6 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_integer_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesInteger200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesinteger200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesIntegerResponseBody]](../../models/operations/requestbodypostjsondatatypesintegerresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md new file mode 100755 index 000000000..784d4a295 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesIntegerResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md deleted file mode 100755 index 9496bff78..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | Dict[str, *int*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md index a6c3a4cd2..ee87a9e91 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_map_big_int_str_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesMapBigIntStrResponseBody]](../../models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md new file mode 100755 index 000000000..eaf47f448 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesMapBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | Dict[str, *int*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md deleted file mode 100755 index bdc4f1556..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | Dict[str, [date](https://docs.python.org/3/library/datetime.html#date-objects)] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md index 5efda22fb..cfd1862f0 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_map_date_time_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesMapDateTimeResponseBody]](../../models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md new file mode 100755 index 000000000..1accc63b7 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesMapDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | Dict[str, [date](https://docs.python.org/3/library/datetime.html#date-objects)] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md deleted file mode 100755 index d7ffa1779..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------- | -------------------- | -------------------- | -------------------- | -| `data` | *str* | :heavy_check_mark: | N/A | -| `json` | Dict[str, *Decimal*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md index a471c3c88..3dcabe9cb 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_map_decimal_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesMapDecimalResponseBody]](../../models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md new file mode 100755 index 000000000..fc0c4da61 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJSONDataTypesMapDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------- | -------------------- | -------------------- | -------------------- | +| `data` | *str* | :heavy_check_mark: | N/A | +| `json` | Dict[str, *Decimal*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md deleted file mode 100755 index d20c2b7fd..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesNumber200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md index e571a544c..1b028e5ef 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_number_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesNumber200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesnumber200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesNumberResponseBody]](../../models/operations/requestbodypostjsondatatypesnumberresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md new file mode 100755 index 000000000..3cbcd1ff7 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesNumberResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md deleted file mode 100755 index 17eed4fc1..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesString200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md index 28515822f..c118d1b98 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_string_200_application_json_object` | [Optional[RequestBodyPostJSONDataTypesString200ApplicationJSON]](../../models/operations/requestbodypostjsondatatypesstring200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostJSONDataTypesStringResponseBody]](../../models/operations/requestbodypostjsondatatypesstringresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md new file mode 100755 index 000000000..9e136d6f1 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJSONDataTypesStringResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md index a3d003074..3e1125652 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostMultipleContentTypesComponentFilteredRes]](../../models/operations/requestbodypostmultiplecontenttypescomponentfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostMultipleContentTypesComponentFilteredRes]](../../models/operations/requestbodypostmultiplecontenttypescomponentfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md deleted file mode 100755 index 29e8ebe23..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *bool* | :heavy_check_mark: | N/A | -| `num` | *float* | :heavy_check_mark: | N/A | -| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md new file mode 100755 index 000000000..deeb6e40b --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesInlineFilteredRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *bool* | :heavy_check_mark: | N/A | +| `num` | *float* | :heavy_check_mark: | N/A | +| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md index d84b6fd8c..d0a78ce35 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostMultipleContentTypesInlineFilteredRes]](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostMultipleContentTypesInlineFilteredRes]](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md deleted file mode 100755 index 0bfa8a332..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *bool* | :heavy_check_mark: | N/A | -| `num` | *float* | :heavy_check_mark: | N/A | -| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md deleted file mode 100755 index 554d30e20..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool3` | *bool* | :heavy_check_mark: | N/A | -| `num3` | *float* | :heavy_check_mark: | N/A | -| `str3` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md new file mode 100755 index 000000000..06e2ced4b --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool3` | *bool* | :heavy_check_mark: | N/A | +| `num3` | *float* | :heavy_check_mark: | N/A | +| `str3` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md index e2de7a4b5..853f7fe4f 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostMultipleContentTypesSplitFormRes]](../../models/operations/requestbodypostmultiplecontenttypessplitformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostMultipleContentTypesSplitFormRes]](../../models/operations/requestbodypostmultiplecontenttypessplitformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md new file mode 100755 index 000000000..00f0c7b66 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitJSONRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *bool* | :heavy_check_mark: | N/A | +| `num` | *float* | :heavy_check_mark: | N/A | +| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md index 3e1fa8b87..415b4e6cb 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostMultipleContentTypesSplitJSONRes]](../../models/operations/requestbodypostmultiplecontenttypessplitjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostMultipleContentTypesSplitJSONRes]](../../models/operations/requestbodypostmultiplecontenttypessplitjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md deleted file mode 100755 index 3fb1aa3e0..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool2` | *bool* | :heavy_check_mark: | N/A | -| `num2` | *float* | :heavy_check_mark: | N/A | -| `str2` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md new file mode 100755 index 000000000..08eaf59fa --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool2` | *bool* | :heavy_check_mark: | N/A | +| `num2` | *float* | :heavy_check_mark: | N/A | +| `str2` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md index 73e06354c..d04a90901 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostMultipleContentTypesSplitMultipartRes]](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostMultipleContentTypesSplitMultipartRes]](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md deleted file mode 100755 index 8de30da03..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *bool* | :heavy_check_mark: | N/A | -| `num` | *float* | :heavy_check_mark: | N/A | -| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md deleted file mode 100755 index 2e5c27b6b..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool3` | *bool* | :heavy_check_mark: | N/A | -| `num3` | *float* | :heavy_check_mark: | N/A | -| `str3` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md index 0a944f803..15b391629 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md) | :heavy_check_mark: | N/A | -| `param_str` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `request_body` | [operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md) | :heavy_check_mark: | N/A | +| `param_str` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md new file mode 100755 index 000000000..f9c6cc924 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool3` | *bool* | :heavy_check_mark: | N/A | +| `num3` | *float* | :heavy_check_mark: | N/A | +| `str3` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md index ab8716442..028c66df4 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostMultipleContentTypesSplitParamFormRes]](../../models/operations/requestbodypostmultiplecontenttypessplitparamformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostMultipleContentTypesSplitParamFormRes]](../../models/operations/requestbodypostmultiplecontenttypessplitparamformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md index 10821a2cb..9c03864e6 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md) | :heavy_check_mark: | N/A | -| `param_str` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `request_body` | [operations.RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md) | :heavy_check_mark: | N/A | +| `param_str` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md new file mode 100755 index 000000000..5765e2412 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *bool* | :heavy_check_mark: | N/A | +| `num` | *float* | :heavy_check_mark: | N/A | +| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md index c2cf54fd2..b79ebcb70 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostMultipleContentTypesSplitParamJSONRes]](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostMultipleContentTypesSplitParamJSONRes]](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md deleted file mode 100755 index b6c9d4443..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool2` | *bool* | :heavy_check_mark: | N/A | -| `num2` | *float* | :heavy_check_mark: | N/A | -| `str2` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md index d14032c41..74d6c6fa8 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md) | :heavy_check_mark: | N/A | -| `param_str` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request_body` | [operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md) | :heavy_check_mark: | N/A | +| `param_str` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md new file mode 100755 index 000000000..51474eece --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool2` | *bool* | :heavy_check_mark: | N/A | +| `num2` | *float* | :heavy_check_mark: | N/A | +| `str2` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md index e919848fc..dd95a07bd 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPostMultipleContentTypesSplitParamMultipartRes]](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRes]](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md deleted file mode 100755 index 0cef11497..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md b/python-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md index 6875ecbe1..31a2627b1 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_not_nullable_not_required_string_body_200_application_json_object` | [Optional[RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON]](../../models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody]](../../models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md new file mode 100755 index 000000000..49a4b193b --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNotNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md deleted file mode 100755 index bff37cc3f..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md b/python-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md index 67b13eba4..b0d6dcccb 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_nullable_not_required_string_body_200_application_json_object` | [Optional[RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON]](../../models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody]](../../models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md new file mode 100755 index 000000000..d4987a337 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md deleted file mode 100755 index fa797ee35..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md b/python-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md index 484a51279..6cb30d93b 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_nullable_required_string_body_200_application_json_object` | [Optional[RequestBodyPostNullableRequiredStringBody200ApplicationJSON]](../../models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostNullableRequiredStringBodyResponseBody]](../../models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md new file mode 100755 index 000000000..74d8a4f03 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md deleted file mode 100755 index 518b23c3f..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullArray200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md b/python-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md index 6e62ba459..c335838d7 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_null_array_200_application_json_object` | [Optional[RequestBodyPostNullArray200ApplicationJSON]](../../models/operations/requestbodypostnullarray200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostNullArrayResponseBody]](../../models/operations/requestbodypostnullarrayresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md new file mode 100755 index 000000000..b77db87ec --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullArrayResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md b/python-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md deleted file mode 100755 index 8b1f463de..000000000 --- a/python-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullDictionary200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md b/python-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md index cd4a2583e..0be9dbacb 100755 --- a/python-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_null_dictionary_200_application_json_object` | [Optional[RequestBodyPostNullDictionary200ApplicationJSON]](../../models/operations/requestbodypostnulldictionary200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.RequestBodyPostNullDictionaryResponseBody]](../../models/operations/requestbodypostnulldictionaryresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md b/python-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md new file mode 100755 index 000000000..7e9e8267e --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullDictionaryResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputbytesresponse.md b/python-client-sdk/docs/models/operations/requestbodyputbytesresponse.md index 8316d5f96..25e057ade 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputbytesresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodyputbytesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPutBytesRes]](../../models/operations/requestbodyputbytesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPutBytesRes]](../../models/operations/requestbodyputbytesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md b/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md new file mode 100755 index 000000000..360cf0267 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md @@ -0,0 +1,8 @@ +# RequestBodyPutBytesWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| -------------------- | -------------------- | -------------------- | -------------------- | +| `query_string_param` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md b/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md index 8332321f6..063d04012 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md +++ b/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `args` | [RequestBodyPutBytesWithParamsResArgs](../../models/operations/requestbodyputbyteswithparamsresargs.md) | :heavy_check_mark: | N/A | -| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `args` | [operations.RequestBodyPutBytesWithParamsArgs](../../models/operations/requestbodyputbyteswithparamsargs.md) | :heavy_check_mark: | N/A | +| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md b/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md deleted file mode 100755 index 50a00dd89..000000000 --- a/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutBytesWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| -------------------- | -------------------- | -------------------- | -------------------- | -| `query_string_param` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md b/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md index 4abf6ed3c..7fbdd444d 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPutBytesWithParamsRes]](../../models/operations/requestbodyputbyteswithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPutBytesWithParamsRes]](../../models/operations/requestbodyputbyteswithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md new file mode 100755 index 000000000..2cffa833d --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md @@ -0,0 +1,14 @@ +# RequestBodyPutMultipartDeepForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | *str* | :heavy_check_mark: | N/A | +| `bool` | *str* | :heavy_check_mark: | N/A | +| `int` | *str* | :heavy_check_mark: | N/A | +| `map` | *str* | :heavy_check_mark: | N/A | +| `num` | *str* | :heavy_check_mark: | N/A | +| `obj` | *str* | :heavy_check_mark: | N/A | +| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md index 16e5b0612..7cbc83e09 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md +++ b/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPutMultipartDeepResForm](../../models/operations/requestbodyputmultipartdeepresform.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `form` | [operations.RequestBodyPutMultipartDeepForm](../../models/operations/requestbodyputmultipartdeepform.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md deleted file mode 100755 index 50d07c930..000000000 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPutMultipartDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | *str* | :heavy_check_mark: | N/A | -| `bool` | *str* | :heavy_check_mark: | N/A | -| `int` | *str* | :heavy_check_mark: | N/A | -| `map` | *str* | :heavy_check_mark: | N/A | -| `num` | *str* | :heavy_check_mark: | N/A | -| `obj` | *str* | :heavy_check_mark: | N/A | -| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md index a66f638ab..02f2b2dc2 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPutMultipartDeepRes]](../../models/operations/requestbodyputmultipartdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPutMultipartDeepRes]](../../models/operations/requestbodyputmultipartdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md index 0b247473c..186a2c0dc 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md +++ b/python-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `different_file_name` | [Optional[RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName]](../../models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `different_file_name` | [Optional[operations.DifferentFileName]](../../models/operations/differentfilename.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md deleted file mode 100755 index 49adef371..000000000 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName - - -## Fields - -| Field | Type | Required | Description | -| --------------------- | --------------------- | --------------------- | --------------------- | -| `content` | *bytes* | :heavy_check_mark: | N/A | -| `different_file_name` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md index a64c7f304..913d836e9 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPutMultipartDifferentFileNameRes]](../../models/operations/requestbodyputmultipartdifferentfilenameres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPutMultipartDifferentFileNameRes]](../../models/operations/requestbodyputmultipartdifferentfilenameres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md index 6eccb19b6..24b1354a6 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md +++ b/python-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -| `file` | [Optional[RequestBodyPutMultipartFileRequestBodyFile]](../../models/operations/requestbodyputmultipartfilerequestbodyfile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | +| `file` | [Optional[operations.File]](../../models/operations/file.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md deleted file mode 100755 index 47cbb7f93..000000000 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content` | *bytes* | :heavy_check_mark: | N/A | -| `file` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md index 0699b8ffc..ce637cf67 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPutMultipartFileRes]](../../models/operations/requestbodyputmultipartfileres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPutMultipartFileRes]](../../models/operations/requestbodyputmultipartfileres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md new file mode 100755 index 000000000..65c31dadd --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md @@ -0,0 +1,21 @@ +# RequestBodyPutMultipartSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `any` | *str* | :heavy_check_mark: | N/A | +| `bool` | *str* | :heavy_check_mark: | N/A | +| `bool_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `date_` | *str* | :heavy_check_mark: | N/A | +| `date_time` | *str* | :heavy_check_mark: | N/A | +| `enum` | *str* | :heavy_check_mark: | N/A | +| `float32` | *str* | :heavy_check_mark: | N/A | +| `int` | *str* | :heavy_check_mark: | N/A | +| `int32` | *str* | :heavy_check_mark: | N/A | +| `int_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `num` | *str* | :heavy_check_mark: | N/A | +| `num_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `str_` | *str* | :heavy_check_mark: | N/A | +| `str_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md new file mode 100755 index 000000000..715446655 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md @@ -0,0 +1,8 @@ +# RequestBodyPutMultipartSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content_type` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md index fce756fe8..753099661 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md +++ b/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPutMultipartSimpleResForm](../../models/operations/requestbodyputmultipartsimpleresform.md) | :heavy_check_mark: | N/A | -| `headers` | [RequestBodyPutMultipartSimpleResHeaders](../../models/operations/requestbodyputmultipartsimpleresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | +| `form` | [operations.RequestBodyPutMultipartSimpleForm](../../models/operations/requestbodyputmultipartsimpleform.md) | :heavy_check_mark: | N/A | +| `headers` | [operations.RequestBodyPutMultipartSimpleHeaders](../../models/operations/requestbodyputmultipartsimpleheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md deleted file mode 100755 index 3cebc230d..000000000 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPutMultipartSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `any` | *str* | :heavy_check_mark: | N/A | -| `bool` | *str* | :heavy_check_mark: | N/A | -| `bool_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `date_` | *str* | :heavy_check_mark: | N/A | -| `date_time` | *str* | :heavy_check_mark: | N/A | -| `enum` | *str* | :heavy_check_mark: | N/A | -| `float32` | *str* | :heavy_check_mark: | N/A | -| `int` | *str* | :heavy_check_mark: | N/A | -| `int32` | *str* | :heavy_check_mark: | N/A | -| `int_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `num` | *str* | :heavy_check_mark: | N/A | -| `num_opt_null` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `str_` | *str* | :heavy_check_mark: | N/A | -| `str_opt` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md deleted file mode 100755 index bc826630a..000000000 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutMultipartSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content_type` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md b/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md index 93a14ef24..92461946b 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPutMultipartSimpleRes]](../../models/operations/requestbodyputmultipartsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPutMultipartSimpleRes]](../../models/operations/requestbodyputmultipartsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputstringresponse.md b/python-client-sdk/docs/models/operations/requestbodyputstringresponse.md index 1fece574a..962ab740e 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputstringresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodyputstringresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPutStringRes]](../../models/operations/requestbodyputstringres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPutStringRes]](../../models/operations/requestbodyputstringres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md b/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md new file mode 100755 index 000000000..5b0e5383f --- /dev/null +++ b/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md @@ -0,0 +1,8 @@ +# RequestBodyPutStringWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| -------------------- | -------------------- | -------------------- | -------------------- | +| `query_string_param` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md b/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md index b6d527573..800d63757 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md +++ b/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `args` | [RequestBodyPutStringWithParamsResArgs](../../models/operations/requestbodyputstringwithparamsresargs.md) | :heavy_check_mark: | N/A | -| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `args` | [operations.RequestBodyPutStringWithParamsArgs](../../models/operations/requestbodyputstringwithparamsargs.md) | :heavy_check_mark: | N/A | +| `data` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md b/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md deleted file mode 100755 index af583f9d0..000000000 --- a/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutStringWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| -------------------- | -------------------- | -------------------- | -------------------- | -| `query_string_param` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md b/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md index c61c6dea6..0f388b3d9 100755 --- a/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md +++ b/python-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[RequestBodyPutStringWithParamsRes]](../../models/operations/requestbodyputstringwithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.RequestBodyPutStringWithParamsRes]](../../models/operations/requestbodyputstringwithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/requiredobj.md b/python-client-sdk/docs/models/operations/requiredobj.md new file mode 100755 index 000000000..75e7b11a1 --- /dev/null +++ b/python-client-sdk/docs/models/operations/requiredobj.md @@ -0,0 +1,7 @@ +# RequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md deleted file mode 100755 index 505455a97..000000000 --- a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -| `json` | [shared.ObjWithComplexNumbersAdditionalProperties](../../models/shared/objwithcomplexnumbersadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md index 9190fab6c..86a9a1440 100755 --- a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md +++ b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_additional_properties_complex_numbers_post_200_application_json_object` | [Optional[ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON]](../../models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody]](../../models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md new file mode 100755 index 000000000..b4cdc0fad --- /dev/null +++ b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `json` | [shared.ObjWithComplexNumbersAdditionalProperties](../../models/shared/objwithcomplexnumbersadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md deleted file mode 100755 index 0790fee35..000000000 --- a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `json` | [shared.ObjWithDateAdditionalProperties](../../models/shared/objwithdateadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md index e9429b718..5d3c560c1 100755 --- a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md +++ b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_additional_properties_date_post_200_application_json_object` | [Optional[ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON]](../../models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.ResponseBodyAdditionalPropertiesDatePostResponseBody]](../../models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md new file mode 100755 index 000000000..d5a01de81 --- /dev/null +++ b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesDatePostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `json` | [shared.ObjWithDateAdditionalProperties](../../models/shared/objwithdateadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md deleted file mode 100755 index 7c220c8bb..000000000 --- a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| `json` | [shared.ObjWithObjAdditionalProperties](../../models/shared/objwithobjadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md index 564b25504..a3b0435c7 100755 --- a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md +++ b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_additional_properties_object_post_200_application_json_object` | [Optional[ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON]](../../models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody]](../../models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md new file mode 100755 index 000000000..51f79bc8a --- /dev/null +++ b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesObjectPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `json` | [shared.ObjWithObjAdditionalProperties](../../models/shared/objwithobjadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md deleted file mode 100755 index eb0b15cdb..000000000 --- a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| `json` | [shared.ObjWithStringAdditionalProperties](../../models/shared/objwithstringadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md index 224962990..c05460a60 100755 --- a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md +++ b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_additional_properties_post_200_application_json_object` | [Optional[ResponseBodyAdditionalPropertiesPost200ApplicationJSON]](../../models/operations/responsebodyadditionalpropertiespost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.ResponseBodyAdditionalPropertiesPostResponseBody]](../../models/operations/responsebodyadditionalpropertiespostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md new file mode 100755 index 000000000..10fdd60dc --- /dev/null +++ b/python-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | +| `json` | [shared.ObjWithStringAdditionalProperties](../../models/shared/objwithstringadditionalproperties.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md b/python-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md index f60ce6e1e..6b9e98427 100755 --- a/python-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md +++ b/python-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md @@ -8,5 +8,5 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_optional_get_200_text_plain_string` | *Optional[str]* | :heavy_minus_sign: | OK | +| `res` | *Optional[str]* | :heavy_minus_sign: | OK | | `typed_object1` | [Optional[shared.TypedObject1]](../../models/shared/typedobject1.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md b/python-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md deleted file mode 100755 index 03aa7b4b4..000000000 --- a/python-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `json` | [shared.ObjWithZeroValueComplexTypePtrs](../../models/shared/objwithzerovaluecomplextypeptrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md b/python-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md index 35744b53f..bf30b9a62 100755 --- a/python-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md +++ b/python-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_zero_value_complex_type_ptrs_post_200_application_json_object` | [Optional[ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON]](../../models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody]](../../models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md b/python-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md new file mode 100755 index 000000000..9053da8b1 --- /dev/null +++ b/python-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyZeroValueComplexTypePtrsPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `json` | [shared.ObjWithZeroValueComplexTypePtrs](../../models/shared/objwithzerovaluecomplextypeptrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/retriesgetresponse.md b/python-client-sdk/docs/models/operations/retriesgetresponse.md index 66cdc91cd..57697bbf4 100755 --- a/python-client-sdk/docs/models/operations/retriesgetresponse.md +++ b/python-client-sdk/docs/models/operations/retriesgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `retries` | [Optional[RetriesGetRetries]](../../models/operations/retriesgetretries.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `retries` | [Optional[operations.RetriesGetRetries]](../../models/operations/retriesgetretries.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md b/python-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md index 918dcaca1..95ba11db0 100755 --- a/python-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md +++ b/python-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[SimplePathParameterArraysRes]](../../models/operations/simplepathparameterarraysres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.SimplePathParameterArraysRes]](../../models/operations/simplepathparameterarraysres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/simplepathparametermapsresponse.md b/python-client-sdk/docs/models/operations/simplepathparametermapsresponse.md index 6d185a12f..7bc34451f 100755 --- a/python-client-sdk/docs/models/operations/simplepathparametermapsresponse.md +++ b/python-client-sdk/docs/models/operations/simplepathparametermapsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[SimplePathParameterMapsRes]](../../models/operations/simplepathparametermapsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.SimplePathParameterMapsRes]](../../models/operations/simplepathparametermapsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md b/python-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md index 3dca3b73e..ec7b4aca7 100755 --- a/python-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md +++ b/python-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[SimplePathParameterObjectsRes]](../../models/operations/simplepathparameterobjectsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.SimplePathParameterObjectsRes]](../../models/operations/simplepathparameterobjectsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md b/python-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md index af9c39d27..20306d502 100755 --- a/python-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md +++ b/python-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[SimplePathParameterPrimitivesRes]](../../models/operations/simplepathparameterprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.SimplePathParameterPrimitivesRes]](../../models/operations/simplepathparameterprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md b/python-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md index 6d5032d5f..356b42bfe 100755 --- a/python-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md +++ b/python-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[StronglyTypedOneOfPostRes]](../../models/operations/stronglytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.StronglyTypedOneOfPostRes]](../../models/operations/stronglytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md b/python-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md index 57b19f8cb..dda71b30a 100755 --- a/python-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md +++ b/python-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[TelemetrySpeakeasyUserAgentGetRes]](../../models/operations/telemetryspeakeasyuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.TelemetrySpeakeasyUserAgentGetRes]](../../models/operations/telemetryspeakeasyuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md b/python-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md index b6cbd9313..c907af39a 100755 --- a/python-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md +++ b/python-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[TelemetryUserAgentGetRes]](../../models/operations/telemetryuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.TelemetryUserAgentGetRes]](../../models/operations/telemetryuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md b/python-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md index 6f40b73e4..92bc06e47 100755 --- a/python-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md +++ b/python-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[TypedObjectNullableOneOfPostRes]](../../models/operations/typedobjectnullableoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.TypedObjectNullableOneOfPostRes]](../../models/operations/typedobjectnullableoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md b/python-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md index 05a65101a..aa5b5937e 100755 --- a/python-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md +++ b/python-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[TypedObjectOneOfPostRes]](../../models/operations/typedobjectoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.TypedObjectOneOfPostRes]](../../models/operations/typedobjectoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/typedparametergenerationgetobj.md b/python-client-sdk/docs/models/operations/typedparametergenerationgetobj.md deleted file mode 100755 index 72dd789fc..000000000 --- a/python-client-sdk/docs/models/operations/typedparametergenerationgetobj.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypedParameterGenerationGetObj - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *bool* | :heavy_check_mark: | N/A | -| `num` | *float* | :heavy_check_mark: | N/A | -| `str_` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md b/python-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md index 548d658fb..e88a0930e 100755 --- a/python-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md +++ b/python-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `bigint` | *Optional[int]* | :heavy_minus_sign: | N/A | -| `date_` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_minus_sign: | N/A | -| `decimal` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | -| `obj` | [Optional[TypedParameterGenerationGetObj]](../../models/operations/typedparametergenerationgetobj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `bigint` | *Optional[int]* | :heavy_minus_sign: | N/A | +| `date_` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_minus_sign: | N/A | +| `decimal` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | +| `obj` | [Optional[operations.Obj]](../../models/operations/obj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/typefromanchor.md b/python-client-sdk/docs/models/operations/typefromanchor.md deleted file mode 100755 index e7558d4ad..000000000 --- a/python-client-sdk/docs/models/operations/typefromanchor.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypeFromAnchor - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [Optional[shared.SimpleObject]](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/unionbigintdecimaljson.md b/python-client-sdk/docs/models/operations/unionbigintdecimaljson.md new file mode 100755 index 000000000..d8f64ae8f --- /dev/null +++ b/python-client-sdk/docs/models/operations/unionbigintdecimaljson.md @@ -0,0 +1,17 @@ +# UnionBigIntDecimalJSON + + +## Supported Types + +### + +```python +unionBigIntDecimalJSON: int = /* values here */ +``` + +### + +```python +unionBigIntDecimalJSON: Decimal = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/operations/unionbigintdecimalres.md b/python-client-sdk/docs/models/operations/unionbigintdecimalres.md index fc168e505..084d90eb8 100755 --- a/python-client-sdk/docs/models/operations/unionbigintdecimalres.md +++ b/python-client-sdk/docs/models/operations/unionbigintdecimalres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | -| `json` | [Union[int, Decimal]](../../models/operations/unionbigintdecimalresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | +| `json` | [Union[int, Decimal]](../../models/operations/unionbigintdecimaljson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/unionbigintdecimalresjson.md b/python-client-sdk/docs/models/operations/unionbigintdecimalresjson.md deleted file mode 100755 index 1712c40e3..000000000 --- a/python-client-sdk/docs/models/operations/unionbigintdecimalresjson.md +++ /dev/null @@ -1,17 +0,0 @@ -# UnionBigIntDecimalResJSON - - -## Supported Types - -### - -```python -unionBigIntDecimalResJSON: int = /* values here */ -``` - -### - -```python -unionBigIntDecimalResJSON: Decimal = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/operations/unionbigintdecimalresponse.md b/python-client-sdk/docs/models/operations/unionbigintdecimalresponse.md index 42dc083e2..1867ed966 100755 --- a/python-client-sdk/docs/models/operations/unionbigintdecimalresponse.md +++ b/python-client-sdk/docs/models/operations/unionbigintdecimalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[UnionBigIntDecimalRes]](../../models/operations/unionbigintdecimalres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.UnionBigIntDecimalRes]](../../models/operations/unionbigintdecimalres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/uniondatenullresponse.md b/python-client-sdk/docs/models/operations/uniondatenullresponse.md index 0defd5cd5..8e1a2cf8f 100755 --- a/python-client-sdk/docs/models/operations/uniondatenullresponse.md +++ b/python-client-sdk/docs/models/operations/uniondatenullresponse.md @@ -8,4 +8,4 @@ | `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[UnionDateNullRes]](../../models/operations/uniondatenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [Optional[operations.UnionDateNullRes]](../../models/operations/uniondatenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/uniondatetimebigintjson.md b/python-client-sdk/docs/models/operations/uniondatetimebigintjson.md new file mode 100755 index 000000000..30168568e --- /dev/null +++ b/python-client-sdk/docs/models/operations/uniondatetimebigintjson.md @@ -0,0 +1,17 @@ +# UnionDateTimeBigIntJSON + + +## Supported Types + +### + +```python +unionDateTimeBigIntJSON: datetime = /* values here */ +``` + +### + +```python +unionDateTimeBigIntJSON: int = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/operations/uniondatetimebigintres.md b/python-client-sdk/docs/models/operations/uniondatetimebigintres.md index 30bf79d85..eef163390 100755 --- a/python-client-sdk/docs/models/operations/uniondatetimebigintres.md +++ b/python-client-sdk/docs/models/operations/uniondatetimebigintres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `json` | [Union[datetime, int]](../../models/operations/uniondatetimebigintresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `json` | [Union[datetime, int]](../../models/operations/uniondatetimebigintjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/uniondatetimebigintresjson.md b/python-client-sdk/docs/models/operations/uniondatetimebigintresjson.md deleted file mode 100755 index bb1287e10..000000000 --- a/python-client-sdk/docs/models/operations/uniondatetimebigintresjson.md +++ /dev/null @@ -1,17 +0,0 @@ -# UnionDateTimeBigIntResJSON - - -## Supported Types - -### - -```python -unionDateTimeBigIntResJSON: datetime = /* values here */ -``` - -### - -```python -unionDateTimeBigIntResJSON: int = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/operations/uniondatetimebigintresponse.md b/python-client-sdk/docs/models/operations/uniondatetimebigintresponse.md index 0c33c3bff..973199d6c 100755 --- a/python-client-sdk/docs/models/operations/uniondatetimebigintresponse.md +++ b/python-client-sdk/docs/models/operations/uniondatetimebigintresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[UnionDateTimeBigIntRes]](../../models/operations/uniondatetimebigintres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.UnionDateTimeBigIntRes]](../../models/operations/uniondatetimebigintres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/uniondatetimenullresponse.md b/python-client-sdk/docs/models/operations/uniondatetimenullresponse.md index 09cebf32b..45b45bdef 100755 --- a/python-client-sdk/docs/models/operations/uniondatetimenullresponse.md +++ b/python-client-sdk/docs/models/operations/uniondatetimenullresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[UnionDateTimeNullRes]](../../models/operations/uniondatetimenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.UnionDateTimeNullRes]](../../models/operations/uniondatetimenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md b/python-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md deleted file mode 100755 index a4b56357c..000000000 --- a/python-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSON - -A response body that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `json` | [UsageExamplePost200ApplicationJSONJSON](../../models/operations/usageexamplepost200applicationjsonjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md b/python-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md deleted file mode 100755 index f38fe9660..000000000 --- a/python-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSONJSON - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `faker_formatted_strings` | [Optional[shared.FakerFormattedStrings]](../../models/shared/fakerformattedstrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | -| `faker_strings` | [Optional[shared.FakerStrings]](../../models/shared/fakerstrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | -| `simple_object` | [Optional[shared.SimpleObject]](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/usageexamplepostenumparameter.md b/python-client-sdk/docs/models/operations/usageexamplepostenumparameter.md deleted file mode 100755 index ab456314d..000000000 --- a/python-client-sdk/docs/models/operations/usageexamplepostenumparameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `VALUE1` | value1 | -| `VALUE2` | value2 | -| `VALUE3` | value3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/usageexamplepostjson.md b/python-client-sdk/docs/models/operations/usageexamplepostjson.md new file mode 100755 index 000000000..f40677978 --- /dev/null +++ b/python-client-sdk/docs/models/operations/usageexamplepostjson.md @@ -0,0 +1,10 @@ +# UsageExamplePostJSON + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `faker_formatted_strings` | [Optional[shared.FakerFormattedStrings]](../../models/shared/fakerformattedstrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | +| `faker_strings` | [Optional[shared.FakerStrings]](../../models/shared/fakerstrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | +| `simple_object` | [Optional[shared.SimpleObject]](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md b/python-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md deleted file mode 100755 index 7a18bbc53..000000000 --- a/python-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostOptEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `VALUE1` | value1 | -| `VALUE2` | value2 | -| `VALUE3` | value3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/usageexamplepostrequest.md b/python-client-sdk/docs/models/operations/usageexamplepostrequest.md index a2a903f36..3f4b55849 100755 --- a/python-client-sdk/docs/models/operations/usageexamplepostrequest.md +++ b/python-client-sdk/docs/models/operations/usageexamplepostrequest.md @@ -3,27 +3,27 @@ ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `request_body` | [Optional[UsageExamplePostRequestBody]](../../models/operations/usageexamplepostrequestbody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | -| `bigint_parameter` | *int* | :heavy_check_mark: | An bigint parameter | | -| `bigint_parameter_optional` | *Optional[int]* | :heavy_minus_sign: | An bigint parameter | | -| `bigint_str_parameter` | *int* | :heavy_check_mark: | An bigint parameter | | -| `bigint_str_parameter_optional` | *Optional[int]* | :heavy_minus_sign: | An bigint parameter | | -| `bool_parameter` | *bool* | :heavy_check_mark: | A boolean parameter | | -| `date_parameter` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | A date parameter | | -| `date_time_default_parameter` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | A date time parameter with a default value | | -| `date_time_parameter` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | A date time parameter | | -| `decimal_parameter` | *Decimal* | :heavy_check_mark: | A decimal parameter | | -| `decimal_parameter_optional` | *Optional[Decimal]* | :heavy_minus_sign: | A decimal parameter | | -| `decimal_str_parameter` | *Decimal* | :heavy_check_mark: | A decimal parameter | | -| `decimal_str_parameter_optional` | *Optional[Decimal]* | :heavy_minus_sign: | A decimal parameter | | -| `double_parameter` | *float* | :heavy_check_mark: | A double parameter | | -| `enum_parameter` | [UsageExamplePostEnumParameter](../../models/operations/usageexamplepostenumparameter.md) | :heavy_check_mark: | An enum parameter | | -| `falsey_number_parameter` | *float* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | -| `float32_parameter` | *float* | :heavy_check_mark: | A float32 parameter | | -| `float_parameter` | *float* | :heavy_check_mark: | A float parameter | | -| `int64_parameter` | *int* | :heavy_check_mark: | An int64 parameter | | -| `int_parameter` | *int* | :heavy_check_mark: | An integer parameter | | -| `opt_enum_parameter` | [Optional[UsageExamplePostOptEnumParameter]](../../models/operations/usageexamplepostoptenumparameter.md) | :heavy_minus_sign: | An enum parameter | value3 | -| `str_parameter` | *str* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `request_body` | [Optional[operations.UsageExamplePostRequestBody]](../../models/operations/usageexamplepostrequestbody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | +| `bigint_parameter` | *int* | :heavy_check_mark: | An bigint parameter | | +| `bigint_parameter_optional` | *Optional[int]* | :heavy_minus_sign: | An bigint parameter | | +| `bigint_str_parameter` | *int* | :heavy_check_mark: | An bigint parameter | | +| `bigint_str_parameter_optional` | *Optional[int]* | :heavy_minus_sign: | An bigint parameter | | +| `bool_parameter` | *bool* | :heavy_check_mark: | A boolean parameter | | +| `date_parameter` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | A date parameter | | +| `date_time_default_parameter` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | A date time parameter with a default value | | +| `date_time_parameter` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | A date time parameter | | +| `decimal_parameter` | *Decimal* | :heavy_check_mark: | A decimal parameter | | +| `decimal_parameter_optional` | *Optional[Decimal]* | :heavy_minus_sign: | A decimal parameter | | +| `decimal_str_parameter` | *Decimal* | :heavy_check_mark: | A decimal parameter | | +| `decimal_str_parameter_optional` | *Optional[Decimal]* | :heavy_minus_sign: | A decimal parameter | | +| `double_parameter` | *float* | :heavy_check_mark: | A double parameter | | +| `enum_parameter` | [operations.EnumParameter](../../models/operations/enumparameter.md) | :heavy_check_mark: | An enum parameter | | +| `falsey_number_parameter` | *float* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | +| `float32_parameter` | *float* | :heavy_check_mark: | A float32 parameter | | +| `float_parameter` | *float* | :heavy_check_mark: | A float parameter | | +| `int64_parameter` | *int* | :heavy_check_mark: | An int64 parameter | | +| `int_parameter` | *int* | :heavy_check_mark: | An integer parameter | | +| `opt_enum_parameter` | [Optional[operations.OptEnumParameter]](../../models/operations/optenumparameter.md) | :heavy_minus_sign: | An enum parameter | value3 | +| `str_parameter` | *str* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/usageexamplepostresponse.md b/python-client-sdk/docs/models/operations/usageexamplepostresponse.md index d9a03d0f5..97a317b34 100755 --- a/python-client-sdk/docs/models/operations/usageexamplepostresponse.md +++ b/python-client-sdk/docs/models/operations/usageexamplepostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `usage_example_post_200_application_json_object` | [Optional[UsageExamplePost200ApplicationJSON]](../../models/operations/usageexamplepost200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [Optional[operations.UsageExamplePostResponseBody]](../../models/operations/usageexamplepostresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/usageexamplepostresponsebody.md b/python-client-sdk/docs/models/operations/usageexamplepostresponsebody.md new file mode 100755 index 000000000..10d7d817a --- /dev/null +++ b/python-client-sdk/docs/models/operations/usageexamplepostresponsebody.md @@ -0,0 +1,10 @@ +# UsageExamplePostResponseBody + +A response body that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `json` | [operations.UsageExamplePostJSON](../../models/operations/usageexamplepostjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md b/python-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md index c8946fc40..9081eed41 100755 --- a/python-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md +++ b/python-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [Optional[WeaklyTypedOneOfPostRes]](../../models/operations/weaklytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [Optional[operations.WeaklyTypedOneOfPostRes]](../../models/operations/weaklytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/anyt.md b/python-client-sdk/docs/models/shared/anyt.md new file mode 100755 index 000000000..3c925c5d9 --- /dev/null +++ b/python-client-sdk/docs/models/shared/anyt.md @@ -0,0 +1,17 @@ +# AnyT + + +## Supported Types + +### SimpleObject + +```python +anyT: shared.SimpleObject = /* values here */ +``` + +### + +```python +anyT: str = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/shared/anyval.md b/python-client-sdk/docs/models/shared/anyval.md new file mode 100755 index 000000000..f1ec274a4 --- /dev/null +++ b/python-client-sdk/docs/models/shared/anyval.md @@ -0,0 +1,17 @@ +# AnyVal + + +## Supported Types + +### SimpleObjectCamelCase + +```python +anyVal: shared.SimpleObjectCamelCase = /* values here */ +``` + +### + +```python +anyVal: str = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/shared/arraycircularreferenceobject.md b/python-client-sdk/docs/models/shared/arraycircularreferenceobject.md index 0aa6a29f2..daf4b12fd 100755 --- a/python-client-sdk/docs/models/shared/arraycircularreferenceobject.md +++ b/python-client-sdk/docs/models/shared/arraycircularreferenceobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `circular` | List[[ArrayCircularReferenceObject](../../models/shared/arraycircularreferenceobject.md)] | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `circular` | List[[shared.ArrayCircularReferenceObject](../../models/shared/arraycircularreferenceobject.md)] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/arrobjvalue.md b/python-client-sdk/docs/models/shared/arrobjvalue.md index a07a07971..81866e9a2 100755 --- a/python-client-sdk/docs/models/shared/arrobjvalue.md +++ b/python-client-sdk/docs/models/shared/arrobjvalue.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | -| `json` | List[[SimpleObject](../../models/shared/simpleobject.md)] | :heavy_minus_sign: | N/A | -| `required` | *Optional[Any]* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | +| `json` | List[[shared.SimpleObject](../../models/shared/simpleobject.md)] | :heavy_minus_sign: | N/A | +| `required` | *Optional[Any]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/arrobjvaluecamelcase.md b/python-client-sdk/docs/models/shared/arrobjvaluecamelcase.md index d5ab4d0aa..42495df0a 100755 --- a/python-client-sdk/docs/models/shared/arrobjvaluecamelcase.md +++ b/python-client-sdk/docs/models/shared/arrobjvaluecamelcase.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | -| `json` | List[[SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)] | :heavy_minus_sign: | N/A | -| `required` | *Optional[Any]* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `json` | List[[shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)] | :heavy_minus_sign: | N/A | +| `required` | *Optional[Any]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/authservicerequestbody.md b/python-client-sdk/docs/models/shared/authservicerequestbody.md index 4670b30a2..4912ff791 100755 --- a/python-client-sdk/docs/models/shared/authservicerequestbody.md +++ b/python-client-sdk/docs/models/shared/authservicerequestbody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `basic_auth` | [Optional[AuthServiceRequestBodyBasicAuth]](../../models/shared/authservicerequestbodybasicauth.md) | :heavy_minus_sign: | N/A | -| `header_auth` | List[[AuthServiceRequestBodyHeaderAuth](../../models/shared/authservicerequestbodyheaderauth.md)] | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | +| `basic_auth` | [Optional[shared.BasicAuth]](../../models/shared/basicauth.md) | :heavy_minus_sign: | N/A | +| `header_auth` | List[[shared.HeaderAuth](../../models/shared/headerauth.md)] | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md b/python-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md deleted file mode 100755 index 83c42333c..000000000 --- a/python-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyBasicAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `password` | *str* | :heavy_check_mark: | N/A | -| `username` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md b/python-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md deleted file mode 100755 index ca3f304af..000000000 --- a/python-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyHeaderAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `expected_value` | *str* | :heavy_check_mark: | N/A | -| `header_name` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/basicauth.md b/python-client-sdk/docs/models/shared/basicauth.md new file mode 100755 index 000000000..546513350 --- /dev/null +++ b/python-client-sdk/docs/models/shared/basicauth.md @@ -0,0 +1,9 @@ +# BasicAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `password` | *str* | :heavy_check_mark: | N/A | +| `username` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/child.md b/python-client-sdk/docs/models/shared/child.md new file mode 100755 index 000000000..424bf1e52 --- /dev/null +++ b/python-client-sdk/docs/models/shared/child.md @@ -0,0 +1,17 @@ +# Child + + +## Supported Types + +### OneOfCircularReferenceObject + +```python +child: shared.OneOfCircularReferenceObject = /* values here */ +``` + +### SimpleObject + +```python +child: shared.SimpleObject = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/shared/chocolates.md b/python-client-sdk/docs/models/shared/chocolates.md new file mode 100755 index 000000000..c6dfb8d00 --- /dev/null +++ b/python-client-sdk/docs/models/shared/chocolates.md @@ -0,0 +1,8 @@ +# Chocolates + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `description` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/constenumint.md b/python-client-sdk/docs/models/shared/constenumint.md new file mode 100755 index 000000000..cab586d10 --- /dev/null +++ b/python-client-sdk/docs/models/shared/constenumint.md @@ -0,0 +1,10 @@ +# ConstEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | 1 | +| `TWO` | 2 | +| `THREE` | 3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/constenumstr.md b/python-client-sdk/docs/models/shared/constenumstr.md new file mode 100755 index 000000000..986110929 --- /dev/null +++ b/python-client-sdk/docs/models/shared/constenumstr.md @@ -0,0 +1,10 @@ +# ConstEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | one | +| `TWO` | two | +| `THREE` | three | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/deepobject.md b/python-client-sdk/docs/models/shared/deepobject.md index 28fb980a0..410c47e48 100755 --- a/python-client-sdk/docs/models/shared/deepobject.md +++ b/python-client-sdk/docs/models/shared/deepobject.md @@ -5,12 +5,12 @@ | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `any` | [Union[SimpleObject, str]](../../models/shared/deepobjectany.md) | :heavy_check_mark: | N/A | anyOf[0] | -| `arr` | List[[SimpleObject](../../models/shared/simpleobject.md)] | :heavy_check_mark: | N/A | ...,... | +| `any` | [Union[shared.SimpleObject, str]](../../models/shared/anyt.md) | :heavy_check_mark: | N/A | anyOf[0] | +| `arr` | List[[shared.SimpleObject](../../models/shared/simpleobject.md)] | :heavy_check_mark: | N/A | ...,... | | `bool` | *bool* | :heavy_check_mark: | N/A | true | | `int` | *int* | :heavy_check_mark: | N/A | 1 | -| `map` | Dict[str, [SimpleObject](../../models/shared/simpleobject.md)] | :heavy_check_mark: | N/A | [object Object] | +| `map` | Dict[str, [shared.SimpleObject](../../models/shared/simpleobject.md)] | :heavy_check_mark: | N/A | [object Object] | | `num` | *float* | :heavy_check_mark: | N/A | 1.1 | -| `obj` | [SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | +| `obj` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | | `str_` | *str* | :heavy_check_mark: | N/A | test | | `type` | *Optional[str]* | :heavy_minus_sign: | N/A | | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/deepobjectany.md b/python-client-sdk/docs/models/shared/deepobjectany.md deleted file mode 100755 index 28b016206..000000000 --- a/python-client-sdk/docs/models/shared/deepobjectany.md +++ /dev/null @@ -1,17 +0,0 @@ -# DeepObjectAny - - -## Supported Types - -### SimpleObject - -```python -deepObjectAny: shared.SimpleObject = /* values here */ -``` - -### - -```python -deepObjectAny: str = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/shared/deepobjectcamelcase.md b/python-client-sdk/docs/models/shared/deepobjectcamelcase.md index 70a796a94..a7142cbee 100755 --- a/python-client-sdk/docs/models/shared/deepobjectcamelcase.md +++ b/python-client-sdk/docs/models/shared/deepobjectcamelcase.md @@ -5,12 +5,12 @@ | Field | Type | Required | Description | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `any_val` | [Union[SimpleObjectCamelCase, str]](../../models/shared/deepobjectcamelcaseanyval.md) | :heavy_check_mark: | N/A | -| `arr_val` | List[[SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)] | :heavy_check_mark: | N/A | +| `any_val` | [Union[shared.SimpleObjectCamelCase, str]](../../models/shared/anyval.md) | :heavy_check_mark: | N/A | +| `arr_val` | List[[shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)] | :heavy_check_mark: | N/A | | `bool_val` | *bool* | :heavy_check_mark: | N/A | | `int_val` | *int* | :heavy_check_mark: | N/A | -| `map_val` | Dict[str, [SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)] | :heavy_check_mark: | N/A | +| `map_val` | Dict[str, [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)] | :heavy_check_mark: | N/A | | `num_val` | *float* | :heavy_check_mark: | N/A | -| `obj_val` | [SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | +| `obj_val` | [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | `str_val` | *str* | :heavy_check_mark: | N/A | | `type` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/deepobjectcamelcaseanyval.md b/python-client-sdk/docs/models/shared/deepobjectcamelcaseanyval.md deleted file mode 100755 index 72958d8b4..000000000 --- a/python-client-sdk/docs/models/shared/deepobjectcamelcaseanyval.md +++ /dev/null @@ -1,17 +0,0 @@ -# DeepObjectCamelCaseAnyVal - - -## Supported Types - -### SimpleObjectCamelCase - -```python -deepObjectCamelCaseAnyVal: shared.SimpleObjectCamelCase = /* values here */ -``` - -### - -```python -deepObjectCamelCaseAnyVal: str = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/shared/deepobjectwithtype.md b/python-client-sdk/docs/models/shared/deepobjectwithtype.md index d2f80061d..5836d6129 100755 --- a/python-client-sdk/docs/models/shared/deepobjectwithtype.md +++ b/python-client-sdk/docs/models/shared/deepobjectwithtype.md @@ -5,12 +5,12 @@ | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `any` | [Union[SimpleObject, str]](../../models/shared/deepobjectwithtypeany.md) | :heavy_check_mark: | N/A | anyOf[0] | -| `arr` | List[[SimpleObject](../../models/shared/simpleobject.md)] | :heavy_check_mark: | N/A | ...,... | +| `any` | [Union[shared.SimpleObject, str]](../../models/shared/deepobjectwithtypeany.md) | :heavy_check_mark: | N/A | anyOf[0] | +| `arr` | List[[shared.SimpleObject](../../models/shared/simpleobject.md)] | :heavy_check_mark: | N/A | ...,... | | `bool` | *bool* | :heavy_check_mark: | N/A | true | | `int` | *int* | :heavy_check_mark: | N/A | 1 | -| `map` | Dict[str, [SimpleObject](../../models/shared/simpleobject.md)] | :heavy_check_mark: | N/A | [object Object] | +| `map` | Dict[str, [shared.SimpleObject](../../models/shared/simpleobject.md)] | :heavy_check_mark: | N/A | [object Object] | | `num` | *float* | :heavy_check_mark: | N/A | 1.1 | -| `obj` | [SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | +| `obj` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | | `str_` | *str* | :heavy_check_mark: | N/A | test | | `type` | *Optional[str]* | :heavy_minus_sign: | N/A | | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/defaultenumint.md b/python-client-sdk/docs/models/shared/defaultenumint.md new file mode 100755 index 000000000..ae0f52ec8 --- /dev/null +++ b/python-client-sdk/docs/models/shared/defaultenumint.md @@ -0,0 +1,10 @@ +# DefaultEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | 1 | +| `TWO` | 2 | +| `THREE` | 3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/defaultenumstr.md b/python-client-sdk/docs/models/shared/defaultenumstr.md new file mode 100755 index 000000000..fe1bc0fbf --- /dev/null +++ b/python-client-sdk/docs/models/shared/defaultenumstr.md @@ -0,0 +1,10 @@ +# DefaultEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | one | +| `TWO` | two | +| `THREE` | three | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/defaultsandconsts.md b/python-client-sdk/docs/models/shared/defaultsandconsts.md index 0ba9024e7..14b96b2fa 100755 --- a/python-client-sdk/docs/models/shared/defaultsandconsts.md +++ b/python-client-sdk/docs/models/shared/defaultsandconsts.md @@ -3,33 +3,33 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `const_big_int` | *int* | :heavy_check_mark: | N/A | -| `const_big_int_str` | *int* | :heavy_check_mark: | N/A | -| `const_bool` | *bool* | :heavy_check_mark: | N/A | -| `const_date` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | N/A | -| `const_date_time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | N/A | -| `const_decimal` | *Decimal* | :heavy_check_mark: | N/A | -| `const_decimal_str` | *Decimal* | :heavy_check_mark: | N/A | -| `const_enum_int` | [DefaultsAndConstsConstEnumInt](../../models/shared/defaultsandconstsconstenumint.md) | :heavy_check_mark: | N/A | -| `const_enum_str` | [DefaultsAndConstsConstEnumStr](../../models/shared/defaultsandconstsconstenumstr.md) | :heavy_check_mark: | N/A | -| `const_int` | *int* | :heavy_check_mark: | N/A | -| `const_num` | *float* | :heavy_check_mark: | N/A | -| `const_str` | *str* | :heavy_check_mark: | N/A | -| `const_str_null` | *Optional[str]* | :heavy_check_mark: | N/A | -| `default_big_int` | *Optional[int]* | :heavy_minus_sign: | N/A | -| `default_big_int_str` | *Optional[int]* | :heavy_minus_sign: | N/A | -| `default_bool` | *Optional[bool]* | :heavy_minus_sign: | N/A | -| `default_date` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_minus_sign: | N/A | -| `default_date_time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | N/A | -| `default_decimal` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | -| `default_decimal_str` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | -| `default_enum_int` | [Optional[DefaultsAndConstsDefaultEnumInt]](../../models/shared/defaultsandconstsdefaultenumint.md) | :heavy_minus_sign: | N/A | -| `default_enum_str` | [Optional[DefaultsAndConstsDefaultEnumStr]](../../models/shared/defaultsandconstsdefaultenumstr.md) | :heavy_minus_sign: | N/A | -| `default_int` | *Optional[int]* | :heavy_minus_sign: | N/A | -| `default_num` | *Optional[float]* | :heavy_minus_sign: | N/A | -| `default_str` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `default_str_nullable` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `default_str_optional` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `normal_field` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `const_big_int` | *int* | :heavy_check_mark: | N/A | +| `const_big_int_str` | *int* | :heavy_check_mark: | N/A | +| `const_bool` | *bool* | :heavy_check_mark: | N/A | +| `const_date` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | N/A | +| `const_date_time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | N/A | +| `const_decimal` | *Decimal* | :heavy_check_mark: | N/A | +| `const_decimal_str` | *Decimal* | :heavy_check_mark: | N/A | +| `const_enum_int` | [shared.ConstEnumInt](../../models/shared/constenumint.md) | :heavy_check_mark: | N/A | +| `const_enum_str` | [shared.ConstEnumStr](../../models/shared/constenumstr.md) | :heavy_check_mark: | N/A | +| `const_int` | *int* | :heavy_check_mark: | N/A | +| `const_num` | *float* | :heavy_check_mark: | N/A | +| `const_str` | *str* | :heavy_check_mark: | N/A | +| `const_str_null` | *Optional[str]* | :heavy_check_mark: | N/A | +| `default_big_int` | *Optional[int]* | :heavy_minus_sign: | N/A | +| `default_big_int_str` | *Optional[int]* | :heavy_minus_sign: | N/A | +| `default_bool` | *Optional[bool]* | :heavy_minus_sign: | N/A | +| `default_date` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_minus_sign: | N/A | +| `default_date_time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | N/A | +| `default_decimal` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | +| `default_decimal_str` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | +| `default_enum_int` | [Optional[shared.DefaultEnumInt]](../../models/shared/defaultenumint.md) | :heavy_minus_sign: | N/A | +| `default_enum_str` | [Optional[shared.DefaultEnumStr]](../../models/shared/defaultenumstr.md) | :heavy_minus_sign: | N/A | +| `default_int` | *Optional[int]* | :heavy_minus_sign: | N/A | +| `default_num` | *Optional[float]* | :heavy_minus_sign: | N/A | +| `default_str` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `default_str_nullable` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `default_str_optional` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `normal_field` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md b/python-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md deleted file mode 100755 index 0d99bc945..000000000 --- a/python-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | 1 | -| `TWO` | 2 | -| `THREE` | 3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md b/python-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md deleted file mode 100755 index e74129ef1..000000000 --- a/python-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | one | -| `TWO` | two | -| `THREE` | three | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md b/python-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md deleted file mode 100755 index 051ac2c0d..000000000 --- a/python-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | 1 | -| `TWO` | 2 | -| `THREE` | 3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md b/python-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md deleted file mode 100755 index 17ab70b26..000000000 --- a/python-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | one | -| `TWO` | two | -| `THREE` | three | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/defaultsandconstsoutput.md b/python-client-sdk/docs/models/shared/defaultsandconstsoutput.md index 8a0c4f1ee..3c738346c 100755 --- a/python-client-sdk/docs/models/shared/defaultsandconstsoutput.md +++ b/python-client-sdk/docs/models/shared/defaultsandconstsoutput.md @@ -3,33 +3,33 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `const_big_int` | *int* | :heavy_check_mark: | N/A | -| `const_big_int_str` | *int* | :heavy_check_mark: | N/A | -| `const_bool` | *bool* | :heavy_check_mark: | N/A | -| `const_date` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | N/A | -| `const_date_time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | N/A | -| `const_decimal` | *Decimal* | :heavy_check_mark: | N/A | -| `const_decimal_str` | *Decimal* | :heavy_check_mark: | N/A | -| `const_enum_int` | [DefaultsAndConstsOutputConstEnumInt](../../models/shared/defaultsandconstsoutputconstenumint.md) | :heavy_check_mark: | N/A | -| `const_enum_str` | [DefaultsAndConstsOutputConstEnumStr](../../models/shared/defaultsandconstsoutputconstenumstr.md) | :heavy_check_mark: | N/A | -| `const_int` | *int* | :heavy_check_mark: | N/A | -| `const_num` | *float* | :heavy_check_mark: | N/A | -| `const_str` | *str* | :heavy_check_mark: | N/A | -| `const_str_null` | *Optional[str]* | :heavy_check_mark: | N/A | -| `default_big_int` | *int* | :heavy_check_mark: | N/A | -| `default_big_int_str` | *int* | :heavy_check_mark: | N/A | -| `default_bool` | *bool* | :heavy_check_mark: | N/A | -| `default_date` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | N/A | -| `default_date_time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | N/A | -| `default_decimal` | *Decimal* | :heavy_check_mark: | N/A | -| `default_decimal_str` | *Decimal* | :heavy_check_mark: | N/A | -| `default_enum_int` | [DefaultsAndConstsOutputDefaultEnumInt](../../models/shared/defaultsandconstsoutputdefaultenumint.md) | :heavy_check_mark: | N/A | -| `default_enum_str` | [DefaultsAndConstsOutputDefaultEnumStr](../../models/shared/defaultsandconstsoutputdefaultenumstr.md) | :heavy_check_mark: | N/A | -| `default_int` | *int* | :heavy_check_mark: | N/A | -| `default_num` | *float* | :heavy_check_mark: | N/A | -| `default_str` | *str* | :heavy_check_mark: | N/A | -| `default_str_nullable` | *Optional[str]* | :heavy_check_mark: | N/A | -| `default_str_optional` | *Optional[str]* | :heavy_minus_sign: | N/A | -| `normal_field` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `const_big_int` | *int* | :heavy_check_mark: | N/A | +| `const_big_int_str` | *int* | :heavy_check_mark: | N/A | +| `const_bool` | *bool* | :heavy_check_mark: | N/A | +| `const_date` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | N/A | +| `const_date_time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | N/A | +| `const_decimal` | *Decimal* | :heavy_check_mark: | N/A | +| `const_decimal_str` | *Decimal* | :heavy_check_mark: | N/A | +| `const_enum_int` | [shared.DefaultsAndConstsOutputConstEnumInt](../../models/shared/defaultsandconstsoutputconstenumint.md) | :heavy_check_mark: | N/A | +| `const_enum_str` | [shared.DefaultsAndConstsOutputConstEnumStr](../../models/shared/defaultsandconstsoutputconstenumstr.md) | :heavy_check_mark: | N/A | +| `const_int` | *int* | :heavy_check_mark: | N/A | +| `const_num` | *float* | :heavy_check_mark: | N/A | +| `const_str` | *str* | :heavy_check_mark: | N/A | +| `const_str_null` | *Optional[str]* | :heavy_check_mark: | N/A | +| `default_big_int` | *int* | :heavy_check_mark: | N/A | +| `default_big_int_str` | *int* | :heavy_check_mark: | N/A | +| `default_bool` | *bool* | :heavy_check_mark: | N/A | +| `default_date` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | N/A | +| `default_date_time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | N/A | +| `default_decimal` | *Decimal* | :heavy_check_mark: | N/A | +| `default_decimal_str` | *Decimal* | :heavy_check_mark: | N/A | +| `default_enum_int` | [shared.DefaultsAndConstsOutputDefaultEnumInt](../../models/shared/defaultsandconstsoutputdefaultenumint.md) | :heavy_check_mark: | N/A | +| `default_enum_str` | [shared.DefaultsAndConstsOutputDefaultEnumStr](../../models/shared/defaultsandconstsoutputdefaultenumstr.md) | :heavy_check_mark: | N/A | +| `default_int` | *int* | :heavy_check_mark: | N/A | +| `default_num` | *float* | :heavy_check_mark: | N/A | +| `default_str` | *str* | :heavy_check_mark: | N/A | +| `default_str_nullable` | *Optional[str]* | :heavy_check_mark: | N/A | +| `default_str_optional` | *Optional[str]* | :heavy_minus_sign: | N/A | +| `normal_field` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/deprecatedenum.md b/python-client-sdk/docs/models/shared/deprecatedenum.md new file mode 100755 index 000000000..2af19435d --- /dev/null +++ b/python-client-sdk/docs/models/shared/deprecatedenum.md @@ -0,0 +1,12 @@ +# ~~DeprecatedEnum~~ + +> :warning: **DEPRECATED**: This enum is deprecated. + + +## Values + +| Name | Value | +| ----- | ----- | +| `A` | a | +| `B` | b | +| `C` | c | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/deprecatedfieldinobject.md b/python-client-sdk/docs/models/shared/deprecatedfieldinobject.md index 7163fd8fb..b9cb336df 100755 --- a/python-client-sdk/docs/models/shared/deprecatedfieldinobject.md +++ b/python-client-sdk/docs/models/shared/deprecatedfieldinobject.md @@ -5,6 +5,6 @@ | Field | Type | Required | Description | | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| ~~`deprecated_enum`~~ | [Optional[DeprecatedFieldInObjectDeprecatedEnum]](../../models/shared/deprecatedfieldinobjectdeprecatedenum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | +| ~~`deprecated_enum`~~ | [Optional[shared.DeprecatedEnum]](../../models/shared/deprecatedenum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | | ~~`deprecated_field`~~ | *Optional[str]* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. Use new_field instead. | | `new_field` | *Optional[str]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md b/python-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md deleted file mode 100755 index 14c3d71b4..000000000 --- a/python-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md +++ /dev/null @@ -1,12 +0,0 @@ -# ~~DeprecatedFieldInObjectDeprecatedEnum~~ - -> :warning: **DEPRECATED**: This enum is deprecated. - - -## Values - -| Name | Value | -| ----- | ----- | -| `A` | a | -| `B` | b | -| `C` | c | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/enumnumber.md b/python-client-sdk/docs/models/shared/enumnumber.md new file mode 100755 index 000000000..79405247f --- /dev/null +++ b/python-client-sdk/docs/models/shared/enumnumber.md @@ -0,0 +1,10 @@ +# EnumNumber + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | 1 | +| `TWO` | 2 | +| `THREE` | 3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/enumstr.md b/python-client-sdk/docs/models/shared/enumstr.md new file mode 100755 index 000000000..8e2938878 --- /dev/null +++ b/python-client-sdk/docs/models/shared/enumstr.md @@ -0,0 +1,10 @@ +# EnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | one | +| `TWO` | two | +| `THREE` | three | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/exampleboat.md b/python-client-sdk/docs/models/shared/exampleboat.md index 94f607209..b33953878 100755 --- a/python-client-sdk/docs/models/shared/exampleboat.md +++ b/python-client-sdk/docs/models/shared/exampleboat.md @@ -8,5 +8,5 @@ | `created_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | N/A | | `length` | *float* | :heavy_check_mark: | N/A | | `name` | *str* | :heavy_check_mark: | N/A | -| `type` | [ExampleBoatType](../../models/shared/exampleboattype.md) | :heavy_check_mark: | N/A | +| `type` | [shared.Type](../../models/shared/type.md) | :heavy_check_mark: | N/A | | `updated_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/exampleboattype.md b/python-client-sdk/docs/models/shared/exampleboattype.md deleted file mode 100755 index b533d74ae..000000000 --- a/python-client-sdk/docs/models/shared/exampleboattype.md +++ /dev/null @@ -1,8 +0,0 @@ -# ExampleBoatType - - -## Values - -| Name | Value | -| ------ | ------ | -| `BOAT` | boat | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/examplecar.md b/python-client-sdk/docs/models/shared/examplecar.md index 23f0bb767..eb37d763c 100755 --- a/python-client-sdk/docs/models/shared/examplecar.md +++ b/python-client-sdk/docs/models/shared/examplecar.md @@ -9,6 +9,6 @@ | `make` | *str* | :heavy_check_mark: | N/A | | `model` | *str* | :heavy_check_mark: | N/A | | `name` | *str* | :heavy_check_mark: | N/A | -| `type` | [ExampleCarType](../../models/shared/examplecartype.md) | :heavy_check_mark: | N/A | +| `type` | [shared.ExampleCarType](../../models/shared/examplecartype.md) | :heavy_check_mark: | N/A | | `updated_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | N/A | | `year` | *float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/exampleresource.md b/python-client-sdk/docs/models/shared/exampleresource.md index 1261901c0..4040d8404 100755 --- a/python-client-sdk/docs/models/shared/exampleresource.md +++ b/python-client-sdk/docs/models/shared/exampleresource.md @@ -3,17 +3,17 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `array_of_number` | List[*float*] | :heavy_minus_sign: | N/A | -| `array_of_string` | List[*str*] | :heavy_minus_sign: | N/A | -| `chocolates` | List[[ExampleResourceChocolates](../../models/shared/exampleresourcechocolates.md)] | :heavy_check_mark: | N/A | -| `created_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | N/A | -| `enum_number` | [Optional[ExampleResourceEnumNumber]](../../models/shared/exampleresourceenumnumber.md) | :heavy_minus_sign: | N/A | -| `enum_str` | [Optional[ExampleResourceEnumStr]](../../models/shared/exampleresourceenumstr.md) | :heavy_minus_sign: | N/A | -| `id` | *str* | :heavy_check_mark: | N/A | -| `map_of_integer` | Dict[str, *int*] | :heavy_minus_sign: | N/A | -| `map_of_string` | Dict[str, *str*] | :heavy_minus_sign: | N/A | -| `name` | *str* | :heavy_check_mark: | N/A | -| `updated_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | N/A | -| `vehicle` | [Union[ExampleBoat, ExampleCar]](../../models/shared/examplevehicle.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `array_of_number` | List[*float*] | :heavy_minus_sign: | N/A | +| `array_of_string` | List[*str*] | :heavy_minus_sign: | N/A | +| `chocolates` | List[[shared.Chocolates](../../models/shared/chocolates.md)] | :heavy_check_mark: | N/A | +| `created_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | N/A | +| `enum_number` | [Optional[shared.EnumNumber]](../../models/shared/enumnumber.md) | :heavy_minus_sign: | N/A | +| `enum_str` | [Optional[shared.EnumStr]](../../models/shared/enumstr.md) | :heavy_minus_sign: | N/A | +| `id` | *str* | :heavy_check_mark: | N/A | +| `map_of_integer` | Dict[str, *int*] | :heavy_minus_sign: | N/A | +| `map_of_string` | Dict[str, *str*] | :heavy_minus_sign: | N/A | +| `name` | *str* | :heavy_check_mark: | N/A | +| `updated_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | N/A | +| `vehicle` | [Union[shared.ExampleBoat, shared.ExampleCar]](../../models/shared/examplevehicle.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/exampleresourcechocolates.md b/python-client-sdk/docs/models/shared/exampleresourcechocolates.md deleted file mode 100755 index 59539efd6..000000000 --- a/python-client-sdk/docs/models/shared/exampleresourcechocolates.md +++ /dev/null @@ -1,8 +0,0 @@ -# ExampleResourceChocolates - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `description` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/exampleresourceenumnumber.md b/python-client-sdk/docs/models/shared/exampleresourceenumnumber.md deleted file mode 100755 index a872613f0..000000000 --- a/python-client-sdk/docs/models/shared/exampleresourceenumnumber.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumNumber - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | 1 | -| `TWO` | 2 | -| `THREE` | 3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/exampleresourceenumstr.md b/python-client-sdk/docs/models/shared/exampleresourceenumstr.md deleted file mode 100755 index 7f8258195..000000000 --- a/python-client-sdk/docs/models/shared/exampleresourceenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | one | -| `TWO` | two | -| `THREE` | three | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/headerauth.md b/python-client-sdk/docs/models/shared/headerauth.md new file mode 100755 index 000000000..985b153e4 --- /dev/null +++ b/python-client-sdk/docs/models/shared/headerauth.md @@ -0,0 +1,9 @@ +# HeaderAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `expected_value` | *str* | :heavy_check_mark: | N/A | +| `header_name` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/httpbinsimplejsonobject.md b/python-client-sdk/docs/models/shared/httpbinsimplejsonobject.md index 721683ae8..08e868407 100755 --- a/python-client-sdk/docs/models/shared/httpbinsimplejsonobject.md +++ b/python-client-sdk/docs/models/shared/httpbinsimplejsonobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `slideshow` | [HTTPBinSimpleJSONObjectSlideshow](../../models/shared/httpbinsimplejsonobjectslideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | +| `slideshow` | [shared.Slideshow](../../models/shared/slideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md b/python-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md deleted file mode 100755 index 0709f1fd7..000000000 --- a/python-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md +++ /dev/null @@ -1,11 +0,0 @@ -# HTTPBinSimpleJSONObjectSlideshow - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `author` | *str* | :heavy_check_mark: | N/A | -| `date_` | *str* | :heavy_check_mark: | N/A | -| `slides` | List[[HTTPBinSimpleJSONObjectSlideshowSlides](../../models/shared/httpbinsimplejsonobjectslideshowslides.md)] | :heavy_check_mark: | N/A | -| `title` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md b/python-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md deleted file mode 100755 index b7996f6ca..000000000 --- a/python-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md +++ /dev/null @@ -1,10 +0,0 @@ -# HTTPBinSimpleJSONObjectSlideshowSlides - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `items` | List[*str*] | :heavy_minus_sign: | N/A | -| `title` | *str* | :heavy_check_mark: | N/A | -| `type` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/int32enum.md b/python-client-sdk/docs/models/shared/int32enum.md new file mode 100755 index 000000000..1e9b518b6 --- /dev/null +++ b/python-client-sdk/docs/models/shared/int32enum.md @@ -0,0 +1,12 @@ +# Int32Enum + +An int32 enum property. + + +## Values + +| Name | Value | +| ---------------------------- | ---------------------------- | +| `FIFTY_FIVE` | 55 | +| `SIXTY_NINE` | 69 | +| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/int32enumval.md b/python-client-sdk/docs/models/shared/int32enumval.md new file mode 100755 index 000000000..bb756154d --- /dev/null +++ b/python-client-sdk/docs/models/shared/int32enumval.md @@ -0,0 +1,12 @@ +# Int32EnumVal + +An int32 enum property. + + +## Values + +| Name | Value | +| ---------------------------- | ---------------------------- | +| `FIFTY_FIVE` | 55 | +| `SIXTY_NINE` | 69 | +| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/intenum.md b/python-client-sdk/docs/models/shared/intenum.md new file mode 100755 index 000000000..53355ee96 --- /dev/null +++ b/python-client-sdk/docs/models/shared/intenum.md @@ -0,0 +1,12 @@ +# IntEnum + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `FIRST` | 1 | +| `SECOND` | 2 | +| `THIRD` | 3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/intenumval.md b/python-client-sdk/docs/models/shared/intenumval.md new file mode 100755 index 000000000..4459ad910 --- /dev/null +++ b/python-client-sdk/docs/models/shared/intenumval.md @@ -0,0 +1,12 @@ +# IntEnumVal + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `FIRST` | 1 | +| `SECOND` | 2 | +| `THIRD` | 3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/mapobjvalue.md b/python-client-sdk/docs/models/shared/mapobjvalue.md index a0bab8bf1..d9ce28a46 100755 --- a/python-client-sdk/docs/models/shared/mapobjvalue.md +++ b/python-client-sdk/docs/models/shared/mapobjvalue.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -| `json` | Dict[str, [SimpleObject](../../models/shared/simpleobject.md)] | :heavy_minus_sign: | N/A | -| `required` | *Optional[Any]* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | +| `json` | Dict[str, [shared.SimpleObject](../../models/shared/simpleobject.md)] | :heavy_minus_sign: | N/A | +| `required` | *Optional[Any]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/mapobjvaluecamelcase.md b/python-client-sdk/docs/models/shared/mapobjvaluecamelcase.md index 5cce4a6ca..faf2d1d29 100755 --- a/python-client-sdk/docs/models/shared/mapobjvaluecamelcase.md +++ b/python-client-sdk/docs/models/shared/mapobjvaluecamelcase.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -| `json` | Dict[str, [SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)] | :heavy_minus_sign: | N/A | -| `required` | *Optional[Any]* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `json` | Dict[str, [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)] | :heavy_minus_sign: | N/A | +| `required` | *Optional[Any]* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/nullableoneofrefinobject.md b/python-client-sdk/docs/models/shared/nullableoneofrefinobject.md index dce3bbeaa..5bc07e883 100755 --- a/python-client-sdk/docs/models/shared/nullableoneofrefinobject.md +++ b/python-client-sdk/docs/models/shared/nullableoneofrefinobject.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -| `nullable_one_of_one` | [Optional[TypedObject1]](../../models/shared/typedobject1.md) | :heavy_check_mark: | N/A | -| `nullable_one_of_two` | [Optional[Union[TypedObject1, TypedObject2]]](../../models/shared/nullableoneofrefinobjectnullableoneoftwo.md) | :heavy_check_mark: | N/A | -| `one_of_one` | [Union[TypedObject1]](../../models/shared/nullableoneofrefinobjectoneofone.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | +| `nullable_one_of_one` | [Optional[shared.TypedObject1]](../../models/shared/typedobject1.md) | :heavy_check_mark: | N/A | +| `nullable_one_of_two` | [Optional[Union[shared.TypedObject1, shared.TypedObject2]]](../../models/shared/nullableoneoftwo.md) | :heavy_check_mark: | N/A | +| `one_of_one` | [Union[shared.TypedObject1]](../../models/shared/oneofone.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/nullableoneofrefinobjectnullableoneoftwo.md b/python-client-sdk/docs/models/shared/nullableoneofrefinobjectnullableoneoftwo.md deleted file mode 100755 index b47cd8519..000000000 --- a/python-client-sdk/docs/models/shared/nullableoneofrefinobjectnullableoneoftwo.md +++ /dev/null @@ -1,17 +0,0 @@ -# NullableOneOfRefInObjectNullableOneOfTwo - - -## Supported Types - -### TypedObject1 - -```python -nullableOneOfRefInObjectNullableOneOfTwo: shared.TypedObject1 = /* values here */ -``` - -### TypedObject2 - -```python -nullableOneOfRefInObjectNullableOneOfTwo: shared.TypedObject2 = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/shared/nullableoneofrefinobjectoneofone.md b/python-client-sdk/docs/models/shared/nullableoneofrefinobjectoneofone.md deleted file mode 100755 index 851a1fd85..000000000 --- a/python-client-sdk/docs/models/shared/nullableoneofrefinobjectoneofone.md +++ /dev/null @@ -1,11 +0,0 @@ -# NullableOneOfRefInObjectOneOfOne - - -## Supported Types - -### TypedObject1 - -```python -nullableOneOfRefInObjectOneOfOne: shared.TypedObject1 = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/shared/nullableoneoftwo.md b/python-client-sdk/docs/models/shared/nullableoneoftwo.md new file mode 100755 index 000000000..5c1200a96 --- /dev/null +++ b/python-client-sdk/docs/models/shared/nullableoneoftwo.md @@ -0,0 +1,17 @@ +# NullableOneOfTwo + + +## Supported Types + +### TypedObject1 + +```python +nullableOneOfTwo: shared.TypedObject1 = /* values here */ +``` + +### TypedObject2 + +```python +nullableOneOfTwo: shared.TypedObject2 = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/shared/objectcircularreferenceobject.md b/python-client-sdk/docs/models/shared/objectcircularreferenceobject.md index e61aa04d6..903024ff4 100755 --- a/python-client-sdk/docs/models/shared/objectcircularreferenceobject.md +++ b/python-client-sdk/docs/models/shared/objectcircularreferenceobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `circular` | [Optional[ObjectCircularReferenceObject]](../../models/shared/objectcircularreferenceobject.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `circular` | [Optional[shared.ObjectCircularReferenceObject]](../../models/shared/objectcircularreferenceobject.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/objwithobjadditionalproperties.md b/python-client-sdk/docs/models/shared/objwithobjadditionalproperties.md index a35d85854..4c23605a9 100755 --- a/python-client-sdk/docs/models/shared/objwithobjadditionalproperties.md +++ b/python-client-sdk/docs/models/shared/objwithobjadditionalproperties.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -| `additional_properties` | List[*int*] | :heavy_check_mark: | N/A | -| `additional_properties_t` | Dict[str, [SimpleObject](../../models/shared/simpleobject.md)] | :heavy_minus_sign: | N/A | -| `datetime_` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | +| `additional_properties` | List[*int*] | :heavy_check_mark: | N/A | +| `additional_properties_t` | Dict[str, [shared.SimpleObject](../../models/shared/simpleobject.md)] | :heavy_minus_sign: | N/A | +| `datetime_` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/oneofcircularreferenceobject.md b/python-client-sdk/docs/models/shared/oneofcircularreferenceobject.md index 7c80c30d5..8b9821d02 100755 --- a/python-client-sdk/docs/models/shared/oneofcircularreferenceobject.md +++ b/python-client-sdk/docs/models/shared/oneofcircularreferenceobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `child` | [Union[OneOfCircularReferenceObject, SimpleObject]](../../models/shared/oneofcircularreferenceobjectchild.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | +| `child` | [Union[shared.OneOfCircularReferenceObject, shared.SimpleObject]](../../models/shared/child.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/oneofcircularreferenceobjectchild.md b/python-client-sdk/docs/models/shared/oneofcircularreferenceobjectchild.md deleted file mode 100755 index aa87ec68f..000000000 --- a/python-client-sdk/docs/models/shared/oneofcircularreferenceobjectchild.md +++ /dev/null @@ -1,17 +0,0 @@ -# OneOfCircularReferenceObjectChild - - -## Supported Types - -### OneOfCircularReferenceObject - -```python -oneOfCircularReferenceObjectChild: shared.OneOfCircularReferenceObject = /* values here */ -``` - -### SimpleObject - -```python -oneOfCircularReferenceObjectChild: shared.SimpleObject = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/shared/oneoffromarrayoftypes.md b/python-client-sdk/docs/models/shared/oneoffromarrayoftypes.md new file mode 100755 index 000000000..5a0489202 --- /dev/null +++ b/python-client-sdk/docs/models/shared/oneoffromarrayoftypes.md @@ -0,0 +1,17 @@ +# OneOfFromArrayOfTypes + + +## Supported Types + +### + +```python +oneOfFromArrayOfTypes: str = /* values here */ +``` + +### + +```python +oneOfFromArrayOfTypes: int = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/shared/oneofgenerationstresstest.md b/python-client-sdk/docs/models/shared/oneofgenerationstresstest.md index 2243cce31..1cf9c6bd5 100755 --- a/python-client-sdk/docs/models/shared/oneofgenerationstresstest.md +++ b/python-client-sdk/docs/models/shared/oneofgenerationstresstest.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| `any` | *Any* | :heavy_check_mark: | N/A | -| `nullable_any` | *Optional[Any]* | :heavy_check_mark: | N/A | -| `one_of_from_array_of_types` | [Optional[Union[str, int]]](../../models/shared/oneofgenerationstresstestoneoffromarrayoftypes.md) | :heavy_check_mark: | N/A | -| `one_of_same_type` | [Optional[Union[str, OneOfGenerationStressTestOneOfSameType2]]](../../models/shared/oneofgenerationstresstestoneofsametype.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | +| `any` | *Any* | :heavy_check_mark: | N/A | +| `nullable_any` | *Optional[Any]* | :heavy_check_mark: | N/A | +| `one_of_from_array_of_types` | [Optional[Union[str, int]]](../../models/shared/oneoffromarrayoftypes.md) | :heavy_check_mark: | N/A | +| `one_of_same_type` | [Optional[Union[str, shared.Two]]](../../models/shared/oneofsametype.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/oneofgenerationstresstestoneoffromarrayoftypes.md b/python-client-sdk/docs/models/shared/oneofgenerationstresstestoneoffromarrayoftypes.md deleted file mode 100755 index 8d4f2c813..000000000 --- a/python-client-sdk/docs/models/shared/oneofgenerationstresstestoneoffromarrayoftypes.md +++ /dev/null @@ -1,17 +0,0 @@ -# OneOfGenerationStressTestOneOfFromArrayOfTypes - - -## Supported Types - -### - -```python -oneOfGenerationStressTestOneOfFromArrayOfTypes: str = /* values here */ -``` - -### - -```python -oneOfGenerationStressTestOneOfFromArrayOfTypes: int = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype.md b/python-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype.md deleted file mode 100755 index e398db665..000000000 --- a/python-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype.md +++ /dev/null @@ -1,17 +0,0 @@ -# OneOfGenerationStressTestOneOfSameType - - -## Supported Types - -### - -```python -oneOfGenerationStressTestOneOfSameType: str = /* values here */ -``` - -### OneOfGenerationStressTestOneOfSameType2 - -```python -oneOfGenerationStressTestOneOfSameType: shared.OneOfGenerationStressTestOneOfSameType2 = /* values here */ -``` - diff --git a/python-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype2.md b/python-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype2.md deleted file mode 100755 index 40ee15a5f..000000000 --- a/python-client-sdk/docs/models/shared/oneofgenerationstresstestoneofsametype2.md +++ /dev/null @@ -1,8 +0,0 @@ -# OneOfGenerationStressTestOneOfSameType2 - - -## Values - -| Name | Value | -| -------- | -------- | -| `LATEST` | latest | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/oneofone.md b/python-client-sdk/docs/models/shared/oneofone.md new file mode 100755 index 000000000..092681236 --- /dev/null +++ b/python-client-sdk/docs/models/shared/oneofone.md @@ -0,0 +1,11 @@ +# OneOfOne + + +## Supported Types + +### TypedObject1 + +```python +oneOfOne: shared.TypedObject1 = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/shared/oneofsametype.md b/python-client-sdk/docs/models/shared/oneofsametype.md new file mode 100755 index 000000000..5956e8c84 --- /dev/null +++ b/python-client-sdk/docs/models/shared/oneofsametype.md @@ -0,0 +1,17 @@ +# OneOfSameType + + +## Supported Types + +### + +```python +oneOfSameType: str = /* values here */ +``` + +### Two + +```python +oneOfSameType: shared.Two = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/shared/readwriteobject.md b/python-client-sdk/docs/models/shared/readwriteobject.md new file mode 100755 index 000000000..ce74f47ea --- /dev/null +++ b/python-client-sdk/docs/models/shared/readwriteobject.md @@ -0,0 +1,10 @@ +# ReadWriteObject + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `num1` | *int* | :heavy_check_mark: | N/A | +| `num2` | *int* | :heavy_check_mark: | N/A | +| `num3` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/readwriteobjectinput.md b/python-client-sdk/docs/models/shared/readwriteobjectinput.md deleted file mode 100755 index 95c399a98..000000000 --- a/python-client-sdk/docs/models/shared/readwriteobjectinput.md +++ /dev/null @@ -1,10 +0,0 @@ -# ReadWriteObjectInput - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `num1` | *int* | :heavy_check_mark: | N/A | -| `num2` | *int* | :heavy_check_mark: | N/A | -| `num3` | *int* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/simpleobject.md b/python-client-sdk/docs/models/shared/simpleobject.md index 327bb9caa..b2547d233 100755 --- a/python-client-sdk/docs/models/shared/simpleobject.md +++ b/python-client-sdk/docs/models/shared/simpleobject.md @@ -19,12 +19,12 @@ A link to the external docs. | `date_time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00.000000001Z | | `decimal` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | 3.141592653589793 | | `decimal_str` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `enum` | [EnumT](../../models/shared/enumt.md) | :heavy_check_mark: | A string based enum | one | +| `enum` | [shared.EnumT](../../models/shared/enumt.md) | :heavy_check_mark: | A string based enum | one | | `float32` | *float* | :heavy_check_mark: | A float32 property. | 1.1 | | `int` | *int* | :heavy_check_mark: | An integer property. | 1 | | `int32` | *int* | :heavy_check_mark: | An int32 property. | 1 | -| `int32_enum` | [SimpleObjectInt32Enum](../../models/shared/simpleobjectint32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | -| `int_enum` | [SimpleObjectIntEnum](../../models/shared/simpleobjectintenum.md) | :heavy_check_mark: | An integer enum property. | 2 | +| `int32_enum` | [shared.Int32Enum](../../models/shared/int32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | +| `int_enum` | [shared.IntEnum](../../models/shared/intenum.md) | :heavy_check_mark: | An integer enum property. | 2 | | `int_opt_null` | *Optional[int]* | :heavy_minus_sign: | An optional integer property will be null for tests. | | | `num` | *float* | :heavy_check_mark: | A number property. | 1.1 | | `num_opt_null` | *Optional[float]* | :heavy_minus_sign: | An optional number property will be null for tests. | | diff --git a/python-client-sdk/docs/models/shared/simpleobjectcamelcase.md b/python-client-sdk/docs/models/shared/simpleobjectcamelcase.md index 2157bf676..cc0c843f5 100755 --- a/python-client-sdk/docs/models/shared/simpleobjectcamelcase.md +++ b/python-client-sdk/docs/models/shared/simpleobjectcamelcase.md @@ -8,24 +8,24 @@ A link to the external docs. ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `any_val` | *Any* | :heavy_check_mark: | An any property. | any example | -| `bigint_str_val` | *Optional[int]* | :heavy_minus_sign: | N/A | | -| `bigint_val` | *Optional[int]* | :heavy_minus_sign: | N/A | | -| `bool_opt_val` | *Optional[bool]* | :heavy_minus_sign: | An optional boolean property. | true | -| `bool_val` | *bool* | :heavy_check_mark: | A boolean property. | true | -| `date_time_val` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | -| `date_val` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | A date property. | 2020-01-01 | -| `decimal_val` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | | -| `enum_val` | [EnumT](../../models/shared/enumt.md) | :heavy_check_mark: | A string based enum | one | -| `float32_val` | *float* | :heavy_check_mark: | A float32 property. | 2.2222222 | -| `int32_enum_val` | [SimpleObjectCamelCaseInt32EnumVal](../../models/shared/simpleobjectcamelcaseint32enumval.md) | :heavy_check_mark: | An int32 enum property. | 69 | -| `int32_val` | *int* | :heavy_check_mark: | An int32 property. | 1 | -| `int_enum_val` | [SimpleObjectCamelCaseIntEnumVal](../../models/shared/simpleobjectcamelcaseintenumval.md) | :heavy_check_mark: | An integer enum property. | 3 | -| `int_opt_null_val` | *Optional[int]* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | -| `int_val` | *int* | :heavy_check_mark: | An integer property. | 999999 | -| `num_opt_null_val` | *Optional[float]* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | -| `num_val` | *float* | :heavy_check_mark: | A number property. | 1.1 | -| `str_opt_val` | *Optional[str]* | :heavy_minus_sign: | An optional string property. | optional example | -| `str_val` | *str* | :heavy_check_mark: | A string property. | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `any_val` | *Any* | :heavy_check_mark: | An any property. | any example | +| `bigint_str_val` | *Optional[int]* | :heavy_minus_sign: | N/A | | +| `bigint_val` | *Optional[int]* | :heavy_minus_sign: | N/A | | +| `bool_opt_val` | *Optional[bool]* | :heavy_minus_sign: | An optional boolean property. | true | +| `bool_val` | *bool* | :heavy_check_mark: | A boolean property. | true | +| `date_time_val` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | +| `date_val` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | A date property. | 2020-01-01 | +| `decimal_val` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | | +| `enum_val` | [shared.EnumT](../../models/shared/enumt.md) | :heavy_check_mark: | A string based enum | one | +| `float32_val` | *float* | :heavy_check_mark: | A float32 property. | 2.2222222 | +| `int32_enum_val` | [shared.Int32EnumVal](../../models/shared/int32enumval.md) | :heavy_check_mark: | An int32 enum property. | 69 | +| `int32_val` | *int* | :heavy_check_mark: | An int32 property. | 1 | +| `int_enum_val` | [shared.IntEnumVal](../../models/shared/intenumval.md) | :heavy_check_mark: | An integer enum property. | 3 | +| `int_opt_null_val` | *Optional[int]* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | +| `int_val` | *int* | :heavy_check_mark: | An integer property. | 999999 | +| `num_opt_null_val` | *Optional[float]* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | +| `num_val` | *float* | :heavy_check_mark: | A number property. | 1.1 | +| `str_opt_val` | *Optional[str]* | :heavy_minus_sign: | An optional string property. | optional example | +| `str_val` | *str* | :heavy_check_mark: | A string property. | example | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md b/python-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md deleted file mode 100755 index 6be009c74..000000000 --- a/python-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseInt32EnumVal - -An int32 enum property. - - -## Values - -| Name | Value | -| ---------------------------- | ---------------------------- | -| `FIFTY_FIVE` | 55 | -| `SIXTY_NINE` | 69 | -| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md b/python-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md deleted file mode 100755 index 5a22f97c3..000000000 --- a/python-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseIntEnumVal - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `FIRST` | 1 | -| `SECOND` | 2 | -| `THIRD` | 3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/simpleobjectint32enum.md b/python-client-sdk/docs/models/shared/simpleobjectint32enum.md deleted file mode 100755 index 640bd271d..000000000 --- a/python-client-sdk/docs/models/shared/simpleobjectint32enum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectInt32Enum - -An int32 enum property. - - -## Values - -| Name | Value | -| ---------------------------- | ---------------------------- | -| `FIFTY_FIVE` | 55 | -| `SIXTY_NINE` | 69 | -| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/simpleobjectintenum.md b/python-client-sdk/docs/models/shared/simpleobjectintenum.md deleted file mode 100755 index 2516253b5..000000000 --- a/python-client-sdk/docs/models/shared/simpleobjectintenum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectIntEnum - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `FIRST` | 1 | -| `SECOND` | 2 | -| `THIRD` | 3 | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/simpleobjectwithtype.md b/python-client-sdk/docs/models/shared/simpleobjectwithtype.md index 5fd6e1134..be78eff52 100755 --- a/python-client-sdk/docs/models/shared/simpleobjectwithtype.md +++ b/python-client-sdk/docs/models/shared/simpleobjectwithtype.md @@ -8,26 +8,26 @@ A link to the external docs. ## Fields -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `any` | *Any* | :heavy_check_mark: | An any property. | any | -| `bigint` | *Optional[int]* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `bigint_str` | *Optional[int]* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `bool` | *bool* | :heavy_check_mark: | A boolean property. | true | -| `bool_opt` | *Optional[bool]* | :heavy_minus_sign: | An optional boolean property. | true | -| `date_` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | A date property. | 2020-01-01 | -| `date_time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00.000000001Z | -| `decimal` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `decimal_str` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `enum` | [EnumT](../../models/shared/enumt.md) | :heavy_check_mark: | A string based enum | one | -| `float32` | *float* | :heavy_check_mark: | A float32 property. | 1.1 | -| `int` | *int* | :heavy_check_mark: | An integer property. | 1 | -| `int32` | *int* | :heavy_check_mark: | An int32 property. | 1 | -| `int32_enum` | [SimpleObjectWithTypeInt32Enum](../../models/shared/simpleobjectwithtypeint32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | -| `int_enum` | [SimpleObjectWithTypeIntEnum](../../models/shared/simpleobjectwithtypeintenum.md) | :heavy_check_mark: | An integer enum property. | 2 | -| `int_opt_null` | *Optional[int]* | :heavy_minus_sign: | An optional integer property will be null for tests. | | -| `num` | *float* | :heavy_check_mark: | A number property. | 1.1 | -| `num_opt_null` | *Optional[float]* | :heavy_minus_sign: | An optional number property will be null for tests. | | -| `str_` | *str* | :heavy_check_mark: | A string property. | test | -| `str_opt` | *Optional[str]* | :heavy_minus_sign: | An optional string property. | testOptional | -| `type` | *str* | :heavy_check_mark: | N/A | | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `any` | *Any* | :heavy_check_mark: | An any property. | any | +| `bigint` | *Optional[int]* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `bigint_str` | *Optional[int]* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `bool` | *bool* | :heavy_check_mark: | A boolean property. | true | +| `bool_opt` | *Optional[bool]* | :heavy_minus_sign: | An optional boolean property. | true | +| `date_` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_check_mark: | A date property. | 2020-01-01 | +| `date_time` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00.000000001Z | +| `decimal` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `decimal_str` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `enum` | [shared.EnumT](../../models/shared/enumt.md) | :heavy_check_mark: | A string based enum | one | +| `float32` | *float* | :heavy_check_mark: | A float32 property. | 1.1 | +| `int` | *int* | :heavy_check_mark: | An integer property. | 1 | +| `int32` | *int* | :heavy_check_mark: | An int32 property. | 1 | +| `int32_enum` | [shared.SimpleObjectWithTypeInt32Enum](../../models/shared/simpleobjectwithtypeint32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | +| `int_enum` | [shared.SimpleObjectWithTypeIntEnum](../../models/shared/simpleobjectwithtypeintenum.md) | :heavy_check_mark: | An integer enum property. | 2 | +| `int_opt_null` | *Optional[int]* | :heavy_minus_sign: | An optional integer property will be null for tests. | | +| `num` | *float* | :heavy_check_mark: | A number property. | 1.1 | +| `num_opt_null` | *Optional[float]* | :heavy_minus_sign: | An optional number property will be null for tests. | | +| `str_` | *str* | :heavy_check_mark: | A string property. | test | +| `str_opt` | *Optional[str]* | :heavy_minus_sign: | An optional string property. | testOptional | +| `type` | *str* | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/slides.md b/python-client-sdk/docs/models/shared/slides.md new file mode 100755 index 000000000..1344985f8 --- /dev/null +++ b/python-client-sdk/docs/models/shared/slides.md @@ -0,0 +1,10 @@ +# Slides + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `items` | List[*str*] | :heavy_minus_sign: | N/A | +| `title` | *str* | :heavy_check_mark: | N/A | +| `type` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/slideshow.md b/python-client-sdk/docs/models/shared/slideshow.md new file mode 100755 index 000000000..5933d9b1b --- /dev/null +++ b/python-client-sdk/docs/models/shared/slideshow.md @@ -0,0 +1,11 @@ +# Slideshow + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | +| `author` | *str* | :heavy_check_mark: | N/A | +| `date_` | *str* | :heavy_check_mark: | N/A | +| `slides` | List[[shared.Slides](../../models/shared/slides.md)] | :heavy_check_mark: | N/A | +| `title` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/two.md b/python-client-sdk/docs/models/shared/two.md new file mode 100755 index 000000000..f5c73d295 --- /dev/null +++ b/python-client-sdk/docs/models/shared/two.md @@ -0,0 +1,8 @@ +# Two + + +## Values + +| Name | Value | +| -------- | -------- | +| `LATEST` | latest | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/type.md b/python-client-sdk/docs/models/shared/type.md new file mode 100755 index 000000000..01560028b --- /dev/null +++ b/python-client-sdk/docs/models/shared/type.md @@ -0,0 +1,8 @@ +# Type + + +## Values + +| Name | Value | +| ------ | ------ | +| `BOAT` | boat | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/typedobject1.md b/python-client-sdk/docs/models/shared/typedobject1.md index 8115de31d..63dc3eb34 100755 --- a/python-client-sdk/docs/models/shared/typedobject1.md +++ b/python-client-sdk/docs/models/shared/typedobject1.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| `type` | [TypedObject1Type](../../models/shared/typedobject1type.md) | :heavy_check_mark: | N/A | -| `value` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | +| `type` | [shared.TypedObject1Type](../../models/shared/typedobject1type.md) | :heavy_check_mark: | N/A | +| `value` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/typedobject2.md b/python-client-sdk/docs/models/shared/typedobject2.md index 8eb0c35fd..5c53cebe0 100755 --- a/python-client-sdk/docs/models/shared/typedobject2.md +++ b/python-client-sdk/docs/models/shared/typedobject2.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| `type` | [TypedObject2Type](../../models/shared/typedobject2type.md) | :heavy_check_mark: | N/A | -| `value` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | +| `type` | [shared.TypedObject2Type](../../models/shared/typedobject2type.md) | :heavy_check_mark: | N/A | +| `value` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/typedobject3.md b/python-client-sdk/docs/models/shared/typedobject3.md index 2a3a38a7a..8d8f6dd66 100755 --- a/python-client-sdk/docs/models/shared/typedobject3.md +++ b/python-client-sdk/docs/models/shared/typedobject3.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| `type` | [TypedObject3Type](../../models/shared/typedobject3type.md) | :heavy_check_mark: | N/A | -| `value` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | +| `type` | [shared.TypedObject3Type](../../models/shared/typedobject3type.md) | :heavy_check_mark: | N/A | +| `value` | *str* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/validcircularreferenceobject.md b/python-client-sdk/docs/models/shared/validcircularreferenceobject.md index 36b692b69..93ccb40f1 100755 --- a/python-client-sdk/docs/models/shared/validcircularreferenceobject.md +++ b/python-client-sdk/docs/models/shared/validcircularreferenceobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `circular` | List[[ValidCircularReferenceObject](../../models/shared/validcircularreferenceobject.md)] | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `circular` | List[[shared.ValidCircularReferenceObject](../../models/shared/validcircularreferenceobject.md)] | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/python-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobject.md b/python-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobject.md new file mode 100755 index 000000000..f34e4bcd1 --- /dev/null +++ b/python-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobject.md @@ -0,0 +1,17 @@ +# WeaklyTypedOneOfReadWriteObject + + +## Supported Types + +### SimpleObject + +```python +weaklyTypedOneOfReadWriteObject: shared.SimpleObject = /* values here */ +``` + +### ReadWriteObject + +```python +weaklyTypedOneOfReadWriteObject: shared.ReadWriteObject = /* values here */ +``` + diff --git a/python-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobjectinput.md b/python-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobjectinput.md deleted file mode 100755 index 039879c95..000000000 --- a/python-client-sdk/docs/models/shared/weaklytypedoneofreadwriteobjectinput.md +++ /dev/null @@ -1,17 +0,0 @@ -# WeaklyTypedOneOfReadWriteObjectInput - - -## Supported Types - -### SimpleObject - -```python -weaklyTypedOneOfReadWriteObjectInput: shared.SimpleObject = /* values here */ -``` - -### ReadWriteObjectInput - -```python -weaklyTypedOneOfReadWriteObjectInput: shared.ReadWriteObjectInput = /* values here */ -``` - diff --git a/python-client-sdk/docs/sdks/auth/README.md b/python-client-sdk/docs/sdks/auth/README.md index 6630f4dc0..38f87700e 100755 --- a/python-client-sdk/docs/sdks/auth/README.md +++ b/python-client-sdk/docs/sdks/auth/README.md @@ -1,5 +1,5 @@ # Auth -(*auth*) +(*.auth*) ## Overview diff --git a/python-client-sdk/docs/sdks/authnew/README.md b/python-client-sdk/docs/sdks/authnew/README.md index 4ec7aee93..afef99205 100755 --- a/python-client-sdk/docs/sdks/authnew/README.md +++ b/python-client-sdk/docs/sdks/authnew/README.md @@ -1,5 +1,5 @@ # AuthNew -(*auth_new*) +(*.auth_new*) ## Overview @@ -36,12 +36,12 @@ s = sdk.SDK( ) req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( password='owsGgP4_AhRPMSJ', username='Devonte_Bins', ), header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( expected_value='string', header_name='string', ), @@ -85,12 +85,12 @@ s = sdk.SDK( ) req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( password='xvJcf9GiJNr7T2x', username='Cory33', ), header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( expected_value='string', header_name='string', ), @@ -131,12 +131,12 @@ s = sdk.SDK( ) req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( password='Z2OStPksFyrcGeu', username='Ashton.Steuber27', ), header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( expected_value='string', header_name='string', ), @@ -181,12 +181,12 @@ s = sdk.SDK( ) req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( password='Iq1JSzG1wqLDz4v', username='Ismael.Emmerich', ), header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( expected_value='string', header_name='string', ), @@ -230,12 +230,12 @@ s = sdk.SDK( ) req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( password='OcWVV5608IiaWJQ', username='Kameron42', ), header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( expected_value='string', header_name='string', ), @@ -283,12 +283,12 @@ s = sdk.SDK( ) req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( password='fpwNE90MyqKIrXk', username='Caroline_Walsh', ), header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( expected_value='string', header_name='string', ), @@ -335,12 +335,12 @@ s = sdk.SDK( ) req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( password='pibxDTiJSijK04Y', username='Selena76', ), header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( expected_value='string', header_name='string', ), @@ -387,12 +387,12 @@ s = sdk.SDK( ) req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( password='pzdKQgSGZSrUGNs', username='Eryn51', ), header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( expected_value='string', header_name='string', ), @@ -436,12 +436,12 @@ s = sdk.SDK( ) req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( password='UrAsw466AAaYtr1', username='Kenya.Baumbach', ), header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( expected_value='string', header_name='string', ), @@ -486,12 +486,12 @@ s = sdk.SDK( ) req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( password='V02sHy2onRTMRgS', username='Polly.Aufderhar78', ), header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( expected_value='string', header_name='string', ), @@ -535,12 +535,12 @@ s = sdk.SDK( ) req = shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( password='1_B3hNdr8HC3AeS', username='Floy_Heller', ), header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( expected_value='string', header_name='string', ), diff --git a/python-client-sdk/docs/sdks/documentation/README.md b/python-client-sdk/docs/sdks/documentation/README.md index 691b85539..65308a701 100755 --- a/python-client-sdk/docs/sdks/documentation/README.md +++ b/python-client-sdk/docs/sdks/documentation/README.md @@ -1,5 +1,5 @@ # Documentation -(*documentation*) +(*.documentation*) ## Overview diff --git a/python-client-sdk/docs/sdks/errors/README.md b/python-client-sdk/docs/sdks/errors/README.md index 273ad5deb..caf9e6985 100755 --- a/python-client-sdk/docs/sdks/errors/README.md +++ b/python-client-sdk/docs/sdks/errors/README.md @@ -1,5 +1,5 @@ # Errors -(*errors*) +(*.errors*) ## Overview diff --git a/python-client-sdk/docs/sdks/first/README.md b/python-client-sdk/docs/sdks/first/README.md index d44d68562..51389fbed 100755 --- a/python-client-sdk/docs/sdks/first/README.md +++ b/python-client-sdk/docs/sdks/first/README.md @@ -1,5 +1,5 @@ # First -(*first*) +(*.first*) ### Available Operations diff --git a/python-client-sdk/docs/sdks/flattening/README.md b/python-client-sdk/docs/sdks/flattening/README.md index a7b9cee8a..5d360e424 100755 --- a/python-client-sdk/docs/sdks/flattening/README.md +++ b/python-client-sdk/docs/sdks/flattening/README.md @@ -1,5 +1,5 @@ # Flattening -(*flattening*) +(*.flattening*) ## Overview @@ -18,8 +18,8 @@ Endpoints for testing flattening through request body and parameter combinations ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -46,8 +46,8 @@ res = s.flattening.component_body_and_param_conflict(simple_object=shared.Simple float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -76,8 +76,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -104,8 +104,8 @@ res = s.flattening.component_body_and_param_no_conflict(param_str='string', simp float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', diff --git a/python-client-sdk/docs/sdks/generation/README.md b/python-client-sdk/docs/sdks/generation/README.md index 612accab7..ae76f6f30 100755 --- a/python-client-sdk/docs/sdks/generation/README.md +++ b/python-client-sdk/docs/sdks/generation/README.md @@ -1,5 +1,5 @@ # Generation -(*generation*) +(*.generation*) ## Overview @@ -123,8 +123,8 @@ if res.valid_circular_reference_object is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from sdk.models import operations, shared s = sdk.SDK( @@ -160,8 +160,8 @@ if res.status_code == 200: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from sdk.models import operations, shared s = sdk.SDK( @@ -285,7 +285,7 @@ s = sdk.SDK( res = s.generation.deprecated_object_in_schema_get() -if res.deprecated_object_in_schema_get_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -460,7 +460,7 @@ s = sdk.SDK( res = s.generation.global_name_overridden() -if res.get_global_name_override_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -490,7 +490,7 @@ s = sdk.SDK( res = s.generation.ignored_generation_get() -if res.ignored_generation_get_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -518,7 +518,7 @@ s = sdk.SDK( ) -res = s.generation.ignores_post(request_body=operations.IgnoresPostApplicationJSON(), test_param='string') +res = s.generation.ignores_post(request_body=operations.IgnoresPostRequestBody(), test_param='string') if res.http_bin_simple_json_object is not None: # handle response @@ -527,10 +527,10 @@ if res.http_bin_simple_json_object is not None: ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| `request_body` | [operations.IgnoresPostApplicationJSON](../../models/operations/ignorespostapplicationjson.md) | :heavy_check_mark: | N/A | -| `test_param` | *Optional[str]* | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `request_body` | [operations.IgnoresPostRequestBody](../../models/operations/ignorespostrequestbody.md) | :heavy_check_mark: | N/A | +| `test_param` | *Optional[str]* | :heavy_minus_sign: | N/A | ### Response @@ -555,7 +555,7 @@ s = sdk.SDK( ) -res = s.generation.name_override(test_enum_query_param=operations.NameOverrideGetEnumNameOverride.VALUE3, test_query_param='example') +res = s.generation.name_override(test_enum_query_param=operations.EnumNameOverride.VALUE3, test_query_param='example') if res.overridden_response is not None: # handle response @@ -564,10 +564,10 @@ if res.overridden_response is not None: ### Parameters -| Parameter | Type | Required | Description | Example | -| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -| `test_enum_query_param` | [operations.NameOverrideGetEnumNameOverride](../../models/operations/nameoverridegetenumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | -| `test_query_param` | *str* | :heavy_check_mark: | N/A | example | +| Parameter | Type | Required | Description | Example | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `test_enum_query_param` | [operations.EnumNameOverride](../../models/operations/enumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | +| `test_query_param` | *str* | :heavy_check_mark: | N/A | example | ### Response @@ -640,8 +640,8 @@ if res.one_of_circular_reference_object is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -654,7 +654,7 @@ s = sdk.SDK( ) -res = s.generation.typed_parameter_generation_get(bigint=879275, date_=dateutil.parser.parse('2023-11-18').date(), decimal=Decimal('3346.96'), obj=operations.TypedParameterGenerationGetObj( +res = s.generation.typed_parameter_generation_get(bigint=879275, date_=dateutil.parser.parse('2023-11-18').date(), decimal=Decimal('3346.96'), obj=operations.Obj( bool=False, num=4778.06, str_='string', @@ -667,12 +667,12 @@ if res.status_code == 200: ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | -| `bigint` | *Optional[int]* | :heavy_minus_sign: | N/A | -| `date_` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_minus_sign: | N/A | -| `decimal` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | -| `obj` | [Optional[operations.TypedParameterGenerationGetObj]](../../models/operations/typedparametergenerationgetobj.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `bigint` | *Optional[int]* | :heavy_minus_sign: | N/A | +| `date_` | [datetime](https://docs.python.org/3/library/datetime.html#datetime-objects) | :heavy_minus_sign: | N/A | +| `decimal` | *Optional[Decimal]* | :heavy_minus_sign: | N/A | +| `obj` | [Optional[operations.Obj]](../../models/operations/obj.md) | :heavy_minus_sign: | N/A | ### Response @@ -690,8 +690,8 @@ Usage example docs ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -718,8 +718,8 @@ req = operations.UsageExamplePostRequest( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -734,13 +734,13 @@ req = operations.UsageExamplePostRequest( decimal_parameter=Decimal('5223.72'), decimal_str_parameter=Decimal('2911.37'), double_parameter=6946.59, - enum_parameter=operations.UsageExamplePostEnumParameter.VALUE1, + enum_parameter=operations.EnumParameter.VALUE1, falsey_number_parameter=0, float32_parameter=1029.75, float_parameter=5669.99, int64_parameter=195232, int_parameter=569663, - opt_enum_parameter=operations.UsageExamplePostOptEnumParameter.VALUE3, + opt_enum_parameter=operations.OptEnumParameter.VALUE3, str_parameter='example 1', ) @@ -749,7 +749,7 @@ res = s.generation.usage_example_post(req, operations.UsageExamplePostSecurity( username="YOUR_USERNAME", )) -if res.usage_example_post_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` diff --git a/python-client-sdk/docs/sdks/globals/README.md b/python-client-sdk/docs/sdks/globals/README.md index f711dc065..dbd081d94 100755 --- a/python-client-sdk/docs/sdks/globals/README.md +++ b/python-client-sdk/docs/sdks/globals/README.md @@ -1,5 +1,5 @@ # Globals -(*globals*) +(*.globals*) ## Overview diff --git a/python-client-sdk/docs/sdks/nest/README.md b/python-client-sdk/docs/sdks/nest/README.md index 30ece9317..fea0cec1f 100755 --- a/python-client-sdk/docs/sdks/nest/README.md +++ b/python-client-sdk/docs/sdks/nest/README.md @@ -1,5 +1,5 @@ # Nest -(*nest*) +(*.nest*) ### Available Operations diff --git a/python-client-sdk/docs/sdks/nested/README.md b/python-client-sdk/docs/sdks/nested/README.md index 5bcbb350a..3c5ad98a5 100755 --- a/python-client-sdk/docs/sdks/nested/README.md +++ b/python-client-sdk/docs/sdks/nested/README.md @@ -1,5 +1,5 @@ # Nested -(*nested*) +(*.nested*) ### Available Operations diff --git a/python-client-sdk/docs/sdks/nestedfirst/README.md b/python-client-sdk/docs/sdks/nestedfirst/README.md deleted file mode 100755 index 275e25b90..000000000 --- a/python-client-sdk/docs/sdks/nestedfirst/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# NestedFirst -(*nested.first*) - -### Available Operations - -* [get](#get) - -## get - -### Example Usage - -```python -import sdk -from sdk.models import shared - -s = sdk.SDK( - security=shared.Security( - api_key_auth="Token YOUR_API_KEY", - ), - global_path_param=100, - global_query_param='some example global query param', -) - - -res = s.nested.first.get() - -if res.status_code == 200: - # handle response - pass -``` - - -### Response - -**[operations.NestedFirstGetResponse](../../models/operations/nestedfirstgetresponse.md)** - diff --git a/python-client-sdk/docs/sdks/nestedsecond/README.md b/python-client-sdk/docs/sdks/nestedsecond/README.md deleted file mode 100755 index a885ff72b..000000000 --- a/python-client-sdk/docs/sdks/nestedsecond/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# NestedSecond -(*nested.second*) - -### Available Operations - -* [get](#get) - -## get - -### Example Usage - -```python -import sdk -from sdk.models import shared - -s = sdk.SDK( - security=shared.Security( - api_key_auth="Token YOUR_API_KEY", - ), - global_path_param=100, - global_query_param='some example global query param', -) - - -res = s.nested.second.get() - -if res.status_code == 200: - # handle response - pass -``` - - -### Response - -**[operations.NestedSecondGetResponse](../../models/operations/nestedsecondgetresponse.md)** - diff --git a/python-client-sdk/docs/sdks/nestfirst/README.md b/python-client-sdk/docs/sdks/nestfirst/README.md deleted file mode 100755 index 2c596555f..000000000 --- a/python-client-sdk/docs/sdks/nestfirst/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# NestFirst -(*nest.first*) - -### Available Operations - -* [get](#get) - -## get - -### Example Usage - -```python -import sdk -from sdk.models import shared - -s = sdk.SDK( - security=shared.Security( - api_key_auth="Token YOUR_API_KEY", - ), - global_path_param=100, - global_query_param='some example global query param', -) - - -res = s.nest.first.get() - -if res.status_code == 200: - # handle response - pass -``` - - -### Response - -**[operations.NestFirstGetResponse](../../models/operations/nestfirstgetresponse.md)** - diff --git a/python-client-sdk/docs/sdks/pagination/README.md b/python-client-sdk/docs/sdks/pagination/README.md index ec0777bf6..b90fbc08a 100755 --- a/python-client-sdk/docs/sdks/pagination/README.md +++ b/python-client-sdk/docs/sdks/pagination/README.md @@ -1,5 +1,5 @@ # Pagination -(*pagination*) +(*.pagination*) ## Overview diff --git a/python-client-sdk/docs/sdks/parameters/README.md b/python-client-sdk/docs/sdks/parameters/README.md index 5270b8594..340c61a2c 100755 --- a/python-client-sdk/docs/sdks/parameters/README.md +++ b/python-client-sdk/docs/sdks/parameters/README.md @@ -1,5 +1,5 @@ # Parameters -(*parameters*) +(*.parameters*) ## Overview @@ -85,8 +85,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -113,12 +113,12 @@ res = s.parameters.deep_object_query_params_object(obj_param=shared.SimpleObject float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', -), obj_arr_param=operations.DeepObjectQueryParamsObjectObjArrParam( +), obj_arr_param=operations.ObjArrParam( arr=[ 'test', 'test2', @@ -132,10 +132,10 @@ if res.res is not None: ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -| `obj_param` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `obj_arr_param` | [Optional[operations.DeepObjectQueryParamsObjectObjArrParam]](../../models/operations/deepobjectqueryparamsobjectobjarrparam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `obj_param` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `obj_arr_param` | [Optional[operations.ObjArrParam]](../../models/operations/objarrparam.md) | :heavy_minus_sign: | N/A | ### Response @@ -239,10 +239,10 @@ s = sdk.SDK( ) -res = s.parameters.form_query_params_camel_object(obj_param_exploded=operations.FormQueryParamsCamelObjectObjParamExploded( +res = s.parameters.form_query_params_camel_object(obj_param_exploded=operations.ObjParamExploded( item_count='10', search_term='foo', -), obj_param=operations.FormQueryParamsCamelObjectObjParam( +), obj_param=operations.ObjParam( encoded_count='11', encoded_term='bar', )) @@ -254,10 +254,10 @@ if res.res is not None: ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| `obj_param_exploded` | [operations.FormQueryParamsCamelObjectObjParamExploded](../../models/operations/formqueryparamscamelobjectobjparamexploded.md) | :heavy_check_mark: | N/A | -| `obj_param` | [Optional[operations.FormQueryParamsCamelObjectObjParam]](../../models/operations/formqueryparamscamelobjectobjparam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `obj_param_exploded` | [operations.ObjParamExploded](../../models/operations/objparamexploded.md) | :heavy_check_mark: | N/A | +| `obj_param` | [Optional[operations.ObjParam]](../../models/operations/objparam.md) | :heavy_minus_sign: | N/A | ### Response @@ -313,8 +313,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -341,8 +341,8 @@ res = s.parameters.form_query_params_object(obj_param_exploded=shared.SimpleObje float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -360,8 +360,8 @@ res = s.parameters.form_query_params_object(obj_param_exploded=shared.SimpleObje float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -558,8 +558,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -586,8 +586,8 @@ res = s.parameters.header_params_object(x_header_obj=shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -605,8 +605,8 @@ res = s.parameters.header_params_object(x_header_obj=shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -674,8 +674,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -703,8 +703,8 @@ res = s.parameters.json_query_params_object(deep_obj_param=shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -724,8 +724,8 @@ res = s.parameters.json_query_params_object(deep_obj_param=shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -744,8 +744,8 @@ res = s.parameters.json_query_params_object(deep_obj_param=shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -768,8 +768,8 @@ res = s.parameters.json_query_params_object(deep_obj_param=shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -788,8 +788,8 @@ res = s.parameters.json_query_params_object(deep_obj_param=shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -810,8 +810,8 @@ res = s.parameters.json_query_params_object(deep_obj_param=shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -831,8 +831,8 @@ res = s.parameters.json_query_params_object(deep_obj_param=shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -937,8 +937,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -965,8 +965,8 @@ res = s.parameters.mixed_query_params(deep_object_param=shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -984,8 +984,8 @@ res = s.parameters.mixed_query_params(deep_object_param=shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -1003,8 +1003,8 @@ res = s.parameters.mixed_query_params(deep_object_param=shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -1034,8 +1034,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -1062,8 +1062,8 @@ res = s.parameters.path_parameter_json(json_obj=shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -1091,8 +1091,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -1128,8 +1128,8 @@ res = s.parameters.pipe_delimited_query_params_array(arr_param=[ float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -1242,8 +1242,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import operations, shared @@ -1270,8 +1270,8 @@ res = s.parameters.simple_path_parameter_objects(obj_param=shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -1289,8 +1289,8 @@ res = s.parameters.simple_path_parameter_objects(obj_param=shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', diff --git a/python-client-sdk/docs/sdks/requestbodies/README.md b/python-client-sdk/docs/sdks/requestbodies/README.md index 0f1f29cda..23bbf0a01 100755 --- a/python-client-sdk/docs/sdks/requestbodies/README.md +++ b/python-client-sdk/docs/sdks/requestbodies/README.md @@ -1,5 +1,5 @@ # RequestBodies -(*request_bodies*) +(*.request_bodies*) ## Overview @@ -145,14 +145,14 @@ s = sdk.SDK( ) req = operations.NullableRequiredEmptyObjectPostRequestBody( - nullable_optional_obj=operations.NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj(), - nullable_required_obj=operations.NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj(), - required_obj=operations.NullableRequiredEmptyObjectPostRequestBodyRequiredObj(), + nullable_optional_obj=operations.NullableOptionalObj(), + nullable_required_obj=operations.NullableRequiredObj(), + required_obj=operations.RequiredObj(), ) res = s.request_bodies.nullable_required_empty_object_post(req) -if res.nullable_required_empty_object_post_200_application_json_string is not None: +if res.res is not None: # handle response pass ``` @@ -189,13 +189,13 @@ req = operations.NullableRequiredPropertyPostRequestBody( nullable_required_array=[ 2355.17, ], - nullable_required_enum=operations.NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.SECOND, + nullable_required_enum=operations.NullableRequiredEnum.SECOND, nullable_required_int=50266, ) res = s.request_bodies.nullable_required_property_post(req) -if res.nullable_required_property_post_200_application_json_string is not None: +if res.res is not None: # handle response pass ``` @@ -239,7 +239,7 @@ req = operations.NullableRequiredSharedObjectPostRequestBody( res = s.request_bodies.nullable_required_shared_object_post(req) -if res.nullable_required_shared_object_post_200_application_json_string is not None: +if res.res is not None: # handle response pass ``` @@ -261,8 +261,8 @@ if res.nullable_required_shared_object_post_200_application_json_string is not N ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -289,8 +289,8 @@ req = [ float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -299,7 +299,7 @@ req = [ res = s.request_bodies.request_body_post_application_json_array(req) -if res.simple_objects is not None: +if res.res is not None: # handle response pass ``` @@ -322,8 +322,8 @@ if res.simple_objects is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -344,9 +344,9 @@ req = [ date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -358,7 +358,7 @@ req = [ res = s.request_bodies.request_body_post_application_json_array_camel_case(req) -if res.simple_object_camel_cases is not None: +if res.res is not None: # handle response pass ``` @@ -381,8 +381,8 @@ if res.simple_object_camel_cases is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -409,8 +409,8 @@ req = [ float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -441,8 +441,8 @@ if res.arr_obj_value is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -463,9 +463,9 @@ req = [ date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -499,8 +499,8 @@ if res.arr_obj_value_camel_case is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -528,8 +528,8 @@ req = [ float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -539,7 +539,7 @@ req = [ res = s.request_bodies.request_body_post_application_json_array_of_array(req) -if res.arrs is not None: +if res.res is not None: # handle response pass ``` @@ -562,8 +562,8 @@ if res.arrs is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -585,9 +585,9 @@ req = [ date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -600,7 +600,7 @@ req = [ res = s.request_bodies.request_body_post_application_json_array_of_array_camel_case(req) -if res.arrs is not None: +if res.res is not None: # handle response pass ``` @@ -642,7 +642,7 @@ req = [ res = s.request_bodies.request_body_post_application_json_array_of_array_of_primitive(req) -if res.arrs is not None: +if res.res is not None: # handle response pass ``` @@ -665,8 +665,8 @@ if res.arrs is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -694,8 +694,8 @@ req = [ float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -705,7 +705,7 @@ req = [ res = s.request_bodies.request_body_post_application_json_array_of_map(req) -if res.maps is not None: +if res.res is not None: # handle response pass ``` @@ -728,8 +728,8 @@ if res.maps is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -751,9 +751,9 @@ req = [ date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -766,7 +766,7 @@ req = [ res = s.request_bodies.request_body_post_application_json_array_of_map_camel_case(req) -if res.maps is not None: +if res.res is not None: # handle response pass ``` @@ -806,7 +806,7 @@ req = [ res = s.request_bodies.request_body_post_application_json_array_of_primitive(req) -if res.strings is not None: +if res.res is not None: # handle response pass ``` @@ -829,8 +829,8 @@ if res.strings is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -857,8 +857,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -878,8 +878,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -898,8 +898,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -922,8 +922,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -942,8 +942,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -964,8 +964,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -997,8 +997,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1019,9 +1019,9 @@ req = shared.DeepObjectCamelCase( date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1038,9 +1038,9 @@ req = shared.DeepObjectCamelCase( date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1060,9 +1060,9 @@ req = shared.DeepObjectCamelCase( date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1080,9 +1080,9 @@ req = shared.DeepObjectCamelCase( date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1117,8 +1117,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1145,8 +1145,8 @@ req = { float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -1178,8 +1178,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1200,9 +1200,9 @@ req = { date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1237,8 +1237,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1265,8 +1265,8 @@ req = { float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -1297,8 +1297,8 @@ if res.map_obj_value is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1319,9 +1319,9 @@ req = { date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1355,8 +1355,8 @@ if res.map_obj_value_camel_case is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1384,8 +1384,8 @@ req = { float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -1418,8 +1418,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1441,9 +1441,9 @@ req = { date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1479,8 +1479,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1508,8 +1508,8 @@ req = { float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -1542,8 +1542,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1565,9 +1565,9 @@ req = { date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1685,8 +1685,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1712,8 +1712,8 @@ req = shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -1743,8 +1743,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1770,8 +1770,8 @@ req = shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -1801,8 +1801,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1822,9 +1822,9 @@ req = shared.SimpleObjectCamelCase( date_val=dateutil.parser.parse('2020-01-01').date(), enum_val=shared.EnumT.ONE, float32_val=2.2222222, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.SIXTY_NINE, + int32_enum_val=shared.Int32EnumVal.SIXTY_NINE, int32_val=1, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.THIRD, + int_enum_val=shared.IntEnumVal.THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1888,7 +1888,7 @@ req = operations.RequestBodyPostComplexNumberTypesRequest( res = s.request_bodies.request_body_post_complex_number_types(req) -if res.request_body_post_complex_number_types_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -1910,8 +1910,8 @@ if res.request_body_post_complex_number_types_200_application_json_object is not ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -1931,8 +1931,8 @@ req = shared.DefaultsAndConsts( const_date_time=dateutil.parser.isoparse('2023-10-01T02:16:56.173Z'), const_decimal=Decimal('1120.58'), const_decimal_str=Decimal('8445.08'), - const_enum_int=shared.DefaultsAndConstsConstEnumInt.ONE, - const_enum_str=shared.DefaultsAndConstsConstEnumStr.TWO, + const_enum_int=shared.ConstEnumInt.ONE, + const_enum_str=shared.ConstEnumStr.TWO, const_int=450379, const_num=7742.71, const_str='string', @@ -1942,7 +1942,7 @@ req = shared.DefaultsAndConsts( res = s.request_bodies.request_body_post_defaults_and_consts(req) -if res.request_body_post_defaults_and_consts_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -1976,13 +1976,13 @@ s = sdk.SDK( ) req = operations.RequestBodyPostEmptyObjectRequestBody( - empty=operations.RequestBodyPostEmptyObjectRequestBodyEmpty(), - empty_with_empty_properties=operations.RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties(), + empty=operations.Empty(), + empty_with_empty_properties=operations.EmptyWithEmptyProperties(), ) res = s.request_bodies.request_body_post_empty_object(req) -if res.request_body_post_empty_object_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2004,8 +2004,8 @@ if res.request_body_post_empty_object_200_application_json_object is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -2032,8 +2032,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -2053,8 +2053,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -2073,8 +2073,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -2083,7 +2083,7 @@ req = shared.DeepObject( bool=True, int=1, map={ - "key": shared.SimpleObject( + "key2": shared.SimpleObject( any='any', bigint=8821239038968084, bigint_str=9223372036854775808, @@ -2097,13 +2097,13 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', ), - "key2": shared.SimpleObject( + "key": shared.SimpleObject( any='any', bigint=8821239038968084, bigint_str=9223372036854775808, @@ -2117,8 +2117,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -2139,8 +2139,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -2211,8 +2211,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -2238,8 +2238,8 @@ req = shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -2286,7 +2286,7 @@ req = [ res = s.request_bodies.request_body_post_json_data_types_array_big_int(req) -if res.request_body_post_json_data_types_array_big_int_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2325,7 +2325,7 @@ req = [ res = s.request_bodies.request_body_post_json_data_types_array_date(req) -if res.request_body_post_json_data_types_array_date_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2364,7 +2364,7 @@ req = [ res = s.request_bodies.request_body_post_json_data_types_array_decimal_str(req) -if res.request_body_post_json_data_types_array_decimal_str_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2401,7 +2401,7 @@ req = 687617 res = s.request_bodies.request_body_post_json_data_types_big_int(req) -if res.request_body_post_json_data_types_big_int_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2438,7 +2438,7 @@ req = 649473 res = s.request_bodies.request_body_post_json_data_types_big_int_str(req) -if res.request_body_post_json_data_types_big_int_str_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2475,7 +2475,7 @@ req = False res = s.request_bodies.request_body_post_json_data_types_boolean(req) -if res.request_body_post_json_data_types_boolean_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2512,7 +2512,7 @@ req = dateutil.parser.parse('2022-03-04').date() res = s.request_bodies.request_body_post_json_data_types_date(req) -if res.request_body_post_json_data_types_date_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2549,7 +2549,7 @@ req = dateutil.parser.isoparse('2023-03-04T01:33:15.031Z') res = s.request_bodies.request_body_post_json_data_types_date_time(req) -if res.request_body_post_json_data_types_date_time_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2586,7 +2586,7 @@ req = Decimal('1107.81') res = s.request_bodies.request_body_post_json_data_types_decimal(req) -if res.request_body_post_json_data_types_decimal_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2623,7 +2623,7 @@ req = Decimal('5432.92') res = s.request_bodies.request_body_post_json_data_types_decimal_str(req) -if res.request_body_post_json_data_types_decimal_str_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2660,7 +2660,7 @@ req = 4464.34 res = s.request_bodies.request_body_post_json_data_types_float32(req) -if res.request_body_post_json_data_types_float32_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2697,7 +2697,7 @@ req = 22155 res = s.request_bodies.request_body_post_json_data_types_int32(req) -if res.request_body_post_json_data_types_int32_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2734,7 +2734,7 @@ req = 273673 res = s.request_bodies.request_body_post_json_data_types_integer(req) -if res.request_body_post_json_data_types_integer_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2773,7 +2773,7 @@ req = { res = s.request_bodies.request_body_post_json_data_types_map_big_int_str(req) -if res.request_body_post_json_data_types_map_big_int_str_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2812,7 +2812,7 @@ req = { res = s.request_bodies.request_body_post_json_data_types_map_date_time(req) -if res.request_body_post_json_data_types_map_date_time_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2851,7 +2851,7 @@ req = { res = s.request_bodies.request_body_post_json_data_types_map_decimal(req) -if res.request_body_post_json_data_types_map_decimal_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2888,7 +2888,7 @@ req = 2193.66 res = s.request_bodies.request_body_post_json_data_types_number(req) -if res.request_body_post_json_data_types_number_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2925,7 +2925,7 @@ req = 'string' res = s.request_bodies.request_body_post_json_data_types_string(req) -if res.request_body_post_json_data_types_string_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -2947,8 +2947,8 @@ if res.request_body_post_json_data_types_string_200_application_json_object is n ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -2974,8 +2974,8 @@ req = shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -3016,7 +3016,7 @@ s = sdk.SDK( global_query_param='some example global query param', ) -req = operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON( +req = operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody( bool=False, num=3558.41, str_='string', @@ -3031,9 +3031,9 @@ if res.res is not None: ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `request` | [operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3058,7 +3058,7 @@ s = sdk.SDK( ) -res = s.request_bodies.request_body_post_multiple_content_types_split_param_form(request_body=operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded( +res = s.request_bodies.request_body_post_multiple_content_types_split_param_form(request_body=operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody( bool3=False, num3=8693.24, str3='string', @@ -3071,10 +3071,10 @@ if res.res is not None: ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md) | :heavy_check_mark: | N/A | -| `param_str` | *str* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `request_body` | [operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md) | :heavy_check_mark: | N/A | +| `param_str` | *str* | :heavy_check_mark: | N/A | ### Response @@ -3099,7 +3099,7 @@ s = sdk.SDK( ) -res = s.request_bodies.request_body_post_multiple_content_types_split_param_json(request_body=operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON( +res = s.request_bodies.request_body_post_multiple_content_types_split_param_json(request_body=operations.RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody( bool=False, num=9771.91, str_='string', @@ -3114,7 +3114,7 @@ if res.res is not None: | Parameter | Type | Required | Description | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `request_body` | [operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md) | :heavy_check_mark: | N/A | +| `request_body` | [operations.RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md) | :heavy_check_mark: | N/A | | `param_str` | *str* | :heavy_check_mark: | N/A | @@ -3140,7 +3140,7 @@ s = sdk.SDK( ) -res = s.request_bodies.request_body_post_multiple_content_types_split_param_multipart(request_body=operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData( +res = s.request_bodies.request_body_post_multiple_content_types_split_param_multipart(request_body=operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody( bool2=False, num2=7000.76, str2='string', @@ -3153,10 +3153,10 @@ if res.res is not None: ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md) | :heavy_check_mark: | N/A | -| `param_str` | *str* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request_body` | [operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md) | :heavy_check_mark: | N/A | +| `param_str` | *str* | :heavy_check_mark: | N/A | ### Response @@ -3180,7 +3180,7 @@ s = sdk.SDK( global_query_param='some example global query param', ) -req = operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded( +req = operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody( bool3=False, num3=7842.07, str3='string', @@ -3195,9 +3195,9 @@ if res.res is not None: ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `request` | [operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request` | [operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3221,7 +3221,7 @@ s = sdk.SDK( global_query_param='some example global query param', ) -req = operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON( +req = operations.RequestBodyPostMultipleContentTypesSplitJSONRequestBody( bool=False, num=2445.56, str_='string', @@ -3238,7 +3238,7 @@ if res.res is not None: | Parameter | Type | Required | Description | | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md) | :heavy_check_mark: | The request object to use for the request. | +| `request` | [operations.RequestBodyPostMultipleContentTypesSplitJSONRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3262,7 +3262,7 @@ s = sdk.SDK( global_query_param='some example global query param', ) -req = operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData( +req = operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody( bool2=False, num2=2079.2, str2='string', @@ -3277,9 +3277,9 @@ if res.res is not None: ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `request` | [operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `request` | [operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3307,7 +3307,7 @@ req = 'string' res = s.request_bodies.request_body_post_not_nullable_not_required_string_body(req) -if res.request_body_post_not_nullable_not_required_string_body_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -3346,7 +3346,7 @@ req = [ res = s.request_bodies.request_body_post_null_array(req) -if res.request_body_post_null_array_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -3385,7 +3385,7 @@ req = { res = s.request_bodies.request_body_post_null_dictionary(req) -if res.request_body_post_null_dictionary_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -3422,7 +3422,7 @@ req = 'string' res = s.request_bodies.request_body_post_nullable_not_required_string_body(req) -if res.request_body_post_nullable_not_required_string_body_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -3459,7 +3459,7 @@ req = 'string' res = s.request_bodies.request_body_post_nullable_required_string_body(req) -if res.request_body_post_nullable_required_string_body_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -3492,7 +3492,7 @@ s = sdk.SDK( global_query_param='some example global query param', ) -req = '9sS}}O%}aJ'.encode() +req = '0x5DbFFb1Ff9'.encode() res = s.request_bodies.request_body_put_bytes(req) @@ -3530,7 +3530,7 @@ s = sdk.SDK( ) -res = s.request_bodies.request_body_put_bytes_with_params(request_body='o%jIWe4_P6'.encode(), query_string_param='string') +res = s.request_bodies.request_body_put_bytes_with_params(request_body='0xC1B9cA4eb5'.encode(), query_string_param='string') if res.res is not None: # handle response @@ -3555,8 +3555,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -3583,8 +3583,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -3604,8 +3604,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -3624,8 +3624,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -3634,7 +3634,7 @@ req = shared.DeepObject( bool=True, int=1, map={ - "key2": shared.SimpleObject( + "key": shared.SimpleObject( any='any', bigint=8821239038968084, bigint_str=9223372036854775808, @@ -3648,13 +3648,13 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', ), - "key": shared.SimpleObject( + "key2": shared.SimpleObject( any='any', bigint=8821239038968084, bigint_str=9223372036854775808, @@ -3668,8 +3668,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -3690,8 +3690,8 @@ req = shared.DeepObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -3735,9 +3735,9 @@ s = sdk.SDK( ) req = operations.RequestBodyPutMultipartDifferentFileNameRequestBody( - different_file_name=operations.RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName( - content='Y}\'H[5/Z[,'.encode(), - different_file_name='string', + different_file_name=operations.DifferentFileName( + content='0xdF19d43dd2'.encode(), + file_name='west_tunisian.pdf', ), ) @@ -3777,9 +3777,9 @@ s = sdk.SDK( ) req = operations.RequestBodyPutMultipartFileRequestBody( - file=operations.RequestBodyPutMultipartFileRequestBodyFile( - content='OJa,v`.FW-'.encode(), - file='string', + file=operations.File( + content='0xa9f2Ee38c3'.encode(), + file_name='bandwidth_sedan.pdf', ), ) @@ -3807,8 +3807,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -3834,8 +3834,8 @@ req = shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -3950,7 +3950,7 @@ s = sdk.SDK( global_query_param='some example global query param', ) -req = shared.ReadWriteObjectInput( +req = shared.ReadWriteObject( num1=797612, num2=89374, num3=459345, @@ -3965,10 +3965,10 @@ if res.read_write_object is not None: ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `request` | [shared.ReadWriteObjectInput](../../models/shared/readwriteobjectinput.md) | :heavy_check_mark: | The request object to use for the request. | -| `server_url` | *Optional[str]* | :heavy_minus_sign: | An optional server URL to use. | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | +| `request` | [shared.ReadWriteObject](../../models/shared/readwriteobject.md) | :heavy_check_mark: | The request object to use for the request. | +| `server_url` | *Optional[str]* | :heavy_minus_sign: | An optional server URL to use. | ### Response @@ -4019,8 +4019,8 @@ if res.read_only_object is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -4046,8 +4046,8 @@ req = shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -4078,8 +4078,8 @@ if res.weakly_typed_one_of_read_only_object is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -4091,7 +4091,7 @@ s = sdk.SDK( global_query_param='some example global query param', ) -req = shared.ReadWriteObjectInput( +req = shared.ReadWriteObject( num1=817251, num2=891192, num3=743101, @@ -4106,10 +4106,10 @@ if res.weakly_typed_one_of_read_write_object is not None: ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -| `request` | [Union[shared.SimpleObject, shared.ReadWriteObjectInput]](../../models/shared/weaklytypedoneofreadwriteobjectinput.md) | :heavy_check_mark: | The request object to use for the request. | -| `server_url` | *Optional[str]* | :heavy_minus_sign: | An optional server URL to use. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `request` | [Union[shared.SimpleObject, shared.ReadWriteObject]](../../models/shared/weaklytypedoneofreadwriteobject.md) | :heavy_check_mark: | The request object to use for the request. | +| `server_url` | *Optional[str]* | :heavy_minus_sign: | An optional server URL to use. | ### Response @@ -4206,8 +4206,8 @@ if res.write_only_object is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared diff --git a/python-client-sdk/docs/sdks/resource/README.md b/python-client-sdk/docs/sdks/resource/README.md index bc87e2ff5..ccfa9e1ae 100755 --- a/python-client-sdk/docs/sdks/resource/README.md +++ b/python-client-sdk/docs/sdks/resource/README.md @@ -1,5 +1,5 @@ # Resource -(*resource*) +(*.resource*) ### Available Operations @@ -26,9 +26,9 @@ s = sdk.SDK( ) req = operations.CreateFileRequestBody( - file=operations.CreateFileRequestBodyFile( - content='`\'$Z`(L/RH'.encode(), - file='string', + file=operations.CreateFileFile( + content='0xf10df1a3b9'.encode(), + file_name='rap_national.mp4v', ), ) @@ -56,8 +56,8 @@ if res.file_resource is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from sdk.models import shared s = sdk.SDK( @@ -76,7 +76,7 @@ req = shared.ExampleResource( 'string', ], chocolates=[ - shared.ExampleResourceChocolates( + shared.Chocolates( description='Re-engineered asynchronous array', ), ], diff --git a/python-client-sdk/docs/sdks/responsebodies/README.md b/python-client-sdk/docs/sdks/responsebodies/README.md index 718e8cb96..829d609d9 100755 --- a/python-client-sdk/docs/sdks/responsebodies/README.md +++ b/python-client-sdk/docs/sdks/responsebodies/README.md @@ -1,5 +1,5 @@ # ResponseBodies -(*response_bodies*) +(*.response_bodies*) ## Overview @@ -44,7 +44,7 @@ req = shared.ObjWithComplexNumbersAdditionalProperties( res = s.response_bodies.response_body_additional_properties_complex_numbers_post(req) -if res.response_body_additional_properties_complex_numbers_post_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -66,8 +66,8 @@ if res.response_body_additional_properties_complex_numbers_post_200_application_ ### Example Usage ```python -import sdk import dateutil.parser +import sdk from sdk.models import shared s = sdk.SDK( @@ -87,7 +87,7 @@ req = shared.ObjWithDateAdditionalProperties( res = s.response_bodies.response_body_additional_properties_date_post(req) -if res.response_body_additional_properties_date_post_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -109,8 +109,8 @@ if res.response_body_additional_properties_date_post_200_application_json_object ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -141,8 +141,8 @@ req = shared.ObjWithObjAdditionalProperties( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -153,7 +153,7 @@ req = shared.ObjWithObjAdditionalProperties( res = s.response_bodies.response_body_additional_properties_object_post(req) -if res.response_body_additional_properties_object_post_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -195,7 +195,7 @@ req = shared.ObjWithStringAdditionalProperties( res = s.response_bodies.response_body_additional_properties_post(req) -if res.response_body_additional_properties_post_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -416,8 +416,8 @@ if res.xml is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -436,7 +436,7 @@ req = shared.ObjWithZeroValueComplexTypePtrs( res = s.response_bodies.response_body_zero_value_complex_type_ptrs_post(req) -if res.response_body_zero_value_complex_type_ptrs_post_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` diff --git a/python-client-sdk/docs/sdks/retries/README.md b/python-client-sdk/docs/sdks/retries/README.md index f331ae0b0..5f8915025 100755 --- a/python-client-sdk/docs/sdks/retries/README.md +++ b/python-client-sdk/docs/sdks/retries/README.md @@ -1,5 +1,5 @@ # Retries -(*retries*) +(*.retries*) ## Overview diff --git a/python-client-sdk/docs/sdks/sdk/README.md b/python-client-sdk/docs/sdks/sdk/README.md index 79c88e835..939d16d76 100755 --- a/python-client-sdk/docs/sdks/sdk/README.md +++ b/python-client-sdk/docs/sdks/sdk/README.md @@ -31,9 +31,9 @@ s = sdk.SDK( req = 'string' -res = s.sdk.put_anything_ignored_generation(req) +res = s.put_anything_ignored_generation(req) -if res.put_anything_ignored_generation_200_application_json_object is not None: +if res.object is not None: # handle response pass ``` @@ -67,7 +67,7 @@ s = sdk.SDK( ) -res = s.sdk.response_body_json_get() +res = s.response_body_json_get() if res.http_bin_simple_json_object is not None: # handle response diff --git a/python-client-sdk/docs/sdks/sdkfirst/README.md b/python-client-sdk/docs/sdks/sdkfirst/README.md new file mode 100755 index 000000000..663797553 --- /dev/null +++ b/python-client-sdk/docs/sdks/sdkfirst/README.md @@ -0,0 +1,36 @@ +# SDKFirst +(*.nest.first*) + +### Available Operations + +* [get](#get) + +## get + +### Example Usage + +```python +import sdk +from sdk.models import shared + +s = sdk.SDK( + security=shared.Security( + api_key_auth="Token YOUR_API_KEY", + ), + global_path_param=100, + global_query_param='some example global query param', +) + + +res = s.nest.first.get() + +if res.status_code == 200: + # handle response + pass +``` + + +### Response + +**[operations.NestFirstGetResponse](../../models/operations/nestfirstgetresponse.md)** + diff --git a/python-client-sdk/docs/sdks/sdknestedfirst/README.md b/python-client-sdk/docs/sdks/sdknestedfirst/README.md new file mode 100755 index 000000000..c27127e9b --- /dev/null +++ b/python-client-sdk/docs/sdks/sdknestedfirst/README.md @@ -0,0 +1,36 @@ +# SDKNestedFirst +(*.nested.first*) + +### Available Operations + +* [get](#get) + +## get + +### Example Usage + +```python +import sdk +from sdk.models import shared + +s = sdk.SDK( + security=shared.Security( + api_key_auth="Token YOUR_API_KEY", + ), + global_path_param=100, + global_query_param='some example global query param', +) + + +res = s.nested.first.get() + +if res.status_code == 200: + # handle response + pass +``` + + +### Response + +**[operations.NestedFirstGetResponse](../../models/operations/nestedfirstgetresponse.md)** + diff --git a/python-client-sdk/docs/sdks/sdksecond/README.md b/python-client-sdk/docs/sdks/sdksecond/README.md new file mode 100755 index 000000000..a95cfffaf --- /dev/null +++ b/python-client-sdk/docs/sdks/sdksecond/README.md @@ -0,0 +1,36 @@ +# SDKSecond +(*.nested.second*) + +### Available Operations + +* [get](#get) + +## get + +### Example Usage + +```python +import sdk +from sdk.models import shared + +s = sdk.SDK( + security=shared.Security( + api_key_auth="Token YOUR_API_KEY", + ), + global_path_param=100, + global_query_param='some example global query param', +) + + +res = s.nested.second.get() + +if res.status_code == 200: + # handle response + pass +``` + + +### Response + +**[operations.NestedSecondGetResponse](../../models/operations/nestedsecondgetresponse.md)** + diff --git a/python-client-sdk/docs/sdks/second/README.md b/python-client-sdk/docs/sdks/second/README.md index c86744011..458040283 100755 --- a/python-client-sdk/docs/sdks/second/README.md +++ b/python-client-sdk/docs/sdks/second/README.md @@ -1,5 +1,5 @@ # Second -(*second*) +(*.second*) ### Available Operations diff --git a/python-client-sdk/docs/sdks/servers/README.md b/python-client-sdk/docs/sdks/servers/README.md index cfc706691..9dd48036e 100755 --- a/python-client-sdk/docs/sdks/servers/README.md +++ b/python-client-sdk/docs/sdks/servers/README.md @@ -1,5 +1,5 @@ # Servers -(*servers*) +(*.servers*) ## Overview diff --git a/python-client-sdk/docs/sdks/telemetry/README.md b/python-client-sdk/docs/sdks/telemetry/README.md index 04e3dc5a4..112927b18 100755 --- a/python-client-sdk/docs/sdks/telemetry/README.md +++ b/python-client-sdk/docs/sdks/telemetry/README.md @@ -1,5 +1,5 @@ # Telemetry -(*telemetry*) +(*.telemetry*) ## Overview diff --git a/python-client-sdk/docs/sdks/unions/README.md b/python-client-sdk/docs/sdks/unions/README.md index 1ee66af7f..82ce94095 100755 --- a/python-client-sdk/docs/sdks/unions/README.md +++ b/python-client-sdk/docs/sdks/unions/README.md @@ -1,5 +1,5 @@ # Unions -(*unions*) +(*.unions*) ## Overview @@ -68,8 +68,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -315,8 +315,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -343,8 +343,8 @@ req = shared.DeepObjectWithType( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -364,8 +364,8 @@ req = shared.DeepObjectWithType( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -384,8 +384,8 @@ req = shared.DeepObjectWithType( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -408,8 +408,8 @@ req = shared.DeepObjectWithType( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -428,8 +428,8 @@ req = shared.DeepObjectWithType( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -450,8 +450,8 @@ req = shared.DeepObjectWithType( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', @@ -711,8 +711,8 @@ if res.res is not None: ### Example Usage ```python -import sdk import dateutil.parser +import sdk from decimal import Decimal from sdk.models import shared @@ -738,8 +738,8 @@ req = shared.SimpleObject( float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, num=1.1, str_='test', str_opt='testOptional', diff --git a/python-client-sdk/files.gen b/python-client-sdk/files.gen index c8c15bbbc..61843dbdb 100755 --- a/python-client-sdk/files.gen +++ b/python-client-sdk/files.gen @@ -1,36 +1,35 @@ src/sdk/sdkconfiguration.py -src/sdk/auth.py -src/sdk/authnew.py -src/sdk/documentation.py +src/sdk/generation.py src/sdk/errors.py -src/sdk/first.py +src/sdk/unions.py src/sdk/flattening.py -src/sdk/generation.py src/sdk/globals.py -src/sdk/nest_first.py +src/sdk/parameters.py +src/sdk/sdk_first.py src/sdk/nest.py -src/sdk/nested_first.py -src/sdk/nested_second.py +src/sdk/sdk_nested_first.py +src/sdk/sdk_second.py src/sdk/nested.py -src/sdk/pagination.py -src/sdk/parameters.py src/sdk/requestbodies.py -src/sdk/resource.py src/sdk/responsebodies.py -src/sdk/retries.py -src/sdk/second.py src/sdk/servers.py src/sdk/telemetry.py -src/sdk/unions.py +src/sdk/authnew.py +src/sdk/auth.py +src/sdk/documentation.py +src/sdk/resource.py +src/sdk/first.py +src/sdk/second.py +src/sdk/pagination.py +src/sdk/retries.py src/sdk/sdk.py pylintrc setup.py src/sdk/__init__.py -src/sdk/models/__init__.py -src/sdk/models/errors/sdkerror.py src/sdk/utils/__init__.py src/sdk/utils/retries.py src/sdk/utils/utils.py +src/sdk/models/errors/sdkerror.py tests/__init__.py tests/common_helpers.py testscommon/__init__.py @@ -53,35 +52,6 @@ testsprimary/test_unions.py testssimple_security/test_auth.py ../../testprojects/python/pylintrc ../../testprojects/python/setup.py -src/sdk/models/operations/apikeyauth.py -src/sdk/models/operations/apikeyauthglobal.py -src/sdk/models/operations/basicauth.py -src/sdk/models/operations/bearerauth.py -src/sdk/models/operations/globalbearerauth.py -src/sdk/models/operations/oauth2auth.py -src/sdk/models/operations/oauth2override.py -src/sdk/models/operations/openidconnectauth.py -src/sdk/models/operations/apikeyauthglobalnew.py -src/sdk/models/operations/authglobal.py -src/sdk/models/operations/basicauthnew.py -src/sdk/models/operations/multiplemixedoptionsauth.py -src/sdk/models/operations/multiplemixedschemeauth.py -src/sdk/models/operations/multipleoptionswithmixedschemesauth.py -src/sdk/models/operations/multipleoptionswithsimpleschemesauth.py -src/sdk/models/operations/multiplesimpleoptionsauth.py -src/sdk/models/operations/multiplesimpleschemeauth.py -src/sdk/models/operations/oauth2authnew.py -src/sdk/models/operations/openidconnectauthnew.py -src/sdk/models/operations/getdocumentationperlanguage.py -src/sdk/models/operations/connectionerrorget.py -src/sdk/models/operations/statusgeterror.py -src/sdk/models/operations/statusgetxspeakeasyerrors.py -src/sdk/models/operations/groupfirstget.py -src/sdk/models/operations/componentbodyandparamconflict.py -src/sdk/models/operations/componentbodyandparamnoconflict.py -src/sdk/models/operations/conflictingparams.py -src/sdk/models/operations/inlinebodyandparamconflict.py -src/sdk/models/operations/inlinebodyandparamnoconflict.py src/sdk/models/operations/anchortypesget.py src/sdk/models/operations/arraycircularreferenceget.py src/sdk/models/operations/circularreferenceget.py @@ -102,18 +72,31 @@ src/sdk/models/operations/objectcircularreferenceget.py src/sdk/models/operations/oneofcircularreferenceget.py src/sdk/models/operations/typedparametergenerationget.py src/sdk/models/operations/usageexamplepost.py +src/sdk/models/operations/connectionerrorget.py +src/sdk/models/operations/statusgeterror.py +src/sdk/models/operations/statusgetxspeakeasyerrors.py +src/sdk/models/operations/flattenedtypedobjectpost.py +src/sdk/models/operations/mixedtypeoneofpost.py +src/sdk/models/operations/nullableoneofrefinobjectpost.py +src/sdk/models/operations/nullableoneofschemapost.py +src/sdk/models/operations/nullableoneoftypeinobjectpost.py +src/sdk/models/operations/nullabletypedobjectpost.py +src/sdk/models/operations/primitivetypeoneofpost.py +src/sdk/models/operations/stronglytypedoneofpost.py +src/sdk/models/operations/typedobjectnullableoneofpost.py +src/sdk/models/operations/typedobjectoneofpost.py +src/sdk/models/operations/unionbigintdecimal.py +src/sdk/models/operations/uniondatenull.py +src/sdk/models/operations/uniondatetimebigint.py +src/sdk/models/operations/uniondatetimenull.py +src/sdk/models/operations/weaklytypedoneofpost.py +src/sdk/models/operations/componentbodyandparamconflict.py +src/sdk/models/operations/componentbodyandparamnoconflict.py +src/sdk/models/operations/conflictingparams.py +src/sdk/models/operations/inlinebodyandparamconflict.py +src/sdk/models/operations/inlinebodyandparamnoconflict.py src/sdk/models/operations/globalpathparameterget.py src/sdk/models/operations/globalsqueryparameterget.py -src/sdk/models/operations/nestfirstget.py -src/sdk/models/operations/nestedfirstget.py -src/sdk/models/operations/nestedsecondget.py -src/sdk/models/operations/nestedget.py -src/sdk/models/operations/paginationcursorbody.py -src/sdk/models/operations/paginationcursorparams.py -src/sdk/models/operations/paginationlimitoffsetoffsetbody.py -src/sdk/models/operations/paginationlimitoffsetoffsetparams.py -src/sdk/models/operations/paginationlimitoffsetpagebody.py -src/sdk/models/operations/paginationlimitoffsetpageparams.py src/sdk/models/operations/deepobjectqueryparamsmap.py src/sdk/models/operations/deepobjectqueryparamsobject.py src/sdk/models/operations/duplicateparam.py @@ -137,6 +120,10 @@ src/sdk/models/operations/simplepathparameterarrays.py src/sdk/models/operations/simplepathparametermaps.py src/sdk/models/operations/simplepathparameterobjects.py src/sdk/models/operations/simplepathparameterprimitives.py +src/sdk/models/operations/nestfirstget.py +src/sdk/models/operations/nestedfirstget.py +src/sdk/models/operations/nestedsecondget.py +src/sdk/models/operations/nestedget.py src/sdk/models/operations/nullableobjectpost.py src/sdk/models/operations/nullablerequiredemptyobjectpost.py src/sdk/models/operations/nullablerequiredpropertypost.py @@ -218,11 +205,6 @@ src/sdk/models/operations/requestbodyreadwriteonlyunion.py src/sdk/models/operations/requestbodywriteonly.py src/sdk/models/operations/requestbodywriteonlyoutput.py src/sdk/models/operations/requestbodywriteonlyunion.py -src/sdk/models/operations/createfile.py -src/sdk/models/operations/createresource.py -src/sdk/models/operations/deleteresource.py -src/sdk/models/operations/getresource.py -src/sdk/models/operations/updateresource.py src/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.py src/sdk/models/operations/responsebodyadditionalpropertiesdatepost.py src/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.py @@ -234,8 +216,6 @@ src/sdk/models/operations/responsebodyreadonly.py src/sdk/models/operations/responsebodystringget.py src/sdk/models/operations/responsebodyxmlget.py src/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.py -src/sdk/models/operations/retriesget.py -src/sdk/models/operations/groupsecondget.py src/sdk/models/operations/selectglobalserver.py src/sdk/models/operations/selectserverwithid.py src/sdk/models/operations/serverwithprotocoltemplate.py @@ -244,26 +224,42 @@ src/sdk/models/operations/serverwithtemplatesglobal.py src/sdk/models/operations/serversbyidwithtemplates.py src/sdk/models/operations/telemetryspeakeasyuseragentget.py src/sdk/models/operations/telemetryuseragentget.py -src/sdk/models/operations/flattenedtypedobjectpost.py -src/sdk/models/operations/mixedtypeoneofpost.py -src/sdk/models/operations/nullableoneofrefinobjectpost.py -src/sdk/models/operations/nullableoneofschemapost.py -src/sdk/models/operations/nullableoneoftypeinobjectpost.py -src/sdk/models/operations/nullabletypedobjectpost.py -src/sdk/models/operations/primitivetypeoneofpost.py -src/sdk/models/operations/stronglytypedoneofpost.py -src/sdk/models/operations/typedobjectnullableoneofpost.py -src/sdk/models/operations/typedobjectoneofpost.py -src/sdk/models/operations/unionbigintdecimal.py -src/sdk/models/operations/uniondatenull.py -src/sdk/models/operations/uniondatetimebigint.py -src/sdk/models/operations/uniondatetimenull.py -src/sdk/models/operations/weaklytypedoneofpost.py +src/sdk/models/operations/apikeyauthglobalnew.py +src/sdk/models/operations/authglobal.py +src/sdk/models/operations/basicauthnew.py +src/sdk/models/operations/multiplemixedoptionsauth.py +src/sdk/models/operations/multiplemixedschemeauth.py +src/sdk/models/operations/multipleoptionswithmixedschemesauth.py +src/sdk/models/operations/multipleoptionswithsimpleschemesauth.py +src/sdk/models/operations/multiplesimpleoptionsauth.py +src/sdk/models/operations/multiplesimpleschemeauth.py +src/sdk/models/operations/oauth2authnew.py +src/sdk/models/operations/openidconnectauthnew.py +src/sdk/models/operations/apikeyauth.py +src/sdk/models/operations/apikeyauthglobal.py +src/sdk/models/operations/basicauth.py +src/sdk/models/operations/bearerauth.py +src/sdk/models/operations/globalbearerauth.py +src/sdk/models/operations/oauth2auth.py +src/sdk/models/operations/oauth2override.py +src/sdk/models/operations/openidconnectauth.py +src/sdk/models/operations/getdocumentationperlanguage.py +src/sdk/models/operations/createfile.py +src/sdk/models/operations/createresource.py +src/sdk/models/operations/deleteresource.py +src/sdk/models/operations/getresource.py +src/sdk/models/operations/updateresource.py +src/sdk/models/operations/groupfirstget.py +src/sdk/models/operations/groupsecondget.py +src/sdk/models/operations/paginationcursorbody.py +src/sdk/models/operations/paginationcursorparams.py +src/sdk/models/operations/paginationlimitoffsetoffsetbody.py +src/sdk/models/operations/paginationlimitoffsetoffsetparams.py +src/sdk/models/operations/paginationlimitoffsetpagebody.py +src/sdk/models/operations/paginationlimitoffsetpageparams.py +src/sdk/models/operations/retriesget.py src/sdk/models/operations/put_anything_ignoredgeneration.py src/sdk/models/operations/responsebodyjsonget.py -src/sdk/models/operations/__init__.py -src/sdk/models/shared/authservicerequestbody.py -src/sdk/models/shared/security.py src/sdk/models/shared/simpleobject.py src/sdk/models/shared/enum.py src/sdk/models/shared/arraycircularreferenceobject.py @@ -276,10 +272,16 @@ src/sdk/models/shared/objectcircularreferenceobject.py src/sdk/models/shared/oneofcircularreferenceobject.py src/sdk/models/shared/fakerstrings.py src/sdk/models/shared/fakerformattedstrings.py -src/sdk/models/shared/limitoffsetconfig.py +src/sdk/models/shared/typedobject1.py +src/sdk/models/shared/nullableoneofrefinobject.py +src/sdk/models/shared/typedobject2.py +src/sdk/models/shared/nullableoneoftypeinobject.py +src/sdk/models/shared/simpleobjectwithtype.py +src/sdk/models/shared/deepobjectwithtype.py +src/sdk/models/shared/typedobject3.py +src/sdk/models/shared/deepobject.py src/sdk/models/shared/refqueryparamobjexploded.py src/sdk/models/shared/refqueryparamobj.py -src/sdk/models/shared/deepobject.py src/sdk/models/shared/nullableobject.py src/sdk/models/shared/simpleobjectcamelcase.py src/sdk/models/shared/arrobjvalue.py @@ -293,109 +295,32 @@ src/sdk/models/shared/defaultsandconsts.py src/sdk/models/shared/readwriteobject.py src/sdk/models/shared/readonlyobject.py src/sdk/models/shared/writeonlyobject.py -src/sdk/models/shared/fileresource.py -src/sdk/models/shared/exampleresource.py -src/sdk/models/shared/exampleboat.py -src/sdk/models/shared/examplecar.py src/sdk/models/shared/objwithcomplexnumbersadditionalproperties.py src/sdk/models/shared/objwithdateadditionalproperties.py src/sdk/models/shared/objwithobjadditionalproperties.py src/sdk/models/shared/objwithstringadditionalproperties.py -src/sdk/models/shared/typedobject1.py src/sdk/models/shared/objwithzerovaluecomplextypeptrs.py -src/sdk/models/shared/nullableoneofrefinobject.py -src/sdk/models/shared/typedobject2.py -src/sdk/models/shared/nullableoneoftypeinobject.py -src/sdk/models/shared/simpleobjectwithtype.py -src/sdk/models/shared/deepobjectwithtype.py -src/sdk/models/shared/typedobject3.py +src/sdk/models/shared/authservicerequestbody.py +src/sdk/models/shared/security.py +src/sdk/models/shared/fileresource.py +src/sdk/models/shared/exampleresource.py +src/sdk/models/shared/exampleboat.py +src/sdk/models/shared/examplecar.py +src/sdk/models/shared/limitoffsetconfig.py src/sdk/models/shared/alloftoallof.py src/sdk/models/shared/oneofgenerationstresstest.py src/sdk/models/shared/unsupportedenums.py -src/sdk/models/shared/__init__.py +src/sdk/models/callbacks/ignoredgenerationget.py src/sdk/models/errors/error.py src/sdk/models/errors/errortype.py src/sdk/models/errors/statusgetxspeakeasyerrors.py +src/sdk/models/__init__.py src/sdk/models/errors/__init__.py -src/sdk/models/callbacks/ignoredgenerationget.py +src/sdk/models/operations/__init__.py +src/sdk/models/shared/__init__.py src/sdk/models/callbacks/__init__.py USAGE.md -docs/models/operations/apikeyauthsecurity.md -docs/models/operations/apikeyauthtoken.md -docs/models/operations/apikeyauthresponse.md -docs/models/operations/apikeyauthglobaltoken.md -docs/models/operations/apikeyauthglobalresponse.md -docs/models/operations/basicauthsecurity.md -docs/models/operations/basicauthrequest.md -docs/models/operations/basicauthuser.md -docs/models/operations/basicauthresponse.md -docs/models/operations/bearerauthsecurity.md -docs/models/operations/bearerauthtoken.md -docs/models/operations/bearerauthresponse.md -docs/models/operations/globalbearerauthtoken.md -docs/models/operations/globalbearerauthresponse.md -docs/models/operations/oauth2authsecurity.md -docs/models/operations/oauth2authtoken.md -docs/models/operations/oauth2authresponse.md -docs/models/operations/oauth2overridesecurity.md -docs/models/operations/oauth2overriderequest.md -docs/models/operations/oauth2overridetoken.md -docs/models/operations/oauth2overrideresponse.md -docs/models/operations/openidconnectauthsecurity.md -docs/models/operations/openidconnectauthtoken.md -docs/models/operations/openidconnectauthresponse.md -docs/models/operations/apikeyauthglobalnewresponse.md -docs/models/operations/authglobalresponse.md -docs/models/operations/basicauthnewsecurity.md -docs/models/operations/basicauthnewresponse.md -docs/models/operations/multiplemixedoptionsauthsecurity.md -docs/models/operations/multiplemixedoptionsauthresponse.md -docs/models/operations/multiplemixedschemeauthsecurity.md -docs/models/operations/multiplemixedschemeauthresponse.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md -docs/models/operations/multipleoptionswithmixedschemesauthresponse.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md -docs/models/operations/multipleoptionswithsimpleschemesauthresponse.md -docs/models/operations/multiplesimpleoptionsauthsecurity.md -docs/models/operations/multiplesimpleoptionsauthresponse.md -docs/models/operations/multiplesimpleschemeauthsecurity.md -docs/models/operations/multiplesimpleschemeauthresponse.md -docs/models/operations/oauth2authnewsecurity.md -docs/models/operations/oauth2authnewresponse.md -docs/models/operations/openidconnectauthnewsecurity.md -docs/models/operations/openidconnectauthnewresponse.md -docs/models/operations/getdocumentationperlanguagerequest.md -docs/models/operations/getdocumentationperlanguageresponse.md -docs/models/operations/connectionerrorgetresponse.md -docs/models/operations/statusgeterrorrequest.md -docs/models/operations/statusgeterrorresponse.md -docs/models/operations/statusgetxspeakeasyerrorsrequest.md -docs/models/operations/statusgetxspeakeasyerrorsresponse.md -docs/models/operations/groupfirstgetresponse.md -docs/models/operations/componentbodyandparamconflictrequest.md -docs/models/operations/componentbodyandparamconflictres.md -docs/models/operations/componentbodyandparamconflictresponse.md -docs/models/operations/componentbodyandparamnoconflictrequest.md -docs/models/operations/componentbodyandparamnoconflictres.md -docs/models/operations/componentbodyandparamnoconflictresponse.md -docs/models/operations/conflictingparamsrequest.md -docs/models/operations/conflictingparamsres.md -docs/models/operations/conflictingparamsresponse.md -docs/models/operations/inlinebodyandparamconflictrequestbody.md -docs/models/operations/inlinebodyandparamconflictrequest.md -docs/models/operations/inlinebodyandparamconflictresjson.md -docs/models/operations/inlinebodyandparamconflictres.md -docs/models/operations/inlinebodyandparamconflictresponse.md -docs/models/operations/inlinebodyandparamnoconflictrequestbody.md -docs/models/operations/inlinebodyandparamnoconflictrequest.md -docs/models/operations/inlinebodyandparamnoconflictresjson.md -docs/models/operations/inlinebodyandparamnoconflictres.md -docs/models/operations/inlinebodyandparamnoconflictresponse.md -docs/models/operations/typefromanchor.md +docs/models/operations/anchortypesgettypefromanchor.md docs/models/operations/anchortypesgetresponse.md docs/models/operations/arraycircularreferencegetresponse.md docs/models/operations/circularreferencegetresponse.md @@ -406,7 +331,7 @@ docs/models/operations/datetimeparamwithdefaultresponse.md docs/models/operations/decimalparamwithdefaultrequest.md docs/models/operations/decimalparamwithdefaultresponse.md docs/models/operations/deprecatedfieldinschemapostresponse.md -docs/models/operations/deprecatedobjectinschemaget200applicationjson.md +docs/models/operations/deprecatedobjectinschemagetresponsebody.md docs/models/operations/deprecatedobjectinschemagetresponse.md docs/models/operations/deprecatedoperationnocommentsgetrequest.md docs/models/operations/deprecatedoperationnocommentsgetresponse.md @@ -414,124 +339,168 @@ docs/models/operations/deprecatedoperationwithcommentsgetrequest.md docs/models/operations/deprecatedoperationwithcommentsgetresponse.md docs/models/operations/emptyobjectgetrequest.md docs/models/operations/emptyobjectgetresponse.md -docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md +docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md docs/models/operations/emptyresponseobjectwithcommentgetresponse.md -docs/models/operations/getglobalnameoverride200applicationjson.md +docs/models/operations/getglobalnameoverrideresponsebody.md docs/models/operations/getglobalnameoverrideresponse.md -docs/models/operations/ignoredgenerationget200applicationjson.md +docs/models/operations/ignoredgenerationgetresponsebody.md docs/models/operations/ignoredgenerationgetresponse.md -docs/models/operations/ignorespostapplicationjson.md +docs/models/operations/ignorespostrequestbody.md docs/models/operations/ignorespostrequest.md docs/models/operations/ignorespostresponse.md -docs/models/operations/nameoverridegetenumnameoverride.md +docs/models/operations/enumnameoverride.md docs/models/operations/nameoverridegetrequest.md -docs/models/operations/overriddenresponse.md +docs/models/operations/nameoverridegetoverriddenresponse.md docs/models/operations/nameoverridegetresponse.md docs/models/operations/objectcircularreferencegetresponse.md docs/models/operations/oneofcircularreferencegetresponse.md -docs/models/operations/typedparametergenerationgetobj.md +docs/models/operations/obj.md docs/models/operations/typedparametergenerationgetrequest.md docs/models/operations/typedparametergenerationgetresponse.md docs/models/operations/usageexamplepostsecurity.md docs/models/operations/usageexamplepostrequestbody.md -docs/models/operations/usageexamplepostenumparameter.md -docs/models/operations/usageexamplepostoptenumparameter.md +docs/models/operations/enumparameter.md +docs/models/operations/optenumparameter.md docs/models/operations/usageexamplepostrequest.md -docs/models/operations/usageexamplepost200applicationjsonjson.md -docs/models/operations/usageexamplepost200applicationjson.md +docs/models/operations/usageexamplepostjson.md +docs/models/operations/usageexamplepostresponsebody.md docs/models/operations/usageexamplepostresponse.md +docs/models/operations/connectionerrorgetresponse.md +docs/models/operations/statusgeterrorrequest.md +docs/models/operations/statusgeterrorresponse.md +docs/models/operations/statusgetxspeakeasyerrorsrequest.md +docs/models/operations/statusgetxspeakeasyerrorsresponse.md +docs/models/operations/flattenedtypedobjectpostres.md +docs/models/operations/flattenedtypedobjectpostresponse.md +docs/models/operations/mixedtypeoneofpostrequestbody.md +docs/models/operations/mixedtypeoneofpostjson.md +docs/models/operations/mixedtypeoneofpostres.md +docs/models/operations/mixedtypeoneofpostresponse.md +docs/models/operations/nullableoneofrefinobjectpostres.md +docs/models/operations/nullableoneofrefinobjectpostresponse.md +docs/models/operations/nullableoneofschemapostrequestbody.md +docs/models/operations/nullableoneofschemapostjson.md +docs/models/operations/nullableoneofschemapostres.md +docs/models/operations/nullableoneofschemapostresponse.md +docs/models/operations/nullableoneoftypeinobjectpostres.md +docs/models/operations/nullableoneoftypeinobjectpostresponse.md +docs/models/operations/nullabletypedobjectpostres.md +docs/models/operations/nullabletypedobjectpostresponse.md +docs/models/operations/primitivetypeoneofpostrequestbody.md +docs/models/operations/primitivetypeoneofpostjson.md +docs/models/operations/primitivetypeoneofpostres.md +docs/models/operations/primitivetypeoneofpostresponse.md +docs/models/operations/stronglytypedoneofpostres.md +docs/models/operations/stronglytypedoneofpostresponse.md +docs/models/operations/typedobjectnullableoneofpostres.md +docs/models/operations/typedobjectnullableoneofpostresponse.md +docs/models/operations/typedobjectoneofpostres.md +docs/models/operations/typedobjectoneofpostresponse.md +docs/models/operations/unionbigintdecimalrequestbody.md +docs/models/operations/unionbigintdecimaljson.md +docs/models/operations/unionbigintdecimalres.md +docs/models/operations/unionbigintdecimalresponse.md +docs/models/operations/uniondatenullres.md +docs/models/operations/uniondatenullresponse.md +docs/models/operations/uniondatetimebigintrequestbody.md +docs/models/operations/uniondatetimebigintjson.md +docs/models/operations/uniondatetimebigintres.md +docs/models/operations/uniondatetimebigintresponse.md +docs/models/operations/uniondatetimenullres.md +docs/models/operations/uniondatetimenullresponse.md +docs/models/operations/weaklytypedoneofpostres.md +docs/models/operations/weaklytypedoneofpostresponse.md +docs/models/operations/componentbodyandparamconflictrequest.md +docs/models/operations/componentbodyandparamconflictres.md +docs/models/operations/componentbodyandparamconflictresponse.md +docs/models/operations/componentbodyandparamnoconflictrequest.md +docs/models/operations/componentbodyandparamnoconflictres.md +docs/models/operations/componentbodyandparamnoconflictresponse.md +docs/models/operations/conflictingparamsrequest.md +docs/models/operations/conflictingparamsres.md +docs/models/operations/conflictingparamsresponse.md +docs/models/operations/inlinebodyandparamconflictrequestbody.md +docs/models/operations/inlinebodyandparamconflictrequest.md +docs/models/operations/json.md +docs/models/operations/inlinebodyandparamconflictres.md +docs/models/operations/inlinebodyandparamconflictresponse.md +docs/models/operations/inlinebodyandparamnoconflictrequestbody.md +docs/models/operations/inlinebodyandparamnoconflictrequest.md +docs/models/operations/inlinebodyandparamnoconflictjson.md +docs/models/operations/inlinebodyandparamnoconflictres.md +docs/models/operations/inlinebodyandparamnoconflictresponse.md docs/models/operations/globalpathparametergetrequest.md docs/models/operations/globalpathparametergetres.md docs/models/operations/globalpathparametergetresponse.md docs/models/operations/globalsqueryparametergetrequest.md -docs/models/operations/globalsqueryparametergetresargs.md +docs/models/operations/args.md docs/models/operations/globalsqueryparametergetres.md docs/models/operations/globalsqueryparametergetresponse.md -docs/models/operations/nestfirstgetresponse.md -docs/models/operations/nestedfirstgetresponse.md -docs/models/operations/nestedsecondgetresponse.md -docs/models/operations/nestedgetresponse.md -docs/models/operations/paginationcursorbodyrequestbody.md -docs/models/operations/paginationcursorbodyres.md -docs/models/operations/paginationcursorbodyresponse.md -docs/models/operations/paginationcursorparamsrequest.md -docs/models/operations/paginationcursorparamsres.md -docs/models/operations/paginationcursorparamsresponse.md -docs/models/operations/paginationlimitoffsetoffsetbodyres.md -docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md -docs/models/operations/paginationlimitoffsetoffsetparamsrequest.md -docs/models/operations/paginationlimitoffsetoffsetparamsres.md -docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md -docs/models/operations/paginationlimitoffsetpagebodyres.md -docs/models/operations/paginationlimitoffsetpagebodyresponse.md -docs/models/operations/paginationlimitoffsetpageparamsrequest.md -docs/models/operations/paginationlimitoffsetpageparamsres.md -docs/models/operations/paginationlimitoffsetpageparamsresponse.md docs/models/operations/deepobjectqueryparamsmaprequest.md -docs/models/operations/deepobjectqueryparamsmapresargs.md +docs/models/operations/deepobjectqueryparamsmapargs.md docs/models/operations/deepobjectqueryparamsmapres.md docs/models/operations/deepobjectqueryparamsmapresponse.md -docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md +docs/models/operations/objarrparam.md docs/models/operations/deepobjectqueryparamsobjectrequest.md -docs/models/operations/deepobjectqueryparamsobjectresargs.md +docs/models/operations/deepobjectqueryparamsobjectargs.md docs/models/operations/deepobjectqueryparamsobjectres.md docs/models/operations/deepobjectqueryparamsobjectresponse.md docs/models/operations/duplicateparamrequest.md docs/models/operations/duplicateparamduplicateparamresponse.md docs/models/operations/duplicateparamresponse.md docs/models/operations/formqueryparamsarrayrequest.md -docs/models/operations/formqueryparamsarrayresargs.md +docs/models/operations/formqueryparamsarrayargs.md docs/models/operations/formqueryparamsarrayres.md docs/models/operations/formqueryparamsarrayresponse.md -docs/models/operations/formqueryparamscamelobjectobjparam.md -docs/models/operations/formqueryparamscamelobjectobjparamexploded.md +docs/models/operations/objparam.md +docs/models/operations/objparamexploded.md docs/models/operations/formqueryparamscamelobjectrequest.md -docs/models/operations/formqueryparamscamelobjectresargs.md +docs/models/operations/formqueryparamscamelobjectargs.md docs/models/operations/formqueryparamscamelobjectres.md docs/models/operations/formqueryparamscamelobjectresponse.md docs/models/operations/formqueryparamsmaprequest.md docs/models/operations/formqueryparamsmapres.md docs/models/operations/formqueryparamsmapresponse.md docs/models/operations/formqueryparamsobjectrequest.md -docs/models/operations/formqueryparamsobjectresargs.md +docs/models/operations/formqueryparamsobjectargs.md docs/models/operations/formqueryparamsobjectres.md docs/models/operations/formqueryparamsobjectresponse.md docs/models/operations/formqueryparamsprimitiverequest.md -docs/models/operations/formqueryparamsprimitiveresargs.md +docs/models/operations/formqueryparamsprimitiveargs.md docs/models/operations/formqueryparamsprimitiveres.md docs/models/operations/formqueryparamsprimitiveresponse.md docs/models/operations/formqueryparamsrefparamobjectrequest.md -docs/models/operations/formqueryparamsrefparamobjectresargs.md +docs/models/operations/formqueryparamsrefparamobjectargs.md docs/models/operations/formqueryparamsrefparamobjectres.md docs/models/operations/formqueryparamsrefparamobjectresponse.md docs/models/operations/headerparamsarrayrequest.md -docs/models/operations/headerparamsarrayresheaders.md +docs/models/operations/headers.md docs/models/operations/headerparamsarrayres.md docs/models/operations/headerparamsarrayresponse.md docs/models/operations/headerparamsmaprequest.md -docs/models/operations/headerparamsmapresheaders.md +docs/models/operations/headerparamsmapheaders.md docs/models/operations/headerparamsmapres.md docs/models/operations/headerparamsmapresponse.md docs/models/operations/headerparamsobjectrequest.md -docs/models/operations/headerparamsobjectresheaders.md +docs/models/operations/headerparamsobjectheaders.md docs/models/operations/headerparamsobjectres.md docs/models/operations/headerparamsobjectresponse.md docs/models/operations/headerparamsprimitiverequest.md -docs/models/operations/headerparamsprimitiveresheaders.md +docs/models/operations/headerparamsprimitiveheaders.md docs/models/operations/headerparamsprimitiveres.md docs/models/operations/headerparamsprimitiveresponse.md docs/models/operations/jsonqueryparamsobjectrequest.md -docs/models/operations/jsonqueryparamsobjectresargs.md +docs/models/operations/jsonqueryparamsobjectargs.md docs/models/operations/jsonqueryparamsobjectres.md docs/models/operations/jsonqueryparamsobjectresponse.md docs/models/operations/mixedparameterscamelcaserequest.md -docs/models/operations/mixedparameterscamelcaseresargs.md -docs/models/operations/mixedparameterscamelcaseresheaders.md +docs/models/operations/mixedparameterscamelcaseargs.md +docs/models/operations/mixedparameterscamelcaseheaders.md docs/models/operations/mixedparameterscamelcaseres.md docs/models/operations/mixedparameterscamelcaseresponse.md docs/models/operations/mixedparametersprimitivesrequest.md -docs/models/operations/mixedparametersprimitivesresargs.md -docs/models/operations/mixedparametersprimitivesresheaders.md +docs/models/operations/mixedparametersprimitivesargs.md +docs/models/operations/mixedparametersprimitivesheaders.md docs/models/operations/mixedparametersprimitivesres.md docs/models/operations/mixedparametersprimitivesresponse.md docs/models/operations/mixedqueryparamsrequest.md @@ -541,7 +510,7 @@ docs/models/operations/pathparameterjsonrequest.md docs/models/operations/pathparameterjsonres.md docs/models/operations/pathparameterjsonresponse.md docs/models/operations/pipedelimitedqueryparamsarrayrequest.md -docs/models/operations/pipedelimitedqueryparamsarrayresargs.md +docs/models/operations/pipedelimitedqueryparamsarrayargs.md docs/models/operations/pipedelimitedqueryparamsarrayres.md docs/models/operations/pipedelimitedqueryparamsarrayresponse.md docs/models/operations/simplepathparameterarraysrequest.md @@ -556,14 +525,18 @@ docs/models/operations/simplepathparameterobjectsresponse.md docs/models/operations/simplepathparameterprimitivesrequest.md docs/models/operations/simplepathparameterprimitivesres.md docs/models/operations/simplepathparameterprimitivesresponse.md +docs/models/operations/nestfirstgetresponse.md +docs/models/operations/nestedfirstgetresponse.md +docs/models/operations/nestedsecondgetresponse.md +docs/models/operations/nestedgetresponse.md docs/models/operations/nullableobjectpostres.md docs/models/operations/nullableobjectpostresponse.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md +docs/models/operations/nullableoptionalobj.md +docs/models/operations/nullablerequiredobj.md +docs/models/operations/requiredobj.md docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md docs/models/operations/nullablerequiredemptyobjectpostresponse.md -docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md +docs/models/operations/nullablerequiredenum.md docs/models/operations/nullablerequiredpropertypostrequestbody.md docs/models/operations/nullablerequiredpropertypostresponse.md docs/models/operations/nullablerequiredsharedobjectpostrequestbody.md @@ -599,123 +572,123 @@ docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseres.md docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md docs/models/operations/requestbodypostcomplexnumbertypesrequest.md -docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md +docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md docs/models/operations/requestbodypostcomplexnumbertypesresponse.md -docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md +docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md docs/models/operations/requestbodypostdefaultsandconstsresponse.md -docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md -docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md +docs/models/operations/empty.md +docs/models/operations/emptywithemptyproperties.md docs/models/operations/requestbodypostemptyobjectrequestbody.md -docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md -docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md -docs/models/operations/requestbodypostemptyobject200applicationjson.md +docs/models/operations/requestbodypostemptyobjectempty.md +docs/models/operations/emptyrespwithemptyproperies.md +docs/models/operations/requestbodypostemptyobjectresponsebody.md docs/models/operations/requestbodypostemptyobjectresponse.md -docs/models/operations/requestbodypostformdeepresform.md +docs/models/operations/form.md docs/models/operations/requestbodypostformdeepres.md docs/models/operations/requestbodypostformdeepresponse.md docs/models/operations/requestbodypostformmapprimitiveres.md docs/models/operations/requestbodypostformmapprimitiveresponse.md -docs/models/operations/requestbodypostformsimpleresform.md -docs/models/operations/requestbodypostformsimpleresheaders.md +docs/models/operations/requestbodypostformsimpleform.md +docs/models/operations/requestbodypostformsimpleheaders.md docs/models/operations/requestbodypostformsimpleres.md docs/models/operations/requestbodypostformsimpleresponse.md -docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md -docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md -docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md -docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md docs/models/operations/requestbodypostjsondatatypesbigintresponse.md -docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md -docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md -docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md docs/models/operations/requestbodypostjsondatatypesdateresponse.md -docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md -docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md -docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md -docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md docs/models/operations/requestbodypostjsondatatypesfloat32response.md -docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesint32responsebody.md docs/models/operations/requestbodypostjsondatatypesint32response.md -docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md docs/models/operations/requestbodypostjsondatatypesintegerresponse.md -docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md -docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md -docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md -docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md docs/models/operations/requestbodypostjsondatatypesnumberresponse.md -docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md docs/models/operations/requestbodypostjsondatatypesstringresponse.md docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredres.md docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md -docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredres.md docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md +docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitformres.md docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitjsonres.md docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md +docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartres.md docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md -docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md -docs/models/operations/requestbodypostnullarray200applicationjson.md +docs/models/operations/requestbodypostnullarrayresponsebody.md docs/models/operations/requestbodypostnullarrayresponse.md -docs/models/operations/requestbodypostnulldictionary200applicationjson.md +docs/models/operations/requestbodypostnulldictionaryresponsebody.md docs/models/operations/requestbodypostnulldictionaryresponse.md -docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md -docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md docs/models/operations/requestbodyputbytesres.md docs/models/operations/requestbodyputbytesresponse.md docs/models/operations/requestbodyputbyteswithparamsrequest.md -docs/models/operations/requestbodyputbyteswithparamsresargs.md +docs/models/operations/requestbodyputbyteswithparamsargs.md docs/models/operations/requestbodyputbyteswithparamsres.md docs/models/operations/requestbodyputbyteswithparamsresponse.md -docs/models/operations/requestbodyputmultipartdeepresform.md +docs/models/operations/requestbodyputmultipartdeepform.md docs/models/operations/requestbodyputmultipartdeepres.md docs/models/operations/requestbodyputmultipartdeepresponse.md -docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md +docs/models/operations/differentfilename.md docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md docs/models/operations/requestbodyputmultipartdifferentfilenameres.md docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md -docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md +docs/models/operations/file.md docs/models/operations/requestbodyputmultipartfilerequestbody.md docs/models/operations/requestbodyputmultipartfileres.md docs/models/operations/requestbodyputmultipartfileresponse.md -docs/models/operations/requestbodyputmultipartsimpleresform.md -docs/models/operations/requestbodyputmultipartsimpleresheaders.md +docs/models/operations/requestbodyputmultipartsimpleform.md +docs/models/operations/requestbodyputmultipartsimpleheaders.md docs/models/operations/requestbodyputmultipartsimpleres.md docs/models/operations/requestbodyputmultipartsimpleresponse.md docs/models/operations/requestbodyputstringres.md docs/models/operations/requestbodyputstringresponse.md docs/models/operations/requestbodyputstringwithparamsrequest.md -docs/models/operations/requestbodyputstringwithparamsresargs.md +docs/models/operations/requestbodyputstringwithparamsargs.md docs/models/operations/requestbodyputstringwithparamsres.md docs/models/operations/requestbodyputstringwithparamsresponse.md docs/models/operations/requestbodyreadandwriteresponse.md @@ -725,23 +698,13 @@ docs/models/operations/requestbodyreadwriteonlyunionresponse.md docs/models/operations/requestbodywriteonlyresponse.md docs/models/operations/requestbodywriteonlyoutputresponse.md docs/models/operations/requestbodywriteonlyunionresponse.md -docs/models/operations/createfilerequestbodyfile.md -docs/models/operations/createfilerequestbody.md -docs/models/operations/createfileresponse.md -docs/models/operations/createresourceresponse.md -docs/models/operations/deleteresourcerequest.md -docs/models/operations/deleteresourceresponse.md -docs/models/operations/getresourcerequest.md -docs/models/operations/getresourceresponse.md -docs/models/operations/updateresourcerequest.md -docs/models/operations/updateresourceresponse.md -docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md -docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md -docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md -docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md docs/models/operations/responsebodyadditionalpropertiespostresponse.md docs/models/operations/responsebodybytesgetresponse.md docs/models/operations/responsebodyemptywithheadersrequest.md @@ -750,12 +713,8 @@ docs/models/operations/responsebodyoptionalgetresponse.md docs/models/operations/responsebodyreadonlyresponse.md docs/models/operations/responsebodystringgetresponse.md docs/models/operations/responsebodyxmlgetresponse.md -docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md +docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md -docs/models/operations/retriesgetrequest.md -docs/models/operations/retriesgetretries.md -docs/models/operations/retriesgetresponse.md -docs/models/operations/groupsecondgetresponse.md docs/models/operations/selectglobalserverresponse.md docs/models/operations/selectserverwithidresponse.md docs/models/operations/serverwithprotocoltemplateresponse.md @@ -767,84 +726,140 @@ docs/models/operations/telemetryspeakeasyuseragentgetres.md docs/models/operations/telemetryspeakeasyuseragentgetresponse.md docs/models/operations/telemetryuseragentgetres.md docs/models/operations/telemetryuseragentgetresponse.md -docs/models/operations/flattenedtypedobjectpostres.md -docs/models/operations/flattenedtypedobjectpostresponse.md -docs/models/operations/mixedtypeoneofpostrequestbody.md -docs/models/operations/mixedtypeoneofpostresjson.md -docs/models/operations/mixedtypeoneofpostres.md -docs/models/operations/mixedtypeoneofpostresponse.md -docs/models/operations/nullableoneofrefinobjectpostres.md -docs/models/operations/nullableoneofrefinobjectpostresponse.md -docs/models/operations/nullableoneofschemapostrequestbody.md -docs/models/operations/nullableoneofschemapostresjson.md -docs/models/operations/nullableoneofschemapostres.md -docs/models/operations/nullableoneofschemapostresponse.md -docs/models/operations/nullableoneoftypeinobjectpostres.md -docs/models/operations/nullableoneoftypeinobjectpostresponse.md -docs/models/operations/nullabletypedobjectpostres.md -docs/models/operations/nullabletypedobjectpostresponse.md -docs/models/operations/primitivetypeoneofpostrequestbody.md -docs/models/operations/primitivetypeoneofpostresjson.md -docs/models/operations/primitivetypeoneofpostres.md -docs/models/operations/primitivetypeoneofpostresponse.md -docs/models/operations/stronglytypedoneofpostres.md -docs/models/operations/stronglytypedoneofpostresponse.md -docs/models/operations/typedobjectnullableoneofpostres.md -docs/models/operations/typedobjectnullableoneofpostresponse.md -docs/models/operations/typedobjectoneofpostres.md -docs/models/operations/typedobjectoneofpostresponse.md -docs/models/operations/unionbigintdecimalrequestbody.md -docs/models/operations/unionbigintdecimalresjson.md -docs/models/operations/unionbigintdecimalres.md -docs/models/operations/unionbigintdecimalresponse.md -docs/models/operations/uniondatenullres.md -docs/models/operations/uniondatenullresponse.md -docs/models/operations/uniondatetimebigintrequestbody.md -docs/models/operations/uniondatetimebigintresjson.md -docs/models/operations/uniondatetimebigintres.md -docs/models/operations/uniondatetimebigintresponse.md -docs/models/operations/uniondatetimenullres.md -docs/models/operations/uniondatetimenullresponse.md -docs/models/operations/weaklytypedoneofpostres.md -docs/models/operations/weaklytypedoneofpostresponse.md -docs/models/operations/putanythingignoredgeneration200applicationjson.md +docs/models/operations/apikeyauthglobalnewresponse.md +docs/models/operations/authglobalresponse.md +docs/models/operations/basicauthnewsecurity.md +docs/models/operations/basicauthnewresponse.md +docs/models/operations/multiplemixedoptionsauthsecurity.md +docs/models/operations/multiplemixedoptionsauthresponse.md +docs/models/operations/multiplemixedschemeauthsecurity.md +docs/models/operations/multiplemixedschemeauthresponse.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md +docs/models/operations/multipleoptionswithmixedschemesauthresponse.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md +docs/models/operations/multipleoptionswithsimpleschemesauthresponse.md +docs/models/operations/multiplesimpleoptionsauthsecurity.md +docs/models/operations/multiplesimpleoptionsauthresponse.md +docs/models/operations/multiplesimpleschemeauthsecurity.md +docs/models/operations/multiplesimpleschemeauthresponse.md +docs/models/operations/oauth2authnewsecurity.md +docs/models/operations/oauth2authnewresponse.md +docs/models/operations/openidconnectauthnewsecurity.md +docs/models/operations/openidconnectauthnewresponse.md +docs/models/operations/apikeyauthsecurity.md +docs/models/operations/apikeyauthtoken.md +docs/models/operations/apikeyauthresponse.md +docs/models/operations/apikeyauthglobaltoken.md +docs/models/operations/apikeyauthglobalresponse.md +docs/models/operations/basicauthsecurity.md +docs/models/operations/basicauthrequest.md +docs/models/operations/basicauthuser.md +docs/models/operations/basicauthresponse.md +docs/models/operations/bearerauthsecurity.md +docs/models/operations/bearerauthtoken.md +docs/models/operations/bearerauthresponse.md +docs/models/operations/globalbearerauthtoken.md +docs/models/operations/globalbearerauthresponse.md +docs/models/operations/oauth2authsecurity.md +docs/models/operations/oauth2authtoken.md +docs/models/operations/oauth2authresponse.md +docs/models/operations/oauth2overridesecurity.md +docs/models/operations/oauth2overriderequest.md +docs/models/operations/oauth2overridetoken.md +docs/models/operations/oauth2overrideresponse.md +docs/models/operations/openidconnectauthsecurity.md +docs/models/operations/openidconnectauthtoken.md +docs/models/operations/openidconnectauthresponse.md +docs/models/operations/getdocumentationperlanguagerequest.md +docs/models/operations/getdocumentationperlanguageresponse.md +docs/models/operations/createfilefile.md +docs/models/operations/createfilerequestbody.md +docs/models/operations/createfileresponse.md +docs/models/operations/createresourceresponse.md +docs/models/operations/deleteresourcerequest.md +docs/models/operations/deleteresourceresponse.md +docs/models/operations/getresourcerequest.md +docs/models/operations/getresourceresponse.md +docs/models/operations/updateresourcerequest.md +docs/models/operations/updateresourceresponse.md +docs/models/operations/groupfirstgetresponse.md +docs/models/operations/groupsecondgetresponse.md +docs/models/operations/paginationcursorbodyrequestbody.md +docs/models/operations/paginationcursorbodyres.md +docs/models/operations/paginationcursorbodyresponse.md +docs/models/operations/paginationcursorparamsrequest.md +docs/models/operations/paginationcursorparamsres.md +docs/models/operations/paginationcursorparamsresponse.md +docs/models/operations/paginationlimitoffsetoffsetbodyres.md +docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md +docs/models/operations/paginationlimitoffsetoffsetparamsrequest.md +docs/models/operations/paginationlimitoffsetoffsetparamsres.md +docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md +docs/models/operations/paginationlimitoffsetpagebodyres.md +docs/models/operations/paginationlimitoffsetpagebodyresponse.md +docs/models/operations/paginationlimitoffsetpageparamsrequest.md +docs/models/operations/paginationlimitoffsetpageparamsres.md +docs/models/operations/paginationlimitoffsetpageparamsresponse.md +docs/models/operations/retriesgetrequest.md +docs/models/operations/retriesgetretries.md +docs/models/operations/retriesgetresponse.md +docs/models/operations/putanythingignoredgenerationresponsebody.md docs/models/operations/putanythingignoredgenerationresponse.md docs/models/operations/responsebodyjsongetresponse.md -docs/models/shared/authservicerequestbodybasicauth.md -docs/models/shared/authservicerequestbodyheaderauth.md -docs/models/shared/authservicerequestbody.md -docs/models/shared/schemebasicauth.md -docs/models/shared/security.md -docs/models/shared/simpleobjectint32enum.md -docs/models/shared/simpleobjectintenum.md +docs/models/shared/int32enum.md +docs/models/shared/intenum.md docs/models/shared/simpleobject.md docs/models/shared/enumt.md docs/models/shared/arraycircularreferenceobject.md docs/models/shared/validcircularreferenceobject.md -docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md +docs/models/shared/deprecatedenum.md docs/models/shared/deprecatedfieldinobject.md docs/models/shared/deprecatedobject.md docs/models/shared/emptyobjectparam.md -docs/models/shared/httpbinsimplejsonobjectslideshowslides.md -docs/models/shared/httpbinsimplejsonobjectslideshow.md +docs/models/shared/slides.md +docs/models/shared/slideshow.md docs/models/shared/httpbinsimplejsonobject.md docs/models/shared/objectcircularreferenceobject.md -docs/models/shared/oneofcircularreferenceobjectchild.md +docs/models/shared/child.md docs/models/shared/oneofcircularreferenceobject.md docs/models/shared/fakerstrings.md docs/models/shared/fakerformattedstrings.md -docs/models/shared/limitoffsetconfig.md +docs/models/shared/flattenedtypedobject1.md +docs/models/shared/typedobject1type.md +docs/models/shared/typedobject1.md +docs/models/shared/nullableoneoftwo.md +docs/models/shared/oneofone.md +docs/models/shared/nullableoneofrefinobject.md +docs/models/shared/typedobject2type.md +docs/models/shared/typedobject2.md +docs/models/shared/nullableoneoftypeinobjectnullableoneoftwo.md +docs/models/shared/nullableoneoftypeinobject.md +docs/models/shared/stronglytypedoneofobject.md +docs/models/shared/simpleobjectwithtypeint32enum.md +docs/models/shared/simpleobjectwithtypeintenum.md +docs/models/shared/simpleobjectwithtype.md +docs/models/shared/deepobjectwithtypeany.md +docs/models/shared/deepobjectwithtype.md +docs/models/shared/typedobjectnullableoneof.md +docs/models/shared/typedobjectoneof.md +docs/models/shared/typedobject3type.md +docs/models/shared/typedobject3.md +docs/models/shared/weaklytypedoneofobject.md +docs/models/shared/anyt.md +docs/models/shared/deepobject.md docs/models/shared/refqueryparamobjexploded.md docs/models/shared/refqueryparamobj.md -docs/models/shared/deepobjectany.md -docs/models/shared/deepobject.md docs/models/shared/nullableobject.md -docs/models/shared/simpleobjectcamelcaseint32enumval.md -docs/models/shared/simpleobjectcamelcaseintenumval.md +docs/models/shared/int32enumval.md +docs/models/shared/intenumval.md docs/models/shared/simpleobjectcamelcase.md docs/models/shared/arrobjvalue.md docs/models/shared/arrobjvaluecamelcase.md -docs/models/shared/deepobjectcamelcaseanyval.md +docs/models/shared/anyval.md docs/models/shared/deepobjectcamelcase.md docs/models/shared/mapobjvalue.md docs/models/shared/mapobjvaluecamelcase.md @@ -854,97 +869,82 @@ docs/models/shared/defaultsandconstsoutputconstenumstr.md docs/models/shared/defaultsandconstsoutputdefaultenumint.md docs/models/shared/defaultsandconstsoutputdefaultenumstr.md docs/models/shared/defaultsandconstsoutput.md -docs/models/shared/defaultsandconstsconstenumint.md -docs/models/shared/defaultsandconstsconstenumstr.md -docs/models/shared/defaultsandconstsdefaultenumint.md -docs/models/shared/defaultsandconstsdefaultenumstr.md +docs/models/shared/constenumint.md +docs/models/shared/constenumstr.md +docs/models/shared/defaultenumint.md +docs/models/shared/defaultenumstr.md docs/models/shared/defaultsandconsts.md -docs/models/shared/readwriteobjectinput.md +docs/models/shared/readwriteobject.md docs/models/shared/readwriteobjectoutput.md docs/models/shared/readonlyobject.md docs/models/shared/readonlyobjectinput.md docs/models/shared/weaklytypedoneofreadonlyobject.md docs/models/shared/weaklytypedoneofreadonlyobjectinput.md docs/models/shared/weaklytypedoneofreadwriteobjectoutput.md -docs/models/shared/weaklytypedoneofreadwriteobjectinput.md +docs/models/shared/weaklytypedoneofreadwriteobject.md docs/models/shared/writeonlyobject.md docs/models/shared/writeonlyobjectoutput.md docs/models/shared/weaklytypedoneofwriteonlyobjectoutput.md docs/models/shared/weaklytypedoneofwriteonlyobject.md +docs/models/shared/objwithcomplexnumbersadditionalproperties.md +docs/models/shared/objwithdateadditionalproperties.md +docs/models/shared/objwithobjadditionalproperties.md +docs/models/shared/objwithstringadditionalproperties.md +docs/models/shared/objwithzerovaluecomplextypeptrs.md +docs/models/shared/basicauth.md +docs/models/shared/headerauth.md +docs/models/shared/authservicerequestbody.md +docs/models/shared/schemebasicauth.md +docs/models/shared/security.md docs/models/shared/fileresource.md -docs/models/shared/exampleresourcechocolates.md -docs/models/shared/exampleresourceenumnumber.md -docs/models/shared/exampleresourceenumstr.md +docs/models/shared/chocolates.md +docs/models/shared/enumnumber.md +docs/models/shared/enumstr.md docs/models/shared/exampleresource.md docs/models/shared/examplevehicle.md -docs/models/shared/exampleboattype.md +docs/models/shared/type.md docs/models/shared/exampleboat.md docs/models/shared/examplecartype.md docs/models/shared/examplecar.md -docs/models/shared/objwithcomplexnumbersadditionalproperties.md -docs/models/shared/objwithdateadditionalproperties.md -docs/models/shared/objwithobjadditionalproperties.md -docs/models/shared/objwithstringadditionalproperties.md -docs/models/shared/typedobject1type.md -docs/models/shared/typedobject1.md -docs/models/shared/objwithzerovaluecomplextypeptrs.md -docs/models/shared/flattenedtypedobject1.md -docs/models/shared/nullableoneofrefinobjectnullableoneoftwo.md -docs/models/shared/nullableoneofrefinobjectoneofone.md -docs/models/shared/nullableoneofrefinobject.md -docs/models/shared/typedobject2type.md -docs/models/shared/typedobject2.md -docs/models/shared/nullableoneoftypeinobjectnullableoneoftwo.md -docs/models/shared/nullableoneoftypeinobject.md -docs/models/shared/stronglytypedoneofobject.md -docs/models/shared/simpleobjectwithtypeint32enum.md -docs/models/shared/simpleobjectwithtypeintenum.md -docs/models/shared/simpleobjectwithtype.md -docs/models/shared/deepobjectwithtypeany.md -docs/models/shared/deepobjectwithtype.md -docs/models/shared/typedobjectnullableoneof.md -docs/models/shared/typedobjectoneof.md -docs/models/shared/typedobject3type.md -docs/models/shared/typedobject3.md -docs/models/shared/weaklytypedoneofobject.md +docs/models/shared/limitoffsetconfig.md docs/models/shared/alloftoallof.md docs/models/shared/numericunion.md -docs/models/shared/oneofgenerationstresstestoneoffromarrayoftypes.md -docs/models/shared/oneofgenerationstresstestoneofsametype2.md -docs/models/shared/oneofgenerationstresstestoneofsametype.md +docs/models/shared/oneoffromarrayoftypes.md +docs/models/shared/two.md +docs/models/shared/oneofsametype.md docs/models/shared/oneofgenerationstresstest.md docs/models/shared/primitivetypeunion.md docs/models/shared/unsupportedenums.md -docs/models/errors/error.md -docs/models/errors/errortype.md -docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md docs/models/callbacks/ignoredgenerationgetsingledignoredcallbackoperationresponse.md docs/models/callbacks/ignoredgenerationgetsingledignoredcallbackoperationrequestbody.md docs/models/callbacks/ignoredgenerationgetnotignoredcallbackresponse.md docs/models/callbacks/ignoredgenerationgetnotignoredcallbackrequestbody.md +docs/models/errors/error.md +docs/models/errors/errortype.md +docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md docs/sdks/sdk/README.md -docs/sdks/auth/README.md -docs/sdks/authnew/README.md -docs/sdks/documentation/README.md +docs/sdks/generation/README.md docs/sdks/errors/README.md -docs/sdks/first/README.md +docs/sdks/unions/README.md docs/sdks/flattening/README.md -docs/sdks/generation/README.md docs/sdks/globals/README.md +docs/sdks/parameters/README.md docs/sdks/nest/README.md -docs/sdks/nestfirst/README.md +docs/sdks/sdkfirst/README.md docs/sdks/nested/README.md -docs/sdks/nestedfirst/README.md -docs/sdks/nestedsecond/README.md -docs/sdks/pagination/README.md -docs/sdks/parameters/README.md +docs/sdks/sdknestedfirst/README.md +docs/sdks/sdksecond/README.md docs/sdks/requestbodies/README.md -docs/sdks/resource/README.md docs/sdks/responsebodies/README.md -docs/models/utils/retryconfig.md -docs/sdks/retries/README.md -docs/sdks/second/README.md docs/sdks/servers/README.md docs/sdks/telemetry/README.md -docs/sdks/unions/README.md +docs/sdks/authnew/README.md +docs/sdks/auth/README.md +docs/sdks/documentation/README.md +docs/sdks/resource/README.md +docs/sdks/first/README.md +docs/sdks/second/README.md +docs/sdks/pagination/README.md +docs/models/utils/retryconfig.md +docs/sdks/retries/README.md .gitattributes \ No newline at end of file diff --git a/python-client-sdk/gen.yaml b/python-client-sdk/gen.yaml index f39491c9f..a671a5d20 100755 --- a/python-client-sdk/gen.yaml +++ b/python-client-sdk/gen.yaml @@ -2,8 +2,8 @@ configVersion: 1.0.0 management: docChecksum: 0c1717dc8f9e83b99bad896fa719645c docVersion: 0.1.0 - speakeasyVersion: 1.112.1 - generationVersion: 2.173.0 + speakeasyVersion: 1.114.1 + generationVersion: 2.181.1 generation: comments: {} sdkClassName: SDK @@ -11,9 +11,9 @@ generation: features: python: additionalProperties: 0.1.0 - core: 3.3.1 + core: 4.1.0 deprecations: 2.81.1 - docs: 0.3.7 + docs: 0.3.9 downloadStreams: 0.0.2 enums: 2.81.1 errors: 2.81.7 @@ -33,11 +33,19 @@ features: retries: 2.82.0 serverIDs: 2.81.1 python: - version: 2.0.4 + version: 3.0.0 author: Speakeasy clientServerStatusCodesAsErrors: true description: Python Client SDK Generated by Speakeasy flattenGlobalSecurity: false + imports: + option: openapi + paths: + callbacks: models/callbacks + errors: models/errors + operations: models/operations + shared: models/shared + webhooks: models/webhooks installationURL: https://github.com/speakeasy-api/openapi-generation-tests.git#subdirectory=python-client-sdk maxMethodParams: 5 packageName: openapi diff --git a/python-client-sdk/setup.py b/python-client-sdk/setup.py index e9f256f05..2c2280f96 100755 --- a/python-client-sdk/setup.py +++ b/python-client-sdk/setup.py @@ -10,7 +10,7 @@ setuptools.setup( name="openapi", - version="2.0.4", + version="3.0.0", author="Speakeasy", description="Python Client SDK Generated by Speakeasy", long_description=long_description, diff --git a/python-client-sdk/src/sdk/errors.py b/python-client-sdk/src/sdk/errors.py index 1b17e7c9e..44e0ead3b 100755 --- a/python-client-sdk/src/sdk/errors.py +++ b/python-client-sdk/src/sdk/errors.py @@ -101,7 +101,7 @@ def status_get_x_speakeasy_errors(self, status_code: int, server_url: Optional[s raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code == 501: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, errors.StatusGetXSpeakeasyErrors501ApplicationJSON) + out = utils.unmarshal_json(http_res.text, errors.StatusGetXSpeakeasyErrorsResponseBody) out.raw_response = http_res raise out else: diff --git a/python-client-sdk/src/sdk/generation.py b/python-client-sdk/src/sdk/generation.py index 151b12a83..ef769278c 100755 --- a/python-client-sdk/src/sdk/generation.py +++ b/python-client-sdk/src/sdk/generation.py @@ -32,7 +32,7 @@ def anchor_types_get(self) -> operations.AnchorTypesGetResponse: if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.TypeFromAnchor]) + out = utils.unmarshal_json(http_res.text, Optional[operations.AnchorTypesGetTypeFromAnchor]) res.type_from_anchor = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) @@ -225,8 +225,8 @@ def deprecated_object_in_schema_get(self) -> operations.DeprecatedObjectInSchema if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.DeprecatedObjectInSchemaGet200ApplicationJSON]) - res.deprecated_object_in_schema_get_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.DeprecatedObjectInSchemaGetResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -367,8 +367,8 @@ def global_name_overridden(self) -> operations.GetGlobalNameOverrideResponse: if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.GetGlobalNameOverride200ApplicationJSON]) - res.get_global_name_override_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.GetGlobalNameOverrideResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -394,8 +394,8 @@ def ignored_generation_get(self) -> operations.IgnoredGenerationGetResponse: if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.IgnoredGenerationGet200ApplicationJSON]) - res.ignored_generation_get_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.IgnoredGenerationGetResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -404,7 +404,7 @@ def ignored_generation_get(self) -> operations.IgnoredGenerationGetResponse: return res - def ignores_post(self, request_body: operations.IgnoresPostApplicationJSON, test_param: Optional[str] = None) -> operations.IgnoresPostResponse: + def ignores_post(self, request_body: operations.IgnoresPostRequestBody, test_param: Optional[str] = None) -> operations.IgnoresPostResponse: request = operations.IgnoresPostRequest( request_body=request_body, test_param=test_param, @@ -442,7 +442,7 @@ def ignores_post(self, request_body: operations.IgnoresPostApplicationJSON, test return res - def name_override(self, test_enum_query_param: operations.NameOverrideGetEnumNameOverride, test_query_param: str) -> operations.NameOverrideGetResponse: + def name_override(self, test_enum_query_param: operations.EnumNameOverride, test_query_param: str) -> operations.NameOverrideGetResponse: request = operations.NameOverrideGetRequest( test_enum_query_param=test_enum_query_param, test_query_param=test_query_param, @@ -465,7 +465,7 @@ def name_override(self, test_enum_query_param: operations.NameOverrideGetEnumNam if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.OverriddenResponse]) + out = utils.unmarshal_json(http_res.text, Optional[operations.NameOverrideGetOverriddenResponse]) res.overridden_response = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) @@ -529,7 +529,7 @@ def one_of_circular_reference_get(self) -> operations.OneOfCircularReferenceGetR return res - def typed_parameter_generation_get(self, bigint: Optional[int] = None, date_: Optional[date] = None, decimal: Optional[Decimal] = None, obj: Optional[operations.TypedParameterGenerationGetObj] = None) -> operations.TypedParameterGenerationGetResponse: + def typed_parameter_generation_get(self, bigint: Optional[int] = None, date_: Optional[date] = None, decimal: Optional[Decimal] = None, obj: Optional[operations.Obj] = None) -> operations.TypedParameterGenerationGetResponse: request = operations.TypedParameterGenerationGetRequest( bigint=bigint, date_=date_, @@ -585,8 +585,8 @@ def usage_example_post(self, request: operations.UsageExamplePostRequest, securi if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.UsageExamplePost200ApplicationJSON]) - res.usage_example_post_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.UsageExamplePostResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: diff --git a/python-client-sdk/src/sdk/models/__init__.py b/python-client-sdk/src/sdk/models/__init__.py index 36628d6cc..722bb9982 100755 --- a/python-client-sdk/src/sdk/models/__init__.py +++ b/python-client-sdk/src/sdk/models/__init__.py @@ -1,3 +1,4 @@ """Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" -# __init__.py + +# package diff --git a/python-client-sdk/src/sdk/models/errors/__init__.py b/python-client-sdk/src/sdk/models/errors/__init__.py index f9929ed98..cb0b37edf 100755 --- a/python-client-sdk/src/sdk/models/errors/__init__.py +++ b/python-client-sdk/src/sdk/models/errors/__init__.py @@ -2,6 +2,7 @@ from .error import * from .errortype import * +from .sdkerror import * from .statusgetxspeakeasyerrors import * -from .sdkerror import SDKError -__all__ = ["Error","ErrorType","StatusGetXSpeakeasyErrors501ApplicationJSON","SDKError"] + +__all__ = ["Error","ErrorType","SDKError","StatusGetXSpeakeasyErrorsResponseBody"] diff --git a/python-client-sdk/src/sdk/models/errors/error.py b/python-client-sdk/src/sdk/models/errors/error.py index c4d3b9b48..1efbc9f6f 100755 --- a/python-client-sdk/src/sdk/models/errors/error.py +++ b/python-client-sdk/src/sdk/models/errors/error.py @@ -2,7 +2,7 @@ from __future__ import annotations import dataclasses -from ..errors import errortype as errors_errortype +from .errortype import ErrorType from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -14,7 +14,7 @@ class Error(Exception): code: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('code'), 'exclude': lambda f: f is None }}) message: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('message'), 'exclude': lambda f: f is None }}) - type: Optional[errors_errortype.ErrorType] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('type'), 'exclude': lambda f: f is None }}) + type: Optional[ErrorType] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('type'), 'exclude': lambda f: f is None }}) def __str__(self) -> str: diff --git a/python-client-sdk/src/sdk/models/errors/statusgetxspeakeasyerrors.py b/python-client-sdk/src/sdk/models/errors/statusgetxspeakeasyerrors.py index ce312c49b..153fcf4a7 100755 --- a/python-client-sdk/src/sdk/models/errors/statusgetxspeakeasyerrors.py +++ b/python-client-sdk/src/sdk/models/errors/statusgetxspeakeasyerrors.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..errors import errortype as errors_errortype +from .errortype import ErrorType from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -12,13 +12,13 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class StatusGetXSpeakeasyErrors501ApplicationJSON(Exception): +class StatusGetXSpeakeasyErrorsResponseBody(Exception): r"""Not Implemented""" code: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('code'), 'exclude': lambda f: f is None }}) message: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('message'), 'exclude': lambda f: f is None }}) raw_response: Optional[requests_http.Response] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'exclude': lambda f: True }}) r"""Raw HTTP response; suitable for custom response parsing""" - type: Optional[errors_errortype.ErrorType] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('type'), 'exclude': lambda f: f is None }}) + type: Optional[ErrorType] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('type'), 'exclude': lambda f: f is None }}) def __str__(self) -> str: diff --git a/python-client-sdk/src/sdk/models/operations/__init__.py b/python-client-sdk/src/sdk/models/operations/__init__.py index ec3c770bf..37dfda318 100755 --- a/python-client-sdk/src/sdk/models/operations/__init__.py +++ b/python-client-sdk/src/sdk/models/operations/__init__.py @@ -209,4 +209,4 @@ from .usageexamplepost import * from .weaklytypedoneofpost import * -__all__ = ["APIKeyAuthGlobalNewResponse","APIKeyAuthGlobalResponse","APIKeyAuthGlobalToken","APIKeyAuthResponse","APIKeyAuthSecurity","APIKeyAuthToken","AnchorTypesGetResponse","ArrayCircularReferenceGetResponse","AuthGlobalResponse","BasicAuthNewResponse","BasicAuthNewSecurity","BasicAuthRequest","BasicAuthResponse","BasicAuthSecurity","BasicAuthUser","BearerAuthResponse","BearerAuthSecurity","BearerAuthToken","CircularReferenceGetResponse","ComponentBodyAndParamConflictRequest","ComponentBodyAndParamConflictRes","ComponentBodyAndParamConflictResponse","ComponentBodyAndParamNoConflictRequest","ComponentBodyAndParamNoConflictRes","ComponentBodyAndParamNoConflictResponse","ConflictingParamsRequest","ConflictingParamsRes","ConflictingParamsResponse","ConnectionErrorGetResponse","CreateFileRequestBody","CreateFileRequestBodyFile","CreateFileResponse","CreateResourceResponse","DateParamWithDefaultRequest","DateParamWithDefaultResponse","DateTimeParamWithDefaultRequest","DateTimeParamWithDefaultResponse","DecimalParamWithDefaultRequest","DecimalParamWithDefaultResponse","DeepObjectQueryParamsMapRequest","DeepObjectQueryParamsMapRes","DeepObjectQueryParamsMapResArgs","DeepObjectQueryParamsMapResponse","DeepObjectQueryParamsObjectObjArrParam","DeepObjectQueryParamsObjectRequest","DeepObjectQueryParamsObjectRes","DeepObjectQueryParamsObjectResArgs","DeepObjectQueryParamsObjectResponse","DeleteResourceRequest","DeleteResourceResponse","DeprecatedFieldInSchemaPostResponse","DeprecatedObjectInSchemaGet200ApplicationJSON","DeprecatedObjectInSchemaGetResponse","DeprecatedOperationNoCommentsGetRequest","DeprecatedOperationNoCommentsGetResponse","DeprecatedOperationWithCommentsGetRequest","DeprecatedOperationWithCommentsGetResponse","DuplicateParamDuplicateParamResponse","DuplicateParamRequest","DuplicateParamResponse","EmptyObjectGetRequest","EmptyObjectGetResponse","EmptyResponseObjectWithCommentGet200ApplicationOctetStream","EmptyResponseObjectWithCommentGetResponse","FlattenedTypedObjectPostRes","FlattenedTypedObjectPostResponse","FormQueryParamsArrayRequest","FormQueryParamsArrayRes","FormQueryParamsArrayResArgs","FormQueryParamsArrayResponse","FormQueryParamsCamelObjectObjParam","FormQueryParamsCamelObjectObjParamExploded","FormQueryParamsCamelObjectRequest","FormQueryParamsCamelObjectRes","FormQueryParamsCamelObjectResArgs","FormQueryParamsCamelObjectResponse","FormQueryParamsMapRequest","FormQueryParamsMapRes","FormQueryParamsMapResponse","FormQueryParamsObjectRequest","FormQueryParamsObjectRes","FormQueryParamsObjectResArgs","FormQueryParamsObjectResponse","FormQueryParamsPrimitiveRequest","FormQueryParamsPrimitiveRes","FormQueryParamsPrimitiveResArgs","FormQueryParamsPrimitiveResponse","FormQueryParamsRefParamObjectRequest","FormQueryParamsRefParamObjectRes","FormQueryParamsRefParamObjectResArgs","FormQueryParamsRefParamObjectResponse","GetDocumentationPerLanguageRequest","GetDocumentationPerLanguageResponse","GetGlobalNameOverride200ApplicationJSON","GetGlobalNameOverrideResponse","GetResourceRequest","GetResourceResponse","GlobalBearerAuthResponse","GlobalBearerAuthToken","GlobalPathParameterGetRequest","GlobalPathParameterGetRes","GlobalPathParameterGetResponse","GlobalsQueryParameterGetRequest","GlobalsQueryParameterGetRes","GlobalsQueryParameterGetResArgs","GlobalsQueryParameterGetResponse","GroupFirstGetResponse","GroupSecondGetResponse","HeaderParamsArrayRequest","HeaderParamsArrayRes","HeaderParamsArrayResHeaders","HeaderParamsArrayResponse","HeaderParamsMapRequest","HeaderParamsMapRes","HeaderParamsMapResHeaders","HeaderParamsMapResponse","HeaderParamsObjectRequest","HeaderParamsObjectRes","HeaderParamsObjectResHeaders","HeaderParamsObjectResponse","HeaderParamsPrimitiveRequest","HeaderParamsPrimitiveRes","HeaderParamsPrimitiveResHeaders","HeaderParamsPrimitiveResponse","IgnoredGenerationGet200ApplicationJSON","IgnoredGenerationGetResponse","IgnoresPostApplicationJSON","IgnoresPostRequest","IgnoresPostResponse","InlineBodyAndParamConflictRequest","InlineBodyAndParamConflictRequestBody","InlineBodyAndParamConflictRes","InlineBodyAndParamConflictResJSON","InlineBodyAndParamConflictResponse","InlineBodyAndParamNoConflictRequest","InlineBodyAndParamNoConflictRequestBody","InlineBodyAndParamNoConflictRes","InlineBodyAndParamNoConflictResJSON","InlineBodyAndParamNoConflictResponse","JSONQueryParamsObjectRequest","JSONQueryParamsObjectRes","JSONQueryParamsObjectResArgs","JSONQueryParamsObjectResponse","MixedParametersCamelCaseRequest","MixedParametersCamelCaseRes","MixedParametersCamelCaseResArgs","MixedParametersCamelCaseResHeaders","MixedParametersCamelCaseResponse","MixedParametersPrimitivesRequest","MixedParametersPrimitivesRes","MixedParametersPrimitivesResArgs","MixedParametersPrimitivesResHeaders","MixedParametersPrimitivesResponse","MixedQueryParamsRequest","MixedQueryParamsRes","MixedQueryParamsResponse","MixedTypeOneOfPostRequestBody","MixedTypeOneOfPostRes","MixedTypeOneOfPostResJSON","MixedTypeOneOfPostResponse","MultipleMixedOptionsAuthResponse","MultipleMixedOptionsAuthSecurity","MultipleMixedSchemeAuthResponse","MultipleMixedSchemeAuthSecurity","MultipleOptionsWithMixedSchemesAuthResponse","MultipleOptionsWithMixedSchemesAuthSecurity","MultipleOptionsWithMixedSchemesAuthSecurityOption1","MultipleOptionsWithMixedSchemesAuthSecurityOption2","MultipleOptionsWithSimpleSchemesAuthResponse","MultipleOptionsWithSimpleSchemesAuthSecurity","MultipleOptionsWithSimpleSchemesAuthSecurityOption1","MultipleOptionsWithSimpleSchemesAuthSecurityOption2","MultipleSimpleOptionsAuthResponse","MultipleSimpleOptionsAuthSecurity","MultipleSimpleSchemeAuthResponse","MultipleSimpleSchemeAuthSecurity","NameOverrideGetEnumNameOverride","NameOverrideGetRequest","NameOverrideGetResponse","NestFirstGetResponse","NestedFirstGetResponse","NestedGetResponse","NestedSecondGetResponse","NullableObjectPostRes","NullableObjectPostResponse","NullableOneOfRefInObjectPostRes","NullableOneOfRefInObjectPostResponse","NullableOneOfSchemaPostRequestBody","NullableOneOfSchemaPostRes","NullableOneOfSchemaPostResJSON","NullableOneOfSchemaPostResponse","NullableOneOfTypeInObjectPostRes","NullableOneOfTypeInObjectPostResponse","NullableRequiredEmptyObjectPostRequestBody","NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj","NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj","NullableRequiredEmptyObjectPostRequestBodyRequiredObj","NullableRequiredEmptyObjectPostResponse","NullableRequiredPropertyPostRequestBody","NullableRequiredPropertyPostRequestBodyNullableRequiredEnum","NullableRequiredPropertyPostResponse","NullableRequiredSharedObjectPostRequestBody","NullableRequiredSharedObjectPostResponse","NullableTypedObjectPostRes","NullableTypedObjectPostResponse","Oauth2AuthNewResponse","Oauth2AuthNewSecurity","Oauth2AuthResponse","Oauth2AuthSecurity","Oauth2AuthToken","Oauth2OverrideRequest","Oauth2OverrideResponse","Oauth2OverrideSecurity","Oauth2OverrideToken","ObjectCircularReferenceGetResponse","OneOfCircularReferenceGetResponse","OpenIDConnectAuthNewResponse","OpenIDConnectAuthNewSecurity","OpenIDConnectAuthResponse","OpenIDConnectAuthSecurity","OpenIDConnectAuthToken","OverriddenResponse","PaginationCursorBodyRequestBody","PaginationCursorBodyRes","PaginationCursorBodyResponse","PaginationCursorParamsRequest","PaginationCursorParamsRes","PaginationCursorParamsResponse","PaginationLimitOffsetOffsetBodyRes","PaginationLimitOffsetOffsetBodyResponse","PaginationLimitOffsetOffsetParamsRequest","PaginationLimitOffsetOffsetParamsRes","PaginationLimitOffsetOffsetParamsResponse","PaginationLimitOffsetPageBodyRes","PaginationLimitOffsetPageBodyResponse","PaginationLimitOffsetPageParamsRequest","PaginationLimitOffsetPageParamsRes","PaginationLimitOffsetPageParamsResponse","PathParameterJSONRequest","PathParameterJSONRes","PathParameterJSONResponse","PipeDelimitedQueryParamsArrayRequest","PipeDelimitedQueryParamsArrayRes","PipeDelimitedQueryParamsArrayResArgs","PipeDelimitedQueryParamsArrayResponse","PrimitiveTypeOneOfPostRequestBody","PrimitiveTypeOneOfPostRes","PrimitiveTypeOneOfPostResJSON","PrimitiveTypeOneOfPostResponse","PutAnythingIgnoredGeneration200ApplicationJSON","PutAnythingIgnoredGenerationResponse","RequestBodyPostApplicationJSONArrayCamelCaseResponse","RequestBodyPostApplicationJSONArrayObjCamelCaseResponse","RequestBodyPostApplicationJSONArrayObjResponse","RequestBodyPostApplicationJSONArrayOfArrayCamelCaseResponse","RequestBodyPostApplicationJSONArrayOfArrayOfPrimitiveResponse","RequestBodyPostApplicationJSONArrayOfArrayResponse","RequestBodyPostApplicationJSONArrayOfMapCamelCaseResponse","RequestBodyPostApplicationJSONArrayOfMapResponse","RequestBodyPostApplicationJSONArrayOfPrimitiveResponse","RequestBodyPostApplicationJSONArrayResponse","RequestBodyPostApplicationJSONDeepCamelCaseRes","RequestBodyPostApplicationJSONDeepCamelCaseResponse","RequestBodyPostApplicationJSONDeepRes","RequestBodyPostApplicationJSONDeepResponse","RequestBodyPostApplicationJSONMapCamelCaseResponse","RequestBodyPostApplicationJSONMapObjCamelCaseResponse","RequestBodyPostApplicationJSONMapObjResponse","RequestBodyPostApplicationJSONMapOfArrayCamelCaseResponse","RequestBodyPostApplicationJSONMapOfArrayResponse","RequestBodyPostApplicationJSONMapOfMapCamelCaseResponse","RequestBodyPostApplicationJSONMapOfMapOfPrimitiveResponse","RequestBodyPostApplicationJSONMapOfMapResponse","RequestBodyPostApplicationJSONMapOfPrimitiveResponse","RequestBodyPostApplicationJSONMapResponse","RequestBodyPostApplicationJSONMultipleJSONFilteredRes","RequestBodyPostApplicationJSONMultipleJSONFilteredResponse","RequestBodyPostApplicationJSONSimpleCamelCaseRes","RequestBodyPostApplicationJSONSimpleCamelCaseResponse","RequestBodyPostApplicationJSONSimpleRes","RequestBodyPostApplicationJSONSimpleResponse","RequestBodyPostComplexNumberTypes200ApplicationJSON","RequestBodyPostComplexNumberTypesRequest","RequestBodyPostComplexNumberTypesResponse","RequestBodyPostDefaultsAndConsts200ApplicationJSON","RequestBodyPostDefaultsAndConstsResponse","RequestBodyPostEmptyObject200ApplicationJSON","RequestBodyPostEmptyObject200ApplicationJSONEmpty","RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies","RequestBodyPostEmptyObjectRequestBody","RequestBodyPostEmptyObjectRequestBodyEmpty","RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties","RequestBodyPostEmptyObjectResponse","RequestBodyPostFormDeepRes","RequestBodyPostFormDeepResForm","RequestBodyPostFormDeepResponse","RequestBodyPostFormMapPrimitiveRes","RequestBodyPostFormMapPrimitiveResponse","RequestBodyPostFormSimpleRes","RequestBodyPostFormSimpleResForm","RequestBodyPostFormSimpleResHeaders","RequestBodyPostFormSimpleResponse","RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON","RequestBodyPostJSONDataTypesArrayBigIntResponse","RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON","RequestBodyPostJSONDataTypesArrayDateResponse","RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON","RequestBodyPostJSONDataTypesArrayDecimalStrResponse","RequestBodyPostJSONDataTypesBigInt200ApplicationJSON","RequestBodyPostJSONDataTypesBigIntResponse","RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON","RequestBodyPostJSONDataTypesBigIntStrResponse","RequestBodyPostJSONDataTypesBoolean200ApplicationJSON","RequestBodyPostJSONDataTypesBooleanResponse","RequestBodyPostJSONDataTypesDate200ApplicationJSON","RequestBodyPostJSONDataTypesDateResponse","RequestBodyPostJSONDataTypesDateTime200ApplicationJSON","RequestBodyPostJSONDataTypesDateTimeResponse","RequestBodyPostJSONDataTypesDecimal200ApplicationJSON","RequestBodyPostJSONDataTypesDecimalResponse","RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON","RequestBodyPostJSONDataTypesDecimalStrResponse","RequestBodyPostJSONDataTypesFloat32200ApplicationJSON","RequestBodyPostJSONDataTypesFloat32Response","RequestBodyPostJSONDataTypesInt32200ApplicationJSON","RequestBodyPostJSONDataTypesInt32Response","RequestBodyPostJSONDataTypesInteger200ApplicationJSON","RequestBodyPostJSONDataTypesIntegerResponse","RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON","RequestBodyPostJSONDataTypesMapBigIntStrResponse","RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON","RequestBodyPostJSONDataTypesMapDateTimeResponse","RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON","RequestBodyPostJSONDataTypesMapDecimalResponse","RequestBodyPostJSONDataTypesNumber200ApplicationJSON","RequestBodyPostJSONDataTypesNumberResponse","RequestBodyPostJSONDataTypesString200ApplicationJSON","RequestBodyPostJSONDataTypesStringResponse","RequestBodyPostMultipleContentTypesComponentFilteredRes","RequestBodyPostMultipleContentTypesComponentFilteredResponse","RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON","RequestBodyPostMultipleContentTypesInlineFilteredRes","RequestBodyPostMultipleContentTypesInlineFilteredResponse","RequestBodyPostMultipleContentTypesSplitApplicationJSON","RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded","RequestBodyPostMultipleContentTypesSplitFormRes","RequestBodyPostMultipleContentTypesSplitFormResponse","RequestBodyPostMultipleContentTypesSplitJSONRes","RequestBodyPostMultipleContentTypesSplitJSONResponse","RequestBodyPostMultipleContentTypesSplitMultipartFormData","RequestBodyPostMultipleContentTypesSplitMultipartRes","RequestBodyPostMultipleContentTypesSplitMultipartResponse","RequestBodyPostMultipleContentTypesSplitParamApplicationJSON","RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded","RequestBodyPostMultipleContentTypesSplitParamFormRequest","RequestBodyPostMultipleContentTypesSplitParamFormRes","RequestBodyPostMultipleContentTypesSplitParamFormResponse","RequestBodyPostMultipleContentTypesSplitParamJSONRequest","RequestBodyPostMultipleContentTypesSplitParamJSONRes","RequestBodyPostMultipleContentTypesSplitParamJSONResponse","RequestBodyPostMultipleContentTypesSplitParamMultipartFormData","RequestBodyPostMultipleContentTypesSplitParamMultipartRequest","RequestBodyPostMultipleContentTypesSplitParamMultipartRes","RequestBodyPostMultipleContentTypesSplitParamMultipartResponse","RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON","RequestBodyPostNotNullableNotRequiredStringBodyResponse","RequestBodyPostNullArray200ApplicationJSON","RequestBodyPostNullArrayResponse","RequestBodyPostNullDictionary200ApplicationJSON","RequestBodyPostNullDictionaryResponse","RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON","RequestBodyPostNullableNotRequiredStringBodyResponse","RequestBodyPostNullableRequiredStringBody200ApplicationJSON","RequestBodyPostNullableRequiredStringBodyResponse","RequestBodyPutBytesRes","RequestBodyPutBytesResponse","RequestBodyPutBytesWithParamsRequest","RequestBodyPutBytesWithParamsRes","RequestBodyPutBytesWithParamsResArgs","RequestBodyPutBytesWithParamsResponse","RequestBodyPutMultipartDeepRes","RequestBodyPutMultipartDeepResForm","RequestBodyPutMultipartDeepResponse","RequestBodyPutMultipartDifferentFileNameRequestBody","RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName","RequestBodyPutMultipartDifferentFileNameRes","RequestBodyPutMultipartDifferentFileNameResponse","RequestBodyPutMultipartFileRequestBody","RequestBodyPutMultipartFileRequestBodyFile","RequestBodyPutMultipartFileRes","RequestBodyPutMultipartFileResponse","RequestBodyPutMultipartSimpleRes","RequestBodyPutMultipartSimpleResForm","RequestBodyPutMultipartSimpleResHeaders","RequestBodyPutMultipartSimpleResponse","RequestBodyPutStringRes","RequestBodyPutStringResponse","RequestBodyPutStringWithParamsRequest","RequestBodyPutStringWithParamsRes","RequestBodyPutStringWithParamsResArgs","RequestBodyPutStringWithParamsResponse","RequestBodyReadAndWriteResponse","RequestBodyReadOnlyInputResponse","RequestBodyReadOnlyUnionResponse","RequestBodyReadWriteOnlyUnionResponse","RequestBodyWriteOnlyOutputResponse","RequestBodyWriteOnlyResponse","RequestBodyWriteOnlyUnionResponse","ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON","ResponseBodyAdditionalPropertiesComplexNumbersPostResponse","ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON","ResponseBodyAdditionalPropertiesDatePostResponse","ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON","ResponseBodyAdditionalPropertiesObjectPostResponse","ResponseBodyAdditionalPropertiesPost200ApplicationJSON","ResponseBodyAdditionalPropertiesPostResponse","ResponseBodyBytesGetResponse","ResponseBodyEmptyWithHeadersRequest","ResponseBodyEmptyWithHeadersResponse","ResponseBodyJSONGetResponse","ResponseBodyOptionalGetResponse","ResponseBodyReadOnlyResponse","ResponseBodyStringGetResponse","ResponseBodyXMLGetResponse","ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON","ResponseBodyZeroValueComplexTypePtrsPostResponse","RetriesGetRequest","RetriesGetResponse","RetriesGetRetries","SelectGlobalServerResponse","SelectServerWithIDResponse","ServerWithProtocolTemplateResponse","ServerWithTemplatesGlobalResponse","ServerWithTemplatesResponse","ServersByIDWithTemplatesResponse","SimplePathParameterArraysRequest","SimplePathParameterArraysRes","SimplePathParameterArraysResponse","SimplePathParameterMapsRequest","SimplePathParameterMapsRes","SimplePathParameterMapsResponse","SimplePathParameterObjectsRequest","SimplePathParameterObjectsRes","SimplePathParameterObjectsResponse","SimplePathParameterPrimitivesRequest","SimplePathParameterPrimitivesRes","SimplePathParameterPrimitivesResponse","StatusGetErrorRequest","StatusGetErrorResponse","StatusGetXSpeakeasyErrorsRequest","StatusGetXSpeakeasyErrorsResponse","StronglyTypedOneOfPostRes","StronglyTypedOneOfPostResponse","TelemetrySpeakeasyUserAgentGetRequest","TelemetrySpeakeasyUserAgentGetRes","TelemetrySpeakeasyUserAgentGetResponse","TelemetryUserAgentGetRes","TelemetryUserAgentGetResponse","TypeFromAnchor","TypedObjectNullableOneOfPostRes","TypedObjectNullableOneOfPostResponse","TypedObjectOneOfPostRes","TypedObjectOneOfPostResponse","TypedParameterGenerationGetObj","TypedParameterGenerationGetRequest","TypedParameterGenerationGetResponse","UnionBigIntDecimalRequestBody","UnionBigIntDecimalRes","UnionBigIntDecimalResJSON","UnionBigIntDecimalResponse","UnionDateNullRes","UnionDateNullResponse","UnionDateTimeBigIntRequestBody","UnionDateTimeBigIntRes","UnionDateTimeBigIntResJSON","UnionDateTimeBigIntResponse","UnionDateTimeNullRes","UnionDateTimeNullResponse","UpdateResourceRequest","UpdateResourceResponse","UsageExamplePost200ApplicationJSON","UsageExamplePost200ApplicationJSONJSON","UsageExamplePostEnumParameter","UsageExamplePostOptEnumParameter","UsageExamplePostRequest","UsageExamplePostRequestBody","UsageExamplePostResponse","UsageExamplePostSecurity","WeaklyTypedOneOfPostRes","WeaklyTypedOneOfPostResponse","API_KEY_AUTH_GLOBAL_NEW_SERVERS","AUTH_GLOBAL_SERVERS","BASIC_AUTH_NEW_SERVERS","CONNECTION_ERROR_GET_SERVERS","MULTIPLE_MIXED_OPTIONS_AUTH_SERVERS","MULTIPLE_MIXED_SCHEME_AUTH_SERVERS","MULTIPLE_OPTIONS_WITH_MIXED_SCHEMES_AUTH_SERVERS","MULTIPLE_OPTIONS_WITH_SIMPLE_SCHEMES_AUTH_SERVERS","MULTIPLE_SIMPLE_OPTIONS_AUTH_SERVERS","MULTIPLE_SIMPLE_SCHEME_AUTH_SERVERS","OAUTH2_AUTH_NEW_SERVERS","OPEN_ID_CONNECT_AUTH_NEW_SERVERS","PAGINATION_CURSOR_BODY_SERVERS","PAGINATION_CURSOR_PARAMS_SERVERS","PAGINATION_LIMIT_OFFSET_OFFSET_BODY_SERVERS","PAGINATION_LIMIT_OFFSET_OFFSET_PARAMS_SERVERS","PAGINATION_LIMIT_OFFSET_PAGE_BODY_SERVERS","PAGINATION_LIMIT_OFFSET_PAGE_PARAMS_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_ARRAY_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_ARRAY_OF_PRIMITIVE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_ARRAY_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_MAP_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_MAP_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_PRIMITIVE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_ARRAY_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_ARRAY_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_MAP_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_MAP_OF_PRIMITIVE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_MAP_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_PRIMITIVE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_SERVERS","REQUEST_BODY_READ_AND_WRITE_SERVERS","REQUEST_BODY_READ_ONLY_INPUT_SERVERS","REQUEST_BODY_READ_ONLY_UNION_SERVERS","REQUEST_BODY_READ_WRITE_ONLY_UNION_SERVERS","REQUEST_BODY_WRITE_ONLY_OUTPUT_SERVERS","REQUEST_BODY_WRITE_ONLY_SERVERS","REQUEST_BODY_WRITE_ONLY_UNION_SERVERS","RESPONSE_BODY_OPTIONAL_GET_SERVERS","RESPONSE_BODY_READ_ONLY_SERVERS","RETRIES_GET_SERVERS","SELECT_SERVER_WITH_ID_SERVERS","SELECT_SERVER_WITH_ID_SERVER_BROKEN","SELECT_SERVER_WITH_ID_SERVER_VALID","SERVERS_BY_ID_WITH_TEMPLATES_SERVERS","SERVERS_BY_ID_WITH_TEMPLATES_SERVER_MAIN","SERVER_WITH_PROTOCOL_TEMPLATE_SERVERS","SERVER_WITH_PROTOCOL_TEMPLATE_SERVER_MAIN","SERVER_WITH_TEMPLATES_SERVERS","STATUS_GET_X_SPEAKEASY_ERRORS_SERVERS"] +__all__ = ["APIKeyAuthGlobalNewResponse","APIKeyAuthGlobalResponse","APIKeyAuthGlobalToken","APIKeyAuthResponse","APIKeyAuthSecurity","APIKeyAuthToken","API_KEY_AUTH_GLOBAL_NEW_SERVERS","AUTH_GLOBAL_SERVERS","AnchorTypesGetResponse","AnchorTypesGetTypeFromAnchor","Args","ArrayCircularReferenceGetResponse","AuthGlobalResponse","BASIC_AUTH_NEW_SERVERS","BasicAuthNewResponse","BasicAuthNewSecurity","BasicAuthRequest","BasicAuthResponse","BasicAuthSecurity","BasicAuthUser","BearerAuthResponse","BearerAuthSecurity","BearerAuthToken","CONNECTION_ERROR_GET_SERVERS","CircularReferenceGetResponse","ComponentBodyAndParamConflictRequest","ComponentBodyAndParamConflictRes","ComponentBodyAndParamConflictResponse","ComponentBodyAndParamNoConflictRequest","ComponentBodyAndParamNoConflictRes","ComponentBodyAndParamNoConflictResponse","ConflictingParamsRequest","ConflictingParamsRes","ConflictingParamsResponse","ConnectionErrorGetResponse","CreateFileFile","CreateFileRequestBody","CreateFileResponse","CreateResourceResponse","DateParamWithDefaultRequest","DateParamWithDefaultResponse","DateTimeParamWithDefaultRequest","DateTimeParamWithDefaultResponse","DecimalParamWithDefaultRequest","DecimalParamWithDefaultResponse","DeepObjectQueryParamsMapArgs","DeepObjectQueryParamsMapRequest","DeepObjectQueryParamsMapRes","DeepObjectQueryParamsMapResponse","DeepObjectQueryParamsObjectArgs","DeepObjectQueryParamsObjectRequest","DeepObjectQueryParamsObjectRes","DeepObjectQueryParamsObjectResponse","DeleteResourceRequest","DeleteResourceResponse","DeprecatedFieldInSchemaPostResponse","DeprecatedObjectInSchemaGetResponse","DeprecatedObjectInSchemaGetResponseBody","DeprecatedOperationNoCommentsGetRequest","DeprecatedOperationNoCommentsGetResponse","DeprecatedOperationWithCommentsGetRequest","DeprecatedOperationWithCommentsGetResponse","DifferentFileName","DuplicateParamDuplicateParamResponse","DuplicateParamRequest","DuplicateParamResponse","Empty","EmptyObjectGetRequest","EmptyObjectGetResponse","EmptyRespWithEmptyProperies","EmptyResponseObjectWithCommentGetResponse","EmptyResponseObjectWithCommentGetResponseBody","EmptyWithEmptyProperties","EnumNameOverride","EnumParameter","File","FlattenedTypedObjectPostRes","FlattenedTypedObjectPostResponse","Form","FormQueryParamsArrayArgs","FormQueryParamsArrayRequest","FormQueryParamsArrayRes","FormQueryParamsArrayResponse","FormQueryParamsCamelObjectArgs","FormQueryParamsCamelObjectRequest","FormQueryParamsCamelObjectRes","FormQueryParamsCamelObjectResponse","FormQueryParamsMapRequest","FormQueryParamsMapRes","FormQueryParamsMapResponse","FormQueryParamsObjectArgs","FormQueryParamsObjectRequest","FormQueryParamsObjectRes","FormQueryParamsObjectResponse","FormQueryParamsPrimitiveArgs","FormQueryParamsPrimitiveRequest","FormQueryParamsPrimitiveRes","FormQueryParamsPrimitiveResponse","FormQueryParamsRefParamObjectArgs","FormQueryParamsRefParamObjectRequest","FormQueryParamsRefParamObjectRes","FormQueryParamsRefParamObjectResponse","GetDocumentationPerLanguageRequest","GetDocumentationPerLanguageResponse","GetGlobalNameOverrideResponse","GetGlobalNameOverrideResponseBody","GetResourceRequest","GetResourceResponse","GlobalBearerAuthResponse","GlobalBearerAuthToken","GlobalPathParameterGetRequest","GlobalPathParameterGetRes","GlobalPathParameterGetResponse","GlobalsQueryParameterGetRequest","GlobalsQueryParameterGetRes","GlobalsQueryParameterGetResponse","GroupFirstGetResponse","GroupSecondGetResponse","HeaderParamsArrayRequest","HeaderParamsArrayRes","HeaderParamsArrayResponse","HeaderParamsMapHeaders","HeaderParamsMapRequest","HeaderParamsMapRes","HeaderParamsMapResponse","HeaderParamsObjectHeaders","HeaderParamsObjectRequest","HeaderParamsObjectRes","HeaderParamsObjectResponse","HeaderParamsPrimitiveHeaders","HeaderParamsPrimitiveRequest","HeaderParamsPrimitiveRes","HeaderParamsPrimitiveResponse","Headers","IgnoredGenerationGetResponse","IgnoredGenerationGetResponseBody","IgnoresPostRequest","IgnoresPostRequestBody","IgnoresPostResponse","InlineBodyAndParamConflictRequest","InlineBodyAndParamConflictRequestBody","InlineBodyAndParamConflictRes","InlineBodyAndParamConflictResponse","InlineBodyAndParamNoConflictJSON","InlineBodyAndParamNoConflictRequest","InlineBodyAndParamNoConflictRequestBody","InlineBodyAndParamNoConflictRes","InlineBodyAndParamNoConflictResponse","JSON","JSONQueryParamsObjectArgs","JSONQueryParamsObjectRequest","JSONQueryParamsObjectRes","JSONQueryParamsObjectResponse","MULTIPLE_MIXED_OPTIONS_AUTH_SERVERS","MULTIPLE_MIXED_SCHEME_AUTH_SERVERS","MULTIPLE_OPTIONS_WITH_MIXED_SCHEMES_AUTH_SERVERS","MULTIPLE_OPTIONS_WITH_SIMPLE_SCHEMES_AUTH_SERVERS","MULTIPLE_SIMPLE_OPTIONS_AUTH_SERVERS","MULTIPLE_SIMPLE_SCHEME_AUTH_SERVERS","MixedParametersCamelCaseArgs","MixedParametersCamelCaseHeaders","MixedParametersCamelCaseRequest","MixedParametersCamelCaseRes","MixedParametersCamelCaseResponse","MixedParametersPrimitivesArgs","MixedParametersPrimitivesHeaders","MixedParametersPrimitivesRequest","MixedParametersPrimitivesRes","MixedParametersPrimitivesResponse","MixedQueryParamsRequest","MixedQueryParamsRes","MixedQueryParamsResponse","MixedTypeOneOfPostJSON","MixedTypeOneOfPostRequestBody","MixedTypeOneOfPostRes","MixedTypeOneOfPostResponse","MultipleMixedOptionsAuthResponse","MultipleMixedOptionsAuthSecurity","MultipleMixedSchemeAuthResponse","MultipleMixedSchemeAuthSecurity","MultipleOptionsWithMixedSchemesAuthResponse","MultipleOptionsWithMixedSchemesAuthSecurity","MultipleOptionsWithMixedSchemesAuthSecurityOption1","MultipleOptionsWithMixedSchemesAuthSecurityOption2","MultipleOptionsWithSimpleSchemesAuthResponse","MultipleOptionsWithSimpleSchemesAuthSecurity","MultipleOptionsWithSimpleSchemesAuthSecurityOption1","MultipleOptionsWithSimpleSchemesAuthSecurityOption2","MultipleSimpleOptionsAuthResponse","MultipleSimpleOptionsAuthSecurity","MultipleSimpleSchemeAuthResponse","MultipleSimpleSchemeAuthSecurity","NameOverrideGetOverriddenResponse","NameOverrideGetRequest","NameOverrideGetResponse","NestFirstGetResponse","NestedFirstGetResponse","NestedGetResponse","NestedSecondGetResponse","NullableObjectPostRes","NullableObjectPostResponse","NullableOneOfRefInObjectPostRes","NullableOneOfRefInObjectPostResponse","NullableOneOfSchemaPostJSON","NullableOneOfSchemaPostRequestBody","NullableOneOfSchemaPostRes","NullableOneOfSchemaPostResponse","NullableOneOfTypeInObjectPostRes","NullableOneOfTypeInObjectPostResponse","NullableOptionalObj","NullableRequiredEmptyObjectPostRequestBody","NullableRequiredEmptyObjectPostResponse","NullableRequiredEnum","NullableRequiredObj","NullableRequiredPropertyPostRequestBody","NullableRequiredPropertyPostResponse","NullableRequiredSharedObjectPostRequestBody","NullableRequiredSharedObjectPostResponse","NullableTypedObjectPostRes","NullableTypedObjectPostResponse","OAUTH2_AUTH_NEW_SERVERS","OPEN_ID_CONNECT_AUTH_NEW_SERVERS","Oauth2AuthNewResponse","Oauth2AuthNewSecurity","Oauth2AuthResponse","Oauth2AuthSecurity","Oauth2AuthToken","Oauth2OverrideRequest","Oauth2OverrideResponse","Oauth2OverrideSecurity","Oauth2OverrideToken","Obj","ObjArrParam","ObjParam","ObjParamExploded","ObjectCircularReferenceGetResponse","OneOfCircularReferenceGetResponse","OpenIDConnectAuthNewResponse","OpenIDConnectAuthNewSecurity","OpenIDConnectAuthResponse","OpenIDConnectAuthSecurity","OpenIDConnectAuthToken","OptEnumParameter","PAGINATION_CURSOR_BODY_SERVERS","PAGINATION_CURSOR_PARAMS_SERVERS","PAGINATION_LIMIT_OFFSET_OFFSET_BODY_SERVERS","PAGINATION_LIMIT_OFFSET_OFFSET_PARAMS_SERVERS","PAGINATION_LIMIT_OFFSET_PAGE_BODY_SERVERS","PAGINATION_LIMIT_OFFSET_PAGE_PARAMS_SERVERS","PaginationCursorBodyRequestBody","PaginationCursorBodyRes","PaginationCursorBodyResponse","PaginationCursorParamsRequest","PaginationCursorParamsRes","PaginationCursorParamsResponse","PaginationLimitOffsetOffsetBodyRes","PaginationLimitOffsetOffsetBodyResponse","PaginationLimitOffsetOffsetParamsRequest","PaginationLimitOffsetOffsetParamsRes","PaginationLimitOffsetOffsetParamsResponse","PaginationLimitOffsetPageBodyRes","PaginationLimitOffsetPageBodyResponse","PaginationLimitOffsetPageParamsRequest","PaginationLimitOffsetPageParamsRes","PaginationLimitOffsetPageParamsResponse","PathParameterJSONRequest","PathParameterJSONRes","PathParameterJSONResponse","PipeDelimitedQueryParamsArrayArgs","PipeDelimitedQueryParamsArrayRequest","PipeDelimitedQueryParamsArrayRes","PipeDelimitedQueryParamsArrayResponse","PrimitiveTypeOneOfPostJSON","PrimitiveTypeOneOfPostRequestBody","PrimitiveTypeOneOfPostRes","PrimitiveTypeOneOfPostResponse","PutAnythingIgnoredGenerationResponse","PutAnythingIgnoredGenerationResponseBody","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_ARRAY_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_ARRAY_OF_PRIMITIVE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_ARRAY_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_MAP_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_MAP_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_PRIMITIVE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_ARRAY_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_ARRAY_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_MAP_CAMEL_CASE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_MAP_OF_PRIMITIVE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_MAP_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_PRIMITIVE_SERVERS","REQUEST_BODY_POST_APPLICATION_JSON_MAP_SERVERS","REQUEST_BODY_READ_AND_WRITE_SERVERS","REQUEST_BODY_READ_ONLY_INPUT_SERVERS","REQUEST_BODY_READ_ONLY_UNION_SERVERS","REQUEST_BODY_READ_WRITE_ONLY_UNION_SERVERS","REQUEST_BODY_WRITE_ONLY_OUTPUT_SERVERS","REQUEST_BODY_WRITE_ONLY_SERVERS","REQUEST_BODY_WRITE_ONLY_UNION_SERVERS","RESPONSE_BODY_OPTIONAL_GET_SERVERS","RESPONSE_BODY_READ_ONLY_SERVERS","RETRIES_GET_SERVERS","RequestBodyPostApplicationJSONArrayCamelCaseResponse","RequestBodyPostApplicationJSONArrayObjCamelCaseResponse","RequestBodyPostApplicationJSONArrayObjResponse","RequestBodyPostApplicationJSONArrayOfArrayCamelCaseResponse","RequestBodyPostApplicationJSONArrayOfArrayOfPrimitiveResponse","RequestBodyPostApplicationJSONArrayOfArrayResponse","RequestBodyPostApplicationJSONArrayOfMapCamelCaseResponse","RequestBodyPostApplicationJSONArrayOfMapResponse","RequestBodyPostApplicationJSONArrayOfPrimitiveResponse","RequestBodyPostApplicationJSONArrayResponse","RequestBodyPostApplicationJSONDeepCamelCaseRes","RequestBodyPostApplicationJSONDeepCamelCaseResponse","RequestBodyPostApplicationJSONDeepRes","RequestBodyPostApplicationJSONDeepResponse","RequestBodyPostApplicationJSONMapCamelCaseResponse","RequestBodyPostApplicationJSONMapObjCamelCaseResponse","RequestBodyPostApplicationJSONMapObjResponse","RequestBodyPostApplicationJSONMapOfArrayCamelCaseResponse","RequestBodyPostApplicationJSONMapOfArrayResponse","RequestBodyPostApplicationJSONMapOfMapCamelCaseResponse","RequestBodyPostApplicationJSONMapOfMapOfPrimitiveResponse","RequestBodyPostApplicationJSONMapOfMapResponse","RequestBodyPostApplicationJSONMapOfPrimitiveResponse","RequestBodyPostApplicationJSONMapResponse","RequestBodyPostApplicationJSONMultipleJSONFilteredRes","RequestBodyPostApplicationJSONMultipleJSONFilteredResponse","RequestBodyPostApplicationJSONSimpleCamelCaseRes","RequestBodyPostApplicationJSONSimpleCamelCaseResponse","RequestBodyPostApplicationJSONSimpleRes","RequestBodyPostApplicationJSONSimpleResponse","RequestBodyPostComplexNumberTypesRequest","RequestBodyPostComplexNumberTypesResponse","RequestBodyPostComplexNumberTypesResponseBody","RequestBodyPostDefaultsAndConstsResponse","RequestBodyPostDefaultsAndConstsResponseBody","RequestBodyPostEmptyObjectEmpty","RequestBodyPostEmptyObjectRequestBody","RequestBodyPostEmptyObjectResponse","RequestBodyPostEmptyObjectResponseBody","RequestBodyPostFormDeepRes","RequestBodyPostFormDeepResponse","RequestBodyPostFormMapPrimitiveRes","RequestBodyPostFormMapPrimitiveResponse","RequestBodyPostFormSimpleForm","RequestBodyPostFormSimpleHeaders","RequestBodyPostFormSimpleRes","RequestBodyPostFormSimpleResponse","RequestBodyPostJSONDataTypesArrayBigIntResponse","RequestBodyPostJSONDataTypesArrayBigIntResponseBody","RequestBodyPostJSONDataTypesArrayDateResponse","RequestBodyPostJSONDataTypesArrayDateResponseBody","RequestBodyPostJSONDataTypesArrayDecimalStrResponse","RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody","RequestBodyPostJSONDataTypesBigIntResponse","RequestBodyPostJSONDataTypesBigIntResponseBody","RequestBodyPostJSONDataTypesBigIntStrResponse","RequestBodyPostJSONDataTypesBigIntStrResponseBody","RequestBodyPostJSONDataTypesBooleanResponse","RequestBodyPostJSONDataTypesBooleanResponseBody","RequestBodyPostJSONDataTypesDateResponse","RequestBodyPostJSONDataTypesDateResponseBody","RequestBodyPostJSONDataTypesDateTimeResponse","RequestBodyPostJSONDataTypesDateTimeResponseBody","RequestBodyPostJSONDataTypesDecimalResponse","RequestBodyPostJSONDataTypesDecimalResponseBody","RequestBodyPostJSONDataTypesDecimalStrResponse","RequestBodyPostJSONDataTypesDecimalStrResponseBody","RequestBodyPostJSONDataTypesFloat32Response","RequestBodyPostJSONDataTypesFloat32ResponseBody","RequestBodyPostJSONDataTypesInt32Response","RequestBodyPostJSONDataTypesInt32ResponseBody","RequestBodyPostJSONDataTypesIntegerResponse","RequestBodyPostJSONDataTypesIntegerResponseBody","RequestBodyPostJSONDataTypesMapBigIntStrResponse","RequestBodyPostJSONDataTypesMapBigIntStrResponseBody","RequestBodyPostJSONDataTypesMapDateTimeResponse","RequestBodyPostJSONDataTypesMapDateTimeResponseBody","RequestBodyPostJSONDataTypesMapDecimalResponse","RequestBodyPostJSONDataTypesMapDecimalResponseBody","RequestBodyPostJSONDataTypesNumberResponse","RequestBodyPostJSONDataTypesNumberResponseBody","RequestBodyPostJSONDataTypesStringResponse","RequestBodyPostJSONDataTypesStringResponseBody","RequestBodyPostMultipleContentTypesComponentFilteredRes","RequestBodyPostMultipleContentTypesComponentFilteredResponse","RequestBodyPostMultipleContentTypesInlineFilteredRequestBody","RequestBodyPostMultipleContentTypesInlineFilteredRes","RequestBodyPostMultipleContentTypesInlineFilteredResponse","RequestBodyPostMultipleContentTypesSplitFormRequestBody","RequestBodyPostMultipleContentTypesSplitFormRes","RequestBodyPostMultipleContentTypesSplitFormResponse","RequestBodyPostMultipleContentTypesSplitJSONRequestBody","RequestBodyPostMultipleContentTypesSplitJSONRes","RequestBodyPostMultipleContentTypesSplitJSONResponse","RequestBodyPostMultipleContentTypesSplitMultipartRequestBody","RequestBodyPostMultipleContentTypesSplitMultipartRes","RequestBodyPostMultipleContentTypesSplitMultipartResponse","RequestBodyPostMultipleContentTypesSplitParamFormRequest","RequestBodyPostMultipleContentTypesSplitParamFormRequestBody","RequestBodyPostMultipleContentTypesSplitParamFormRes","RequestBodyPostMultipleContentTypesSplitParamFormResponse","RequestBodyPostMultipleContentTypesSplitParamJSONRequest","RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody","RequestBodyPostMultipleContentTypesSplitParamJSONRes","RequestBodyPostMultipleContentTypesSplitParamJSONResponse","RequestBodyPostMultipleContentTypesSplitParamMultipartRequest","RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody","RequestBodyPostMultipleContentTypesSplitParamMultipartRes","RequestBodyPostMultipleContentTypesSplitParamMultipartResponse","RequestBodyPostNotNullableNotRequiredStringBodyResponse","RequestBodyPostNotNullableNotRequiredStringBodyResponseBody","RequestBodyPostNullArrayResponse","RequestBodyPostNullArrayResponseBody","RequestBodyPostNullDictionaryResponse","RequestBodyPostNullDictionaryResponseBody","RequestBodyPostNullableNotRequiredStringBodyResponse","RequestBodyPostNullableNotRequiredStringBodyResponseBody","RequestBodyPostNullableRequiredStringBodyResponse","RequestBodyPostNullableRequiredStringBodyResponseBody","RequestBodyPutBytesRes","RequestBodyPutBytesResponse","RequestBodyPutBytesWithParamsArgs","RequestBodyPutBytesWithParamsRequest","RequestBodyPutBytesWithParamsRes","RequestBodyPutBytesWithParamsResponse","RequestBodyPutMultipartDeepForm","RequestBodyPutMultipartDeepRes","RequestBodyPutMultipartDeepResponse","RequestBodyPutMultipartDifferentFileNameRequestBody","RequestBodyPutMultipartDifferentFileNameRes","RequestBodyPutMultipartDifferentFileNameResponse","RequestBodyPutMultipartFileRequestBody","RequestBodyPutMultipartFileRes","RequestBodyPutMultipartFileResponse","RequestBodyPutMultipartSimpleForm","RequestBodyPutMultipartSimpleHeaders","RequestBodyPutMultipartSimpleRes","RequestBodyPutMultipartSimpleResponse","RequestBodyPutStringRes","RequestBodyPutStringResponse","RequestBodyPutStringWithParamsArgs","RequestBodyPutStringWithParamsRequest","RequestBodyPutStringWithParamsRes","RequestBodyPutStringWithParamsResponse","RequestBodyReadAndWriteResponse","RequestBodyReadOnlyInputResponse","RequestBodyReadOnlyUnionResponse","RequestBodyReadWriteOnlyUnionResponse","RequestBodyWriteOnlyOutputResponse","RequestBodyWriteOnlyResponse","RequestBodyWriteOnlyUnionResponse","RequiredObj","ResponseBodyAdditionalPropertiesComplexNumbersPostResponse","ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody","ResponseBodyAdditionalPropertiesDatePostResponse","ResponseBodyAdditionalPropertiesDatePostResponseBody","ResponseBodyAdditionalPropertiesObjectPostResponse","ResponseBodyAdditionalPropertiesObjectPostResponseBody","ResponseBodyAdditionalPropertiesPostResponse","ResponseBodyAdditionalPropertiesPostResponseBody","ResponseBodyBytesGetResponse","ResponseBodyEmptyWithHeadersRequest","ResponseBodyEmptyWithHeadersResponse","ResponseBodyJSONGetResponse","ResponseBodyOptionalGetResponse","ResponseBodyReadOnlyResponse","ResponseBodyStringGetResponse","ResponseBodyXMLGetResponse","ResponseBodyZeroValueComplexTypePtrsPostResponse","ResponseBodyZeroValueComplexTypePtrsPostResponseBody","RetriesGetRequest","RetriesGetResponse","RetriesGetRetries","SELECT_SERVER_WITH_ID_SERVERS","SELECT_SERVER_WITH_ID_SERVER_BROKEN","SELECT_SERVER_WITH_ID_SERVER_VALID","SERVERS_BY_ID_WITH_TEMPLATES_SERVERS","SERVERS_BY_ID_WITH_TEMPLATES_SERVER_MAIN","SERVER_WITH_PROTOCOL_TEMPLATE_SERVERS","SERVER_WITH_PROTOCOL_TEMPLATE_SERVER_MAIN","SERVER_WITH_TEMPLATES_SERVERS","STATUS_GET_X_SPEAKEASY_ERRORS_SERVERS","SelectGlobalServerResponse","SelectServerWithIDResponse","ServerWithProtocolTemplateResponse","ServerWithTemplatesGlobalResponse","ServerWithTemplatesResponse","ServersByIDWithTemplatesResponse","SimplePathParameterArraysRequest","SimplePathParameterArraysRes","SimplePathParameterArraysResponse","SimplePathParameterMapsRequest","SimplePathParameterMapsRes","SimplePathParameterMapsResponse","SimplePathParameterObjectsRequest","SimplePathParameterObjectsRes","SimplePathParameterObjectsResponse","SimplePathParameterPrimitivesRequest","SimplePathParameterPrimitivesRes","SimplePathParameterPrimitivesResponse","StatusGetErrorRequest","StatusGetErrorResponse","StatusGetXSpeakeasyErrorsRequest","StatusGetXSpeakeasyErrorsResponse","StronglyTypedOneOfPostRes","StronglyTypedOneOfPostResponse","TelemetrySpeakeasyUserAgentGetRequest","TelemetrySpeakeasyUserAgentGetRes","TelemetrySpeakeasyUserAgentGetResponse","TelemetryUserAgentGetRes","TelemetryUserAgentGetResponse","TypedObjectNullableOneOfPostRes","TypedObjectNullableOneOfPostResponse","TypedObjectOneOfPostRes","TypedObjectOneOfPostResponse","TypedParameterGenerationGetRequest","TypedParameterGenerationGetResponse","UnionBigIntDecimalJSON","UnionBigIntDecimalRequestBody","UnionBigIntDecimalRes","UnionBigIntDecimalResponse","UnionDateNullRes","UnionDateNullResponse","UnionDateTimeBigIntJSON","UnionDateTimeBigIntRequestBody","UnionDateTimeBigIntRes","UnionDateTimeBigIntResponse","UnionDateTimeNullRes","UnionDateTimeNullResponse","UpdateResourceRequest","UpdateResourceResponse","UsageExamplePostJSON","UsageExamplePostRequest","UsageExamplePostRequestBody","UsageExamplePostResponse","UsageExamplePostResponseBody","UsageExamplePostSecurity","WeaklyTypedOneOfPostRes","WeaklyTypedOneOfPostResponse"] diff --git a/python-client-sdk/src/sdk/models/operations/anchortypesget.py b/python-client-sdk/src/sdk/models/operations/anchortypesget.py index 40049eecb..8049bc788 100755 --- a/python-client-sdk/src/sdk/models/operations/anchortypesget.py +++ b/python-client-sdk/src/sdk/models/operations/anchortypesget.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class TypeFromAnchor: +class AnchorTypesGetTypeFromAnchor: r"""A successful response that contains the simpleObject sent in the request body""" json: Optional[shared_simpleobject.SimpleObject] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) r"""A simple object that uses all our supported primitive types and enums and has optional properties. @@ -29,7 +29,7 @@ class AnchorTypesGetResponse: r"""HTTP response status code for this operation""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - type_from_anchor: Optional[TypeFromAnchor] = dataclasses.field(default=None) + type_from_anchor: Optional[AnchorTypesGetTypeFromAnchor] = dataclasses.field(default=None) r"""A successful response that contains the simpleObject sent in the request body""" diff --git a/python-client-sdk/src/sdk/models/operations/arraycircularreferenceget.py b/python-client-sdk/src/sdk/models/operations/arraycircularreferenceget.py index 09cebbba8..1543f04da 100755 --- a/python-client-sdk/src/sdk/models/operations/arraycircularreferenceget.py +++ b/python-client-sdk/src/sdk/models/operations/arraycircularreferenceget.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import arraycircularreferenceobject as shared_arraycircularreferenceobject +from ...models.shared import arraycircularreferenceobject as shared_arraycircularreferenceobject from typing import List, Optional diff --git a/python-client-sdk/src/sdk/models/operations/circularreferenceget.py b/python-client-sdk/src/sdk/models/operations/circularreferenceget.py index cf0449386..80f1e8fbb 100755 --- a/python-client-sdk/src/sdk/models/operations/circularreferenceget.py +++ b/python-client-sdk/src/sdk/models/operations/circularreferenceget.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import validcircularreferenceobject as shared_validcircularreferenceobject +from ...models.shared import validcircularreferenceobject as shared_validcircularreferenceobject from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/componentbodyandparamconflict.py b/python-client-sdk/src/sdk/models/operations/componentbodyandparamconflict.py index 659dfba18..58799db19 100755 --- a/python-client-sdk/src/sdk/models/operations/componentbodyandparamconflict.py +++ b/python-client-sdk/src/sdk/models/operations/componentbodyandparamconflict.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Dict, Optional diff --git a/python-client-sdk/src/sdk/models/operations/componentbodyandparamnoconflict.py b/python-client-sdk/src/sdk/models/operations/componentbodyandparamnoconflict.py index f803e98bd..332a3b746 100755 --- a/python-client-sdk/src/sdk/models/operations/componentbodyandparamnoconflict.py +++ b/python-client-sdk/src/sdk/models/operations/componentbodyandparamnoconflict.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Dict, Optional diff --git a/python-client-sdk/src/sdk/models/operations/createfile.py b/python-client-sdk/src/sdk/models/operations/createfile.py index 570e9272f..07f9c93a8 100755 --- a/python-client-sdk/src/sdk/models/operations/createfile.py +++ b/python-client-sdk/src/sdk/models/operations/createfile.py @@ -3,21 +3,21 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import fileresource as shared_fileresource +from ...models.shared import fileresource as shared_fileresource from typing import Optional @dataclasses.dataclass -class CreateFileRequestBodyFile: +class CreateFileFile: content: bytes = dataclasses.field(metadata={'multipart_form': { 'content': True }}) - file: str = dataclasses.field(metadata={'multipart_form': { 'field_name': 'file' }}) + file_name: str = dataclasses.field(metadata={'multipart_form': { 'field_name': 'file' }}) @dataclasses.dataclass class CreateFileRequestBody: - file: Optional[CreateFileRequestBodyFile] = dataclasses.field(default=None, metadata={'multipart_form': { 'file': True }}) + file: Optional[CreateFileFile] = dataclasses.field(default=None, metadata={'multipart_form': { 'file': True }}) diff --git a/python-client-sdk/src/sdk/models/operations/createresource.py b/python-client-sdk/src/sdk/models/operations/createresource.py index ff4a9529c..65c2fdae8 100755 --- a/python-client-sdk/src/sdk/models/operations/createresource.py +++ b/python-client-sdk/src/sdk/models/operations/createresource.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import exampleresource as shared_exampleresource +from ...models.shared import exampleresource as shared_exampleresource from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/deepobjectqueryparamsmap.py b/python-client-sdk/src/sdk/models/operations/deepobjectqueryparamsmap.py index d615a77f0..6dca88185 100755 --- a/python-client-sdk/src/sdk/models/operations/deepobjectqueryparamsmap.py +++ b/python-client-sdk/src/sdk/models/operations/deepobjectqueryparamsmap.py @@ -17,7 +17,7 @@ class DeepObjectQueryParamsMapRequest: @dataclasses.dataclass -class DeepObjectQueryParamsMapResArgs: +class DeepObjectQueryParamsMapArgs: pass diff --git a/python-client-sdk/src/sdk/models/operations/deepobjectqueryparamsobject.py b/python-client-sdk/src/sdk/models/operations/deepobjectqueryparamsobject.py index 79d0895e9..9044f64c0 100755 --- a/python-client-sdk/src/sdk/models/operations/deepobjectqueryparamsobject.py +++ b/python-client-sdk/src/sdk/models/operations/deepobjectqueryparamsobject.py @@ -3,14 +3,14 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import List, Optional @dataclasses.dataclass -class DeepObjectQueryParamsObjectObjArrParam: +class ObjArrParam: arr: Optional[List[str]] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'arr' }}) @@ -20,14 +20,14 @@ class DeepObjectQueryParamsObjectObjArrParam: class DeepObjectQueryParamsObjectRequest: obj_param: shared_simpleobject.SimpleObject = dataclasses.field(metadata={'query_param': { 'field_name': 'objParam', 'style': 'deepObject', 'explode': True }}) r"""A simple object that uses all our supported primitive types and enums and has optional properties.""" - obj_arr_param: Optional[DeepObjectQueryParamsObjectObjArrParam] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'objArrParam', 'style': 'deepObject', 'explode': True }}) + obj_arr_param: Optional[ObjArrParam] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'objArrParam', 'style': 'deepObject', 'explode': True }}) @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class DeepObjectQueryParamsObjectResArgs: +class DeepObjectQueryParamsObjectArgs: obj_arr_param_arr: List[str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('objArrParam[arr]') }}) obj_param_any: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('objParam[any]') }}) obj_param_bool: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('objParam[bool]') }}) @@ -55,7 +55,7 @@ class DeepObjectQueryParamsObjectResArgs: @dataclasses.dataclass class DeepObjectQueryParamsObjectRes: r"""OK""" - args: DeepObjectQueryParamsObjectResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + args: DeepObjectQueryParamsObjectArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) url: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('url') }}) diff --git a/python-client-sdk/src/sdk/models/operations/deprecatedobjectinschemaget.py b/python-client-sdk/src/sdk/models/operations/deprecatedobjectinschemaget.py index 4ded8ae42..8caa46fb1 100755 --- a/python-client-sdk/src/sdk/models/operations/deprecatedobjectinschemaget.py +++ b/python-client-sdk/src/sdk/models/operations/deprecatedobjectinschemaget.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import deprecatedobject as shared_deprecatedobject +from ...models.shared import deprecatedobject as shared_deprecatedobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class DeprecatedObjectInSchemaGet200ApplicationJSON: +class DeprecatedObjectInSchemaGetResponseBody: r"""A successful response that contains a deprecatedObject sent in the request body""" json: Optional[shared_deprecatedobject.DeprecatedObject] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) r"""Deprecated field: This object is deprecated.""" @@ -25,7 +25,7 @@ class DeprecatedObjectInSchemaGetResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - deprecated_object_in_schema_get_200_application_json_object: Optional[DeprecatedObjectInSchemaGet200ApplicationJSON] = dataclasses.field(default=None) + object: Optional[DeprecatedObjectInSchemaGetResponseBody] = dataclasses.field(default=None) r"""A successful response that contains a deprecatedObject sent in the request body""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" diff --git a/python-client-sdk/src/sdk/models/operations/emptyobjectget.py b/python-client-sdk/src/sdk/models/operations/emptyobjectget.py index 0701c0383..4565eef60 100755 --- a/python-client-sdk/src/sdk/models/operations/emptyobjectget.py +++ b/python-client-sdk/src/sdk/models/operations/emptyobjectget.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import emptyobjectparam as shared_emptyobjectparam +from ...models.shared import emptyobjectparam as shared_emptyobjectparam from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/emptyresponseobjectwithcommentget.py b/python-client-sdk/src/sdk/models/operations/emptyresponseobjectwithcommentget.py index 05f12316d..3a073470f 100755 --- a/python-client-sdk/src/sdk/models/operations/emptyresponseobjectwithcommentget.py +++ b/python-client-sdk/src/sdk/models/operations/emptyresponseobjectwithcommentget.py @@ -7,7 +7,7 @@ @dataclasses.dataclass -class EmptyResponseObjectWithCommentGet200ApplicationOctetStream: +class EmptyResponseObjectWithCommentGetResponseBody: r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/flattenedtypedobjectpost.py b/python-client-sdk/src/sdk/models/operations/flattenedtypedobjectpost.py index e15013b4b..a4158480a 100755 --- a/python-client-sdk/src/sdk/models/operations/flattenedtypedobjectpost.py +++ b/python-client-sdk/src/sdk/models/operations/flattenedtypedobjectpost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import typedobject1 as shared_typedobject1 +from ...models.shared import typedobject1 as shared_typedobject1 from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional, Union diff --git a/python-client-sdk/src/sdk/models/operations/formqueryparamsarray.py b/python-client-sdk/src/sdk/models/operations/formqueryparamsarray.py index 266caabcf..1dba08b94 100755 --- a/python-client-sdk/src/sdk/models/operations/formqueryparamsarray.py +++ b/python-client-sdk/src/sdk/models/operations/formqueryparamsarray.py @@ -18,7 +18,7 @@ class FormQueryParamsArrayRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class FormQueryParamsArrayResArgs: +class FormQueryParamsArrayArgs: arr_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arrParam') }}) arr_param_exploded: List[str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arrParamExploded') }}) @@ -29,7 +29,7 @@ class FormQueryParamsArrayResArgs: @dataclasses.dataclass class FormQueryParamsArrayRes: r"""OK""" - args: FormQueryParamsArrayResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + args: FormQueryParamsArrayArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) url: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('url') }}) diff --git a/python-client-sdk/src/sdk/models/operations/formqueryparamscamelobject.py b/python-client-sdk/src/sdk/models/operations/formqueryparamscamelobject.py index e5b9c8273..170290d9c 100755 --- a/python-client-sdk/src/sdk/models/operations/formqueryparamscamelobject.py +++ b/python-client-sdk/src/sdk/models/operations/formqueryparamscamelobject.py @@ -9,7 +9,7 @@ @dataclasses.dataclass -class FormQueryParamsCamelObjectObjParam: +class ObjParam: encoded_count: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'encoded_count' }}) encoded_term: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'encoded_term' }}) @@ -17,7 +17,7 @@ class FormQueryParamsCamelObjectObjParam: @dataclasses.dataclass -class FormQueryParamsCamelObjectObjParamExploded: +class ObjParamExploded: item_count: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'item_count' }}) search_term: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'search_term' }}) @@ -26,15 +26,15 @@ class FormQueryParamsCamelObjectObjParamExploded: @dataclasses.dataclass class FormQueryParamsCamelObjectRequest: - obj_param_exploded: FormQueryParamsCamelObjectObjParamExploded = dataclasses.field(metadata={'query_param': { 'field_name': 'obj_param_exploded', 'style': 'form', 'explode': True }}) - obj_param: Optional[FormQueryParamsCamelObjectObjParam] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'obj_param', 'style': 'form', 'explode': False }}) + obj_param_exploded: ObjParamExploded = dataclasses.field(metadata={'query_param': { 'field_name': 'obj_param_exploded', 'style': 'form', 'explode': True }}) + obj_param: Optional[ObjParam] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'obj_param', 'style': 'form', 'explode': False }}) @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class FormQueryParamsCamelObjectResArgs: +class FormQueryParamsCamelObjectArgs: item_count: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('item_count') }}) search_term: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('search_term') }}) @@ -45,7 +45,7 @@ class FormQueryParamsCamelObjectResArgs: @dataclasses.dataclass class FormQueryParamsCamelObjectRes: r"""OK""" - args: FormQueryParamsCamelObjectResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + args: FormQueryParamsCamelObjectArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) url: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('url') }}) diff --git a/python-client-sdk/src/sdk/models/operations/formqueryparamsobject.py b/python-client-sdk/src/sdk/models/operations/formqueryparamsobject.py index c0b6cc81f..be2c4b692 100755 --- a/python-client-sdk/src/sdk/models/operations/formqueryparamsobject.py +++ b/python-client-sdk/src/sdk/models/operations/formqueryparamsobject.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -21,7 +21,7 @@ class FormQueryParamsObjectRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class FormQueryParamsObjectResArgs: +class FormQueryParamsObjectArgs: any: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('any') }}) bool: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool') }}) date_: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('date') }}) @@ -51,7 +51,7 @@ class FormQueryParamsObjectResArgs: @dataclasses.dataclass class FormQueryParamsObjectRes: r"""OK""" - args: FormQueryParamsObjectResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + args: FormQueryParamsObjectArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) url: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('url') }}) diff --git a/python-client-sdk/src/sdk/models/operations/formqueryparamsprimitive.py b/python-client-sdk/src/sdk/models/operations/formqueryparamsprimitive.py index b6e22dc08..6f52c6909 100755 --- a/python-client-sdk/src/sdk/models/operations/formqueryparamsprimitive.py +++ b/python-client-sdk/src/sdk/models/operations/formqueryparamsprimitive.py @@ -20,7 +20,7 @@ class FormQueryParamsPrimitiveRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class FormQueryParamsPrimitiveResArgs: +class FormQueryParamsPrimitiveArgs: bool_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('boolParam') }}) int_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('intParam') }}) num_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('numParam') }}) @@ -33,7 +33,7 @@ class FormQueryParamsPrimitiveResArgs: @dataclasses.dataclass class FormQueryParamsPrimitiveRes: r"""OK""" - args: FormQueryParamsPrimitiveResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + args: FormQueryParamsPrimitiveArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) url: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('url') }}) diff --git a/python-client-sdk/src/sdk/models/operations/formqueryparamsrefparamobject.py b/python-client-sdk/src/sdk/models/operations/formqueryparamsrefparamobject.py index 31d5fa496..22632202c 100755 --- a/python-client-sdk/src/sdk/models/operations/formqueryparamsrefparamobject.py +++ b/python-client-sdk/src/sdk/models/operations/formqueryparamsrefparamobject.py @@ -3,8 +3,8 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import refqueryparamobj as shared_refqueryparamobj -from ..shared import refqueryparamobjexploded as shared_refqueryparamobjexploded +from ...models.shared import refqueryparamobj as shared_refqueryparamobj +from ...models.shared import refqueryparamobjexploded as shared_refqueryparamobjexploded from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -20,7 +20,7 @@ class FormQueryParamsRefParamObjectRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class FormQueryParamsRefParamObjectResArgs: +class FormQueryParamsRefParamObjectArgs: bool: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool') }}) int: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int') }}) num: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('num') }}) @@ -34,7 +34,7 @@ class FormQueryParamsRefParamObjectResArgs: @dataclasses.dataclass class FormQueryParamsRefParamObjectRes: r"""OK""" - args: FormQueryParamsRefParamObjectResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + args: FormQueryParamsRefParamObjectArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) url: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('url') }}) diff --git a/python-client-sdk/src/sdk/models/operations/getglobalnameoverride.py b/python-client-sdk/src/sdk/models/operations/getglobalnameoverride.py index 6c11f9c19..4589de4a9 100755 --- a/python-client-sdk/src/sdk/models/operations/getglobalnameoverride.py +++ b/python-client-sdk/src/sdk/models/operations/getglobalnameoverride.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class GetGlobalNameOverride200ApplicationJSON: +class GetGlobalNameOverrideResponseBody: r"""A successful response that contains the simpleObject sent in the request body""" json: Optional[shared_simpleobject.SimpleObject] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) r"""A simple object that uses all our supported primitive types and enums and has optional properties. @@ -27,7 +27,7 @@ class GetGlobalNameOverrideResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - get_global_name_override_200_application_json_object: Optional[GetGlobalNameOverride200ApplicationJSON] = dataclasses.field(default=None) + object: Optional[GetGlobalNameOverrideResponseBody] = dataclasses.field(default=None) r"""A successful response that contains the simpleObject sent in the request body""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" diff --git a/python-client-sdk/src/sdk/models/operations/getresource.py b/python-client-sdk/src/sdk/models/operations/getresource.py index 270ee43a3..799f4ba3d 100755 --- a/python-client-sdk/src/sdk/models/operations/getresource.py +++ b/python-client-sdk/src/sdk/models/operations/getresource.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import exampleresource as shared_exampleresource +from ...models.shared import exampleresource as shared_exampleresource from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/globalsqueryparameterget.py b/python-client-sdk/src/sdk/models/operations/globalsqueryparameterget.py index b5b4478e8..714e75e01 100755 --- a/python-client-sdk/src/sdk/models/operations/globalsqueryparameterget.py +++ b/python-client-sdk/src/sdk/models/operations/globalsqueryparameterget.py @@ -17,7 +17,7 @@ class GlobalsQueryParameterGetRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class GlobalsQueryParameterGetResArgs: +class Args: global_query_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('globalQueryParam') }}) @@ -27,7 +27,7 @@ class GlobalsQueryParameterGetResArgs: @dataclasses.dataclass class GlobalsQueryParameterGetRes: r"""OK""" - args: GlobalsQueryParameterGetResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + args: Args = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) diff --git a/python-client-sdk/src/sdk/models/operations/headerparamsarray.py b/python-client-sdk/src/sdk/models/operations/headerparamsarray.py index bcb53e9f0..2dec6dae5 100755 --- a/python-client-sdk/src/sdk/models/operations/headerparamsarray.py +++ b/python-client-sdk/src/sdk/models/operations/headerparamsarray.py @@ -17,7 +17,7 @@ class HeaderParamsArrayRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class HeaderParamsArrayResHeaders: +class Headers: x_header_array: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('X-Header-Array') }}) @@ -27,7 +27,7 @@ class HeaderParamsArrayResHeaders: @dataclasses.dataclass class HeaderParamsArrayRes: r"""OK""" - headers: HeaderParamsArrayResHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) + headers: Headers = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) diff --git a/python-client-sdk/src/sdk/models/operations/headerparamsmap.py b/python-client-sdk/src/sdk/models/operations/headerparamsmap.py index b01cdf356..850ea2074 100755 --- a/python-client-sdk/src/sdk/models/operations/headerparamsmap.py +++ b/python-client-sdk/src/sdk/models/operations/headerparamsmap.py @@ -18,7 +18,7 @@ class HeaderParamsMapRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class HeaderParamsMapResHeaders: +class HeaderParamsMapHeaders: x_header_map: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('X-Header-Map') }}) x_header_map_explode: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('X-Header-Map-Explode') }}) @@ -29,7 +29,7 @@ class HeaderParamsMapResHeaders: @dataclasses.dataclass class HeaderParamsMapRes: r"""OK""" - headers: HeaderParamsMapResHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) + headers: HeaderParamsMapHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) diff --git a/python-client-sdk/src/sdk/models/operations/headerparamsobject.py b/python-client-sdk/src/sdk/models/operations/headerparamsobject.py index 7a0465e7f..c88191c62 100755 --- a/python-client-sdk/src/sdk/models/operations/headerparamsobject.py +++ b/python-client-sdk/src/sdk/models/operations/headerparamsobject.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -21,7 +21,7 @@ class HeaderParamsObjectRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class HeaderParamsObjectResHeaders: +class HeaderParamsObjectHeaders: x_header_obj: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('X-Header-Obj') }}) x_header_obj_explode: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('X-Header-Obj-Explode') }}) @@ -32,7 +32,7 @@ class HeaderParamsObjectResHeaders: @dataclasses.dataclass class HeaderParamsObjectRes: r"""OK""" - headers: HeaderParamsObjectResHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) + headers: HeaderParamsObjectHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) diff --git a/python-client-sdk/src/sdk/models/operations/headerparamsprimitive.py b/python-client-sdk/src/sdk/models/operations/headerparamsprimitive.py index 6e9bfd804..79cdb5f8f 100755 --- a/python-client-sdk/src/sdk/models/operations/headerparamsprimitive.py +++ b/python-client-sdk/src/sdk/models/operations/headerparamsprimitive.py @@ -20,7 +20,7 @@ class HeaderParamsPrimitiveRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class HeaderParamsPrimitiveResHeaders: +class HeaderParamsPrimitiveHeaders: x_header_boolean: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('X-Header-Boolean') }}) x_header_integer: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('X-Header-Integer') }}) x_header_number: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('X-Header-Number') }}) @@ -33,7 +33,7 @@ class HeaderParamsPrimitiveResHeaders: @dataclasses.dataclass class HeaderParamsPrimitiveRes: r"""OK""" - headers: HeaderParamsPrimitiveResHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) + headers: HeaderParamsPrimitiveHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) diff --git a/python-client-sdk/src/sdk/models/operations/ignoredgenerationget.py b/python-client-sdk/src/sdk/models/operations/ignoredgenerationget.py index 372295953..94cfd686f 100755 --- a/python-client-sdk/src/sdk/models/operations/ignoredgenerationget.py +++ b/python-client-sdk/src/sdk/models/operations/ignoredgenerationget.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class IgnoredGenerationGet200ApplicationJSON: +class IgnoredGenerationGetResponseBody: r"""A successful response that contains the simpleObject sent in the request body""" json: Optional[shared_simpleobject.SimpleObject] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) r"""A simple object that uses all our supported primitive types and enums and has optional properties. @@ -27,7 +27,7 @@ class IgnoredGenerationGetResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - ignored_generation_get_200_application_json_object: Optional[IgnoredGenerationGet200ApplicationJSON] = dataclasses.field(default=None) + object: Optional[IgnoredGenerationGetResponseBody] = dataclasses.field(default=None) r"""A successful response that contains the simpleObject sent in the request body""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" diff --git a/python-client-sdk/src/sdk/models/operations/ignorespost.py b/python-client-sdk/src/sdk/models/operations/ignorespost.py index e8a519a33..f017547f2 100755 --- a/python-client-sdk/src/sdk/models/operations/ignorespost.py +++ b/python-client-sdk/src/sdk/models/operations/ignorespost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import httpbinsimplejsonobject as shared_httpbinsimplejsonobject +from ...models.shared import httpbinsimplejsonobject as shared_httpbinsimplejsonobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class IgnoresPostApplicationJSON: +class IgnoresPostRequestBody: callback_url: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('callbackUrl'), 'exclude': lambda f: f is None }}) test_prop: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('testProp'), 'exclude': lambda f: f is None }}) @@ -20,7 +20,7 @@ class IgnoresPostApplicationJSON: @dataclasses.dataclass class IgnoresPostRequest: - request_body: IgnoresPostApplicationJSON = dataclasses.field(metadata={'request': { 'media_type': 'application/json' }}) + request_body: IgnoresPostRequestBody = dataclasses.field(metadata={'request': { 'media_type': 'application/json' }}) test_param: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'testParam', 'style': 'form', 'explode': True }}) diff --git a/python-client-sdk/src/sdk/models/operations/inlinebodyandparamconflict.py b/python-client-sdk/src/sdk/models/operations/inlinebodyandparamconflict.py index 296d5fcca..2f1cb9118 100755 --- a/python-client-sdk/src/sdk/models/operations/inlinebodyandparamconflict.py +++ b/python-client-sdk/src/sdk/models/operations/inlinebodyandparamconflict.py @@ -26,7 +26,7 @@ class InlineBodyAndParamConflictRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class InlineBodyAndParamConflictResJSON: +class JSON: str_: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('str') }}) @@ -37,7 +37,7 @@ class InlineBodyAndParamConflictResJSON: class InlineBodyAndParamConflictRes: r"""OK""" args: Dict[str, str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) - json: InlineBodyAndParamConflictResJSON = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) + json: JSON = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) diff --git a/python-client-sdk/src/sdk/models/operations/inlinebodyandparamnoconflict.py b/python-client-sdk/src/sdk/models/operations/inlinebodyandparamnoconflict.py index 854054b0e..1492e34b0 100755 --- a/python-client-sdk/src/sdk/models/operations/inlinebodyandparamnoconflict.py +++ b/python-client-sdk/src/sdk/models/operations/inlinebodyandparamnoconflict.py @@ -26,7 +26,7 @@ class InlineBodyAndParamNoConflictRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class InlineBodyAndParamNoConflictResJSON: +class InlineBodyAndParamNoConflictJSON: body_str: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bodyStr') }}) @@ -37,7 +37,7 @@ class InlineBodyAndParamNoConflictResJSON: class InlineBodyAndParamNoConflictRes: r"""OK""" args: Dict[str, str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) - json: InlineBodyAndParamNoConflictResJSON = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) + json: InlineBodyAndParamNoConflictJSON = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) diff --git a/python-client-sdk/src/sdk/models/operations/jsonqueryparamsobject.py b/python-client-sdk/src/sdk/models/operations/jsonqueryparamsobject.py index 87b9652e3..7e6a18557 100755 --- a/python-client-sdk/src/sdk/models/operations/jsonqueryparamsobject.py +++ b/python-client-sdk/src/sdk/models/operations/jsonqueryparamsobject.py @@ -3,8 +3,8 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import deepobject as shared_deepobject -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import deepobject as shared_deepobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -21,7 +21,7 @@ class JSONQueryParamsObjectRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class JSONQueryParamsObjectResArgs: +class JSONQueryParamsObjectArgs: deep_obj_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('deepObjParam') }}) simple_obj_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('simpleObjParam') }}) @@ -32,7 +32,7 @@ class JSONQueryParamsObjectResArgs: @dataclasses.dataclass class JSONQueryParamsObjectRes: r"""OK""" - args: JSONQueryParamsObjectResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + args: JSONQueryParamsObjectArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) url: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('url') }}) diff --git a/python-client-sdk/src/sdk/models/operations/mixedparameterscamelcase.py b/python-client-sdk/src/sdk/models/operations/mixedparameterscamelcase.py index 6f9cc424e..34f81c0b0 100755 --- a/python-client-sdk/src/sdk/models/operations/mixedparameterscamelcase.py +++ b/python-client-sdk/src/sdk/models/operations/mixedparameterscamelcase.py @@ -19,7 +19,7 @@ class MixedParametersCamelCaseRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class MixedParametersCamelCaseResArgs: +class MixedParametersCamelCaseArgs: query_string_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('query_string_param') }}) @@ -27,7 +27,7 @@ class MixedParametersCamelCaseResArgs: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class MixedParametersCamelCaseResHeaders: +class MixedParametersCamelCaseHeaders: header_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('Header-Param') }}) @@ -37,8 +37,8 @@ class MixedParametersCamelCaseResHeaders: @dataclasses.dataclass class MixedParametersCamelCaseRes: r"""OK""" - args: MixedParametersCamelCaseResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) - headers: MixedParametersCamelCaseResHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) + args: MixedParametersCamelCaseArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + headers: MixedParametersCamelCaseHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) url: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('url') }}) diff --git a/python-client-sdk/src/sdk/models/operations/mixedparametersprimitives.py b/python-client-sdk/src/sdk/models/operations/mixedparametersprimitives.py index ea0ed5fa6..2b353c264 100755 --- a/python-client-sdk/src/sdk/models/operations/mixedparametersprimitives.py +++ b/python-client-sdk/src/sdk/models/operations/mixedparametersprimitives.py @@ -19,7 +19,7 @@ class MixedParametersPrimitivesRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class MixedParametersPrimitivesResArgs: +class MixedParametersPrimitivesArgs: query_string_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('queryStringParam') }}) @@ -27,7 +27,7 @@ class MixedParametersPrimitivesResArgs: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class MixedParametersPrimitivesResHeaders: +class MixedParametersPrimitivesHeaders: headerparam: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('Headerparam') }}) @@ -37,8 +37,8 @@ class MixedParametersPrimitivesResHeaders: @dataclasses.dataclass class MixedParametersPrimitivesRes: r"""OK""" - args: MixedParametersPrimitivesResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) - headers: MixedParametersPrimitivesResHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) + args: MixedParametersPrimitivesArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + headers: MixedParametersPrimitivesHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) url: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('url') }}) diff --git a/python-client-sdk/src/sdk/models/operations/mixedqueryparams.py b/python-client-sdk/src/sdk/models/operations/mixedqueryparams.py index c0bc98df0..ab8d49f9e 100755 --- a/python-client-sdk/src/sdk/models/operations/mixedqueryparams.py +++ b/python-client-sdk/src/sdk/models/operations/mixedqueryparams.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Dict, Optional diff --git a/python-client-sdk/src/sdk/models/operations/mixedtypeoneofpost.py b/python-client-sdk/src/sdk/models/operations/mixedtypeoneofpost.py index 0fec04dc1..a1790dfa3 100755 --- a/python-client-sdk/src/sdk/models/operations/mixedtypeoneofpost.py +++ b/python-client-sdk/src/sdk/models/operations/mixedtypeoneofpost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional, Union @@ -15,7 +15,7 @@ class MixedTypeOneOfPostRequestBody: @dataclasses.dataclass -class MixedTypeOneOfPostResJSON: +class MixedTypeOneOfPostJSON: pass diff --git a/python-client-sdk/src/sdk/models/operations/multiplemixedoptionsauth.py b/python-client-sdk/src/sdk/models/operations/multiplemixedoptionsauth.py index ff37738df..db6b76402 100755 --- a/python-client-sdk/src/sdk/models/operations/multiplemixedoptionsauth.py +++ b/python-client-sdk/src/sdk/models/operations/multiplemixedoptionsauth.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import security as shared_security +from ...models.shared import security as shared_security from typing import Optional MULTIPLE_MIXED_OPTIONS_AUTH_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/multiplemixedschemeauth.py b/python-client-sdk/src/sdk/models/operations/multiplemixedschemeauth.py index dca4da358..444f98be0 100755 --- a/python-client-sdk/src/sdk/models/operations/multiplemixedschemeauth.py +++ b/python-client-sdk/src/sdk/models/operations/multiplemixedschemeauth.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import security as shared_security +from ...models.shared import security as shared_security from typing import Optional MULTIPLE_MIXED_SCHEME_AUTH_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/multipleoptionswithmixedschemesauth.py b/python-client-sdk/src/sdk/models/operations/multipleoptionswithmixedschemesauth.py index 746b47b25..81a35ba74 100755 --- a/python-client-sdk/src/sdk/models/operations/multipleoptionswithmixedschemesauth.py +++ b/python-client-sdk/src/sdk/models/operations/multipleoptionswithmixedschemesauth.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import security as shared_security +from ...models.shared import security as shared_security from typing import Optional MULTIPLE_OPTIONS_WITH_MIXED_SCHEMES_AUTH_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/nameoverrideget.py b/python-client-sdk/src/sdk/models/operations/nameoverrideget.py index e9f8eb3b9..710d842eb 100755 --- a/python-client-sdk/src/sdk/models/operations/nameoverrideget.py +++ b/python-client-sdk/src/sdk/models/operations/nameoverrideget.py @@ -3,13 +3,13 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from enum import Enum from sdk import utils from typing import Optional -class NameOverrideGetEnumNameOverride(str, Enum): +class EnumNameOverride(str, Enum): r"""An enum type""" VALUE1 = 'value1' VALUE2 = 'value2' @@ -18,7 +18,7 @@ class NameOverrideGetEnumNameOverride(str, Enum): @dataclasses.dataclass class NameOverrideGetRequest: - test_enum_query_param: NameOverrideGetEnumNameOverride = dataclasses.field(metadata={'query_param': { 'field_name': 'enumNameOverride', 'style': 'form', 'explode': True }}) + test_enum_query_param: EnumNameOverride = dataclasses.field(metadata={'query_param': { 'field_name': 'enumNameOverride', 'style': 'form', 'explode': True }}) r"""An enum type""" test_query_param: str = dataclasses.field(metadata={'query_param': { 'field_name': 'nameOverride', 'style': 'form', 'explode': True }}) @@ -27,7 +27,7 @@ class NameOverrideGetRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class OverriddenResponse: +class NameOverrideGetOverriddenResponse: r"""A successful response that contains the simpleObject sent in the request body""" json: Optional[shared_simpleobject.SimpleObject] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) r"""A simple object that uses all our supported primitive types and enums and has optional properties. @@ -43,7 +43,7 @@ class NameOverrideGetResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - overridden_response: Optional[OverriddenResponse] = dataclasses.field(default=None) + overridden_response: Optional[NameOverrideGetOverriddenResponse] = dataclasses.field(default=None) r"""A successful response that contains the simpleObject sent in the request body""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" diff --git a/python-client-sdk/src/sdk/models/operations/nullableobjectpost.py b/python-client-sdk/src/sdk/models/operations/nullableobjectpost.py index 2651d759b..5103ace78 100755 --- a/python-client-sdk/src/sdk/models/operations/nullableobjectpost.py +++ b/python-client-sdk/src/sdk/models/operations/nullableobjectpost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import nullableobject as shared_nullableobject +from ...models.shared import nullableobject as shared_nullableobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/nullableoneofrefinobjectpost.py b/python-client-sdk/src/sdk/models/operations/nullableoneofrefinobjectpost.py index 2352b678f..800c3c35d 100755 --- a/python-client-sdk/src/sdk/models/operations/nullableoneofrefinobjectpost.py +++ b/python-client-sdk/src/sdk/models/operations/nullableoneofrefinobjectpost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import nullableoneofrefinobject as shared_nullableoneofrefinobject +from ...models.shared import nullableoneofrefinobject as shared_nullableoneofrefinobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/nullableoneofschemapost.py b/python-client-sdk/src/sdk/models/operations/nullableoneofschemapost.py index 88d387bc5..2ec92e628 100755 --- a/python-client-sdk/src/sdk/models/operations/nullableoneofschemapost.py +++ b/python-client-sdk/src/sdk/models/operations/nullableoneofschemapost.py @@ -3,8 +3,8 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import typedobject1 as shared_typedobject1 -from ..shared import typedobject2 as shared_typedobject2 +from ...models.shared import typedobject1 as shared_typedobject1 +from ...models.shared import typedobject2 as shared_typedobject2 from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional, Union @@ -16,7 +16,7 @@ class NullableOneOfSchemaPostRequestBody: @dataclasses.dataclass -class NullableOneOfSchemaPostResJSON: +class NullableOneOfSchemaPostJSON: pass diff --git a/python-client-sdk/src/sdk/models/operations/nullableoneoftypeinobjectpost.py b/python-client-sdk/src/sdk/models/operations/nullableoneoftypeinobjectpost.py index 498168c20..970a8b78b 100755 --- a/python-client-sdk/src/sdk/models/operations/nullableoneoftypeinobjectpost.py +++ b/python-client-sdk/src/sdk/models/operations/nullableoneoftypeinobjectpost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import nullableoneoftypeinobject as shared_nullableoneoftypeinobject +from ...models.shared import nullableoneoftypeinobject as shared_nullableoneoftypeinobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/nullablerequiredemptyobjectpost.py b/python-client-sdk/src/sdk/models/operations/nullablerequiredemptyobjectpost.py index d40462ea0..783119d64 100755 --- a/python-client-sdk/src/sdk/models/operations/nullablerequiredemptyobjectpost.py +++ b/python-client-sdk/src/sdk/models/operations/nullablerequiredemptyobjectpost.py @@ -9,26 +9,26 @@ @dataclasses.dataclass -class NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj: +class NullableOptionalObj: pass @dataclasses.dataclass -class NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj: +class NullableRequiredObj: pass @dataclasses.dataclass -class NullableRequiredEmptyObjectPostRequestBodyRequiredObj: +class RequiredObj: pass @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class NullableRequiredEmptyObjectPostRequestBody: - nullable_required_obj: Optional[NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableRequiredObj') }}) - required_obj: NullableRequiredEmptyObjectPostRequestBodyRequiredObj = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('RequiredObj') }}) - nullable_optional_obj: Optional[NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableOptionalObj') }}) + nullable_required_obj: Optional[NullableRequiredObj] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableRequiredObj') }}) + required_obj: RequiredObj = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('RequiredObj') }}) + nullable_optional_obj: Optional[NullableOptionalObj] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableOptionalObj') }}) @@ -39,9 +39,9 @@ class NullableRequiredEmptyObjectPostResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - nullable_required_empty_object_post_200_application_json_string: Optional[str] = dataclasses.field(default=None) - r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" + res: Optional[str] = dataclasses.field(default=None) + r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/nullablerequiredpropertypost.py b/python-client-sdk/src/sdk/models/operations/nullablerequiredpropertypost.py index 7733db8a5..c6e470054 100755 --- a/python-client-sdk/src/sdk/models/operations/nullablerequiredpropertypost.py +++ b/python-client-sdk/src/sdk/models/operations/nullablerequiredpropertypost.py @@ -8,7 +8,7 @@ from sdk import utils from typing import List, Optional -class NullableRequiredPropertyPostRequestBodyNullableRequiredEnum(str, Enum): +class NullableRequiredEnum(str, Enum): FIRST = 'first' SECOND = 'second' @@ -17,7 +17,7 @@ class NullableRequiredPropertyPostRequestBodyNullableRequiredEnum(str, Enum): @dataclasses.dataclass class NullableRequiredPropertyPostRequestBody: nullable_required_array: Optional[List[float]] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableRequiredArray') }}) - nullable_required_enum: Optional[NullableRequiredPropertyPostRequestBodyNullableRequiredEnum] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableRequiredEnum') }}) + nullable_required_enum: Optional[NullableRequiredEnum] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableRequiredEnum') }}) nullable_required_int: Optional[int] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableRequiredInt') }}) nullable_optional_int: Optional[int] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableOptionalInt') }}) @@ -30,9 +30,9 @@ class NullableRequiredPropertyPostResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - nullable_required_property_post_200_application_json_string: Optional[str] = dataclasses.field(default=None) - r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" + res: Optional[str] = dataclasses.field(default=None) + r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/nullablerequiredsharedobjectpost.py b/python-client-sdk/src/sdk/models/operations/nullablerequiredsharedobjectpost.py index f238c05e8..ba40d4823 100755 --- a/python-client-sdk/src/sdk/models/operations/nullablerequiredsharedobjectpost.py +++ b/python-client-sdk/src/sdk/models/operations/nullablerequiredsharedobjectpost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import nullableobject as shared_nullableobject +from ...models.shared import nullableobject as shared_nullableobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -24,9 +24,9 @@ class NullableRequiredSharedObjectPostResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - nullable_required_shared_object_post_200_application_json_string: Optional[str] = dataclasses.field(default=None) - r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" + res: Optional[str] = dataclasses.field(default=None) + r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/nullabletypedobjectpost.py b/python-client-sdk/src/sdk/models/operations/nullabletypedobjectpost.py index da1b2714e..862c597fd 100755 --- a/python-client-sdk/src/sdk/models/operations/nullabletypedobjectpost.py +++ b/python-client-sdk/src/sdk/models/operations/nullabletypedobjectpost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import typedobject1 as shared_typedobject1 +from ...models.shared import typedobject1 as shared_typedobject1 from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/objectcircularreferenceget.py b/python-client-sdk/src/sdk/models/operations/objectcircularreferenceget.py index f83d1116b..9ad707d94 100755 --- a/python-client-sdk/src/sdk/models/operations/objectcircularreferenceget.py +++ b/python-client-sdk/src/sdk/models/operations/objectcircularreferenceget.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import objectcircularreferenceobject as shared_objectcircularreferenceobject +from ...models.shared import objectcircularreferenceobject as shared_objectcircularreferenceobject from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/oneofcircularreferenceget.py b/python-client-sdk/src/sdk/models/operations/oneofcircularreferenceget.py index e21228d2b..a4bebd3d9 100755 --- a/python-client-sdk/src/sdk/models/operations/oneofcircularreferenceget.py +++ b/python-client-sdk/src/sdk/models/operations/oneofcircularreferenceget.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import oneofcircularreferenceobject as shared_oneofcircularreferenceobject +from ...models.shared import oneofcircularreferenceobject as shared_oneofcircularreferenceobject from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/pathparameterjson.py b/python-client-sdk/src/sdk/models/operations/pathparameterjson.py index 6a37502f3..8259aded7 100755 --- a/python-client-sdk/src/sdk/models/operations/pathparameterjson.py +++ b/python-client-sdk/src/sdk/models/operations/pathparameterjson.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/pipedelimitedqueryparamsarray.py b/python-client-sdk/src/sdk/models/operations/pipedelimitedqueryparamsarray.py index e65f46272..61d5a1c66 100755 --- a/python-client-sdk/src/sdk/models/operations/pipedelimitedqueryparamsarray.py +++ b/python-client-sdk/src/sdk/models/operations/pipedelimitedqueryparamsarray.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Dict, List, Optional @@ -22,7 +22,7 @@ class PipeDelimitedQueryParamsArrayRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class PipeDelimitedQueryParamsArrayResArgs: +class PipeDelimitedQueryParamsArrayArgs: arr_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arrParam') }}) arr_param_exploded: List[str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arrParamExploded') }}) @@ -33,7 +33,7 @@ class PipeDelimitedQueryParamsArrayResArgs: @dataclasses.dataclass class PipeDelimitedQueryParamsArrayRes: r"""OK""" - args: PipeDelimitedQueryParamsArrayResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + args: PipeDelimitedQueryParamsArrayArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) url: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('url') }}) diff --git a/python-client-sdk/src/sdk/models/operations/primitivetypeoneofpost.py b/python-client-sdk/src/sdk/models/operations/primitivetypeoneofpost.py index f1c2af9ed..bd237f066 100755 --- a/python-client-sdk/src/sdk/models/operations/primitivetypeoneofpost.py +++ b/python-client-sdk/src/sdk/models/operations/primitivetypeoneofpost.py @@ -14,7 +14,7 @@ class PrimitiveTypeOneOfPostRequestBody: @dataclasses.dataclass -class PrimitiveTypeOneOfPostResJSON: +class PrimitiveTypeOneOfPostJSON: pass diff --git a/python-client-sdk/src/sdk/models/operations/put_anything_ignoredgeneration.py b/python-client-sdk/src/sdk/models/operations/put_anything_ignoredgeneration.py index ae16e1fbd..016bf2e73 100755 --- a/python-client-sdk/src/sdk/models/operations/put_anything_ignoredgeneration.py +++ b/python-client-sdk/src/sdk/models/operations/put_anything_ignoredgeneration.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class PutAnythingIgnoredGeneration200ApplicationJSON: +class PutAnythingIgnoredGenerationResponseBody: r"""OK""" json: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) @@ -23,7 +23,7 @@ class PutAnythingIgnoredGenerationResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - put_anything_ignored_generation_200_application_json_object: Optional[PutAnythingIgnoredGeneration200ApplicationJSON] = dataclasses.field(default=None) + object: Optional[PutAnythingIgnoredGenerationResponseBody] = dataclasses.field(default=None) r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarray.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarray.py index 191cb6f7d..8fb75052e 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarray.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarray.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from typing import List, Optional REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_SERVERS = [ @@ -19,7 +19,7 @@ class RequestBodyPostApplicationJSONArrayResponse: r"""HTTP response status code for this operation""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - simple_objects: Optional[List[shared_simpleobject.SimpleObject]] = dataclasses.field(default=None) + res: Optional[List[shared_simpleobject.SimpleObject]] = dataclasses.field(default=None) r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.py index 51ed7038b..16ff7c9fc 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobjectcamelcase as shared_simpleobjectcamelcase +from ...models.shared import simpleobjectcamelcase as shared_simpleobjectcamelcase from typing import List, Optional REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_CAMEL_CASE_SERVERS = [ @@ -19,7 +19,7 @@ class RequestBodyPostApplicationJSONArrayCamelCaseResponse: r"""HTTP response status code for this operation""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - simple_object_camel_cases: Optional[List[shared_simpleobjectcamelcase.SimpleObjectCamelCase]] = dataclasses.field(default=None) + res: Optional[List[shared_simpleobjectcamelcase.SimpleObjectCamelCase]] = dataclasses.field(default=None) r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobj.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobj.py index a7c1a673e..d02a8008a 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobj.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobj.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import arrobjvalue as shared_arrobjvalue +from ...models.shared import arrobjvalue as shared_arrobjvalue from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.py index 129bed2ab..6f608539f 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import arrobjvaluecamelcase as shared_arrobjvaluecamelcase +from ...models.shared import arrobjvaluecamelcase as shared_arrobjvaluecamelcase from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.py index fde453495..896bfa295 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from typing import List, Optional REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_ARRAY_SERVERS = [ @@ -17,9 +17,9 @@ class RequestBodyPostApplicationJSONArrayOfArrayResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - arrs: Optional[List[List[shared_simpleobject.SimpleObject]]] = dataclasses.field(default=None) - r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" + res: Optional[List[List[shared_simpleobject.SimpleObject]]] = dataclasses.field(default=None) + r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.py index 3a45a40bf..56dbbc3cc 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobjectcamelcase as shared_simpleobjectcamelcase +from ...models.shared import simpleobjectcamelcase as shared_simpleobjectcamelcase from typing import List, Optional REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_ARRAY_CAMEL_CASE_SERVERS = [ @@ -17,9 +17,9 @@ class RequestBodyPostApplicationJSONArrayOfArrayCamelCaseResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - arrs: Optional[List[List[shared_simpleobjectcamelcase.SimpleObjectCamelCase]]] = dataclasses.field(default=None) - r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" + res: Optional[List[List[shared_simpleobjectcamelcase.SimpleObjectCamelCase]]] = dataclasses.field(default=None) + r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.py index 14fd83b02..47ec2b868 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.py @@ -16,9 +16,9 @@ class RequestBodyPostApplicationJSONArrayOfArrayOfPrimitiveResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - arrs: Optional[List[List[str]]] = dataclasses.field(default=None) - r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" + res: Optional[List[List[str]]] = dataclasses.field(default=None) + r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.py index 201935548..f9dd32743 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from typing import Dict, List, Optional REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_MAP_SERVERS = [ @@ -17,9 +17,9 @@ class RequestBodyPostApplicationJSONArrayOfMapResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - maps: Optional[List[Dict[str, shared_simpleobject.SimpleObject]]] = dataclasses.field(default=None) - r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" + res: Optional[List[Dict[str, shared_simpleobject.SimpleObject]]] = dataclasses.field(default=None) + r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.py index 136c9fb71..555f6f768 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobjectcamelcase as shared_simpleobjectcamelcase +from ...models.shared import simpleobjectcamelcase as shared_simpleobjectcamelcase from typing import Dict, List, Optional REQUEST_BODY_POST_APPLICATION_JSON_ARRAY_OF_MAP_CAMEL_CASE_SERVERS = [ @@ -17,9 +17,9 @@ class RequestBodyPostApplicationJSONArrayOfMapCamelCaseResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" - maps: Optional[List[Dict[str, shared_simpleobjectcamelcase.SimpleObjectCamelCase]]] = dataclasses.field(default=None) - r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" + res: Optional[List[Dict[str, shared_simpleobjectcamelcase.SimpleObjectCamelCase]]] = dataclasses.field(default=None) + r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.py index 8611114b8..7083d7674 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.py @@ -18,7 +18,7 @@ class RequestBodyPostApplicationJSONArrayOfPrimitiveResponse: r"""HTTP response status code for this operation""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - strings: Optional[List[str]] = dataclasses.field(default=None) + res: Optional[List[str]] = dataclasses.field(default=None) r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeep.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeep.py index e1bf3036b..982d9c2c8 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeep.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeep.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import deepobject as shared_deepobject +from ...models.shared import deepobject as shared_deepobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeepcamelcase.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeepcamelcase.py index 603d6a0fc..3092d2510 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeepcamelcase.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeepcamelcase.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import deepobjectcamelcase as shared_deepobjectcamelcase +from ...models.shared import deepobjectcamelcase as shared_deepobjectcamelcase from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmap.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmap.py index 0febb493b..0c76edfe6 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmap.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmap.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from typing import Dict, Optional REQUEST_BODY_POST_APPLICATION_JSON_MAP_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapcamelcase.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapcamelcase.py index 925a3947d..3e81fcd89 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapcamelcase.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapcamelcase.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobjectcamelcase as shared_simpleobjectcamelcase +from ...models.shared import simpleobjectcamelcase as shared_simpleobjectcamelcase from typing import Dict, Optional REQUEST_BODY_POST_APPLICATION_JSON_MAP_CAMEL_CASE_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobj.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobj.py index 5af2ba83b..b44441e0d 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobj.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobj.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import mapobjvalue as shared_mapobjvalue +from ...models.shared import mapobjvalue as shared_mapobjvalue from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobjcamelcase.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobjcamelcase.py index 17b7295a4..3b6b2e65b 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobjcamelcase.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobjcamelcase.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import mapobjvaluecamelcase as shared_mapobjvaluecamelcase +from ...models.shared import mapobjvaluecamelcase as shared_mapobjvaluecamelcase from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarray.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarray.py index 939ca7b5e..51491a431 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarray.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarray.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from typing import Dict, List, Optional REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_ARRAY_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.py index 0ef675a8a..3d7de64a2 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobjectcamelcase as shared_simpleobjectcamelcase +from ...models.shared import simpleobjectcamelcase as shared_simpleobjectcamelcase from typing import Dict, List, Optional REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_ARRAY_CAMEL_CASE_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmap.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmap.py index 588028eeb..01ca379e7 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmap.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmap.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from typing import Dict, Optional REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_MAP_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.py index 4a0412bc7..341d5120a 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobjectcamelcase as shared_simpleobjectcamelcase +from ...models.shared import simpleobjectcamelcase as shared_simpleobjectcamelcase from typing import Dict, Optional REQUEST_BODY_POST_APPLICATION_JSON_MAP_OF_MAP_CAMEL_CASE_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.py index 3803bd9b9..2c764c12a 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimple.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimple.py index 87009fd69..7c64f51e3 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimple.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimple.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimplecamelcase.py b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimplecamelcase.py index c88f3f42c..195838f84 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimplecamelcase.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimplecamelcase.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobjectcamelcase as shared_simpleobjectcamelcase +from ...models.shared import simpleobjectcamelcase as shared_simpleobjectcamelcase from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostcomplexnumbertypes.py b/python-client-sdk/src/sdk/models/operations/requestbodypostcomplexnumbertypes.py index 09763adb0..cb9bbe8a4 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostcomplexnumbertypes.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostcomplexnumbertypes.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import complexnumbertypes as shared_complexnumbertypes +from ...models.shared import complexnumbertypes as shared_complexnumbertypes from dataclasses_json import Undefined, dataclass_json from decimal import Decimal from sdk import utils @@ -27,7 +27,7 @@ class RequestBodyPostComplexNumberTypesRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostComplexNumberTypes200ApplicationJSON: +class RequestBodyPostComplexNumberTypesResponseBody: r"""OK""" json: shared_complexnumbertypes.ComplexNumberTypes = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) url: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('url') }}) @@ -41,9 +41,9 @@ class RequestBodyPostComplexNumberTypesResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostComplexNumberTypesResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_complex_number_types_200_application_json_object: Optional[RequestBodyPostComplexNumberTypes200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostdefaultsandconsts.py b/python-client-sdk/src/sdk/models/operations/requestbodypostdefaultsandconsts.py index 5e9322346..07bb51c33 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostdefaultsandconsts.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostdefaultsandconsts.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import defaultsandconstsoutput as shared_defaultsandconstsoutput +from ...models.shared import defaultsandconstsoutput as shared_defaultsandconstsoutput from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostDefaultsAndConsts200ApplicationJSON: +class RequestBodyPostDefaultsAndConstsResponseBody: r"""OK""" json: shared_defaultsandconstsoutput.DefaultsAndConstsOutput = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -24,9 +24,9 @@ class RequestBodyPostDefaultsAndConstsResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostDefaultsAndConstsResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_defaults_and_consts_200_application_json_object: Optional[RequestBodyPostDefaultsAndConsts200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostemptyobject.py b/python-client-sdk/src/sdk/models/operations/requestbodypostemptyobject.py index 99317ed64..9aef72365 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostemptyobject.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostemptyobject.py @@ -9,40 +9,40 @@ @dataclasses.dataclass -class RequestBodyPostEmptyObjectRequestBodyEmpty: +class Empty: pass @dataclasses.dataclass -class RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties: +class EmptyWithEmptyProperties: pass @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class RequestBodyPostEmptyObjectRequestBody: - empty: Optional[RequestBodyPostEmptyObjectRequestBodyEmpty] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('empty'), 'exclude': lambda f: f is None }}) - empty_with_empty_properties: Optional[RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('emptyWithEmptyProperties'), 'exclude': lambda f: f is None }}) + empty: Optional[Empty] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('empty'), 'exclude': lambda f: f is None }}) + empty_with_empty_properties: Optional[EmptyWithEmptyProperties] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('emptyWithEmptyProperties'), 'exclude': lambda f: f is None }}) @dataclasses.dataclass -class RequestBodyPostEmptyObject200ApplicationJSONEmpty: +class RequestBodyPostEmptyObjectEmpty: pass @dataclasses.dataclass -class RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies: +class EmptyRespWithEmptyProperies: pass @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostEmptyObject200ApplicationJSON: +class RequestBodyPostEmptyObjectResponseBody: r"""OK""" - empty: Optional[RequestBodyPostEmptyObject200ApplicationJSONEmpty] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('empty'), 'exclude': lambda f: f is None }}) - empty_resp_with_empty_properies: Optional[RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('emptyRespWithEmptyProperies'), 'exclude': lambda f: f is None }}) + empty: Optional[RequestBodyPostEmptyObjectEmpty] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('empty'), 'exclude': lambda f: f is None }}) + empty_resp_with_empty_properies: Optional[EmptyRespWithEmptyProperies] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('emptyRespWithEmptyProperies'), 'exclude': lambda f: f is None }}) @@ -53,9 +53,9 @@ class RequestBodyPostEmptyObjectResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostEmptyObjectResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_empty_object_200_application_json_object: Optional[RequestBodyPostEmptyObject200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostformdeep.py b/python-client-sdk/src/sdk/models/operations/requestbodypostformdeep.py index ffe419a2f..df0fc7cb4 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostformdeep.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostformdeep.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostFormDeepResForm: +class Form: arr: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arr') }}) bool: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool') }}) int: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int') }}) @@ -26,7 +26,7 @@ class RequestBodyPostFormDeepResForm: @dataclasses.dataclass class RequestBodyPostFormDeepRes: r"""OK""" - form: RequestBodyPostFormDeepResForm = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('form') }}) + form: Form = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('form') }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostformsimple.py b/python-client-sdk/src/sdk/models/operations/requestbodypostformsimple.py index e87a2f177..350876662 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostformsimple.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostformsimple.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostFormSimpleResForm: +class RequestBodyPostFormSimpleForm: any: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('any') }}) bool: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool') }}) date_: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('date') }}) @@ -31,7 +31,7 @@ class RequestBodyPostFormSimpleResForm: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostFormSimpleResHeaders: +class RequestBodyPostFormSimpleHeaders: content_type: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('Content-Type') }}) @@ -41,8 +41,8 @@ class RequestBodyPostFormSimpleResHeaders: @dataclasses.dataclass class RequestBodyPostFormSimpleRes: r"""OK""" - form: RequestBodyPostFormSimpleResForm = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('form') }}) - headers: RequestBodyPostFormSimpleResHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) + form: RequestBodyPostFormSimpleForm = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('form') }}) + headers: RequestBodyPostFormSimpleHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraybigint.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraybigint.py index 11063e581..4fed5db14 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraybigint.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraybigint.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON: +class RequestBodyPostJSONDataTypesArrayBigIntResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: List[int] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -24,9 +24,9 @@ class RequestBodyPostJSONDataTypesArrayBigIntResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesArrayBigIntResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_array_big_int_200_application_json_object: Optional[RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydate.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydate.py index c88b2e834..2b2a0f032 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydate.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydate.py @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON: +class RequestBodyPostJSONDataTypesArrayDateResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: List[date] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.list_encoder(False, utils.dateisoformat(False)), 'decoder': utils.list_decoder(utils.datefromisoformat) }}) @@ -25,9 +25,9 @@ class RequestBodyPostJSONDataTypesArrayDateResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesArrayDateResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_array_date_200_application_json_object: Optional[RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.py index 15f5d8d4c..91160cf00 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.py @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON: +class RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: List[Decimal] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.list_encoder(False, utils.decimalencoder(False, True)), 'decoder': utils.list_decoder(utils.decimaldecoder) }}) @@ -25,9 +25,9 @@ class RequestBodyPostJSONDataTypesArrayDecimalStrResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_array_decimal_str_200_application_json_object: Optional[RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigint.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigint.py index 15f04a796..0d853c793 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigint.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigint.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesBigInt200ApplicationJSON: +class RequestBodyPostJSONDataTypesBigIntResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -24,9 +24,9 @@ class RequestBodyPostJSONDataTypesBigIntResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesBigIntResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_big_int_200_application_json_object: Optional[RequestBodyPostJSONDataTypesBigInt200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigintstr.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigintstr.py index 2397ffaa8..8139751e1 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigintstr.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigintstr.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON: +class RequestBodyPostJSONDataTypesBigIntStrResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.bigintencoder(False), 'decoder': utils.bigintdecoder }}) @@ -24,9 +24,9 @@ class RequestBodyPostJSONDataTypesBigIntStrResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesBigIntStrResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_big_int_str_200_application_json_object: Optional[RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesboolean.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesboolean.py index 94f9ff08d..83303d3c3 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesboolean.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesboolean.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesBoolean200ApplicationJSON: +class RequestBodyPostJSONDataTypesBooleanResponseBody: r"""OK""" json: bool = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -23,9 +23,9 @@ class RequestBodyPostJSONDataTypesBooleanResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesBooleanResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_boolean_200_application_json_object: Optional[RequestBodyPostJSONDataTypesBoolean200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdate.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdate.py index de34901d8..9d95e85ca 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdate.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdate.py @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesDate200ApplicationJSON: +class RequestBodyPostJSONDataTypesDateResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: date = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.dateisoformat(False), 'decoder': utils.datefromisoformat }}) @@ -25,9 +25,9 @@ class RequestBodyPostJSONDataTypesDateResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesDateResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_date_200_application_json_object: Optional[RequestBodyPostJSONDataTypesDate200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdatetime.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdatetime.py index 932100fe3..6e4666fe8 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdatetime.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdatetime.py @@ -12,7 +12,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesDateTime200ApplicationJSON: +class RequestBodyPostJSONDataTypesDateTimeResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: datetime = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.datetimeisoformat(False), 'decoder': dateutil.parser.isoparse }}) @@ -26,9 +26,9 @@ class RequestBodyPostJSONDataTypesDateTimeResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesDateTimeResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_date_time_200_application_json_object: Optional[RequestBodyPostJSONDataTypesDateTime200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimal.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimal.py index c7a73777d..615b0b01a 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimal.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimal.py @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesDecimal200ApplicationJSON: +class RequestBodyPostJSONDataTypesDecimalResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: Decimal = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.decimalencoder(False, False), 'decoder': utils.decimaldecoder }}) @@ -25,9 +25,9 @@ class RequestBodyPostJSONDataTypesDecimalResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesDecimalResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_decimal_200_application_json_object: Optional[RequestBodyPostJSONDataTypesDecimal200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.py index 8f61bedc4..4ba914847 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.py @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON: +class RequestBodyPostJSONDataTypesDecimalStrResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: Decimal = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.decimalencoder(False, True), 'decoder': utils.decimaldecoder }}) @@ -25,9 +25,9 @@ class RequestBodyPostJSONDataTypesDecimalStrResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesDecimalStrResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_decimal_str_200_application_json_object: Optional[RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesfloat32.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesfloat32.py index 2c85376d5..e65a04cc9 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesfloat32.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesfloat32.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesFloat32200ApplicationJSON: +class RequestBodyPostJSONDataTypesFloat32ResponseBody: r"""OK""" json: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -23,9 +23,9 @@ class RequestBodyPostJSONDataTypesFloat32Response: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesFloat32ResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_float32_200_application_json_object: Optional[RequestBodyPostJSONDataTypesFloat32200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesint32.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesint32.py index 334d9f558..ad7a77e44 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesint32.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesint32.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesInt32200ApplicationJSON: +class RequestBodyPostJSONDataTypesInt32ResponseBody: r"""OK""" json: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -23,9 +23,9 @@ class RequestBodyPostJSONDataTypesInt32Response: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesInt32ResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_int32_200_application_json_object: Optional[RequestBodyPostJSONDataTypesInt32200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesinteger.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesinteger.py index 8f1f6c80c..f32b52463 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesinteger.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesinteger.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesInteger200ApplicationJSON: +class RequestBodyPostJSONDataTypesIntegerResponseBody: r"""OK""" json: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -23,9 +23,9 @@ class RequestBodyPostJSONDataTypesIntegerResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesIntegerResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_integer_200_application_json_object: Optional[RequestBodyPostJSONDataTypesInteger200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.py index 001790f75..630fcadb9 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON: +class RequestBodyPostJSONDataTypesMapBigIntStrResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: Dict[str, int] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.map_encoder(False, utils.bigintencoder(False)), 'decoder': utils.map_decoder(utils.bigintdecoder) }}) @@ -24,9 +24,9 @@ class RequestBodyPostJSONDataTypesMapBigIntStrResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesMapBigIntStrResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_map_big_int_str_200_application_json_object: Optional[RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.py index 343372ed2..a8056866e 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.py @@ -12,7 +12,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON: +class RequestBodyPostJSONDataTypesMapDateTimeResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: Dict[str, datetime] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.map_encoder(False, utils.datetimeisoformat(False)), 'decoder': utils.map_decoder(dateutil.parser.isoparse) }}) @@ -26,9 +26,9 @@ class RequestBodyPostJSONDataTypesMapDateTimeResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesMapDateTimeResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_map_date_time_200_application_json_object: Optional[RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.py index ef9aaabdb..3cec56f75 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.py @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON: +class RequestBodyPostJSONDataTypesMapDecimalResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) json: Dict[str, Decimal] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.map_encoder(False, utils.decimalencoder(False, False)), 'decoder': utils.map_decoder(utils.decimaldecoder) }}) @@ -25,9 +25,9 @@ class RequestBodyPostJSONDataTypesMapDecimalResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesMapDecimalResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_map_decimal_200_application_json_object: Optional[RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesnumber.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesnumber.py index 19e31fe3d..a1ad540f8 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesnumber.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesnumber.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesNumber200ApplicationJSON: +class RequestBodyPostJSONDataTypesNumberResponseBody: r"""OK""" json: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -23,9 +23,9 @@ class RequestBodyPostJSONDataTypesNumberResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesNumberResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_number_200_application_json_object: Optional[RequestBodyPostJSONDataTypesNumber200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesstring.py b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesstring.py index f4afe2211..2b81296dd 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesstring.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesstring.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostJSONDataTypesString200ApplicationJSON: +class RequestBodyPostJSONDataTypesStringResponseBody: r"""OK""" json: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -23,9 +23,9 @@ class RequestBodyPostJSONDataTypesStringResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostJSONDataTypesStringResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_json_data_types_string_200_application_json_object: Optional[RequestBodyPostJSONDataTypesString200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.py b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.py index 8b4128641..39f22aa34 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.py b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.py index 1a250bbd9..9e3dd9809 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON: +class RequestBodyPostMultipleContentTypesInlineFilteredRequestBody: bool: bool = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool') }}) num: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('num') }}) str_: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('str') }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_form.py b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_form.py index 07d6d75ce..1601b23fd 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_form.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_form.py @@ -9,7 +9,7 @@ @dataclasses.dataclass -class RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded: +class RequestBodyPostMultipleContentTypesSplitFormRequestBody: bool3: bool = dataclasses.field(metadata={'form': { 'field_name': 'bool3' }}) num3: float = dataclasses.field(metadata={'form': { 'field_name': 'num3' }}) str3: str = dataclasses.field(metadata={'form': { 'field_name': 'str3' }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_json.py b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_json.py index 00a3ba30f..b98fbb3c9 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_json.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_json.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostMultipleContentTypesSplitApplicationJSON: +class RequestBodyPostMultipleContentTypesSplitJSONRequestBody: bool: bool = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool') }}) num: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('num') }}) str_: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('str') }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_multipart.py b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_multipart.py index 26b4ed262..7c785922b 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_multipart.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplit_multipart.py @@ -9,7 +9,7 @@ @dataclasses.dataclass -class RequestBodyPostMultipleContentTypesSplitMultipartFormData: +class RequestBodyPostMultipleContentTypesSplitMultipartRequestBody: bool2: bool = dataclasses.field(metadata={'multipart_form': { 'field_name': 'bool2' }}) num2: float = dataclasses.field(metadata={'multipart_form': { 'field_name': 'num2' }}) str2: str = dataclasses.field(metadata={'multipart_form': { 'field_name': 'str2' }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_form.py b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_form.py index 5db9502d3..446ccf2ba 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_form.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_form.py @@ -9,7 +9,7 @@ @dataclasses.dataclass -class RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded: +class RequestBodyPostMultipleContentTypesSplitParamFormRequestBody: bool3: bool = dataclasses.field(metadata={'form': { 'field_name': 'bool3' }}) num3: float = dataclasses.field(metadata={'form': { 'field_name': 'num3' }}) str3: str = dataclasses.field(metadata={'form': { 'field_name': 'str3' }}) @@ -20,7 +20,7 @@ class RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded @dataclasses.dataclass class RequestBodyPostMultipleContentTypesSplitParamFormRequest: param_str: str = dataclasses.field(metadata={'query_param': { 'field_name': 'paramStr', 'style': 'form', 'explode': True }}) - request_body: RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded = dataclasses.field(metadata={'request': { 'media_type': 'application/x-www-form-urlencoded' }}) + request_body: RequestBodyPostMultipleContentTypesSplitParamFormRequestBody = dataclasses.field(metadata={'request': { 'media_type': 'application/x-www-form-urlencoded' }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_json.py b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_json.py index ef384d4f0..4dc908b6f 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_json.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_json.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostMultipleContentTypesSplitParamApplicationJSON: +class RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody: bool: bool = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool') }}) num: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('num') }}) str_: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('str') }}) @@ -21,7 +21,7 @@ class RequestBodyPostMultipleContentTypesSplitParamApplicationJSON: @dataclasses.dataclass class RequestBodyPostMultipleContentTypesSplitParamJSONRequest: param_str: str = dataclasses.field(metadata={'query_param': { 'field_name': 'paramStr', 'style': 'form', 'explode': True }}) - request_body: RequestBodyPostMultipleContentTypesSplitParamApplicationJSON = dataclasses.field(metadata={'request': { 'media_type': 'application/json' }}) + request_body: RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody = dataclasses.field(metadata={'request': { 'media_type': 'application/json' }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_multipart.py b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_multipart.py index dd6154106..d42bc866c 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_multipart.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_multipart.py @@ -9,7 +9,7 @@ @dataclasses.dataclass -class RequestBodyPostMultipleContentTypesSplitParamMultipartFormData: +class RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody: bool2: bool = dataclasses.field(metadata={'multipart_form': { 'field_name': 'bool2' }}) num2: float = dataclasses.field(metadata={'multipart_form': { 'field_name': 'num2' }}) str2: str = dataclasses.field(metadata={'multipart_form': { 'field_name': 'str2' }}) @@ -20,7 +20,7 @@ class RequestBodyPostMultipleContentTypesSplitParamMultipartFormData: @dataclasses.dataclass class RequestBodyPostMultipleContentTypesSplitParamMultipartRequest: param_str: str = dataclasses.field(metadata={'query_param': { 'field_name': 'paramStr', 'style': 'form', 'explode': True }}) - request_body: RequestBodyPostMultipleContentTypesSplitParamMultipartFormData = dataclasses.field(metadata={'request': { 'media_type': 'multipart/form-data' }}) + request_body: RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody = dataclasses.field(metadata={'request': { 'media_type': 'multipart/form-data' }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.py b/python-client-sdk/src/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.py index 85555dc4a..4364c7fa1 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON: +class RequestBodyPostNotNullableNotRequiredStringBodyResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) @@ -23,9 +23,9 @@ class RequestBodyPostNotNullableNotRequiredStringBodyResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostNotNullableNotRequiredStringBodyResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_not_nullable_not_required_string_body_200_application_json_object: Optional[RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.py b/python-client-sdk/src/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.py index 1bf6af498..2c056a0a5 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON: +class RequestBodyPostNullableNotRequiredStringBodyResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) @@ -23,9 +23,9 @@ class RequestBodyPostNullableNotRequiredStringBodyResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostNullableNotRequiredStringBodyResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_nullable_not_required_string_body_200_application_json_object: Optional[RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostnullablerequiredstringbody.py b/python-client-sdk/src/sdk/models/operations/requestbodypostnullablerequiredstringbody.py index cf622e591..60e27ce3b 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostnullablerequiredstringbody.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostnullablerequiredstringbody.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostNullableRequiredStringBody200ApplicationJSON: +class RequestBodyPostNullableRequiredStringBodyResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) @@ -23,9 +23,9 @@ class RequestBodyPostNullableRequiredStringBodyResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostNullableRequiredStringBodyResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_nullable_required_string_body_200_application_json_object: Optional[RequestBodyPostNullableRequiredStringBody200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostnullarray.py b/python-client-sdk/src/sdk/models/operations/requestbodypostnullarray.py index bd7f26943..c7136bc47 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostnullarray.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostnullarray.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostNullArray200ApplicationJSON: +class RequestBodyPostNullArrayResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) @@ -23,9 +23,9 @@ class RequestBodyPostNullArrayResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostNullArrayResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_null_array_200_application_json_object: Optional[RequestBodyPostNullArray200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodypostnulldictionary.py b/python-client-sdk/src/sdk/models/operations/requestbodypostnulldictionary.py index aa65eccba..f26695ff5 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodypostnulldictionary.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodypostnulldictionary.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPostNullDictionary200ApplicationJSON: +class RequestBodyPostNullDictionaryResponseBody: r"""OK""" data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) @@ -23,9 +23,9 @@ class RequestBodyPostNullDictionaryResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[RequestBodyPostNullDictionaryResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - request_body_post_null_dictionary_200_application_json_object: Optional[RequestBodyPostNullDictionary200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/requestbodyputbyteswithparams.py b/python-client-sdk/src/sdk/models/operations/requestbodyputbyteswithparams.py index 7dd87f3ba..5f695926b 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodyputbyteswithparams.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodyputbyteswithparams.py @@ -18,7 +18,7 @@ class RequestBodyPutBytesWithParamsRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPutBytesWithParamsResArgs: +class RequestBodyPutBytesWithParamsArgs: query_string_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('queryStringParam') }}) @@ -28,7 +28,7 @@ class RequestBodyPutBytesWithParamsResArgs: @dataclasses.dataclass class RequestBodyPutBytesWithParamsRes: r"""OK""" - args: RequestBodyPutBytesWithParamsResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + args: RequestBodyPutBytesWithParamsArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartdeep.py b/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartdeep.py index 57a057fea..ec47fdcfe 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartdeep.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartdeep.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPutMultipartDeepResForm: +class RequestBodyPutMultipartDeepForm: arr: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arr') }}) bool: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool') }}) int: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int') }}) @@ -26,7 +26,7 @@ class RequestBodyPutMultipartDeepResForm: @dataclasses.dataclass class RequestBodyPutMultipartDeepRes: r"""OK""" - form: RequestBodyPutMultipartDeepResForm = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('form') }}) + form: RequestBodyPutMultipartDeepForm = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('form') }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartdifferentfilename.py b/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartdifferentfilename.py index eab753e22..44ade6779 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartdifferentfilename.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartdifferentfilename.py @@ -9,16 +9,16 @@ @dataclasses.dataclass -class RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName: +class DifferentFileName: content: bytes = dataclasses.field(metadata={'multipart_form': { 'content': True }}) - different_file_name: str = dataclasses.field(metadata={'multipart_form': { 'field_name': 'differentFileName' }}) + file_name: str = dataclasses.field(metadata={'multipart_form': { 'field_name': 'differentFileName' }}) @dataclasses.dataclass class RequestBodyPutMultipartDifferentFileNameRequestBody: - different_file_name: Optional[RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName] = dataclasses.field(default=None, metadata={'multipart_form': { 'file': True }}) + different_file_name: Optional[DifferentFileName] = dataclasses.field(default=None, metadata={'multipart_form': { 'file': True }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartfile.py b/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartfile.py index 2567b752f..56417e2cd 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartfile.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartfile.py @@ -9,16 +9,16 @@ @dataclasses.dataclass -class RequestBodyPutMultipartFileRequestBodyFile: +class File: content: bytes = dataclasses.field(metadata={'multipart_form': { 'content': True }}) - file: str = dataclasses.field(metadata={'multipart_form': { 'field_name': 'file' }}) + file_name: str = dataclasses.field(metadata={'multipart_form': { 'field_name': 'file' }}) @dataclasses.dataclass class RequestBodyPutMultipartFileRequestBody: - file: Optional[RequestBodyPutMultipartFileRequestBodyFile] = dataclasses.field(default=None, metadata={'multipart_form': { 'file': True }}) + file: Optional[File] = dataclasses.field(default=None, metadata={'multipart_form': { 'file': True }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartsimple.py b/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartsimple.py index bd6dea03f..5acc0dc57 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartsimple.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodyputmultipartsimple.py @@ -10,7 +10,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPutMultipartSimpleResForm: +class RequestBodyPutMultipartSimpleForm: any: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('any') }}) bool: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool') }}) date_: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('date') }}) @@ -31,7 +31,7 @@ class RequestBodyPutMultipartSimpleResForm: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPutMultipartSimpleResHeaders: +class RequestBodyPutMultipartSimpleHeaders: content_type: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('Content-Type') }}) @@ -41,8 +41,8 @@ class RequestBodyPutMultipartSimpleResHeaders: @dataclasses.dataclass class RequestBodyPutMultipartSimpleRes: r"""OK""" - form: RequestBodyPutMultipartSimpleResForm = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('form') }}) - headers: RequestBodyPutMultipartSimpleResHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) + form: RequestBodyPutMultipartSimpleForm = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('form') }}) + headers: RequestBodyPutMultipartSimpleHeaders = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headers') }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodyputstringwithparams.py b/python-client-sdk/src/sdk/models/operations/requestbodyputstringwithparams.py index 3c6b06f79..67b1fa5c1 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodyputstringwithparams.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodyputstringwithparams.py @@ -18,7 +18,7 @@ class RequestBodyPutStringWithParamsRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class RequestBodyPutStringWithParamsResArgs: +class RequestBodyPutStringWithParamsArgs: query_string_param: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('queryStringParam') }}) @@ -28,7 +28,7 @@ class RequestBodyPutStringWithParamsResArgs: @dataclasses.dataclass class RequestBodyPutStringWithParamsRes: r"""OK""" - args: RequestBodyPutStringWithParamsResArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) + args: RequestBodyPutStringWithParamsArgs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('args') }}) data: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('data') }}) diff --git a/python-client-sdk/src/sdk/models/operations/requestbodyreadandwrite.py b/python-client-sdk/src/sdk/models/operations/requestbodyreadandwrite.py index dffbcc17e..b33bb480e 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodyreadandwrite.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodyreadandwrite.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import readwriteobject as shared_readwriteobject +from ...models.shared import readwriteobject as shared_readwriteobject from typing import Optional REQUEST_BODY_READ_AND_WRITE_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodyreadonlyinput.py b/python-client-sdk/src/sdk/models/operations/requestbodyreadonlyinput.py index bfaab4ead..b9c063af2 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodyreadonlyinput.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodyreadonlyinput.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import readonlyobject as shared_readonlyobject +from ...models.shared import readonlyobject as shared_readonlyobject from typing import Optional REQUEST_BODY_READ_ONLY_INPUT_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodyreadonlyunion.py b/python-client-sdk/src/sdk/models/operations/requestbodyreadonlyunion.py index ebc693e9e..c119cdbb9 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodyreadonlyunion.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodyreadonlyunion.py @@ -3,8 +3,8 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import readonlyobject as shared_readonlyobject -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import readonlyobject as shared_readonlyobject +from ...models.shared import simpleobject as shared_simpleobject from typing import Optional, Union REQUEST_BODY_READ_ONLY_UNION_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodyreadwriteonlyunion.py b/python-client-sdk/src/sdk/models/operations/requestbodyreadwriteonlyunion.py index 7c3cd14b6..36e242aa9 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodyreadwriteonlyunion.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodyreadwriteonlyunion.py @@ -3,8 +3,8 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import readwriteobject as shared_readwriteobject -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import readwriteobject as shared_readwriteobject +from ...models.shared import simpleobject as shared_simpleobject from typing import Optional, Union REQUEST_BODY_READ_WRITE_ONLY_UNION_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodywriteonly.py b/python-client-sdk/src/sdk/models/operations/requestbodywriteonly.py index 649c0b24e..10d9c8582 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodywriteonly.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodywriteonly.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import readonlyobject as shared_readonlyobject +from ...models.shared import readonlyobject as shared_readonlyobject from typing import Optional REQUEST_BODY_WRITE_ONLY_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodywriteonlyoutput.py b/python-client-sdk/src/sdk/models/operations/requestbodywriteonlyoutput.py index 41f079aae..792ed2f77 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodywriteonlyoutput.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodywriteonlyoutput.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import writeonlyobject as shared_writeonlyobject +from ...models.shared import writeonlyobject as shared_writeonlyobject from typing import Optional REQUEST_BODY_WRITE_ONLY_OUTPUT_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/requestbodywriteonlyunion.py b/python-client-sdk/src/sdk/models/operations/requestbodywriteonlyunion.py index bdb3f9d34..b3f5308bc 100755 --- a/python-client-sdk/src/sdk/models/operations/requestbodywriteonlyunion.py +++ b/python-client-sdk/src/sdk/models/operations/requestbodywriteonlyunion.py @@ -3,8 +3,8 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject -from ..shared import writeonlyobject as shared_writeonlyobject +from ...models.shared import simpleobject as shared_simpleobject +from ...models.shared import writeonlyobject as shared_writeonlyobject from typing import Optional, Union REQUEST_BODY_WRITE_ONLY_UNION_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.py b/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.py index ebd1f998d..f6ca3bad2 100755 --- a/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.py +++ b/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import objwithcomplexnumbersadditionalproperties as shared_objwithcomplexnumbersadditionalproperties +from ...models.shared import objwithcomplexnumbersadditionalproperties as shared_objwithcomplexnumbersadditionalproperties from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON: +class ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody: r"""OK""" json: shared_objwithcomplexnumbersadditionalproperties.ObjWithComplexNumbersAdditionalProperties = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -24,9 +24,9 @@ class ResponseBodyAdditionalPropertiesComplexNumbersPostResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - response_body_additional_properties_complex_numbers_post_200_application_json_object: Optional[ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesdatepost.py b/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesdatepost.py index 1f4217ed1..00c2bf8b5 100755 --- a/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesdatepost.py +++ b/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesdatepost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import objwithdateadditionalproperties as shared_objwithdateadditionalproperties +from ...models.shared import objwithdateadditionalproperties as shared_objwithdateadditionalproperties from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON: +class ResponseBodyAdditionalPropertiesDatePostResponseBody: r"""OK""" json: shared_objwithdateadditionalproperties.ObjWithDateAdditionalProperties = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -24,9 +24,9 @@ class ResponseBodyAdditionalPropertiesDatePostResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[ResponseBodyAdditionalPropertiesDatePostResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - response_body_additional_properties_date_post_200_application_json_object: Optional[ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.py b/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.py index b72601002..aee272fc8 100755 --- a/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.py +++ b/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import objwithobjadditionalproperties as shared_objwithobjadditionalproperties +from ...models.shared import objwithobjadditionalproperties as shared_objwithobjadditionalproperties from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON: +class ResponseBodyAdditionalPropertiesObjectPostResponseBody: r"""OK""" json: shared_objwithobjadditionalproperties.ObjWithObjAdditionalProperties = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -24,9 +24,9 @@ class ResponseBodyAdditionalPropertiesObjectPostResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[ResponseBodyAdditionalPropertiesObjectPostResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - response_body_additional_properties_object_post_200_application_json_object: Optional[ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiespost.py b/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiespost.py index f3d980ee4..41a0f315c 100755 --- a/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiespost.py +++ b/python-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiespost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import objwithstringadditionalproperties as shared_objwithstringadditionalproperties +from ...models.shared import objwithstringadditionalproperties as shared_objwithstringadditionalproperties from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class ResponseBodyAdditionalPropertiesPost200ApplicationJSON: +class ResponseBodyAdditionalPropertiesPostResponseBody: r"""OK""" json: shared_objwithstringadditionalproperties.ObjWithStringAdditionalProperties = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -24,9 +24,9 @@ class ResponseBodyAdditionalPropertiesPostResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[ResponseBodyAdditionalPropertiesPostResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - response_body_additional_properties_post_200_application_json_object: Optional[ResponseBodyAdditionalPropertiesPost200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/responsebodyjsonget.py b/python-client-sdk/src/sdk/models/operations/responsebodyjsonget.py index 04aa86e0c..f62f7d659 100755 --- a/python-client-sdk/src/sdk/models/operations/responsebodyjsonget.py +++ b/python-client-sdk/src/sdk/models/operations/responsebodyjsonget.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import httpbinsimplejsonobject as shared_httpbinsimplejsonobject +from ...models.shared import httpbinsimplejsonobject as shared_httpbinsimplejsonobject from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/responsebodyoptionalget.py b/python-client-sdk/src/sdk/models/operations/responsebodyoptionalget.py index f5db35fff..94571a30c 100755 --- a/python-client-sdk/src/sdk/models/operations/responsebodyoptionalget.py +++ b/python-client-sdk/src/sdk/models/operations/responsebodyoptionalget.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import typedobject1 as shared_typedobject1 +from ...models.shared import typedobject1 as shared_typedobject1 from typing import Optional RESPONSE_BODY_OPTIONAL_GET_SERVERS = [ @@ -19,7 +19,7 @@ class ResponseBodyOptionalGetResponse: r"""HTTP response status code for this operation""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - response_body_optional_get_200_text_plain_string: Optional[str] = dataclasses.field(default=None) + res: Optional[str] = dataclasses.field(default=None) r"""OK""" typed_object1: Optional[shared_typedobject1.TypedObject1] = dataclasses.field(default=None) r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/responsebodyreadonly.py b/python-client-sdk/src/sdk/models/operations/responsebodyreadonly.py index 7d00fbbf0..f17ab86b8 100755 --- a/python-client-sdk/src/sdk/models/operations/responsebodyreadonly.py +++ b/python-client-sdk/src/sdk/models/operations/responsebodyreadonly.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import readonlyobject as shared_readonlyobject +from ...models.shared import readonlyobject as shared_readonlyobject from typing import Optional RESPONSE_BODY_READ_ONLY_SERVERS = [ diff --git a/python-client-sdk/src/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.py b/python-client-sdk/src/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.py index 235d941c2..02471de62 100755 --- a/python-client-sdk/src/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.py +++ b/python-client-sdk/src/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import objwithzerovaluecomplextypeptrs as shared_objwithzerovaluecomplextypeptrs +from ...models.shared import objwithzerovaluecomplextypeptrs as shared_objwithzerovaluecomplextypeptrs from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON: +class ResponseBodyZeroValueComplexTypePtrsPostResponseBody: r"""OK""" json: shared_objwithzerovaluecomplextypeptrs.ObjWithZeroValueComplexTypePtrs = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -24,9 +24,9 @@ class ResponseBodyZeroValueComplexTypePtrsPostResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[ResponseBodyZeroValueComplexTypePtrsPostResponseBody] = dataclasses.field(default=None) + r"""OK""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - response_body_zero_value_complex_type_ptrs_post_200_application_json_object: Optional[ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON] = dataclasses.field(default=None) - r"""OK""" diff --git a/python-client-sdk/src/sdk/models/operations/simplepathparameterobjects.py b/python-client-sdk/src/sdk/models/operations/simplepathparameterobjects.py index 18590d876..ca2f0ac14 100755 --- a/python-client-sdk/src/sdk/models/operations/simplepathparameterobjects.py +++ b/python-client-sdk/src/sdk/models/operations/simplepathparameterobjects.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional diff --git a/python-client-sdk/src/sdk/models/operations/stronglytypedoneofpost.py b/python-client-sdk/src/sdk/models/operations/stronglytypedoneofpost.py index f3edfc1b6..ac1501df3 100755 --- a/python-client-sdk/src/sdk/models/operations/stronglytypedoneofpost.py +++ b/python-client-sdk/src/sdk/models/operations/stronglytypedoneofpost.py @@ -3,8 +3,8 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import deepobjectwithtype as shared_deepobjectwithtype -from ..shared import simpleobjectwithtype as shared_simpleobjectwithtype +from ...models.shared import deepobjectwithtype as shared_deepobjectwithtype +from ...models.shared import simpleobjectwithtype as shared_simpleobjectwithtype from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional, Union diff --git a/python-client-sdk/src/sdk/models/operations/typedobjectnullableoneofpost.py b/python-client-sdk/src/sdk/models/operations/typedobjectnullableoneofpost.py index 702fc0467..36c2c124e 100755 --- a/python-client-sdk/src/sdk/models/operations/typedobjectnullableoneofpost.py +++ b/python-client-sdk/src/sdk/models/operations/typedobjectnullableoneofpost.py @@ -3,8 +3,8 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import typedobject1 as shared_typedobject1 -from ..shared import typedobject2 as shared_typedobject2 +from ...models.shared import typedobject1 as shared_typedobject1 +from ...models.shared import typedobject2 as shared_typedobject2 from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional, Union diff --git a/python-client-sdk/src/sdk/models/operations/typedobjectoneofpost.py b/python-client-sdk/src/sdk/models/operations/typedobjectoneofpost.py index c77a769e4..b8dc6b315 100755 --- a/python-client-sdk/src/sdk/models/operations/typedobjectoneofpost.py +++ b/python-client-sdk/src/sdk/models/operations/typedobjectoneofpost.py @@ -3,9 +3,9 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import typedobject1 as shared_typedobject1 -from ..shared import typedobject2 as shared_typedobject2 -from ..shared import typedobject3 as shared_typedobject3 +from ...models.shared import typedobject1 as shared_typedobject1 +from ...models.shared import typedobject2 as shared_typedobject2 +from ...models.shared import typedobject3 as shared_typedobject3 from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional, Union diff --git a/python-client-sdk/src/sdk/models/operations/typedparametergenerationget.py b/python-client-sdk/src/sdk/models/operations/typedparametergenerationget.py index 60dc088d8..96f3364cb 100755 --- a/python-client-sdk/src/sdk/models/operations/typedparametergenerationget.py +++ b/python-client-sdk/src/sdk/models/operations/typedparametergenerationget.py @@ -9,7 +9,7 @@ @dataclasses.dataclass -class TypedParameterGenerationGetObj: +class Obj: bool: bool = dataclasses.field(metadata={'query_param': { 'field_name': 'bool' }}) num: float = dataclasses.field(metadata={'query_param': { 'field_name': 'num' }}) str_: str = dataclasses.field(metadata={'query_param': { 'field_name': 'str' }}) @@ -22,7 +22,7 @@ class TypedParameterGenerationGetRequest: bigint: Optional[int] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'bigint', 'style': 'form', 'explode': True }}) date_: Optional[date] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'date', 'style': 'form', 'explode': True }}) decimal: Optional[Decimal] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'decimal', 'style': 'form', 'explode': True }}) - obj: Optional[TypedParameterGenerationGetObj] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'obj', 'style': 'form', 'explode': True }}) + obj: Optional[Obj] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'obj', 'style': 'form', 'explode': True }}) diff --git a/python-client-sdk/src/sdk/models/operations/unionbigintdecimal.py b/python-client-sdk/src/sdk/models/operations/unionbigintdecimal.py index 637215581..e34fd9576 100755 --- a/python-client-sdk/src/sdk/models/operations/unionbigintdecimal.py +++ b/python-client-sdk/src/sdk/models/operations/unionbigintdecimal.py @@ -15,7 +15,7 @@ class UnionBigIntDecimalRequestBody: @dataclasses.dataclass -class UnionBigIntDecimalResJSON: +class UnionBigIntDecimalJSON: pass @@ -23,7 +23,7 @@ class UnionBigIntDecimalResJSON: @dataclasses.dataclass class UnionBigIntDecimalRes: r"""OK""" - json: Union[int, Decimal] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.union_encoder({int: utils.bigintencoder(True), Decimal: utils.decimalencoder(True, False)}), 'decoder': utils.union_decoder([utils.bigintdecoder,utils.decimaldecoder]) }}) + json: Union[int, Decimal] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.union_encoder({int: utils.bigintencoder(False), Decimal: utils.decimalencoder(False, False)}), 'decoder': utils.union_decoder([utils.bigintdecoder,utils.decimaldecoder]) }}) diff --git a/python-client-sdk/src/sdk/models/operations/uniondatetimebigint.py b/python-client-sdk/src/sdk/models/operations/uniondatetimebigint.py index 33c5bb0fc..3aabc36b3 100755 --- a/python-client-sdk/src/sdk/models/operations/uniondatetimebigint.py +++ b/python-client-sdk/src/sdk/models/operations/uniondatetimebigint.py @@ -16,7 +16,7 @@ class UnionDateTimeBigIntRequestBody: @dataclasses.dataclass -class UnionDateTimeBigIntResJSON: +class UnionDateTimeBigIntJSON: pass @@ -24,7 +24,7 @@ class UnionDateTimeBigIntResJSON: @dataclasses.dataclass class UnionDateTimeBigIntRes: r"""OK""" - json: Union[datetime, int] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.union_encoder({datetime: utils.datetimeisoformat(True)}), 'decoder': utils.union_decoder([dateutil.parser.isoparse]) }}) + json: Union[datetime, int] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'encoder': utils.union_encoder({datetime: utils.datetimeisoformat(False)}), 'decoder': utils.union_decoder([dateutil.parser.isoparse]) }}) diff --git a/python-client-sdk/src/sdk/models/operations/usageexamplepost.py b/python-client-sdk/src/sdk/models/operations/usageexamplepost.py index 1b1c17124..122cb5a1f 100755 --- a/python-client-sdk/src/sdk/models/operations/usageexamplepost.py +++ b/python-client-sdk/src/sdk/models/operations/usageexamplepost.py @@ -3,9 +3,9 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import fakerformattedstrings as shared_fakerformattedstrings -from ..shared import fakerstrings as shared_fakerstrings -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import fakerformattedstrings as shared_fakerformattedstrings +from ...models.shared import fakerstrings as shared_fakerstrings +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from datetime import date, datetime from decimal import Decimal @@ -37,13 +37,13 @@ class UsageExamplePostRequestBody: -class UsageExamplePostEnumParameter(str, Enum): +class EnumParameter(str, Enum): r"""An enum type""" VALUE1 = 'value1' VALUE2 = 'value2' VALUE3 = 'value3' -class UsageExamplePostOptEnumParameter(str, Enum): +class OptEnumParameter(str, Enum): r"""An enum type""" VALUE1 = 'value1' VALUE2 = 'value2' @@ -70,7 +70,7 @@ class UsageExamplePostRequest: r"""A decimal parameter""" double_parameter: float = dataclasses.field(metadata={'query_param': { 'field_name': 'doubleParameter', 'style': 'form', 'explode': True }}) r"""A double parameter""" - enum_parameter: UsageExamplePostEnumParameter = dataclasses.field(metadata={'query_param': { 'field_name': 'enumParameter', 'style': 'form', 'explode': True }}) + enum_parameter: EnumParameter = dataclasses.field(metadata={'query_param': { 'field_name': 'enumParameter', 'style': 'form', 'explode': True }}) r"""An enum parameter""" falsey_number_parameter: float = dataclasses.field(metadata={'query_param': { 'field_name': 'falseyNumberParameter', 'style': 'form', 'explode': True }}) r"""A number parameter that contains a falsey example value""" @@ -92,7 +92,7 @@ class UsageExamplePostRequest: r"""A decimal parameter""" decimal_str_parameter_optional: Optional[Decimal] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'decimalStrParameterOptional', 'style': 'form', 'explode': True }}) r"""A decimal parameter""" - opt_enum_parameter: Optional[UsageExamplePostOptEnumParameter] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'optEnumParameter', 'style': 'form', 'explode': True }}) + opt_enum_parameter: Optional[OptEnumParameter] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'optEnumParameter', 'style': 'form', 'explode': True }}) r"""An enum parameter""" request_body: Optional[UsageExamplePostRequestBody] = dataclasses.field(default=None, metadata={'request': { 'media_type': 'application/json' }}) r"""A request body that contains fields with different formats for testing example generation""" @@ -102,7 +102,7 @@ class UsageExamplePostRequest: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class UsageExamplePost200ApplicationJSONJSON: +class UsageExamplePostJSON: faker_formatted_strings: Optional[shared_fakerformattedstrings.FakerFormattedStrings] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('fakerFormattedStrings'), 'exclude': lambda f: f is None }}) r"""A set of strings with format values that lead to relevant examples being generated for them""" faker_strings: Optional[shared_fakerstrings.FakerStrings] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('fakerStrings'), 'exclude': lambda f: f is None }}) @@ -117,9 +117,9 @@ class UsageExamplePost200ApplicationJSONJSON: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class UsageExamplePost200ApplicationJSON: +class UsageExamplePostResponseBody: r"""A response body that contains the simpleObject sent in the request body""" - json: UsageExamplePost200ApplicationJSONJSON = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) + json: UsageExamplePostJSON = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json') }}) @@ -130,9 +130,9 @@ class UsageExamplePostResponse: r"""HTTP response content type for this operation""" status_code: int = dataclasses.field() r"""HTTP response status code for this operation""" + object: Optional[UsageExamplePostResponseBody] = dataclasses.field(default=None) + r"""A successful response that contains the simpleObject sent in the request body""" raw_response: Optional[requests_http.Response] = dataclasses.field(default=None) r"""Raw HTTP response; suitable for custom response parsing""" - usage_example_post_200_application_json_object: Optional[UsageExamplePost200ApplicationJSON] = dataclasses.field(default=None) - r"""A successful response that contains the simpleObject sent in the request body""" diff --git a/python-client-sdk/src/sdk/models/operations/weaklytypedoneofpost.py b/python-client-sdk/src/sdk/models/operations/weaklytypedoneofpost.py index 1ed5f4d26..0901bc0e3 100755 --- a/python-client-sdk/src/sdk/models/operations/weaklytypedoneofpost.py +++ b/python-client-sdk/src/sdk/models/operations/weaklytypedoneofpost.py @@ -3,8 +3,8 @@ from __future__ import annotations import dataclasses import requests as requests_http -from ..shared import deepobject as shared_deepobject -from ..shared import simpleobject as shared_simpleobject +from ...models.shared import deepobject as shared_deepobject +from ...models.shared import simpleobject as shared_simpleobject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional, Union diff --git a/python-client-sdk/src/sdk/models/shared/__init__.py b/python-client-sdk/src/sdk/models/shared/__init__.py index b9bb624bc..e306f836b 100755 --- a/python-client-sdk/src/sdk/models/shared/__init__.py +++ b/python-client-sdk/src/sdk/models/shared/__init__.py @@ -51,4 +51,4 @@ from .validcircularreferenceobject import * from .writeonlyobject import * -__all__ = ["AllOfToAllOf","ArrObjValue","ArrObjValueCamelCase","ArrayCircularReferenceObject","AuthServiceRequestBody","AuthServiceRequestBodyBasicAuth","AuthServiceRequestBodyHeaderAuth","ComplexNumberTypes","DeepObject","DeepObjectAny","DeepObjectCamelCase","DeepObjectCamelCaseAnyVal","DeepObjectWithType","DeepObjectWithTypeAny","DefaultsAndConsts","DefaultsAndConstsConstEnumInt","DefaultsAndConstsConstEnumStr","DefaultsAndConstsDefaultEnumInt","DefaultsAndConstsDefaultEnumStr","DefaultsAndConstsOutput","DefaultsAndConstsOutputConstEnumInt","DefaultsAndConstsOutputConstEnumStr","DefaultsAndConstsOutputDefaultEnumInt","DefaultsAndConstsOutputDefaultEnumStr","DeprecatedFieldInObject","DeprecatedFieldInObjectDeprecatedEnum","DeprecatedObject","EmptyObjectParam","EnumT","ExampleBoat","ExampleBoatType","ExampleCar","ExampleCarType","ExampleResource","ExampleResourceChocolates","ExampleResourceEnumNumber","ExampleResourceEnumStr","FakerFormattedStrings","FakerStrings","FileResource","HTTPBinSimpleJSONObject","HTTPBinSimpleJSONObjectSlideshow","HTTPBinSimpleJSONObjectSlideshowSlides","LimitOffsetConfig","MapObjValue","MapObjValueCamelCase","NullableObject","NullableOneOfRefInObject","NullableOneOfRefInObjectNullableOneOfTwo","NullableOneOfRefInObjectOneOfOne","NullableOneOfTypeInObject","NullableOneOfTypeInObjectNullableOneOfTwo","ObjWithComplexNumbersAdditionalProperties","ObjWithDateAdditionalProperties","ObjWithObjAdditionalProperties","ObjWithStringAdditionalProperties","ObjWithZeroValueComplexTypePtrs","ObjectCircularReferenceObject","OneOfCircularReferenceObject","OneOfCircularReferenceObjectChild","OneOfGenerationStressTest","OneOfGenerationStressTestOneOfFromArrayOfTypes","OneOfGenerationStressTestOneOfSameType","OneOfGenerationStressTestOneOfSameType2","ReadOnlyObject","ReadOnlyObjectInput","ReadWriteObjectInput","ReadWriteObjectOutput","RefQueryParamObj","RefQueryParamObjExploded","SchemeBasicAuth","Security","SimpleObject","SimpleObjectCamelCase","SimpleObjectCamelCaseInt32EnumVal","SimpleObjectCamelCaseIntEnumVal","SimpleObjectInt32Enum","SimpleObjectIntEnum","SimpleObjectWithType","SimpleObjectWithTypeInt32Enum","SimpleObjectWithTypeIntEnum","TypedObject1","TypedObject1Type","TypedObject2","TypedObject2Type","TypedObject3","TypedObject3Type","UnsupportedEnums","ValidCircularReferenceObject","WriteOnlyObject","WriteOnlyObjectOutput"] +__all__ = ["AllOfToAllOf","AnyT","AnyVal","ArrObjValue","ArrObjValueCamelCase","ArrayCircularReferenceObject","AuthServiceRequestBody","BasicAuth","Child","Chocolates","ComplexNumberTypes","ConstEnumInt","ConstEnumStr","DeepObject","DeepObjectCamelCase","DeepObjectWithType","DeepObjectWithTypeAny","DefaultEnumInt","DefaultEnumStr","DefaultsAndConsts","DefaultsAndConstsOutput","DefaultsAndConstsOutputConstEnumInt","DefaultsAndConstsOutputConstEnumStr","DefaultsAndConstsOutputDefaultEnumInt","DefaultsAndConstsOutputDefaultEnumStr","DeprecatedEnum","DeprecatedFieldInObject","DeprecatedObject","EmptyObjectParam","EnumNumber","EnumStr","EnumT","ExampleBoat","ExampleCar","ExampleCarType","ExampleResource","FakerFormattedStrings","FakerStrings","FileResource","HTTPBinSimpleJSONObject","HeaderAuth","Int32Enum","Int32EnumVal","IntEnum","IntEnumVal","LimitOffsetConfig","MapObjValue","MapObjValueCamelCase","NullableObject","NullableOneOfRefInObject","NullableOneOfTwo","NullableOneOfTypeInObject","NullableOneOfTypeInObjectNullableOneOfTwo","ObjWithComplexNumbersAdditionalProperties","ObjWithDateAdditionalProperties","ObjWithObjAdditionalProperties","ObjWithStringAdditionalProperties","ObjWithZeroValueComplexTypePtrs","ObjectCircularReferenceObject","OneOfCircularReferenceObject","OneOfFromArrayOfTypes","OneOfGenerationStressTest","OneOfOne","OneOfSameType","ReadOnlyObject","ReadOnlyObjectInput","ReadWriteObject","ReadWriteObjectOutput","RefQueryParamObj","RefQueryParamObjExploded","SchemeBasicAuth","Security","SimpleObject","SimpleObjectCamelCase","SimpleObjectWithType","SimpleObjectWithTypeInt32Enum","SimpleObjectWithTypeIntEnum","Slides","Slideshow","Two","Type","TypedObject1","TypedObject1Type","TypedObject2","TypedObject2Type","TypedObject3","TypedObject3Type","UnsupportedEnums","ValidCircularReferenceObject","WriteOnlyObject","WriteOnlyObjectOutput"] diff --git a/python-client-sdk/src/sdk/models/shared/arrobjvalue.py b/python-client-sdk/src/sdk/models/shared/arrobjvalue.py index c9e534217..01e1e251f 100755 --- a/python-client-sdk/src/sdk/models/shared/arrobjvalue.py +++ b/python-client-sdk/src/sdk/models/shared/arrobjvalue.py @@ -2,7 +2,7 @@ from __future__ import annotations import dataclasses -from ..shared import simpleobject as shared_simpleobject +from .simpleobject import SimpleObject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Any, List, Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class ArrObjValue: - json: Optional[List[shared_simpleobject.SimpleObject]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) + json: Optional[List[SimpleObject]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) required: Optional[Any] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('required'), 'exclude': lambda f: f is None }}) diff --git a/python-client-sdk/src/sdk/models/shared/arrobjvaluecamelcase.py b/python-client-sdk/src/sdk/models/shared/arrobjvaluecamelcase.py index 13606720e..bffe4be0d 100755 --- a/python-client-sdk/src/sdk/models/shared/arrobjvaluecamelcase.py +++ b/python-client-sdk/src/sdk/models/shared/arrobjvaluecamelcase.py @@ -2,7 +2,7 @@ from __future__ import annotations import dataclasses -from ..shared import simpleobjectcamelcase as shared_simpleobjectcamelcase +from .simpleobjectcamelcase import SimpleObjectCamelCase from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Any, List, Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class ArrObjValueCamelCase: - json: Optional[List[shared_simpleobjectcamelcase.SimpleObjectCamelCase]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) + json: Optional[List[SimpleObjectCamelCase]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) required: Optional[Any] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('required'), 'exclude': lambda f: f is None }}) diff --git a/python-client-sdk/src/sdk/models/shared/authservicerequestbody.py b/python-client-sdk/src/sdk/models/shared/authservicerequestbody.py index 895f5e09e..e8f3930b8 100755 --- a/python-client-sdk/src/sdk/models/shared/authservicerequestbody.py +++ b/python-client-sdk/src/sdk/models/shared/authservicerequestbody.py @@ -9,7 +9,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class AuthServiceRequestBodyBasicAuth: +class BasicAuth: password: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('password') }}) username: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('username') }}) @@ -18,7 +18,7 @@ class AuthServiceRequestBodyBasicAuth: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class AuthServiceRequestBodyHeaderAuth: +class HeaderAuth: expected_value: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('expectedValue') }}) header_name: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headerName') }}) @@ -28,7 +28,7 @@ class AuthServiceRequestBodyHeaderAuth: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class AuthServiceRequestBody: - basic_auth: Optional[AuthServiceRequestBodyBasicAuth] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('basicAuth'), 'exclude': lambda f: f is None }}) - header_auth: Optional[List[AuthServiceRequestBodyHeaderAuth]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headerAuth'), 'exclude': lambda f: f is None }}) + basic_auth: Optional[BasicAuth] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('basicAuth'), 'exclude': lambda f: f is None }}) + header_auth: Optional[List[HeaderAuth]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('headerAuth'), 'exclude': lambda f: f is None }}) diff --git a/python-client-sdk/src/sdk/models/shared/deepobject.py b/python-client-sdk/src/sdk/models/shared/deepobject.py index bc3504d38..55acdd147 100755 --- a/python-client-sdk/src/sdk/models/shared/deepobject.py +++ b/python-client-sdk/src/sdk/models/shared/deepobject.py @@ -2,27 +2,27 @@ from __future__ import annotations import dataclasses -from ..shared import simpleobject as shared_simpleobject +from .simpleobject import SimpleObject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Dict, List, Optional, Union @dataclasses.dataclass -class DeepObjectAny: +class AnyT: pass @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class DeepObject: - any: Union[shared_simpleobject.SimpleObject, str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('any') }, 'form': { 'field_name': 'any', 'json': True }, 'multipart_form': { 'field_name': 'any', 'json': True }}) - arr: List[shared_simpleobject.SimpleObject] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arr') }, 'form': { 'field_name': 'arr', 'json': True }, 'multipart_form': { 'field_name': 'arr', 'json': True }}) + any: Union[SimpleObject, str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('any') }, 'form': { 'field_name': 'any', 'json': True }, 'multipart_form': { 'field_name': 'any', 'json': True }}) + arr: List[SimpleObject] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arr') }, 'form': { 'field_name': 'arr', 'json': True }, 'multipart_form': { 'field_name': 'arr', 'json': True }}) bool: bool = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool') }, 'form': { 'field_name': 'bool' }, 'multipart_form': { 'field_name': 'bool' }}) int: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int') }, 'form': { 'field_name': 'int' }, 'multipart_form': { 'field_name': 'int' }}) - map: Dict[str, shared_simpleobject.SimpleObject] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('map') }, 'form': { 'field_name': 'map', 'json': True }, 'multipart_form': { 'field_name': 'map', 'json': True }}) + map: Dict[str, SimpleObject] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('map') }, 'form': { 'field_name': 'map', 'json': True }, 'multipart_form': { 'field_name': 'map', 'json': True }}) num: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('num') }, 'form': { 'field_name': 'num' }, 'multipart_form': { 'field_name': 'num' }}) - obj: shared_simpleobject.SimpleObject = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('obj') }, 'form': { 'field_name': 'obj', 'json': True }, 'multipart_form': { 'field_name': 'obj', 'json': True }}) + obj: SimpleObject = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('obj') }, 'form': { 'field_name': 'obj', 'json': True }, 'multipart_form': { 'field_name': 'obj', 'json': True }}) r"""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. """ diff --git a/python-client-sdk/src/sdk/models/shared/deepobjectcamelcase.py b/python-client-sdk/src/sdk/models/shared/deepobjectcamelcase.py index d63040031..9e338461f 100755 --- a/python-client-sdk/src/sdk/models/shared/deepobjectcamelcase.py +++ b/python-client-sdk/src/sdk/models/shared/deepobjectcamelcase.py @@ -2,27 +2,27 @@ from __future__ import annotations import dataclasses -from ..shared import simpleobjectcamelcase as shared_simpleobjectcamelcase +from .simpleobjectcamelcase import SimpleObjectCamelCase from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Dict, List, Optional, Union @dataclasses.dataclass -class DeepObjectCamelCaseAnyVal: +class AnyVal: pass @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class DeepObjectCamelCase: - any_val: Union[shared_simpleobjectcamelcase.SimpleObjectCamelCase, str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('any_val') }}) - arr_val: List[shared_simpleobjectcamelcase.SimpleObjectCamelCase] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arr_val') }}) + any_val: Union[SimpleObjectCamelCase, str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('any_val') }}) + arr_val: List[SimpleObjectCamelCase] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arr_val') }}) bool_val: bool = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool_val') }}) int_val: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int_val') }}) - map_val: Dict[str, shared_simpleobjectcamelcase.SimpleObjectCamelCase] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('map_val') }}) + map_val: Dict[str, SimpleObjectCamelCase] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('map_val') }}) num_val: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('num_val') }}) - obj_val: shared_simpleobjectcamelcase.SimpleObjectCamelCase = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('obj_val') }}) + obj_val: SimpleObjectCamelCase = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('obj_val') }}) r"""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. """ diff --git a/python-client-sdk/src/sdk/models/shared/deepobjectwithtype.py b/python-client-sdk/src/sdk/models/shared/deepobjectwithtype.py index 32491047d..227f893ac 100755 --- a/python-client-sdk/src/sdk/models/shared/deepobjectwithtype.py +++ b/python-client-sdk/src/sdk/models/shared/deepobjectwithtype.py @@ -2,7 +2,7 @@ from __future__ import annotations import dataclasses -from ..shared import simpleobject as shared_simpleobject +from .simpleobject import SimpleObject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Dict, List, Optional, Union @@ -16,13 +16,13 @@ class DeepObjectWithTypeAny: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class DeepObjectWithType: - any: Union[shared_simpleobject.SimpleObject, str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('any') }}) - arr: List[shared_simpleobject.SimpleObject] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arr') }}) + any: Union[SimpleObject, str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('any') }}) + arr: List[SimpleObject] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arr') }}) bool: bool = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('bool') }}) int: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int') }}) - map: Dict[str, shared_simpleobject.SimpleObject] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('map') }}) + map: Dict[str, SimpleObject] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('map') }}) num: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('num') }}) - obj: shared_simpleobject.SimpleObject = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('obj') }}) + obj: SimpleObject = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('obj') }}) r"""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. """ diff --git a/python-client-sdk/src/sdk/models/shared/defaultsandconsts.py b/python-client-sdk/src/sdk/models/shared/defaultsandconsts.py index f1e611520..b4b9d9bed 100755 --- a/python-client-sdk/src/sdk/models/shared/defaultsandconsts.py +++ b/python-client-sdk/src/sdk/models/shared/defaultsandconsts.py @@ -10,22 +10,22 @@ from sdk import utils from typing import Final, Optional -class DefaultsAndConstsConstEnumInt(int, Enum): +class ConstEnumInt(int, Enum): ONE = 1 TWO = 2 THREE = 3 -class DefaultsAndConstsConstEnumStr(str, Enum): +class ConstEnumStr(str, Enum): ONE = 'one' TWO = 'two' THREE = 'three' -class DefaultsAndConstsDefaultEnumInt(int, Enum): +class DefaultEnumInt(int, Enum): ONE = 1 TWO = 2 THREE = 3 -class DefaultsAndConstsDefaultEnumStr(str, Enum): +class DefaultEnumStr(str, Enum): ONE = 'one' TWO = 'two' THREE = 'three' @@ -42,8 +42,8 @@ class DefaultsAndConsts: CONST_DATE_TIME: Final[datetime] = dataclasses.field(default=dateutil.parser.isoparse('2020-01-01T00:00:00Z'), metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('constDateTime'), 'encoder': utils.datetimeisoformat(False), 'decoder': dateutil.parser.isoparse }}) CONST_DECIMAL: Final[Decimal] = dataclasses.field(default=Decimal('3.141592653589793'), metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('constDecimal'), 'encoder': utils.decimalencoder(False, False), 'decoder': utils.decimaldecoder }}) CONST_DECIMAL_STR: Final[Decimal] = dataclasses.field(default=Decimal('3.141592653589793238462643383279'), metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('constDecimalStr'), 'encoder': utils.decimalencoder(False, True), 'decoder': utils.decimaldecoder }}) - CONST_ENUM_INT: Final[DefaultsAndConstsConstEnumInt] = dataclasses.field(default=DefaultsAndConstsConstEnumInt.TWO, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('constEnumInt') }}) - CONST_ENUM_STR: Final[DefaultsAndConstsConstEnumStr] = dataclasses.field(default=DefaultsAndConstsConstEnumStr.TWO, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('constEnumStr') }}) + CONST_ENUM_INT: Final[ConstEnumInt] = dataclasses.field(default=ConstEnumInt.TWO, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('constEnumInt') }}) + CONST_ENUM_STR: Final[ConstEnumStr] = dataclasses.field(default=ConstEnumStr.TWO, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('constEnumStr') }}) CONST_INT: Final[int] = dataclasses.field(default=123, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('constInt') }}) CONST_NUM: Final[float] = dataclasses.field(default=123.456, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('constNum') }}) CONST_STR: Final[str] = dataclasses.field(default='const', metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('constStr') }}) @@ -55,8 +55,8 @@ class DefaultsAndConsts: default_date_time: Optional[datetime] = dataclasses.field(default=dateutil.parser.isoparse('2020-01-01T00:00:00Z'), metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('defaultDateTime'), 'encoder': utils.datetimeisoformat(True), 'decoder': dateutil.parser.isoparse, 'exclude': lambda f: f is None }}) default_decimal: Optional[Decimal] = dataclasses.field(default=Decimal('3.141592653589793'), metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('defaultDecimal'), 'encoder': utils.decimalencoder(True, False), 'decoder': utils.decimaldecoder, 'exclude': lambda f: f is None }}) default_decimal_str: Optional[Decimal] = dataclasses.field(default=Decimal('3.141592653589793238462643383279'), metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('defaultDecimalStr'), 'encoder': utils.decimalencoder(True, True), 'decoder': utils.decimaldecoder, 'exclude': lambda f: f is None }}) - default_enum_int: Optional[DefaultsAndConstsDefaultEnumInt] = dataclasses.field(default=DefaultsAndConstsDefaultEnumInt.TWO, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('defaultEnumInt'), 'exclude': lambda f: f is None }}) - default_enum_str: Optional[DefaultsAndConstsDefaultEnumStr] = dataclasses.field(default=DefaultsAndConstsDefaultEnumStr.TWO, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('defaultEnumStr'), 'exclude': lambda f: f is None }}) + default_enum_int: Optional[DefaultEnumInt] = dataclasses.field(default=DefaultEnumInt.TWO, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('defaultEnumInt'), 'exclude': lambda f: f is None }}) + default_enum_str: Optional[DefaultEnumStr] = dataclasses.field(default=DefaultEnumStr.TWO, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('defaultEnumStr'), 'exclude': lambda f: f is None }}) default_int: Optional[int] = dataclasses.field(default=123, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('defaultInt'), 'exclude': lambda f: f is None }}) default_num: Optional[float] = dataclasses.field(default=123.456, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('defaultNum'), 'exclude': lambda f: f is None }}) default_str: Optional[str] = dataclasses.field(default='default', metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('defaultStr'), 'exclude': lambda f: f is None }}) diff --git a/python-client-sdk/src/sdk/models/shared/deprecatedfieldinobject.py b/python-client-sdk/src/sdk/models/shared/deprecatedfieldinobject.py index ae92971e7..e5853469c 100755 --- a/python-client-sdk/src/sdk/models/shared/deprecatedfieldinobject.py +++ b/python-client-sdk/src/sdk/models/shared/deprecatedfieldinobject.py @@ -7,7 +7,7 @@ from sdk import utils from typing import Optional -class DeprecatedFieldInObjectDeprecatedEnum(str, Enum): +class DeprecatedEnum(str, Enum): r"""Deprecated class: This enum is deprecated.""" A = 'a' B = 'b' @@ -17,7 +17,7 @@ class DeprecatedFieldInObjectDeprecatedEnum(str, Enum): @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class DeprecatedFieldInObject: - deprecated_enum: Optional[DeprecatedFieldInObjectDeprecatedEnum] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('deprecatedEnum'), 'exclude': lambda f: f is None }}) + deprecated_enum: Optional[DeprecatedEnum] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('deprecatedEnum'), 'exclude': lambda f: f is None }}) r"""Deprecated field: This enum is deprecated.""" deprecated_field: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('deprecatedField'), 'exclude': lambda f: f is None }}) r"""Deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. Use new_field instead.""" diff --git a/python-client-sdk/src/sdk/models/shared/exampleboat.py b/python-client-sdk/src/sdk/models/shared/exampleboat.py index 305899cdf..97ce296ea 100755 --- a/python-client-sdk/src/sdk/models/shared/exampleboat.py +++ b/python-client-sdk/src/sdk/models/shared/exampleboat.py @@ -9,7 +9,7 @@ from sdk import utils from typing import Optional -class ExampleBoatType(str, Enum): +class Type(str, Enum): BOAT = 'boat' @@ -18,7 +18,7 @@ class ExampleBoatType(str, Enum): class ExampleBoat: length: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('length') }}) name: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('name') }}) - type: ExampleBoatType = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('type') }}) + type: Type = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('type') }}) created_at: Optional[datetime] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('createdAt'), 'encoder': utils.datetimeisoformat(True), 'decoder': dateutil.parser.isoparse, 'exclude': lambda f: f is None }}) updated_at: Optional[datetime] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('updatedAt'), 'encoder': utils.datetimeisoformat(True), 'decoder': dateutil.parser.isoparse, 'exclude': lambda f: f is None }}) diff --git a/python-client-sdk/src/sdk/models/shared/exampleresource.py b/python-client-sdk/src/sdk/models/shared/exampleresource.py index 965be9d10..c7b4321ab 100755 --- a/python-client-sdk/src/sdk/models/shared/exampleresource.py +++ b/python-client-sdk/src/sdk/models/shared/exampleresource.py @@ -3,8 +3,8 @@ from __future__ import annotations import dataclasses import dateutil.parser -from ..shared import exampleboat as shared_exampleboat -from ..shared import examplecar as shared_examplecar +from .exampleboat import ExampleBoat +from .examplecar import ExampleCar from dataclasses_json import Undefined, dataclass_json from datetime import datetime from enum import Enum @@ -14,17 +14,17 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class ExampleResourceChocolates: +class Chocolates: description: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('description') }}) -class ExampleResourceEnumNumber(int, Enum): +class EnumNumber(int, Enum): ONE = 1 TWO = 2 THREE = 3 -class ExampleResourceEnumStr(str, Enum): +class EnumStr(str, Enum): ONE = 'one' TWO = 'two' THREE = 'three' @@ -33,15 +33,15 @@ class ExampleResourceEnumStr(str, Enum): @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class ExampleResource: - chocolates: List[ExampleResourceChocolates] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('chocolates') }}) + chocolates: List[Chocolates] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('chocolates') }}) id: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('id') }}) name: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('name') }}) - vehicle: Union[shared_exampleboat.ExampleBoat, shared_examplecar.ExampleCar] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('vehicle') }}) + vehicle: Union[ExampleBoat, ExampleCar] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('vehicle') }}) array_of_number: Optional[List[float]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arrayOfNumber'), 'exclude': lambda f: f is None }}) array_of_string: Optional[List[str]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('arrayOfString'), 'exclude': lambda f: f is None }}) created_at: Optional[datetime] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('createdAt'), 'encoder': utils.datetimeisoformat(True), 'decoder': dateutil.parser.isoparse, 'exclude': lambda f: f is None }}) - enum_number: Optional[ExampleResourceEnumNumber] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enumNumber'), 'exclude': lambda f: f is None }}) - enum_str: Optional[ExampleResourceEnumStr] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enumStr'), 'exclude': lambda f: f is None }}) + enum_number: Optional[EnumNumber] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enumNumber'), 'exclude': lambda f: f is None }}) + enum_str: Optional[EnumStr] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enumStr'), 'exclude': lambda f: f is None }}) map_of_integer: Optional[Dict[str, int]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('mapOfInteger'), 'exclude': lambda f: f is None }}) map_of_string: Optional[Dict[str, str]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('mapOfString'), 'exclude': lambda f: f is None }}) updated_at: Optional[datetime] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('updatedAt'), 'encoder': utils.datetimeisoformat(True), 'decoder': dateutil.parser.isoparse, 'exclude': lambda f: f is None }}) diff --git a/python-client-sdk/src/sdk/models/shared/httpbinsimplejsonobject.py b/python-client-sdk/src/sdk/models/shared/httpbinsimplejsonobject.py index 03600f38f..4331be61c 100755 --- a/python-client-sdk/src/sdk/models/shared/httpbinsimplejsonobject.py +++ b/python-client-sdk/src/sdk/models/shared/httpbinsimplejsonobject.py @@ -9,7 +9,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class HTTPBinSimpleJSONObjectSlideshowSlides: +class Slides: title: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('title') }}) type: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('type') }}) items: Optional[List[str]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('items'), 'exclude': lambda f: f is None }}) @@ -19,10 +19,10 @@ class HTTPBinSimpleJSONObjectSlideshowSlides: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class HTTPBinSimpleJSONObjectSlideshow: +class Slideshow: author: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('author') }}) date_: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('date') }}) - slides: List[HTTPBinSimpleJSONObjectSlideshowSlides] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('slides') }}) + slides: List[Slides] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('slides') }}) title: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('title') }}) @@ -31,6 +31,6 @@ class HTTPBinSimpleJSONObjectSlideshow: @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class HTTPBinSimpleJSONObject: - slideshow: HTTPBinSimpleJSONObjectSlideshow = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('slideshow') }}) + slideshow: Slideshow = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('slideshow') }}) diff --git a/python-client-sdk/src/sdk/models/shared/mapobjvalue.py b/python-client-sdk/src/sdk/models/shared/mapobjvalue.py index ba7dd38f1..d69b24452 100755 --- a/python-client-sdk/src/sdk/models/shared/mapobjvalue.py +++ b/python-client-sdk/src/sdk/models/shared/mapobjvalue.py @@ -2,7 +2,7 @@ from __future__ import annotations import dataclasses -from ..shared import simpleobject as shared_simpleobject +from .simpleobject import SimpleObject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Any, Dict, Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class MapObjValue: - json: Optional[Dict[str, shared_simpleobject.SimpleObject]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) + json: Optional[Dict[str, SimpleObject]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) required: Optional[Any] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('required'), 'exclude': lambda f: f is None }}) diff --git a/python-client-sdk/src/sdk/models/shared/mapobjvaluecamelcase.py b/python-client-sdk/src/sdk/models/shared/mapobjvaluecamelcase.py index f2014223a..5f2c0765e 100755 --- a/python-client-sdk/src/sdk/models/shared/mapobjvaluecamelcase.py +++ b/python-client-sdk/src/sdk/models/shared/mapobjvaluecamelcase.py @@ -2,7 +2,7 @@ from __future__ import annotations import dataclasses -from ..shared import simpleobjectcamelcase as shared_simpleobjectcamelcase +from .simpleobjectcamelcase import SimpleObjectCamelCase from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Any, Dict, Optional @@ -11,7 +11,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class MapObjValueCamelCase: - json: Optional[Dict[str, shared_simpleobjectcamelcase.SimpleObjectCamelCase]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) + json: Optional[Dict[str, SimpleObjectCamelCase]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('json'), 'exclude': lambda f: f is None }}) required: Optional[Any] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('required'), 'exclude': lambda f: f is None }}) diff --git a/python-client-sdk/src/sdk/models/shared/nullableoneofrefinobject.py b/python-client-sdk/src/sdk/models/shared/nullableoneofrefinobject.py index 0aa984c5b..fa5c459b5 100755 --- a/python-client-sdk/src/sdk/models/shared/nullableoneofrefinobject.py +++ b/python-client-sdk/src/sdk/models/shared/nullableoneofrefinobject.py @@ -2,28 +2,28 @@ from __future__ import annotations import dataclasses -from ..shared import typedobject1 as shared_typedobject1 -from ..shared import typedobject2 as shared_typedobject2 +from .typedobject1 import TypedObject1 +from .typedobject2 import TypedObject2 from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Optional, Union @dataclasses.dataclass -class NullableOneOfRefInObjectNullableOneOfTwo: +class NullableOneOfTwo: pass @dataclasses.dataclass -class NullableOneOfRefInObjectOneOfOne: +class OneOfOne: pass @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class NullableOneOfRefInObject: - nullable_one_of_one: Optional[shared_typedobject1.TypedObject1] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableOneOfOne') }}) - nullable_one_of_two: Optional[Union[shared_typedobject1.TypedObject1, shared_typedobject2.TypedObject2]] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableOneOfTwo') }}) - one_of_one: Union[shared_typedobject1.TypedObject1] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('OneOfOne') }}) + nullable_one_of_one: Optional[TypedObject1] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableOneOfOne') }}) + nullable_one_of_two: Optional[Union[TypedObject1, TypedObject2]] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('NullableOneOfTwo') }}) + one_of_one: Union[TypedObject1] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('OneOfOne') }}) diff --git a/python-client-sdk/src/sdk/models/shared/objwithobjadditionalproperties.py b/python-client-sdk/src/sdk/models/shared/objwithobjadditionalproperties.py index c534a1622..9c95e129e 100755 --- a/python-client-sdk/src/sdk/models/shared/objwithobjadditionalproperties.py +++ b/python-client-sdk/src/sdk/models/shared/objwithobjadditionalproperties.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import dateutil.parser -from ..shared import simpleobject as shared_simpleobject +from .simpleobject import SimpleObject from dataclasses_json import Undefined, dataclass_json from datetime import datetime from sdk import utils @@ -15,6 +15,6 @@ class ObjWithObjAdditionalProperties: additional_properties: List[int] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('AdditionalProperties') }}) datetime_: datetime = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('datetime'), 'encoder': utils.datetimeisoformat(False), 'decoder': dateutil.parser.isoparse }}) - additional_properties_t: Optional[Dict[str, shared_simpleobject.SimpleObject]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'exclude': lambda f: f is None }}) + additional_properties_t: Optional[Dict[str, SimpleObject]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'exclude': lambda f: f is None }}) diff --git a/python-client-sdk/src/sdk/models/shared/oneofcircularreferenceobject.py b/python-client-sdk/src/sdk/models/shared/oneofcircularreferenceobject.py index 08c62af35..436291c37 100755 --- a/python-client-sdk/src/sdk/models/shared/oneofcircularreferenceobject.py +++ b/python-client-sdk/src/sdk/models/shared/oneofcircularreferenceobject.py @@ -2,20 +2,20 @@ from __future__ import annotations import dataclasses -from ..shared import simpleobject as shared_simpleobject +from .simpleobject import SimpleObject from dataclasses_json import Undefined, dataclass_json from sdk import utils from typing import Union @dataclasses.dataclass -class OneOfCircularReferenceObjectChild: +class Child: pass @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class OneOfCircularReferenceObject: - child: Union[OneOfCircularReferenceObject, shared_simpleobject.SimpleObject] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('child') }}) + child: Union[OneOfCircularReferenceObject, SimpleObject] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('child') }}) diff --git a/python-client-sdk/src/sdk/models/shared/oneofgenerationstresstest.py b/python-client-sdk/src/sdk/models/shared/oneofgenerationstresstest.py index f6f88d845..485159717 100755 --- a/python-client-sdk/src/sdk/models/shared/oneofgenerationstresstest.py +++ b/python-client-sdk/src/sdk/models/shared/oneofgenerationstresstest.py @@ -9,15 +9,15 @@ @dataclasses.dataclass -class OneOfGenerationStressTestOneOfFromArrayOfTypes: +class OneOfFromArrayOfTypes: pass -class OneOfGenerationStressTestOneOfSameType2(str, Enum): +class Two(str, Enum): LATEST = 'latest' @dataclasses.dataclass -class OneOfGenerationStressTestOneOfSameType: +class OneOfSameType: pass @@ -27,6 +27,6 @@ class OneOfGenerationStressTest: any: Any = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('any') }}) nullable_any: Optional[Any] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('nullableAny') }}) one_of_from_array_of_types: Optional[Union[str, int]] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('oneOfFromArrayOfTypes') }}) - one_of_same_type: Optional[Union[str, OneOfGenerationStressTestOneOfSameType2]] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('oneOfSameType') }}) + one_of_same_type: Optional[Union[str, Two]] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('oneOfSameType') }}) diff --git a/python-client-sdk/src/sdk/models/shared/readwriteobject.py b/python-client-sdk/src/sdk/models/shared/readwriteobject.py index 683ff9515..9cb3aab20 100755 --- a/python-client-sdk/src/sdk/models/shared/readwriteobject.py +++ b/python-client-sdk/src/sdk/models/shared/readwriteobject.py @@ -8,7 +8,7 @@ @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass -class ReadWriteObjectInput: +class ReadWriteObject: num1: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('num1') }}) num2: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('num2') }}) num3: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('num3') }}) diff --git a/python-client-sdk/src/sdk/models/shared/simpleobject.py b/python-client-sdk/src/sdk/models/shared/simpleobject.py index a410d83d2..12c62f6fc 100755 --- a/python-client-sdk/src/sdk/models/shared/simpleobject.py +++ b/python-client-sdk/src/sdk/models/shared/simpleobject.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import dateutil.parser -from ..shared import enum as shared_enum +from .enum import EnumT from dataclasses_json import Undefined, dataclass_json from datetime import date, datetime from decimal import Decimal @@ -11,13 +11,13 @@ from sdk import utils from typing import Any, Optional -class SimpleObjectInt32Enum(int, Enum): +class Int32Enum(int, Enum): r"""An int32 enum property.""" FIFTY_FIVE = 55 SIXTY_NINE = 69 ONE_HUNDRED_AND_EIGHTY_ONE = 181 -class SimpleObjectIntEnum(int, Enum): +class IntEnum(int, Enum): r"""An integer enum property.""" FIRST = 1 SECOND = 2 @@ -38,7 +38,7 @@ class SimpleObject: r"""A date property.""" date_time: datetime = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('dateTime'), 'encoder': utils.datetimeisoformat(False), 'decoder': dateutil.parser.isoparse }, 'header': { 'field_name': 'dateTime' }, 'path_param': { 'field_name': 'dateTime' }, 'query_param': { 'field_name': 'dateTime' }, 'form': { 'field_name': 'dateTime' }, 'multipart_form': { 'field_name': 'dateTime' }}) r"""A date-time property.""" - enum: shared_enum.EnumT = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enum') }, 'header': { 'field_name': 'enum' }, 'path_param': { 'field_name': 'enum' }, 'query_param': { 'field_name': 'enum' }, 'form': { 'field_name': 'enum' }, 'multipart_form': { 'field_name': 'enum' }}) + enum: EnumT = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enum') }, 'header': { 'field_name': 'enum' }, 'path_param': { 'field_name': 'enum' }, 'query_param': { 'field_name': 'enum' }, 'form': { 'field_name': 'enum' }, 'multipart_form': { 'field_name': 'enum' }}) r"""A string based enum""" float32: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('float32') }, 'header': { 'field_name': 'float32' }, 'path_param': { 'field_name': 'float32' }, 'query_param': { 'field_name': 'float32' }, 'form': { 'field_name': 'float32' }, 'multipart_form': { 'field_name': 'float32' }}) r"""A float32 property.""" @@ -46,9 +46,9 @@ class SimpleObject: r"""An integer property.""" int32: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int32') }, 'header': { 'field_name': 'int32' }, 'path_param': { 'field_name': 'int32' }, 'query_param': { 'field_name': 'int32' }, 'form': { 'field_name': 'int32' }, 'multipart_form': { 'field_name': 'int32' }}) r"""An int32 property.""" - int32_enum: SimpleObjectInt32Enum = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int32Enum') }, 'header': { 'field_name': 'int32Enum' }, 'path_param': { 'field_name': 'int32Enum' }, 'query_param': { 'field_name': 'int32Enum' }, 'form': { 'field_name': 'int32Enum' }, 'multipart_form': { 'field_name': 'int32Enum' }}) + int32_enum: Int32Enum = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int32Enum') }, 'header': { 'field_name': 'int32Enum' }, 'path_param': { 'field_name': 'int32Enum' }, 'query_param': { 'field_name': 'int32Enum' }, 'form': { 'field_name': 'int32Enum' }, 'multipart_form': { 'field_name': 'int32Enum' }}) r"""An int32 enum property.""" - int_enum: SimpleObjectIntEnum = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('intEnum') }, 'header': { 'field_name': 'intEnum' }, 'path_param': { 'field_name': 'intEnum' }, 'query_param': { 'field_name': 'intEnum' }, 'form': { 'field_name': 'intEnum' }, 'multipart_form': { 'field_name': 'intEnum' }}) + int_enum: IntEnum = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('intEnum') }, 'header': { 'field_name': 'intEnum' }, 'path_param': { 'field_name': 'intEnum' }, 'query_param': { 'field_name': 'intEnum' }, 'form': { 'field_name': 'intEnum' }, 'multipart_form': { 'field_name': 'intEnum' }}) r"""An integer enum property.""" num: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('num') }, 'header': { 'field_name': 'num' }, 'path_param': { 'field_name': 'num' }, 'query_param': { 'field_name': 'num' }, 'form': { 'field_name': 'num' }, 'multipart_form': { 'field_name': 'num' }}) r"""A number property.""" diff --git a/python-client-sdk/src/sdk/models/shared/simpleobjectcamelcase.py b/python-client-sdk/src/sdk/models/shared/simpleobjectcamelcase.py index 23c16d45f..662b96236 100755 --- a/python-client-sdk/src/sdk/models/shared/simpleobjectcamelcase.py +++ b/python-client-sdk/src/sdk/models/shared/simpleobjectcamelcase.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import dateutil.parser -from ..shared import enum as shared_enum +from .enum import EnumT from dataclasses_json import Undefined, dataclass_json from datetime import date, datetime from decimal import Decimal @@ -11,13 +11,13 @@ from sdk import utils from typing import Any, Optional -class SimpleObjectCamelCaseInt32EnumVal(int, Enum): +class Int32EnumVal(int, Enum): r"""An int32 enum property.""" FIFTY_FIVE = 55 SIXTY_NINE = 69 ONE_HUNDRED_AND_EIGHTY_ONE = 181 -class SimpleObjectCamelCaseIntEnumVal(int, Enum): +class IntEnumVal(int, Enum): r"""An integer enum property.""" FIRST = 1 SECOND = 2 @@ -38,15 +38,15 @@ class SimpleObjectCamelCase: r"""A date-time property.""" date_val: date = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('date_val'), 'encoder': utils.dateisoformat(False), 'decoder': utils.datefromisoformat }}) r"""A date property.""" - enum_val: shared_enum.EnumT = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enum_val') }}) + enum_val: EnumT = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enum_val') }}) r"""A string based enum""" float32_val: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('float32_val') }}) r"""A float32 property.""" - int_enum_val: SimpleObjectCamelCaseIntEnumVal = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int_enum_val') }}) + int_enum_val: IntEnumVal = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int_enum_val') }}) r"""An integer enum property.""" int_val: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int_val') }}) r"""An integer property.""" - int32_enum_val: SimpleObjectCamelCaseInt32EnumVal = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int32_enum_val') }}) + int32_enum_val: Int32EnumVal = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int32_enum_val') }}) r"""An int32 enum property.""" int32_val: int = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('int32_val') }}) r"""An int32 property.""" diff --git a/python-client-sdk/src/sdk/models/shared/simpleobjectwithtype.py b/python-client-sdk/src/sdk/models/shared/simpleobjectwithtype.py index 00b661773..86a19eb19 100755 --- a/python-client-sdk/src/sdk/models/shared/simpleobjectwithtype.py +++ b/python-client-sdk/src/sdk/models/shared/simpleobjectwithtype.py @@ -3,7 +3,7 @@ from __future__ import annotations import dataclasses import dateutil.parser -from ..shared import enum as shared_enum +from .enum import EnumT from dataclasses_json import Undefined, dataclass_json from datetime import date, datetime from decimal import Decimal @@ -38,7 +38,7 @@ class SimpleObjectWithType: r"""A date property.""" date_time: datetime = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('dateTime'), 'encoder': utils.datetimeisoformat(False), 'decoder': dateutil.parser.isoparse }}) r"""A date-time property.""" - enum: shared_enum.EnumT = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enum') }}) + enum: EnumT = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enum') }}) r"""A string based enum""" float32: float = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('float32') }}) r"""A float32 property.""" diff --git a/python-client-sdk/src/sdk/nest.py b/python-client-sdk/src/sdk/nest.py index c22b50b5e..86942d422 100755 --- a/python-client-sdk/src/sdk/nest.py +++ b/python-client-sdk/src/sdk/nest.py @@ -1,10 +1,10 @@ """Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" -from .nest_first import NestFirst +from .sdk_first import SDKFirst from .sdkconfiguration import SDKConfiguration class Nest: - first: NestFirst + first: SDKFirst sdk_configuration: SDKConfiguration def __init__(self, sdk_config: SDKConfiguration) -> None: @@ -12,6 +12,6 @@ def __init__(self, sdk_config: SDKConfiguration) -> None: self._init_sdks() def _init_sdks(self): - self.first = NestFirst(self.sdk_configuration) + self.first = SDKFirst(self.sdk_configuration) \ No newline at end of file diff --git a/python-client-sdk/src/sdk/nest_first.py b/python-client-sdk/src/sdk/nest_first.py deleted file mode 100755 index b8fc0695d..000000000 --- a/python-client-sdk/src/sdk/nest_first.py +++ /dev/null @@ -1,36 +0,0 @@ -"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" - -from .sdkconfiguration import SDKConfiguration -from sdk import utils -from sdk.models import errors, operations - -class NestFirst: - sdk_configuration: SDKConfiguration - - def __init__(self, sdk_config: SDKConfiguration) -> None: - self.sdk_configuration = sdk_config - - - def get(self) -> operations.NestFirstGetResponse: - base_url = utils.template_url(*self.sdk_configuration.get_server_details()) - - url = base_url + '/anything/nest/first' - headers = {} - headers['Accept'] = '*/*' - headers['x-speakeasy-user-agent'] = self.sdk_configuration.user_agent - - client = self.sdk_configuration.security_client - - http_res = client.request('GET', url, headers=headers) - content_type = http_res.headers.get('Content-Type') - - res = operations.NestFirstGetResponse(status_code=http_res.status_code, content_type=content_type, raw_response=http_res) - - if http_res.status_code == 200: - pass - elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: - raise errors.SDKError('API error occurred', http_res.status_code, http_res.text, http_res) - - return res - - \ No newline at end of file diff --git a/python-client-sdk/src/sdk/nested.py b/python-client-sdk/src/sdk/nested.py index de8b1c50d..831cc2b2e 100755 --- a/python-client-sdk/src/sdk/nested.py +++ b/python-client-sdk/src/sdk/nested.py @@ -1,14 +1,14 @@ """Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" -from .nested_first import NestedFirst -from .nested_second import NestedSecond +from .sdk_nested_first import SDKNestedFirst +from .sdk_second import SDKSecond from .sdkconfiguration import SDKConfiguration from sdk import utils from sdk.models import errors, operations class Nested: - first: NestedFirst - second: NestedSecond + first: SDKNestedFirst + second: SDKSecond sdk_configuration: SDKConfiguration def __init__(self, sdk_config: SDKConfiguration) -> None: @@ -16,8 +16,8 @@ def __init__(self, sdk_config: SDKConfiguration) -> None: self._init_sdks() def _init_sdks(self): - self.first = NestedFirst(self.sdk_configuration) - self.second = NestedSecond(self.sdk_configuration) + self.first = SDKNestedFirst(self.sdk_configuration) + self.second = SDKSecond(self.sdk_configuration) def get(self) -> operations.NestedGetResponse: diff --git a/python-client-sdk/src/sdk/nested_first.py b/python-client-sdk/src/sdk/nested_first.py deleted file mode 100755 index a5ee1005f..000000000 --- a/python-client-sdk/src/sdk/nested_first.py +++ /dev/null @@ -1,36 +0,0 @@ -"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" - -from .sdkconfiguration import SDKConfiguration -from sdk import utils -from sdk.models import errors, operations - -class NestedFirst: - sdk_configuration: SDKConfiguration - - def __init__(self, sdk_config: SDKConfiguration) -> None: - self.sdk_configuration = sdk_config - - - def get(self) -> operations.NestedFirstGetResponse: - base_url = utils.template_url(*self.sdk_configuration.get_server_details()) - - url = base_url + '/anything/nested/first' - headers = {} - headers['Accept'] = '*/*' - headers['x-speakeasy-user-agent'] = self.sdk_configuration.user_agent - - client = self.sdk_configuration.security_client - - http_res = client.request('GET', url, headers=headers) - content_type = http_res.headers.get('Content-Type') - - res = operations.NestedFirstGetResponse(status_code=http_res.status_code, content_type=content_type, raw_response=http_res) - - if http_res.status_code == 200: - pass - elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: - raise errors.SDKError('API error occurred', http_res.status_code, http_res.text, http_res) - - return res - - \ No newline at end of file diff --git a/python-client-sdk/src/sdk/nested_second.py b/python-client-sdk/src/sdk/nested_second.py deleted file mode 100755 index c1be4484e..000000000 --- a/python-client-sdk/src/sdk/nested_second.py +++ /dev/null @@ -1,36 +0,0 @@ -"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" - -from .sdkconfiguration import SDKConfiguration -from sdk import utils -from sdk.models import errors, operations - -class NestedSecond: - sdk_configuration: SDKConfiguration - - def __init__(self, sdk_config: SDKConfiguration) -> None: - self.sdk_configuration = sdk_config - - - def get(self) -> operations.NestedSecondGetResponse: - base_url = utils.template_url(*self.sdk_configuration.get_server_details()) - - url = base_url + '/anything/nested/second' - headers = {} - headers['Accept'] = '*/*' - headers['x-speakeasy-user-agent'] = self.sdk_configuration.user_agent - - client = self.sdk_configuration.security_client - - http_res = client.request('GET', url, headers=headers) - content_type = http_res.headers.get('Content-Type') - - res = operations.NestedSecondGetResponse(status_code=http_res.status_code, content_type=content_type, raw_response=http_res) - - if http_res.status_code == 200: - pass - elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: - raise errors.SDKError('API error occurred', http_res.status_code, http_res.text, http_res) - - return res - - \ No newline at end of file diff --git a/python-client-sdk/src/sdk/parameters.py b/python-client-sdk/src/sdk/parameters.py index 44f7ed46b..3084c83a4 100755 --- a/python-client-sdk/src/sdk/parameters.py +++ b/python-client-sdk/src/sdk/parameters.py @@ -46,7 +46,7 @@ def deep_object_query_params_map(self, map_param: Dict[str, str], map_arr_param: return res - def deep_object_query_params_object(self, obj_param: shared.SimpleObject, obj_arr_param: Optional[operations.DeepObjectQueryParamsObjectObjArrParam] = None) -> operations.DeepObjectQueryParamsObjectResponse: + def deep_object_query_params_object(self, obj_param: shared.SimpleObject, obj_arr_param: Optional[operations.ObjArrParam] = None) -> operations.DeepObjectQueryParamsObjectResponse: request = operations.DeepObjectQueryParamsObjectRequest( obj_param=obj_param, obj_arr_param=obj_arr_param, @@ -143,7 +143,7 @@ def form_query_params_array(self, arr_param: Optional[List[str]] = None, arr_par return res - def form_query_params_camel_object(self, obj_param_exploded: operations.FormQueryParamsCamelObjectObjParamExploded, obj_param: Optional[operations.FormQueryParamsCamelObjectObjParam] = None) -> operations.FormQueryParamsCamelObjectResponse: + def form_query_params_camel_object(self, obj_param_exploded: operations.ObjParamExploded, obj_param: Optional[operations.ObjParam] = None) -> operations.FormQueryParamsCamelObjectResponse: request = operations.FormQueryParamsCamelObjectRequest( obj_param_exploded=obj_param_exploded, obj_param=obj_param, diff --git a/python-client-sdk/src/sdk/requestbodies.py b/python-client-sdk/src/sdk/requestbodies.py index 9a5ae46e7..879206673 100755 --- a/python-client-sdk/src/sdk/requestbodies.py +++ b/python-client-sdk/src/sdk/requestbodies.py @@ -69,7 +69,7 @@ def nullable_required_empty_object_post(self, request: operations.NullableRequir if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - res.nullable_required_empty_object_post_200_application_json_string = http_res.content + res.res = http_res.content else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -100,7 +100,7 @@ def nullable_required_property_post(self, request: operations.NullableRequiredPr if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - res.nullable_required_property_post_200_application_json_string = http_res.content + res.res = http_res.content else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -131,7 +131,7 @@ def nullable_required_shared_object_post(self, request: operations.NullableRequi if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - res.nullable_required_shared_object_post_200_application_json_string = http_res.content + res.res = http_res.content else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -166,7 +166,7 @@ def request_body_post_application_json_array(self, request: List[shared.SimpleOb if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): out = utils.unmarshal_json(http_res.text, Optional[List[shared.SimpleObject]]) - res.simple_objects = out + res.res = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -201,7 +201,7 @@ def request_body_post_application_json_array_camel_case(self, request: List[shar if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): out = utils.unmarshal_json(http_res.text, Optional[List[shared.SimpleObjectCamelCase]]) - res.simple_object_camel_cases = out + res.res = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -300,7 +300,7 @@ def request_body_post_application_json_array_of_array(self, request: List[List[s if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): out = utils.unmarshal_json(http_res.text, Optional[List[List[shared.SimpleObject]]]) - res.arrs = out + res.res = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -335,7 +335,7 @@ def request_body_post_application_json_array_of_array_camel_case(self, request: if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): out = utils.unmarshal_json(http_res.text, Optional[List[List[shared.SimpleObjectCamelCase]]]) - res.arrs = out + res.res = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -370,7 +370,7 @@ def request_body_post_application_json_array_of_array_of_primitive(self, request if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): out = utils.unmarshal_json(http_res.text, Optional[List[List[str]]]) - res.arrs = out + res.res = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -405,7 +405,7 @@ def request_body_post_application_json_array_of_map(self, request: List[Dict[str if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): out = utils.unmarshal_json(http_res.text, Optional[List[Dict[str, shared.SimpleObject]]]) - res.maps = out + res.res = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -440,7 +440,7 @@ def request_body_post_application_json_array_of_map_camel_case(self, request: Li if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): out = utils.unmarshal_json(http_res.text, Optional[List[Dict[str, shared.SimpleObjectCamelCase]]]) - res.maps = out + res.res = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -475,7 +475,7 @@ def request_body_post_application_json_array_of_primitive(self, request: List[st if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): out = utils.unmarshal_json(http_res.text, Optional[List[str]]) - res.strings = out + res.res = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1011,8 +1011,8 @@ def request_body_post_complex_number_types(self, request: operations.RequestBody if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostComplexNumberTypes200ApplicationJSON]) - res.request_body_post_complex_number_types_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostComplexNumberTypesResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1043,8 +1043,8 @@ def request_body_post_defaults_and_consts(self, request: shared.DefaultsAndConst if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostDefaultsAndConsts200ApplicationJSON]) - res.request_body_post_defaults_and_consts_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostDefaultsAndConstsResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1075,8 +1075,8 @@ def request_body_post_empty_object(self, request: operations.RequestBodyPostEmpt if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostEmptyObject200ApplicationJSON]) - res.request_body_post_empty_object_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostEmptyObjectResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1203,8 +1203,8 @@ def request_body_post_json_data_types_array_big_int(self, request: List[int]) -> if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON]) - res.request_body_post_json_data_types_array_big_int_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesArrayBigIntResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1235,8 +1235,8 @@ def request_body_post_json_data_types_array_date(self, request: List[date]) -> o if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON]) - res.request_body_post_json_data_types_array_date_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesArrayDateResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1267,8 +1267,8 @@ def request_body_post_json_data_types_array_decimal_str(self, request: List[Deci if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON]) - res.request_body_post_json_data_types_array_decimal_str_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesArrayDecimalStrResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1299,8 +1299,8 @@ def request_body_post_json_data_types_big_int(self, request: int) -> operations. if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesBigInt200ApplicationJSON]) - res.request_body_post_json_data_types_big_int_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesBigIntResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1331,8 +1331,8 @@ def request_body_post_json_data_types_big_int_str(self, request: int) -> operati if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON]) - res.request_body_post_json_data_types_big_int_str_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesBigIntStrResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1363,8 +1363,8 @@ def request_body_post_json_data_types_boolean(self, request: bool) -> operations if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesBoolean200ApplicationJSON]) - res.request_body_post_json_data_types_boolean_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesBooleanResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1395,8 +1395,8 @@ def request_body_post_json_data_types_date(self, request: date) -> operations.Re if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesDate200ApplicationJSON]) - res.request_body_post_json_data_types_date_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesDateResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1427,8 +1427,8 @@ def request_body_post_json_data_types_date_time(self, request: datetime) -> oper if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesDateTime200ApplicationJSON]) - res.request_body_post_json_data_types_date_time_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesDateTimeResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1459,8 +1459,8 @@ def request_body_post_json_data_types_decimal(self, request: Decimal) -> operati if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesDecimal200ApplicationJSON]) - res.request_body_post_json_data_types_decimal_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesDecimalResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1491,8 +1491,8 @@ def request_body_post_json_data_types_decimal_str(self, request: Decimal) -> ope if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON]) - res.request_body_post_json_data_types_decimal_str_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesDecimalStrResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1523,8 +1523,8 @@ def request_body_post_json_data_types_float32(self, request: float) -> operation if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesFloat32200ApplicationJSON]) - res.request_body_post_json_data_types_float32_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesFloat32ResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1555,8 +1555,8 @@ def request_body_post_json_data_types_int32(self, request: int) -> operations.Re if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesInt32200ApplicationJSON]) - res.request_body_post_json_data_types_int32_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesInt32ResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1587,8 +1587,8 @@ def request_body_post_json_data_types_integer(self, request: int) -> operations. if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesInteger200ApplicationJSON]) - res.request_body_post_json_data_types_integer_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesIntegerResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1619,8 +1619,8 @@ def request_body_post_json_data_types_map_big_int_str(self, request: Dict[str, i if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON]) - res.request_body_post_json_data_types_map_big_int_str_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesMapBigIntStrResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1651,8 +1651,8 @@ def request_body_post_json_data_types_map_date_time(self, request: Dict[str, dat if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON]) - res.request_body_post_json_data_types_map_date_time_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesMapDateTimeResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1683,8 +1683,8 @@ def request_body_post_json_data_types_map_decimal(self, request: Dict[str, Decim if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON]) - res.request_body_post_json_data_types_map_decimal_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesMapDecimalResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1715,8 +1715,8 @@ def request_body_post_json_data_types_number(self, request: float) -> operations if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesNumber200ApplicationJSON]) - res.request_body_post_json_data_types_number_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesNumberResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1747,8 +1747,8 @@ def request_body_post_json_data_types_string(self, request: str) -> operations.R if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesString200ApplicationJSON]) - res.request_body_post_json_data_types_string_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostJSONDataTypesStringResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -1789,7 +1789,7 @@ def request_body_post_multiple_content_types_component_filtered(self, request: s return res - def request_body_post_multiple_content_types_inline_filtered(self, request: operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON) -> operations.RequestBodyPostMultipleContentTypesInlineFilteredResponse: + def request_body_post_multiple_content_types_inline_filtered(self, request: operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody) -> operations.RequestBodyPostMultipleContentTypesInlineFilteredResponse: base_url = utils.template_url(*self.sdk_configuration.get_server_details()) url = base_url + '/anything/requestBodies/post/multiple/contentTypes/inline/filtered' @@ -1821,7 +1821,7 @@ def request_body_post_multiple_content_types_inline_filtered(self, request: oper return res - def request_body_post_multiple_content_types_split_param_form(self, request_body: operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded, param_str: str) -> operations.RequestBodyPostMultipleContentTypesSplitParamFormResponse: + def request_body_post_multiple_content_types_split_param_form(self, request_body: operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody, param_str: str) -> operations.RequestBodyPostMultipleContentTypesSplitParamFormResponse: request = operations.RequestBodyPostMultipleContentTypesSplitParamFormRequest( request_body=request_body, param_str=param_str, @@ -1859,7 +1859,7 @@ def request_body_post_multiple_content_types_split_param_form(self, request_body return res - def request_body_post_multiple_content_types_split_param_json(self, request_body: operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON, param_str: str) -> operations.RequestBodyPostMultipleContentTypesSplitParamJSONResponse: + def request_body_post_multiple_content_types_split_param_json(self, request_body: operations.RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody, param_str: str) -> operations.RequestBodyPostMultipleContentTypesSplitParamJSONResponse: request = operations.RequestBodyPostMultipleContentTypesSplitParamJSONRequest( request_body=request_body, param_str=param_str, @@ -1897,7 +1897,7 @@ def request_body_post_multiple_content_types_split_param_json(self, request_body return res - def request_body_post_multiple_content_types_split_param_multipart(self, request_body: operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData, param_str: str) -> operations.RequestBodyPostMultipleContentTypesSplitParamMultipartResponse: + def request_body_post_multiple_content_types_split_param_multipart(self, request_body: operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody, param_str: str) -> operations.RequestBodyPostMultipleContentTypesSplitParamMultipartResponse: request = operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequest( request_body=request_body, param_str=param_str, @@ -1935,7 +1935,7 @@ def request_body_post_multiple_content_types_split_param_multipart(self, request return res - def request_body_post_multiple_content_types_split_form(self, request: operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded) -> operations.RequestBodyPostMultipleContentTypesSplitFormResponse: + def request_body_post_multiple_content_types_split_form(self, request: operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody) -> operations.RequestBodyPostMultipleContentTypesSplitFormResponse: base_url = utils.template_url(*self.sdk_configuration.get_server_details()) url = base_url + '/anything/requestBodies/post/multiple/contentTypes/split' @@ -1967,7 +1967,7 @@ def request_body_post_multiple_content_types_split_form(self, request: operation return res - def request_body_post_multiple_content_types_split_json(self, request: operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON) -> operations.RequestBodyPostMultipleContentTypesSplitJSONResponse: + def request_body_post_multiple_content_types_split_json(self, request: operations.RequestBodyPostMultipleContentTypesSplitJSONRequestBody) -> operations.RequestBodyPostMultipleContentTypesSplitJSONResponse: base_url = utils.template_url(*self.sdk_configuration.get_server_details()) url = base_url + '/anything/requestBodies/post/multiple/contentTypes/split' @@ -1999,7 +1999,7 @@ def request_body_post_multiple_content_types_split_json(self, request: operation return res - def request_body_post_multiple_content_types_split_multipart(self, request: operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData) -> operations.RequestBodyPostMultipleContentTypesSplitMultipartResponse: + def request_body_post_multiple_content_types_split_multipart(self, request: operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody) -> operations.RequestBodyPostMultipleContentTypesSplitMultipartResponse: base_url = utils.template_url(*self.sdk_configuration.get_server_details()) url = base_url + '/anything/requestBodies/post/multiple/contentTypes/split' @@ -2051,8 +2051,8 @@ def request_body_post_not_nullable_not_required_string_body(self, request: str) if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON]) - res.request_body_post_not_nullable_not_required_string_body_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -2083,8 +2083,8 @@ def request_body_post_null_array(self, request: List[str]) -> operations.Request if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostNullArray200ApplicationJSON]) - res.request_body_post_null_array_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostNullArrayResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -2115,8 +2115,8 @@ def request_body_post_null_dictionary(self, request: Dict[str, str]) -> operatio if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostNullDictionary200ApplicationJSON]) - res.request_body_post_null_dictionary_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostNullDictionaryResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -2145,8 +2145,8 @@ def request_body_post_nullable_not_required_string_body(self, request: str) -> o if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON]) - res.request_body_post_nullable_not_required_string_body_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -2177,8 +2177,8 @@ def request_body_post_nullable_required_string_body(self, request: str) -> opera if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostNullableRequiredStringBody200ApplicationJSON]) - res.request_body_post_nullable_required_string_body_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.RequestBodyPostNullableRequiredStringBodyResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -2455,7 +2455,7 @@ def request_body_put_string_with_params(self, request_body: str, query_string_pa return res - def request_body_read_and_write(self, request: shared.ReadWriteObjectInput, server_url: Optional[str] = None) -> operations.RequestBodyReadAndWriteResponse: + def request_body_read_and_write(self, request: shared.ReadWriteObject, server_url: Optional[str] = None) -> operations.RequestBodyReadAndWriteResponse: base_url = utils.template_url(operations.REQUEST_BODY_READ_AND_WRITE_SERVERS[0], { }) if server_url is not None: @@ -2560,7 +2560,7 @@ def request_body_read_only_union(self, request: Union[shared.SimpleObject, share return res - def request_body_read_write_only_union(self, request: Union[shared.SimpleObject, shared.ReadWriteObjectInput], server_url: Optional[str] = None) -> operations.RequestBodyReadWriteOnlyUnionResponse: + def request_body_read_write_only_union(self, request: Union[shared.SimpleObject, shared.ReadWriteObject], server_url: Optional[str] = None) -> operations.RequestBodyReadWriteOnlyUnionResponse: base_url = utils.template_url(operations.REQUEST_BODY_READ_WRITE_ONLY_UNION_SERVERS[0], { }) if server_url is not None: diff --git a/python-client-sdk/src/sdk/responsebodies.py b/python-client-sdk/src/sdk/responsebodies.py index 4f6cc7b26..71fc8860f 100755 --- a/python-client-sdk/src/sdk/responsebodies.py +++ b/python-client-sdk/src/sdk/responsebodies.py @@ -40,8 +40,8 @@ def response_body_additional_properties_complex_numbers_post(self, request: shar if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON]) - res.response_body_additional_properties_complex_numbers_post_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -72,8 +72,8 @@ def response_body_additional_properties_date_post(self, request: shared.ObjWithD if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON]) - res.response_body_additional_properties_date_post_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.ResponseBodyAdditionalPropertiesDatePostResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -104,8 +104,8 @@ def response_body_additional_properties_object_post(self, request: shared.ObjWit if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON]) - res.response_body_additional_properties_object_post_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -136,8 +136,8 @@ def response_body_additional_properties_post(self, request: shared.ObjWithString if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.ResponseBodyAdditionalPropertiesPost200ApplicationJSON]) - res.response_body_additional_properties_post_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.ResponseBodyAdditionalPropertiesPostResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -228,7 +228,7 @@ def response_body_optional_get(self, server_url: Optional[str] = None, accept_he out = utils.unmarshal_json(http_res.text, Optional[shared.TypedObject1]) res.typed_object1 = out elif utils.match_content_type(content_type, 'text/plain'): - res.response_body_optional_get_200_text_plain_string = http_res.content + res.res = http_res.content else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: @@ -341,8 +341,8 @@ def response_body_zero_value_complex_type_ptrs_post(self, request: shared.ObjWit if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON]) - res.response_body_zero_value_complex_type_ptrs_post_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: diff --git a/python-client-sdk/src/sdk/sdk.py b/python-client-sdk/src/sdk/sdk.py index 36471e2bd..1a3fa4db1 100755 --- a/python-client-sdk/src/sdk/sdk.py +++ b/python-client-sdk/src/sdk/sdk.py @@ -32,41 +32,41 @@ class SDK: About our test document. https://speakeasyapi.dev/docs/home - Speakeasy Docs """ - auth: Auth - r"""Endpoints for testing authentication.""" - auth_new: AuthNew - r"""Endpoints for testing authentication.""" - documentation: Documentation - r"""Testing for documentation extensions in Python.""" + generation: Generation + r"""Endpoints for purely testing valid generation behavior.""" errors: Errors r"""Endpoints for testing error responses.""" - first: First + unions: Unions + r"""Endpoints for testing union types.""" flattening: Flattening r"""Endpoints for testing flattening through request body and parameter combinations.""" - generation: Generation - r"""Endpoints for purely testing valid generation behavior.""" globals: Globals r"""Endpoints for testing global parameters.""" - nest: Nest - nested: Nested - pagination: Pagination - r"""Endpoints for testing the pagination extension""" parameters: Parameters r"""Endpoints for testing parameters.""" + nest: Nest + nested: Nested request_bodies: RequestBodies r"""Endpoints for testing request bodies.""" - resource: Resource response_bodies: ResponseBodies r"""Endpoints for testing response bodies.""" - retries: Retries - r"""Endpoints for testing retries.""" - second: Second servers: Servers r"""Endpoints for testing servers.""" telemetry: Telemetry r"""Endpoints for testing telemetry.""" - unions: Unions - r"""Endpoints for testing union types.""" + auth_new: AuthNew + r"""Endpoints for testing authentication.""" + auth: Auth + r"""Endpoints for testing authentication.""" + documentation: Documentation + r"""Testing for documentation extensions in Python.""" + resource: Resource + first: First + second: Second + pagination: Pagination + r"""Endpoints for testing the pagination extension""" + retries: Retries + r"""Endpoints for testing retries.""" sdk_configuration: SDKConfiguration @@ -93,13 +93,13 @@ def __init__(self, :param global_query_param: Configures the global_query_param parameter for all supported operations :type global_query_param: str :param hostname: Allows setting the hostname variable for url substitution - :type hostname: str + :type hostname: :param port: Allows setting the port variable for url substitution - :type port: str + :type port: :param protocol: Allows setting the protocol variable for url substitution - :type protocol: str + :type protocol: :param something: Allows setting the something variable for url substitution - :type something: sdk.ServerSomething + :type something: ServerSomethingmodels.ServerSomething :param server_idx: The index of the server to use for all operations :type server_idx: int :param server_url: The server URL to use for all operations @@ -154,26 +154,26 @@ def __init__(self, self._init_sdks() def _init_sdks(self): - self.auth = Auth(self.sdk_configuration) - self.auth_new = AuthNew(self.sdk_configuration) - self.documentation = Documentation(self.sdk_configuration) + self.generation = Generation(self.sdk_configuration) self.errors = Errors(self.sdk_configuration) - self.first = First(self.sdk_configuration) + self.unions = Unions(self.sdk_configuration) self.flattening = Flattening(self.sdk_configuration) - self.generation = Generation(self.sdk_configuration) self.globals = Globals(self.sdk_configuration) + self.parameters = Parameters(self.sdk_configuration) self.nest = Nest(self.sdk_configuration) self.nested = Nested(self.sdk_configuration) - self.pagination = Pagination(self.sdk_configuration) - self.parameters = Parameters(self.sdk_configuration) self.request_bodies = RequestBodies(self.sdk_configuration) - self.resource = Resource(self.sdk_configuration) self.response_bodies = ResponseBodies(self.sdk_configuration) - self.retries = Retries(self.sdk_configuration) - self.second = Second(self.sdk_configuration) self.servers = Servers(self.sdk_configuration) self.telemetry = Telemetry(self.sdk_configuration) - self.unions = Unions(self.sdk_configuration) + self.auth_new = AuthNew(self.sdk_configuration) + self.auth = Auth(self.sdk_configuration) + self.documentation = Documentation(self.sdk_configuration) + self.resource = Resource(self.sdk_configuration) + self.first = First(self.sdk_configuration) + self.second = Second(self.sdk_configuration) + self.pagination = Pagination(self.sdk_configuration) + self.retries = Retries(self.sdk_configuration) def put_anything_ignored_generation(self, request: str) -> operations.PutAnythingIgnoredGenerationResponse: base_url = utils.template_url(*self.sdk_configuration.get_server_details()) @@ -197,8 +197,8 @@ def put_anything_ignored_generation(self, request: str) -> operations.PutAnythin if http_res.status_code == 200: if utils.match_content_type(content_type, 'application/json'): - out = utils.unmarshal_json(http_res.text, Optional[operations.PutAnythingIgnoredGeneration200ApplicationJSON]) - res.put_anything_ignored_generation_200_application_json_object = out + out = utils.unmarshal_json(http_res.text, Optional[operations.PutAnythingIgnoredGenerationResponseBody]) + res.object = out else: raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res) elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: diff --git a/python-client-sdk/src/sdk/sdk_first.py b/python-client-sdk/src/sdk/sdk_first.py new file mode 100755 index 000000000..247bb6f54 --- /dev/null +++ b/python-client-sdk/src/sdk/sdk_first.py @@ -0,0 +1,36 @@ +"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" + +from .sdkconfiguration import SDKConfiguration +from sdk import utils +from sdk.models import errors, operations + +class SDKFirst: + sdk_configuration: SDKConfiguration + + def __init__(self, sdk_config: SDKConfiguration) -> None: + self.sdk_configuration = sdk_config + + + def get(self) -> operations.NestFirstGetResponse: + base_url = utils.template_url(*self.sdk_configuration.get_server_details()) + + url = base_url + '/anything/nest/first' + headers = {} + headers['Accept'] = '*/*' + headers['x-speakeasy-user-agent'] = self.sdk_configuration.user_agent + + client = self.sdk_configuration.security_client + + http_res = client.request('GET', url, headers=headers) + content_type = http_res.headers.get('Content-Type') + + res = operations.NestFirstGetResponse(status_code=http_res.status_code, content_type=content_type, raw_response=http_res) + + if http_res.status_code == 200: + pass + elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: + raise errors.SDKError('API error occurred', http_res.status_code, http_res.text, http_res) + + return res + + \ No newline at end of file diff --git a/python-client-sdk/src/sdk/sdk_nested_first.py b/python-client-sdk/src/sdk/sdk_nested_first.py new file mode 100755 index 000000000..d623b1315 --- /dev/null +++ b/python-client-sdk/src/sdk/sdk_nested_first.py @@ -0,0 +1,36 @@ +"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" + +from .sdkconfiguration import SDKConfiguration +from sdk import utils +from sdk.models import errors, operations + +class SDKNestedFirst: + sdk_configuration: SDKConfiguration + + def __init__(self, sdk_config: SDKConfiguration) -> None: + self.sdk_configuration = sdk_config + + + def get(self) -> operations.NestedFirstGetResponse: + base_url = utils.template_url(*self.sdk_configuration.get_server_details()) + + url = base_url + '/anything/nested/first' + headers = {} + headers['Accept'] = '*/*' + headers['x-speakeasy-user-agent'] = self.sdk_configuration.user_agent + + client = self.sdk_configuration.security_client + + http_res = client.request('GET', url, headers=headers) + content_type = http_res.headers.get('Content-Type') + + res = operations.NestedFirstGetResponse(status_code=http_res.status_code, content_type=content_type, raw_response=http_res) + + if http_res.status_code == 200: + pass + elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: + raise errors.SDKError('API error occurred', http_res.status_code, http_res.text, http_res) + + return res + + \ No newline at end of file diff --git a/python-client-sdk/src/sdk/sdk_second.py b/python-client-sdk/src/sdk/sdk_second.py new file mode 100755 index 000000000..966f0c8fe --- /dev/null +++ b/python-client-sdk/src/sdk/sdk_second.py @@ -0,0 +1,36 @@ +"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" + +from .sdkconfiguration import SDKConfiguration +from sdk import utils +from sdk.models import errors, operations + +class SDKSecond: + sdk_configuration: SDKConfiguration + + def __init__(self, sdk_config: SDKConfiguration) -> None: + self.sdk_configuration = sdk_config + + + def get(self) -> operations.NestedSecondGetResponse: + base_url = utils.template_url(*self.sdk_configuration.get_server_details()) + + url = base_url + '/anything/nested/second' + headers = {} + headers['Accept'] = '*/*' + headers['x-speakeasy-user-agent'] = self.sdk_configuration.user_agent + + client = self.sdk_configuration.security_client + + http_res = client.request('GET', url, headers=headers) + content_type = http_res.headers.get('Content-Type') + + res = operations.NestedSecondGetResponse(status_code=http_res.status_code, content_type=content_type, raw_response=http_res) + + if http_res.status_code == 200: + pass + elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600: + raise errors.SDKError('API error occurred', http_res.status_code, http_res.text, http_res) + + return res + + \ No newline at end of file diff --git a/python-client-sdk/src/sdk/sdkconfiguration.py b/python-client-sdk/src/sdk/sdkconfiguration.py index 3751569ff..e60f57078 100755 --- a/python-client-sdk/src/sdk/sdkconfiguration.py +++ b/python-client-sdk/src/sdk/sdkconfiguration.py @@ -39,9 +39,9 @@ class SDKConfiguration: globals: Dict[str, Dict[str, Dict[str, Any]]] = field(default_factory=Dict) language: str = 'python' openapi_doc_version: str = '0.1.0' - sdk_version: str = '2.0.4' - gen_version: str = '2.173.0' - user_agent: str = 'speakeasy-sdk/python 2.0.4 2.173.0 0.1.0 openapi' + sdk_version: str = '3.0.0' + gen_version: str = '2.181.1' + user_agent: str = 'speakeasy-sdk/python 3.0.0 2.181.1 0.1.0 openapi' retry_config: RetryConfig = None def get_server_details(self) -> Tuple[str, Dict[str, str]]: diff --git a/python-client-sdk/src/sdk/unions.py b/python-client-sdk/src/sdk/unions.py index fb61d6d9a..ce811fc2a 100755 --- a/python-client-sdk/src/sdk/unions.py +++ b/python-client-sdk/src/sdk/unions.py @@ -340,7 +340,7 @@ def union_big_int_decimal(self, request: Union[int, Decimal]) -> operations.Unio url = base_url + '/anything/unionBigIntDecimal' headers = {} - req_content_type, data, form = utils.serialize_request_body(request, "request", False, False, 'json', utils.union_encoder({int: utils.bigintencoder(True), Decimal: utils.decimalencoder(True, False)})) + req_content_type, data, form = utils.serialize_request_body(request, "request", False, False, 'json', utils.union_encoder({int: utils.bigintencoder(False), Decimal: utils.decimalencoder(False, False)})) if req_content_type not in ('multipart/form-data', 'multipart/mixed'): headers['content-type'] = req_content_type if data is None and form is None: @@ -404,7 +404,7 @@ def union_date_time_big_int(self, request: Union[datetime, int]) -> operations.U url = base_url + '/anything/unionDateTimeBigInt' headers = {} - req_content_type, data, form = utils.serialize_request_body(request, "request", False, False, 'json', utils.union_encoder({datetime: utils.datetimeisoformat(True)})) + req_content_type, data, form = utils.serialize_request_body(request, "request", False, False, 'json', utils.union_encoder({datetime: utils.datetimeisoformat(False)})) if req_content_type not in ('multipart/form-data', 'multipart/mixed'): headers['content-type'] = req_content_type if data is None and form is None: diff --git a/python-client-sdk/testsprimary/helpers.py b/python-client-sdk/testsprimary/helpers.py index aa3fccdbf..deb68313a 100755 --- a/python-client-sdk/testsprimary/helpers.py +++ b/python-client-sdk/testsprimary/helpers.py @@ -17,8 +17,8 @@ def create_simple_object(): float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, int_opt_null=None, num=1.1, num_opt_null=None, @@ -26,6 +26,7 @@ def create_simple_object(): str_opt="testOptional", ) + def create_simple_object_with_type(): return shared.SimpleObjectWithType( any="any", @@ -37,8 +38,8 @@ def create_simple_object_with_type(): float32=1.1, int=1, int32=1, - int32_enum=shared.SimpleObjectInt32Enum.FIFTY_FIVE, - int_enum=shared.SimpleObjectIntEnum.SECOND, + int32_enum=shared.Int32Enum.FIFTY_FIVE, + int_enum=shared.IntEnum.SECOND, int_opt_null=None, num=1.1, num_opt_null=None, @@ -47,6 +48,7 @@ def create_simple_object_with_type(): type="SimpleObjectWithType" ) + def create_simple_object_camel_case(): return shared.SimpleObjectCamelCase( any_val="any", @@ -58,8 +60,8 @@ def create_simple_object_camel_case(): float32_val=1.1, int_val=1, int32_val=1, - int32_enum_val=shared.SimpleObjectCamelCaseInt32EnumVal.FIFTY_FIVE, - int_enum_val=shared.SimpleObjectCamelCaseIntEnumVal.SECOND, + int32_enum_val=shared.Int32EnumVal.FIFTY_FIVE, + int_enum_val=shared.IntEnumVal.SECOND, int_opt_null_val=None, num_val=1.1, num_opt_null_val=None, @@ -80,6 +82,7 @@ def create_deep_object(): str_="test", ) + def create_deep_object_with_type(): return shared.DeepObjectWithType( any=create_simple_object(), @@ -93,6 +96,7 @@ def create_deep_object_with_type(): type="DeepObjectWithType" ) + def compare_simple_object(obj1: shared.SimpleObject, obj2: shared.SimpleObject): assert obj1.any == obj2.any assert obj1.bool == obj2.bool @@ -109,6 +113,7 @@ def compare_simple_object(obj1: shared.SimpleObject, obj2: shared.SimpleObject): assert obj1.str_ == obj2.str_ assert obj1.str_opt == obj2.str_opt + def compare_simple_object_with_type(obj1: shared.SimpleObjectWithType, obj2: shared.SimpleObjectWithType): assert obj1.any == obj2.any assert obj1.bool == obj2.bool @@ -158,6 +163,7 @@ def compare_deep_object(obj1: shared.DeepObject, obj2: shared.DeepObject): compare_simple_object(obj1.obj, obj2.obj) assert obj1.str_ == obj2.str_ + def compare_deep_object_with_type(obj1: shared.DeepObject, obj2: shared.DeepObject): assert len(obj1.arr) == len(obj2.arr) for i in range(len(obj1.arr)): diff --git a/python-client-sdk/testsprimary/test_auth.py b/python-client-sdk/testsprimary/test_auth.py index 220ebabc4..b54257495 100755 --- a/python-client-sdk/testsprimary/test_auth.py +++ b/python-client-sdk/testsprimary/test_auth.py @@ -1,12 +1,12 @@ """Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" -from sdk import SDK -from .helpers import * -from .common_helpers import * - import sdk.models.shared as shared +from sdk import SDK from sdk.models.operations import * +from .common_helpers import * +from .helpers import * + def test_basic_auth(): record_test('auth-basic-auth') @@ -15,7 +15,7 @@ def test_basic_auth(): assert s is not None res = s.auth_new.basic_auth_new(request=shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( username='testUser', password='testPass', ) @@ -36,7 +36,7 @@ def test_api_key_auth_global(): assert s is not None res = s.auth_new.api_key_auth_global_new(request=shared.AuthServiceRequestBody( - header_auth=[shared.AuthServiceRequestBodyHeaderAuth( + header_auth=[shared.HeaderAuth( header_name='x-api-key', expected_value='test_api_key', )] @@ -98,7 +98,7 @@ def test_oauth2_auth(): assert s is not None res = s.auth_new.oauth2_auth_new(request=shared.AuthServiceRequestBody( - header_auth=[shared.AuthServiceRequestBodyHeaderAuth( + header_auth=[shared.HeaderAuth( header_name='Authorization', expected_value='Bearer testToken', )] @@ -116,7 +116,7 @@ def test_open_id_connect_auth(): assert s is not None res = s.auth_new.open_id_connect_auth_new(request=shared.AuthServiceRequestBody( - header_auth=[shared.AuthServiceRequestBodyHeaderAuth( + header_auth=[shared.HeaderAuth( header_name='Authorization', expected_value='Bearer testToken', )] @@ -135,11 +135,11 @@ def test_multiple_simple_scheme_auth(): res = s.auth_new.multiple_simple_scheme_auth(request=shared.AuthServiceRequestBody( header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='x-api-key', expected_value='test_api_key', ), - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='Authorization', expected_value='Bearer testToken', ) @@ -160,12 +160,12 @@ def test_multiple_mixed_scheme_auth(): res = s.auth_new.multiple_mixed_scheme_auth(request=shared.AuthServiceRequestBody( header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='x-api-key', expected_value='test_api_key', ), ], - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( username='testUser', password='testPass', ) @@ -188,7 +188,7 @@ def test_multiple_simple_options_auth_first_option(): res = s.auth_new.multiple_simple_options_auth(request=shared.AuthServiceRequestBody( header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='x-api-key', expected_value='test_api_key', ), @@ -208,7 +208,7 @@ def test_multiple_simple_options_auth_second_option(): res = s.auth_new.multiple_simple_options_auth(request=shared.AuthServiceRequestBody( header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='Authorization', expected_value='Bearer testToken', ), @@ -228,7 +228,7 @@ def test_multiple_mixed_options_auth_first_option(): res = s.auth_new.multiple_mixed_options_auth(request=shared.AuthServiceRequestBody( header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='x-api-key', expected_value='test_api_key', ), @@ -247,7 +247,7 @@ def test_multiple_mixed_options_auth_second_option(): assert s is not None res = s.auth_new.multiple_mixed_options_auth(request=shared.AuthServiceRequestBody( - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( username='testUser', password='testPass', ), @@ -269,11 +269,11 @@ def test_multiple_options_with_simple_schemes_auth_first_option(): res = s.auth_new.multiple_options_with_simple_schemes_auth(request=shared.AuthServiceRequestBody( header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='x-api-key', expected_value='test_api_key', ), - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='Authorization', expected_value='Bearer testToken', ) @@ -296,11 +296,11 @@ def test_multiple_options_with_simple_schemes_auth_second_option(): res = s.auth_new.multiple_options_with_simple_schemes_auth(request=shared.AuthServiceRequestBody( header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='x-api-key', expected_value='test_api_key', ), - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='Authorization', expected_value='Bearer testToken', ) @@ -323,11 +323,11 @@ def test_multiple_options_with_mixed_schemes_auth_first_option(): res = s.auth_new.multiple_options_with_mixed_schemes_auth(request=shared.AuthServiceRequestBody( header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='x-api-key', expected_value='test_api_key', ), - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='Authorization', expected_value='Bearer testToken', ) @@ -350,12 +350,12 @@ def test_multiple_options_with_mixed_schemes_auth_second_option(): res = s.auth_new.multiple_options_with_mixed_schemes_auth(request=shared.AuthServiceRequestBody( header_auth=[ - shared.AuthServiceRequestBodyHeaderAuth( + shared.HeaderAuth( header_name='x-api-key', expected_value='test_api_key', ), ], - basic_auth=shared.AuthServiceRequestBodyBasicAuth( + basic_auth=shared.BasicAuth( username='testUser', password='testPass', ), @@ -369,4 +369,4 @@ def test_multiple_options_with_mixed_schemes_auth_second_option(): ), )) assert res is not None - assert res.status_code == 200 \ No newline at end of file + assert res.status_code == 200 diff --git a/python-client-sdk/testsprimary/test_errors.py b/python-client-sdk/testsprimary/test_errors.py index 188613ff7..5269e83ea 100755 --- a/python-client-sdk/testsprimary/test_errors.py +++ b/python-client-sdk/testsprimary/test_errors.py @@ -67,7 +67,7 @@ def test_status_get_x_speakeasy_errors(): assert exc_info_500.value.code == "500" - with pytest.raises(errors.StatusGetXSpeakeasyErrors501ApplicationJSON, match='{"code": "501", "message": "an error occurred", "type": "internal"}') as exc_info_501: + with pytest.raises(errors.StatusGetXSpeakeasyErrorsResponseBody, match='{"code": "501", "message": "an error occurred", "type": "internal"}') as exc_info_501: s.errors.status_get_x_speakeasy_errors(status_code=501) assert exc_info_501.value.code == "501" diff --git a/python-client-sdk/testsprimary/test_parameters.py b/python-client-sdk/testsprimary/test_parameters.py index 7a828a2ac..6606d1f60 100755 --- a/python-client-sdk/testsprimary/test_parameters.py +++ b/python-client-sdk/testsprimary/test_parameters.py @@ -1,5 +1,7 @@ """Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" +"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" + from sdk import SDK from sdk.models.operations import * from sdk.utils import * @@ -190,13 +192,13 @@ def test_form_query_params_camel_object(): s = SDK() assert s is not None - obj_param_exploded = FormQueryParamsCamelObjectObjParamExploded( - search_term='foo', - item_count='10' + obj_param_exploded = ObjParamExploded( + search_term='foo', + item_count='10' ) - obj_param = FormQueryParamsCamelObjectObjParam( - encoded_term='bar', - encoded_count='11' + obj_param = ObjParam( + encoded_term='bar', + encoded_count='11' ) res = s.parameters.form_query_params_camel_object( @@ -211,6 +213,7 @@ def test_form_query_params_camel_object(): assert res.res.args.search_term == 'foo' assert res.res.args.item_count == '10' + def test_form_query_params_ref_param_object(): record_test('parameters-form-query-params-ref-param-object') @@ -313,7 +316,7 @@ def test_deep_object_query_params_object(): res = s.parameters.deep_object_query_params_object( obj_param=obj, - obj_arr_param=DeepObjectQueryParamsObjectObjArrParam( + obj_arr_param=ObjArrParam( arr=['test', 'test2'] ), ) diff --git a/python-client-sdk/testsprimary/test_request_bodies.py b/python-client-sdk/testsprimary/test_request_bodies.py index 2d00cdefe..f14b74c28 100755 --- a/python-client-sdk/testsprimary/test_request_bodies.py +++ b/python-client-sdk/testsprimary/test_request_bodies.py @@ -1,7 +1,5 @@ """Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" -"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" - from decimal import Decimal from sdk import SDK @@ -43,8 +41,8 @@ def test_request_body_post_application_json_array(): assert res is not None assert res.status_code == 200 - assert res.simple_objects is not None - compare_simple_object(res.simple_objects[0], obj) + assert res.res is not None + compare_simple_object(res.res[0], obj) def test_request_body_post_application_json_array_of_array(): @@ -60,9 +58,9 @@ def test_request_body_post_application_json_array_of_array(): assert res is not None assert res.status_code == 200 - assert res.arrs is not None - compare_simple_object(res.arrs[0][0], obj) - compare_simple_object(res.arrs[1][0], obj) + assert res.res is not None + compare_simple_object(res.res[0][0], obj) + compare_simple_object(res.res[1][0], obj) def test_request_body_post_application_json_map(): @@ -156,11 +154,11 @@ def test_request_body_post_application_json_array_of_map(): assert res is not None assert res.status_code == 200 - assert res.maps is not None - compare_simple_object(res.maps[0]['mapElem1'], obj) - compare_simple_object(res.maps[0]['mapElem2'], obj) - compare_simple_object(res.maps[1]['mapElem1'], obj) - compare_simple_object(res.maps[1]['mapElem2'], obj) + assert res.res is not None + compare_simple_object(res.res[0]['mapElem1'], obj) + compare_simple_object(res.res[0]['mapElem2'], obj) + compare_simple_object(res.res[1]['mapElem1'], obj) + compare_simple_object(res.res[1]['mapElem2'], obj) def test_request_body_post_application_json_map_of_primitive(): @@ -192,8 +190,8 @@ def test_request_body_post_application_json_array_of_primitive(): assert res is not None assert res.status_code == 200 - assert res.strings is not None - assert res.strings == ['hello', 'world'] + assert res.res is not None + assert res.res == ['hello', 'world'] def test_request_body_post_application_json_map_of_map_of_primitive(): @@ -236,8 +234,8 @@ def test_request_body_post_application_json_array_of_array_of_primitive(): assert res is not None assert res.status_code == 200 - assert res.arrs is not None - assert res.arrs == [ + assert res.res is not None + assert res.res == [ ['foo', 'bar'], ['buzz', 'bazz'], ] @@ -345,7 +343,7 @@ def test_request_body_post_multiple_content_types_inline_filtered(): s = SDK() assert s is not None - res = s.request_bodies.request_body_post_multiple_content_types_inline_filtered(request=RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON( + res = s.request_bodies.request_body_post_multiple_content_types_inline_filtered(request=RequestBodyPostMultipleContentTypesInlineFilteredRequestBody( bool=True, num=1.1, str_='test' @@ -367,7 +365,7 @@ def test_request_body_post_multiple_content_types_split_json(): s = SDK() assert s is not None - res = s.request_bodies.request_body_post_multiple_content_types_split_json(request=RequestBodyPostMultipleContentTypesSplitApplicationJSON( + res = s.request_bodies.request_body_post_multiple_content_types_split_json(request=RequestBodyPostMultipleContentTypesSplitJSONRequestBody( bool=True, num=1.1, str_='test' @@ -389,7 +387,7 @@ def test_request_body_post_multiple_content_types_split_multipart(): s = SDK() assert s is not None - res = s.request_bodies.request_body_post_multiple_content_types_split_multipart(request=RequestBodyPostMultipleContentTypesSplitMultipartFormData( + res = s.request_bodies.request_body_post_multiple_content_types_split_multipart(request=RequestBodyPostMultipleContentTypesSplitMultipartRequestBody( bool2=True, num2=1.1, str2='test' @@ -411,7 +409,7 @@ def test_request_body_post_multiple_content_types_split_form(): s = SDK() assert s is not None - res = s.request_bodies.request_body_post_multiple_content_types_split_form(request=RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded( + res = s.request_bodies.request_body_post_multiple_content_types_split_form(request=RequestBodyPostMultipleContentTypesSplitFormRequestBody( bool3=True, num3=1.1, str3='test' @@ -435,7 +433,7 @@ def test_request_body_post_multiple_content_types_split_json_with_param(): assert s is not None res = s.request_bodies.request_body_post_multiple_content_types_split_param_json( - request_body=RequestBodyPostMultipleContentTypesSplitParamApplicationJSON( + request_body=RequestBodyPostMultipleContentTypesSplitParamJSONRequestBody( bool=True, num=1.1, str_='test body' @@ -462,7 +460,7 @@ def test_request_body_post_multiple_content_types_split_multipart_with_param(): assert s is not None res = s.request_bodies.request_body_post_multiple_content_types_split_param_multipart( - request_body=RequestBodyPostMultipleContentTypesSplitParamMultipartFormData( + request_body=RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody( bool2=True, num2=1.1, str2='test body' @@ -489,7 +487,7 @@ def test_request_body_post_multiple_content_types_split_form_with_param(): assert s is not None res = s.request_bodies.request_body_post_multiple_content_types_split_param_form( - request_body=RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded( + request_body=RequestBodyPostMultipleContentTypesSplitParamFormRequestBody( bool3=True, num3=1.1, str3='test body' @@ -569,9 +567,9 @@ def test_request_body_put_multipart_file(): data = f.read() res = s.request_bodies.request_body_put_multipart_file(request=RequestBodyPutMultipartFileRequestBody( - file=RequestBodyPutMultipartFileRequestBodyFile( + file=File( content=data, - file='testUpload.json' + file_name='testUpload.json' ) )) @@ -593,9 +591,9 @@ def test_request_body_put_multipart_different_file_name(): data = f.read() res = s.request_bodies.request_body_put_multipart_different_file_name(request=RequestBodyPutMultipartDifferentFileNameRequestBody( - different_file_name=RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName( + different_file_name=DifferentFileName( content=data, - different_file_name='testUpload.json' + file_name='testUpload.json' ) )) @@ -824,7 +822,7 @@ def test_request_body_read_and_write(): assert s is not None res = s.request_bodies.request_body_read_and_write( - shared.ReadWriteObjectInput(1, 2, 4)) + shared.ReadWriteObject(1, 2, 4)) assert res is not None assert res.status_code == 200 @@ -860,8 +858,8 @@ def test_request_body_post_complex_number_types(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_complex_number_types_200_application_json_object.json == req.complex_number_types - assert res.request_body_post_complex_number_types_200_application_json_object.url == 'http://localhost:35123/anything/requestBodies/post/9007199254740991/9223372036854775807/3.141592653589793/3.141592653589793238462643383279/complex-number-types?queryBigInt=9007199254740991&queryBigIntStr=9223372036854775807&queryDecimal=3.141592653589793&queryDecimalStr=3.141592653589793238462643383279' + assert res.object.json == req.complex_number_types + assert res.object.url == 'http://localhost:35123/anything/requestBodies/post/9007199254740991/9223372036854775807/3.141592653589793/3.141592653589793238462643383279/complex-number-types?queryBigInt=9007199254740991&queryBigIntStr=9223372036854775807&queryDecimal=3.141592653589793&queryDecimalStr=3.141592653589793238462643383279' def test_request_body_post_defaults_and_consts(): @@ -880,44 +878,44 @@ def test_request_body_post_defaults_and_consts(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.normal_field == 'normal' + assert res.object.json.normal_field == 'normal' - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_big_int == 9007199254740991 - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_big_int_str == 9223372036854775807 - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_bool == True - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_date == date( + assert res.object.json.const_big_int == 9007199254740991 + assert res.object.json.const_big_int_str == 9223372036854775807 + assert res.object.json.const_bool == True + assert res.object.json.const_date == date( 2020, 1, 1) - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_date_time == datetime( + assert res.object.json.const_date_time == datetime( 2020, 1, 1, 0, 0, 0, 0, tzutc()) - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_decimal == Decimal( + assert res.object.json.const_decimal == Decimal( '3.141592653589793') - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_decimal_str == Decimal( + assert res.object.json.const_decimal_str == Decimal( '3.141592653589793238462643383279') - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_enum_int == shared.DefaultsAndConstsConstEnumInt.TWO - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_enum_str == shared.DefaultsAndConstsConstEnumStr.TWO - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_int == 123 - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_num == 123.456 - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_str == 'const' - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.const_str_null is None - - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_big_int == 9007199254740991 - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_big_int_str == 9223372036854775807 - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_bool == True - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_date == date( + assert res.object.json.const_enum_int == shared.ConstEnumInt.TWO + assert res.object.json.const_enum_str == shared.ConstEnumStr.TWO + assert res.object.json.const_int == 123 + assert res.object.json.const_num == 123.456 + assert res.object.json.const_str == 'const' + assert res.object.json.const_str_null is None + + assert res.object.json.default_big_int == 9007199254740991 + assert res.object.json.default_big_int_str == 9223372036854775807 + assert res.object.json.default_bool == True + assert res.object.json.default_date == date( 2020, 1, 1) - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_date_time == datetime( + assert res.object.json.default_date_time == datetime( 2020, 1, 1, 0, 0, 0, 0, tzutc()) - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_decimal == Decimal( + assert res.object.json.default_decimal == Decimal( '3.141592653589793') - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_decimal_str == Decimal( + assert res.object.json.default_decimal_str == Decimal( '3.141592653589793238462643383279') - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_enum_int == shared.DefaultsAndConstsDefaultEnumInt.TWO - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_enum_str == shared.DefaultsAndConstsDefaultEnumStr.TWO - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_int == 123 - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_num == 123.456 - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_str == 'not default' - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_str_nullable is None - assert res.request_body_post_defaults_and_consts_200_application_json_object.json.default_str_optional == 'default' + assert res.object.json.default_enum_int == shared.DefaultEnumInt.TWO + assert res.object.json.default_enum_str == shared.DefaultEnumStr.TWO + assert res.object.json.default_int == 123 + assert res.object.json.default_num == 123.456 + assert res.object.json.default_str == 'not default' + assert res.object.json.default_str_nullable is None + assert res.object.json.default_str_optional == 'default' def test_request_body_post_json_data_types_string(): @@ -930,7 +928,7 @@ def test_request_body_post_json_data_types_string(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_string_200_application_json_object.json == 'test' + assert res.object.json == 'test' def test_request_body_post_json_data_types_integer(): @@ -943,7 +941,7 @@ def test_request_body_post_json_data_types_integer(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_integer_200_application_json_object.json == 1 + assert res.object.json == 1 def test_request_body_post_json_data_types_int32(): @@ -956,7 +954,7 @@ def test_request_body_post_json_data_types_int32(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_int32_200_application_json_object.json == 1 + assert res.object.json == 1 def test_request_body_post_json_data_types_big_int(): @@ -970,8 +968,8 @@ def test_request_body_post_json_data_types_big_int(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_big_int_200_application_json_object.json == 1 - assert res.request_body_post_json_data_types_big_int_200_application_json_object.data == '1' + assert res.object.json == 1 + assert res.object.data == '1' def test_request_body_post_json_data_types_big_int_str(): @@ -985,8 +983,8 @@ def test_request_body_post_json_data_types_big_int_str(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_big_int_str_200_application_json_object.json == 1 - assert res.request_body_post_json_data_types_big_int_str_200_application_json_object.data == '"1"' + assert res.object.json == 1 + assert res.object.data == '"1"' def test_request_body_post_json_data_types_number(): @@ -1000,7 +998,7 @@ def test_request_body_post_json_data_types_number(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_number_200_application_json_object.json == 1.1 + assert res.object.json == 1.1 def test_request_body_post_json_data_types_float32(): @@ -1014,7 +1012,7 @@ def test_request_body_post_json_data_types_float32(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_float32_200_application_json_object.json == 1.1 + assert res.object.json == 1.1 def test_request_body_post_json_data_types_decimal(): @@ -1028,7 +1026,7 @@ def test_request_body_post_json_data_types_decimal(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_decimal_200_application_json_object.json == Decimal( + assert res.object.json == Decimal( '1.1') @@ -1043,9 +1041,9 @@ def test_request_body_post_json_data_types_decimal_str(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_decimal_str_200_application_json_object.json == Decimal( + assert res.object.json == Decimal( '1.1') - assert res.request_body_post_json_data_types_decimal_str_200_application_json_object.data == '"1.1"' + assert res.object.data == '"1.1"' def test_request_body_post_json_data_types_boolean(): @@ -1058,7 +1056,7 @@ def test_request_body_post_json_data_types_boolean(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_boolean_200_application_json_object.json == True + assert res.object.json == True def test_request_body_post_json_data_types_date(): @@ -1072,7 +1070,7 @@ def test_request_body_post_json_data_types_date(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_date_200_application_json_object.json == date( + assert res.object.json == date( 2020, 1, 1) @@ -1087,7 +1085,7 @@ def test_request_body_post_json_data_types_date_time(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_date_time_200_application_json_object.json == datetime( + assert res.object.json == datetime( 2020, 1, 1, 0, 0, 0, 0, tzutc()) @@ -1103,8 +1101,8 @@ def test_request_body_post_json_data_types_map_date_time(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_map_date_time_200_application_json_object.json == req - assert res.request_body_post_json_data_types_map_date_time_200_application_json_object.data == '{"test": "2020-01-01T00:00:00.000001Z"}' + assert res.object.json == req + assert res.object.data == '{"test": "2020-01-01T00:00:00.000001Z"}' def test_request_body_post_json_data_types_map_big_int_str(): @@ -1120,8 +1118,8 @@ def test_request_body_post_json_data_types_map_big_int_str(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_map_big_int_str_200_application_json_object.json == req - assert res.request_body_post_json_data_types_map_big_int_str_200_application_json_object.data == '{"test": "1"}' + assert res.object.json == req + assert res.object.data == '{"test": "1"}' def test_request_body_post_json_data_types_map_decimal(): @@ -1137,8 +1135,8 @@ def test_request_body_post_json_data_types_map_decimal(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_map_decimal_200_application_json_object.json == req - assert res.request_body_post_json_data_types_map_decimal_200_application_json_object.data == '{"test": 1.1}' + assert res.object.json == req + assert res.object.data == '{"test": 1.1}' def test_request_body_post_json_data_types_array_date(): @@ -1153,8 +1151,8 @@ def test_request_body_post_json_data_types_array_date(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_array_date_200_application_json_object.json == req - assert res.request_body_post_json_data_types_array_date_200_application_json_object.data == '["2020-01-01"]' + assert res.object.json == req + assert res.object.data == '["2020-01-01"]' def test_request_body_post_json_data_types_array_big_int(): @@ -1170,8 +1168,8 @@ def test_request_body_post_json_data_types_array_big_int(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_array_big_int_200_application_json_object.json == req - assert res.request_body_post_json_data_types_array_big_int_200_application_json_object.data == '[1]' + assert res.object.json == req + assert res.object.data == '[1]' def test_request_body_post_json_data_types_array_decimal_str(): @@ -1187,8 +1185,8 @@ def test_request_body_post_json_data_types_array_decimal_str(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_json_data_types_array_decimal_str_200_application_json_object.json == req - assert res.request_body_post_json_data_types_array_decimal_str_200_application_json_object.data == '["3.141592653589793438462643383279"]' + assert res.object.json == req + assert res.object.data == '["3.141592653589793438462643383279"]' def test_request_body_post_nullable_required_string_body(): @@ -1202,7 +1200,7 @@ def test_request_body_post_nullable_required_string_body(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_nullable_required_string_body_200_application_json_object.data == 'null' + assert res.object.data == 'null' def test_request_body_post_nullable_not_required_string_body(): @@ -1216,7 +1214,7 @@ def test_request_body_post_nullable_not_required_string_body(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_nullable_not_required_string_body_200_application_json_object.data == 'null' + assert res.object.data == 'null' def test_request_body_post_not_nullable_not_required_string_body(): @@ -1230,4 +1228,4 @@ def test_request_body_post_not_nullable_not_required_string_body(): assert res is not None assert res.status_code == 200 - assert res.request_body_post_not_nullable_not_required_string_body_200_application_json_object.data == '' + assert res.object.data == '' diff --git a/python-client-sdk/testsprimary/test_response_bodies.py b/python-client-sdk/testsprimary/test_response_bodies.py index 181f1f1e5..37dcc5c35 100755 --- a/python-client-sdk/testsprimary/test_response_bodies.py +++ b/python-client-sdk/testsprimary/test_response_bodies.py @@ -104,7 +104,7 @@ def test_response_body_override_accept_header(): assert res is not None assert res.status_code == 200 assert "text/plain" in res.content_type - assert res.response_body_optional_get_200_text_plain_string.decode( + assert res.res.decode( "utf-8") == "Success" @@ -134,7 +134,7 @@ def test_response_body_additional_properties(): res = s.response_bodies.response_body_additional_properties_post(req) assert res is not None assert res.status_code == 200 - assert res.response_body_additional_properties_post_200_application_json_object.json == req + assert res.object.json == req dic = { 'normal_field': "string", @@ -145,11 +145,12 @@ def test_response_body_additional_properties(): } } req = shared.ObjWithStringAdditionalProperties.from_dict(dic) - assert req.additional_properties == {'extra1': "value1", 'extra2': 2, 'extra3': None} + assert req.additional_properties == { + 'extra1': "value1", 'extra2': 2, 'extra3': None} res = s.response_bodies.response_body_additional_properties_post(req) assert res is not None assert res.status_code == 200 - assert res.response_body_additional_properties_post_200_application_json_object.json == req + assert res.object.json == req def test_response_body_additional_properties_date(): @@ -165,7 +166,7 @@ def test_response_body_additional_properties_date(): req = shared.ObjWithDateAdditionalProperties.from_dict(dic) assert req.additional_properties == {} res = s.response_bodies.response_body_additional_properties_date_post(req) - assert res.response_body_additional_properties_date_post_200_application_json_object.json == req + assert res.object.json == req today = date.today() dic = { @@ -175,12 +176,12 @@ def test_response_body_additional_properties_date(): } } req = shared.ObjWithDateAdditionalProperties.from_dict(dic) - assert req.additional_properties == {'today': today} + assert req.additional_properties == {'today': today} assert type(req.additional_properties['today']) == date res = s.response_bodies.response_body_additional_properties_date_post(req) assert res is not None assert res.status_code == 200 - assert res.response_body_additional_properties_date_post_200_application_json_object.json == req + assert res.object.json == req def test_response_body_additional_properties_complex_numbers(): @@ -198,10 +199,11 @@ def test_response_body_additional_properties_complex_numbers(): req = shared.ObjWithComplexNumbersAdditionalProperties.from_dict(dic) assert req.additional_properties['bigint'] == 123456789012345678901234567890 assert type(req.additional_properties['bigint']) == int - res = s.response_bodies.response_body_additional_properties_complex_numbers_post(req) + res = s.response_bodies.response_body_additional_properties_complex_numbers_post( + req) assert res is not None assert res.status_code == 200 - assert res.response_body_additional_properties_complex_numbers_post_200_application_json_object.json == req + assert res.object.json == req def test_response_body_additional_properties_object(): @@ -216,16 +218,16 @@ def test_response_body_additional_properties_object(): additional_properties=[1, 2, 3], additional_properties_t={ 'obj1': obj - } + } ) - res = s.response_bodies.response_body_additional_properties_object_post(req) + res = s.response_bodies.response_body_additional_properties_object_post( + req) assert res is not None assert res.status_code == 200 - json = res.response_body_additional_properties_object_post_200_application_json_object.json + json = res.object.json assert json == req assert type(json.datetime_) == datetime obj1 = json.additional_properties_t['obj1'] assert type(obj1) == shared.SimpleObject compare_simple_object(obj1, obj) - diff --git a/python-client-sdk/testsprimary/test_retries.py b/python-client-sdk/testsprimary/test_retries.py index 4598a3c8f..645003500 100755 --- a/python-client-sdk/testsprimary/test_retries.py +++ b/python-client-sdk/testsprimary/test_retries.py @@ -47,22 +47,26 @@ def test_global_retry_config_disable(): assert exc_info.value.status_code == 503 + def test_global_retry_config_success(): record_test("retries-global-config-success") - s = SDK(retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.0, 100), False)) + s = SDK(retry_config=RetryConfig( + "backoff", BackoffStrategy(1, 50, 1.0, 100), False)) - res = s.retries.retries_get(str(uuid.uuid4()), 2); + res = s.retries.retries_get(str(uuid.uuid4()), 2) assert res is not None assert res.status_code == 200 assert res.retries.retries == 2 + def test_global_retry_config_timeout(): record_test("retries-global-config-timeout") - s = SDK(retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.0, 100), False)) + s = SDK(retry_config=RetryConfig( + "backoff", BackoffStrategy(1, 50, 1.0, 100), False)) with pytest.raises(errors.SDKError, match="API error occurred: Status 503") as exc_info: res = s.retries.retries_get(str(uuid.uuid4()), 30) - assert exc_info.value.status_code == 503 \ No newline at end of file + assert exc_info.value.status_code == 503 diff --git a/python-client-sdk/testsprimary/test_telemetry.py b/python-client-sdk/testsprimary/test_telemetry.py index 241fa2956..ad5499d49 100755 --- a/python-client-sdk/testsprimary/test_telemetry.py +++ b/python-client-sdk/testsprimary/test_telemetry.py @@ -18,7 +18,7 @@ def test_telemetry_user_agent_get(): assert res is not None assert res.status_code == 200 assert res.res is not None - assert res.res.headers['X-Speakeasy-User-Agent'] == 'speakeasy-sdk/python 2.0.4 2.173.0 0.1.0 openapi' + assert res.res.headers['X-Speakeasy-User-Agent'] == 'speakeasy-sdk/python 3.0.0 2.181.1 0.1.0 openapi' def test_telemetry_speakeasy_user_agent_get(): @@ -34,4 +34,4 @@ def test_telemetry_speakeasy_user_agent_get(): assert res.status_code == 200 assert res.res is not None assert res.res.headers['User-Agent'] == user_agent - assert res.res.headers['X-Speakeasy-User-Agent'] == 'speakeasy-sdk/python 2.0.4 2.173.0 0.1.0 openapi' + assert res.res.headers['X-Speakeasy-User-Agent'] == 'speakeasy-sdk/python 3.0.0 2.181.1 0.1.0 openapi' diff --git a/python-client-sdk/testsprimary/test_unions.py b/python-client-sdk/testsprimary/test_unions.py index 4838f69c5..8b1f95370 100755 --- a/python-client-sdk/testsprimary/test_unions.py +++ b/python-client-sdk/testsprimary/test_unions.py @@ -1,8 +1,9 @@ """Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.""" -import pytest from datetime import datetime from decimal import Decimal + +import pytest from sdk import SDK from sdk.utils import utils @@ -136,7 +137,7 @@ def test_typed_object_nullable_one_of_post_obj2(): s = SDK() - obj = shared.TypedObject1(value="two", type=shared.TypedObject1Type.OBJ1) + obj = shared.TypedObject2(value="two", type=shared.TypedObject2Type.OBJ2) res = s.unions.typed_object_nullable_one_of_post(request=obj) assert res is not None @@ -145,7 +146,7 @@ def test_typed_object_nullable_one_of_post_obj2(): assert res.res.json.value == "two" -def test_typed_object_nullable_one_of_post_obj2(): +def test_typed_object_nullable_one_of_post_null(): record_test("unions-typed-object-nullable-one-of-post-null") s = SDK() @@ -399,33 +400,33 @@ def test_date_time_null_union(): assert type(res.res.json) == datetime -# def test_date_time_bigint_union(): -# record_test("unions-datetime-bigint") -# s = SDK() -# assert s is not None +def test_date_time_bigint_union(): + record_test("unions-datetime-bigint") + s = SDK() + assert s is not None -# res = s.unions.union_date_time_big_int(request=datetime.now()) -# assert res is not None -# assert res.status_code == 200 -# assert type(res.res.json) == datetime + res = s.unions.union_date_time_big_int(request=datetime.now()) + assert res is not None + assert res.status_code == 200 + assert type(res.res.json) == datetime -# res = s.unions.union_date_time_big_int(request=9007199254740991) -# assert res is not None -# assert res.status_code == 200 -# assert type(res.res.json) == int + res = s.unions.union_date_time_big_int(request=9007199254740991) + assert res is not None + assert res.status_code == 200 + assert type(res.res.json) == int -# def test_bigint_decimal_union(): -# record_test("unions-bigint-decimal") -# s = SDK() -# assert s is not None +def test_bigint_decimal_union(): + record_test("unions-bigint-decimal") + s = SDK() + assert s is not None -# res = s.unions.union_big_int_decimal(request=3.141592653589793) -# assert res is not None -# assert res.status_code == 200 -# assert type(res.res.json) == Decimal + res = s.unions.union_big_int_decimal(request=3.141592653589793) + assert res is not None + assert res.status_code == 200 + assert type(res.res.json) == Decimal -# res = s.unions.union_big_int_decimal(request=9007199254740991) -# assert res is not None -# assert res.status_code == 200 -# assert type(res.res.json) == int + res = s.unions.union_big_int_decimal(request=9007199254740991) + assert res is not None + assert res.status_code == 200 + assert type(res.res.json) == int diff --git a/ruby-client-sdk/README.md b/ruby-client-sdk/README.md index e0b77d16c..054a97994 100755 --- a/ruby-client-sdk/README.md +++ b/ruby-client-sdk/README.md @@ -23,7 +23,7 @@ s.config_security( res = s.generation.global_name_overridden() -if ! res.get_global_name_override_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -135,8 +135,8 @@ req = Operations::UsageExamplePostRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=165468, num=1.1, num_opt_null=5944.32, @@ -157,13 +157,13 @@ req = Operations::UsageExamplePostRequest.new( decimal_str_parameter="string", decimal_str_parameter_optional="string", double_parameter=8700.78, - enum_parameter=Operations::UsageExamplePostEnumParameter::VALUE2, + enum_parameter=Operations::EnumParameter::VALUE2, falsey_number_parameter=0, float32_parameter=1341.86, float_parameter=5429.24, int64_parameter=101970, int_parameter=938852, - opt_enum_parameter=Operations::UsageExamplePostOptEnumParameter::VALUE3, + opt_enum_parameter=Operations::OptEnumParameter::VALUE3, str_parameter="example 3", ), request_body=Operations::UsageExamplePostRequestBody.new( @@ -256,8 +256,8 @@ req = Operations::UsageExamplePostRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=303425, num=1.1, num_opt_null=2928.25, @@ -269,7 +269,7 @@ req = Operations::UsageExamplePostRequest.new( res = s.generation.usage_example_post(req) -if ! res.usage_example_post_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -284,54 +284,7 @@ end * [put_anything_ignored_generation](docs/sdks/sdk/README.md#put_anything_ignored_generation) * [response_body_json_get](docs/sdks/sdk/README.md#response_body_json_get) -### [auth](docs/sdks/auth/README.md) - -* [api_key_auth](docs/sdks/auth/README.md#api_key_auth) -* [api_key_auth_global](docs/sdks/auth/README.md#api_key_auth_global) -* [basic_auth](docs/sdks/auth/README.md#basic_auth) -* [bearer_auth](docs/sdks/auth/README.md#bearer_auth) -* [global_bearer_auth](docs/sdks/auth/README.md#global_bearer_auth) -* [oauth2_auth](docs/sdks/auth/README.md#oauth2_auth) -* [oauth2_override](docs/sdks/auth/README.md#oauth2_override) -* [open_id_connect_auth](docs/sdks/auth/README.md#open_id_connect_auth) - -### [auth_new](docs/sdks/authnew/README.md) - -* [api_key_auth_global_new](docs/sdks/authnew/README.md#api_key_auth_global_new) -* [auth_global](docs/sdks/authnew/README.md#auth_global) -* [basic_auth_new](docs/sdks/authnew/README.md#basic_auth_new) -* [multiple_mixed_options_auth](docs/sdks/authnew/README.md#multiple_mixed_options_auth) -* [multiple_mixed_scheme_auth](docs/sdks/authnew/README.md#multiple_mixed_scheme_auth) -* [multiple_options_with_mixed_schemes_auth](docs/sdks/authnew/README.md#multiple_options_with_mixed_schemes_auth) -* [multiple_options_with_simple_schemes_auth](docs/sdks/authnew/README.md#multiple_options_with_simple_schemes_auth) -* [multiple_simple_options_auth](docs/sdks/authnew/README.md#multiple_simple_options_auth) -* [multiple_simple_scheme_auth](docs/sdks/authnew/README.md#multiple_simple_scheme_auth) -* [oauth2_auth_new](docs/sdks/authnew/README.md#oauth2_auth_new) -* [open_id_connect_auth_new](docs/sdks/authnew/README.md#open_id_connect_auth_new) - -### [documentation](docs/sdks/documentation/README.md) - -* [get_documentation_per_language](docs/sdks/documentation/README.md#get_documentation_per_language) - Gets documentation for some language, I guess. - -### [errors](docs/sdks/errors/README.md) - -* [connection_error_get](docs/sdks/errors/README.md#connection_error_get) -* [status_get_error](docs/sdks/errors/README.md#status_get_error) -* [status_get_x_speakeasy_errors](docs/sdks/errors/README.md#status_get_x_speakeasy_errors) - -### [first](docs/sdks/first/README.md) - -* [get](docs/sdks/first/README.md#get) - -### [flattening](docs/sdks/flattening/README.md) - -* [component_body_and_param_conflict](docs/sdks/flattening/README.md#component_body_and_param_conflict) -* [component_body_and_param_no_conflict](docs/sdks/flattening/README.md#component_body_and_param_no_conflict) -* [conflicting_params](docs/sdks/flattening/README.md#conflicting_params) -* [inline_body_and_param_conflict](docs/sdks/flattening/README.md#inline_body_and_param_conflict) -* [inline_body_and_param_no_conflict](docs/sdks/flattening/README.md#inline_body_and_param_no_conflict) - -### [generation](docs/sdks/generation/README.md) +### [Generation](docs/sdks/generation/README.md) * [anchor_types_get](docs/sdks/generation/README.md#anchor_types_get) * [array_circular_reference_get](docs/sdks/generation/README.md#array_circular_reference_get) @@ -354,37 +307,44 @@ end * [typed_parameter_generation_get](docs/sdks/generation/README.md#typed_parameter_generation_get) * [usage_example_post](docs/sdks/generation/README.md#usage_example_post) - An operation used for testing usage examples -### [globals](docs/sdks/globals/README.md) +### [Errors](docs/sdks/errors/README.md) -* [global_path_parameter_get](docs/sdks/globals/README.md#global_path_parameter_get) -* [globals_query_parameter_get](docs/sdks/globals/README.md#globals_query_parameter_get) - -### [nest.first](docs/sdks/nestfirst/README.md) - -* [get](docs/sdks/nestfirst/README.md#get) - -### [nested](docs/sdks/nested/README.md) - -* [get](docs/sdks/nested/README.md#get) +* [connection_error_get](docs/sdks/errors/README.md#connection_error_get) +* [status_get_error](docs/sdks/errors/README.md#status_get_error) +* [status_get_x_speakeasy_errors](docs/sdks/errors/README.md#status_get_x_speakeasy_errors) -### [nested.first](docs/sdks/nestedfirst/README.md) +### [Unions](docs/sdks/unions/README.md) -* [get](docs/sdks/nestedfirst/README.md#get) +* [flattened_typed_object_post](docs/sdks/unions/README.md#flattened_typed_object_post) +* [mixed_type_one_of_post](docs/sdks/unions/README.md#mixed_type_one_of_post) +* [nullable_one_of_ref_in_object_post](docs/sdks/unions/README.md#nullable_one_of_ref_in_object_post) +* [nullable_one_of_schema_post](docs/sdks/unions/README.md#nullable_one_of_schema_post) +* [nullable_one_of_type_in_object_post](docs/sdks/unions/README.md#nullable_one_of_type_in_object_post) +* [nullable_typed_object_post](docs/sdks/unions/README.md#nullable_typed_object_post) +* [primitive_type_one_of_post](docs/sdks/unions/README.md#primitive_type_one_of_post) +* [strongly_typed_one_of_post](docs/sdks/unions/README.md#strongly_typed_one_of_post) +* [typed_object_nullable_one_of_post](docs/sdks/unions/README.md#typed_object_nullable_one_of_post) +* [typed_object_one_of_post](docs/sdks/unions/README.md#typed_object_one_of_post) +* [union_big_int_decimal](docs/sdks/unions/README.md#union_big_int_decimal) +* [union_date_null](docs/sdks/unions/README.md#union_date_null) +* [union_date_time_big_int](docs/sdks/unions/README.md#union_date_time_big_int) +* [union_date_time_null](docs/sdks/unions/README.md#union_date_time_null) +* [weakly_typed_one_of_post](docs/sdks/unions/README.md#weakly_typed_one_of_post) -### [nested.second](docs/sdks/nestedsecond/README.md) +### [Flattening](docs/sdks/flattening/README.md) -* [get](docs/sdks/nestedsecond/README.md#get) +* [component_body_and_param_conflict](docs/sdks/flattening/README.md#component_body_and_param_conflict) +* [component_body_and_param_no_conflict](docs/sdks/flattening/README.md#component_body_and_param_no_conflict) +* [conflicting_params](docs/sdks/flattening/README.md#conflicting_params) +* [inline_body_and_param_conflict](docs/sdks/flattening/README.md#inline_body_and_param_conflict) +* [inline_body_and_param_no_conflict](docs/sdks/flattening/README.md#inline_body_and_param_no_conflict) -### [pagination](docs/sdks/pagination/README.md) +### [Globals](docs/sdks/globals/README.md) -* [pagination_cursor_body](docs/sdks/pagination/README.md#pagination_cursor_body) -* [pagination_cursor_params](docs/sdks/pagination/README.md#pagination_cursor_params) -* [pagination_limit_offset_offset_body](docs/sdks/pagination/README.md#pagination_limit_offset_offset_body) -* [pagination_limit_offset_offset_params](docs/sdks/pagination/README.md#pagination_limit_offset_offset_params) -* [pagination_limit_offset_page_body](docs/sdks/pagination/README.md#pagination_limit_offset_page_body) -* [pagination_limit_offset_page_params](docs/sdks/pagination/README.md#pagination_limit_offset_page_params) +* [global_path_parameter_get](docs/sdks/globals/README.md#global_path_parameter_get) +* [globals_query_parameter_get](docs/sdks/globals/README.md#globals_query_parameter_get) -### [parameters](docs/sdks/parameters/README.md) +### [Parameters](docs/sdks/parameters/README.md) * [deep_object_query_params_map](docs/sdks/parameters/README.md#deep_object_query_params_map) * [deep_object_query_params_object](docs/sdks/parameters/README.md#deep_object_query_params_object) @@ -410,7 +370,23 @@ end * [simple_path_parameter_objects](docs/sdks/parameters/README.md#simple_path_parameter_objects) * [simple_path_parameter_primitives](docs/sdks/parameters/README.md#simple_path_parameter_primitives) -### [request_bodies](docs/sdks/requestbodies/README.md) +### [NestFirst](docs/sdks/nestfirst/README.md) + +* [get](docs/sdks/nestfirst/README.md#get) + +### [Nested](docs/sdks/nested/README.md) + +* [get](docs/sdks/nested/README.md#get) + +### [NestedFirst](docs/sdks/nestedfirst/README.md) + +* [get](docs/sdks/nestedfirst/README.md#get) + +### [NestedSecond](docs/sdks/nestedsecond/README.md) + +* [get](docs/sdks/nestedsecond/README.md#get) + +### [RequestBodies](docs/sdks/requestbodies/README.md) * [nullable_object_post](docs/sdks/requestbodies/README.md#nullable_object_post) * [nullable_required_empty_object_post](docs/sdks/requestbodies/README.md#nullable_required_empty_object_post) @@ -494,15 +470,7 @@ end * [request_body_write_only_output](docs/sdks/requestbodies/README.md#request_body_write_only_output) * [request_body_write_only_union](docs/sdks/requestbodies/README.md#request_body_write_only_union) -### [resource](docs/sdks/resource/README.md) - -* [create_file](docs/sdks/resource/README.md#create_file) -* [create_resource](docs/sdks/resource/README.md#create_resource) -* [delete_resource](docs/sdks/resource/README.md#delete_resource) -* [get_resource](docs/sdks/resource/README.md#get_resource) -* [update_resource](docs/sdks/resource/README.md#update_resource) - -### [response_bodies](docs/sdks/responsebodies/README.md) +### [ResponseBodies](docs/sdks/responsebodies/README.md) * [response_body_additional_properties_complex_numbers_post](docs/sdks/responsebodies/README.md#response_body_additional_properties_complex_numbers_post) * [response_body_additional_properties_date_post](docs/sdks/responsebodies/README.md#response_body_additional_properties_date_post) @@ -516,15 +484,7 @@ end * [response_body_xml_get](docs/sdks/responsebodies/README.md#response_body_xml_get) * [response_body_zero_value_complex_type_ptrs_post](docs/sdks/responsebodies/README.md#response_body_zero_value_complex_type_ptrs_post) -### [retries](docs/sdks/retries/README.md) - -* [retries_get](docs/sdks/retries/README.md#retries_get) - -### [second](docs/sdks/second/README.md) - -* [get](docs/sdks/second/README.md#get) - -### [servers](docs/sdks/servers/README.md) +### [Servers](docs/sdks/servers/README.md) * [select_global_server](docs/sdks/servers/README.md#select_global_server) * [select_server_with_id](docs/sdks/servers/README.md#select_server_with_id) - Select a server by ID. @@ -533,28 +493,68 @@ end * [server_with_templates_global](docs/sdks/servers/README.md#server_with_templates_global) * [servers_by_id_with_templates](docs/sdks/servers/README.md#servers_by_id_with_templates) -### [telemetry](docs/sdks/telemetry/README.md) +### [Telemetry](docs/sdks/telemetry/README.md) * [telemetry_speakeasy_user_agent_get](docs/sdks/telemetry/README.md#telemetry_speakeasy_user_agent_get) * [telemetry_user_agent_get](docs/sdks/telemetry/README.md#telemetry_user_agent_get) -### [unions](docs/sdks/unions/README.md) +### [AuthNew](docs/sdks/authnew/README.md) -* [flattened_typed_object_post](docs/sdks/unions/README.md#flattened_typed_object_post) -* [mixed_type_one_of_post](docs/sdks/unions/README.md#mixed_type_one_of_post) -* [nullable_one_of_ref_in_object_post](docs/sdks/unions/README.md#nullable_one_of_ref_in_object_post) -* [nullable_one_of_schema_post](docs/sdks/unions/README.md#nullable_one_of_schema_post) -* [nullable_one_of_type_in_object_post](docs/sdks/unions/README.md#nullable_one_of_type_in_object_post) -* [nullable_typed_object_post](docs/sdks/unions/README.md#nullable_typed_object_post) -* [primitive_type_one_of_post](docs/sdks/unions/README.md#primitive_type_one_of_post) -* [strongly_typed_one_of_post](docs/sdks/unions/README.md#strongly_typed_one_of_post) -* [typed_object_nullable_one_of_post](docs/sdks/unions/README.md#typed_object_nullable_one_of_post) -* [typed_object_one_of_post](docs/sdks/unions/README.md#typed_object_one_of_post) -* [union_big_int_decimal](docs/sdks/unions/README.md#union_big_int_decimal) -* [union_date_null](docs/sdks/unions/README.md#union_date_null) -* [union_date_time_big_int](docs/sdks/unions/README.md#union_date_time_big_int) -* [union_date_time_null](docs/sdks/unions/README.md#union_date_time_null) -* [weakly_typed_one_of_post](docs/sdks/unions/README.md#weakly_typed_one_of_post) +* [api_key_auth_global_new](docs/sdks/authnew/README.md#api_key_auth_global_new) +* [auth_global](docs/sdks/authnew/README.md#auth_global) +* [basic_auth_new](docs/sdks/authnew/README.md#basic_auth_new) +* [multiple_mixed_options_auth](docs/sdks/authnew/README.md#multiple_mixed_options_auth) +* [multiple_mixed_scheme_auth](docs/sdks/authnew/README.md#multiple_mixed_scheme_auth) +* [multiple_options_with_mixed_schemes_auth](docs/sdks/authnew/README.md#multiple_options_with_mixed_schemes_auth) +* [multiple_options_with_simple_schemes_auth](docs/sdks/authnew/README.md#multiple_options_with_simple_schemes_auth) +* [multiple_simple_options_auth](docs/sdks/authnew/README.md#multiple_simple_options_auth) +* [multiple_simple_scheme_auth](docs/sdks/authnew/README.md#multiple_simple_scheme_auth) +* [oauth2_auth_new](docs/sdks/authnew/README.md#oauth2_auth_new) +* [open_id_connect_auth_new](docs/sdks/authnew/README.md#open_id_connect_auth_new) + +### [Auth](docs/sdks/auth/README.md) + +* [api_key_auth](docs/sdks/auth/README.md#api_key_auth) +* [api_key_auth_global](docs/sdks/auth/README.md#api_key_auth_global) +* [basic_auth](docs/sdks/auth/README.md#basic_auth) +* [bearer_auth](docs/sdks/auth/README.md#bearer_auth) +* [global_bearer_auth](docs/sdks/auth/README.md#global_bearer_auth) +* [oauth2_auth](docs/sdks/auth/README.md#oauth2_auth) +* [oauth2_override](docs/sdks/auth/README.md#oauth2_override) +* [open_id_connect_auth](docs/sdks/auth/README.md#open_id_connect_auth) + +### [Documentation](docs/sdks/documentation/README.md) + +* [get_documentation_per_language](docs/sdks/documentation/README.md#get_documentation_per_language) - Gets documentation for some language, I guess. + +### [Resource](docs/sdks/resource/README.md) + +* [create_file](docs/sdks/resource/README.md#create_file) +* [create_resource](docs/sdks/resource/README.md#create_resource) +* [delete_resource](docs/sdks/resource/README.md#delete_resource) +* [get_resource](docs/sdks/resource/README.md#get_resource) +* [update_resource](docs/sdks/resource/README.md#update_resource) + +### [First](docs/sdks/first/README.md) + +* [get](docs/sdks/first/README.md#get) + +### [Second](docs/sdks/second/README.md) + +* [get](docs/sdks/second/README.md#get) + +### [Pagination](docs/sdks/pagination/README.md) + +* [pagination_cursor_body](docs/sdks/pagination/README.md#pagination_cursor_body) +* [pagination_cursor_params](docs/sdks/pagination/README.md#pagination_cursor_params) +* [pagination_limit_offset_offset_body](docs/sdks/pagination/README.md#pagination_limit_offset_offset_body) +* [pagination_limit_offset_offset_params](docs/sdks/pagination/README.md#pagination_limit_offset_offset_params) +* [pagination_limit_offset_page_body](docs/sdks/pagination/README.md#pagination_limit_offset_page_body) +* [pagination_limit_offset_page_params](docs/sdks/pagination/README.md#pagination_limit_offset_page_params) + +### [Retries](docs/sdks/retries/README.md) + +* [retries_get](docs/sdks/retries/README.md#retries_get) diff --git a/ruby-client-sdk/USAGE.md b/ruby-client-sdk/USAGE.md index 59dbddcbc..b6b5a36be 100755 --- a/ruby-client-sdk/USAGE.md +++ b/ruby-client-sdk/USAGE.md @@ -15,7 +15,7 @@ s.config_security( res = s.generation.global_name_overridden() -if ! res.get_global_name_override_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -127,8 +127,8 @@ req = Operations::UsageExamplePostRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=165468, num=1.1, num_opt_null=5944.32, @@ -149,13 +149,13 @@ req = Operations::UsageExamplePostRequest.new( decimal_str_parameter="string", decimal_str_parameter_optional="string", double_parameter=8700.78, - enum_parameter=Operations::UsageExamplePostEnumParameter::VALUE2, + enum_parameter=Operations::EnumParameter::VALUE2, falsey_number_parameter=0, float32_parameter=1341.86, float_parameter=5429.24, int64_parameter=101970, int_parameter=938852, - opt_enum_parameter=Operations::UsageExamplePostOptEnumParameter::VALUE3, + opt_enum_parameter=Operations::OptEnumParameter::VALUE3, str_parameter="example 3", ), request_body=Operations::UsageExamplePostRequestBody.new( @@ -248,8 +248,8 @@ req = Operations::UsageExamplePostRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=303425, num=1.1, num_opt_null=2928.25, @@ -261,7 +261,7 @@ req = Operations::UsageExamplePostRequest.new( res = s.generation.usage_example_post(req) -if ! res.usage_example_post_200_application_json_object.nil? +if ! res.object.nil? # handle response end diff --git a/ruby-client-sdk/docs/models/operations/anchortypesgetresponse.md b/ruby-client-sdk/docs/models/operations/anchortypesgetresponse.md index 8178f8cf7..eec698840 100755 --- a/ruby-client-sdk/docs/models/operations/anchortypesgetresponse.md +++ b/ruby-client-sdk/docs/models/operations/anchortypesgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `type_from_anchor` | [T.nilable(Operations::TypeFromAnchor)](../../models/operations/typefromanchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `type_from_anchor` | [T.nilable(Operations::AnchorTypesGetTypeFromAnchor)](../../models/operations/anchortypesgettypefromanchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md b/ruby-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md new file mode 100755 index 000000000..e9e43c8b8 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md @@ -0,0 +1,10 @@ +# AnchorTypesGetTypeFromAnchor + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [T.nilable(Shared::SimpleObject)](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/args.md b/ruby-client-sdk/docs/models/operations/args.md new file mode 100755 index 000000000..36ebdca21 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/args.md @@ -0,0 +1,8 @@ +# Args + + +## Fields + +| Field | Type | Required | Description | +| -------------------- | -------------------- | -------------------- | -------------------- | +| `global_query_param` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/createfilefile.md b/ruby-client-sdk/docs/models/operations/createfilefile.md new file mode 100755 index 000000000..3b2a0fbf5 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/createfilefile.md @@ -0,0 +1,9 @@ +# CreateFileFile + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *String* | :heavy_check_mark: | N/A | +| `file_name` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/createfilerequestbody.md b/ruby-client-sdk/docs/models/operations/createfilerequestbody.md index 3979ba09b..ec3d4f24b 100755 --- a/ruby-client-sdk/docs/models/operations/createfilerequestbody.md +++ b/ruby-client-sdk/docs/models/operations/createfilerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -| `file` | [T.nilable(Operations::CreateFileRequestBodyFile)](../../models/operations/createfilerequestbodyfile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `file` | [T.nilable(Operations::CreateFileFile)](../../models/operations/createfilefile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/createfilerequestbodyfile.md b/ruby-client-sdk/docs/models/operations/createfilerequestbodyfile.md deleted file mode 100755 index 9f5eaaca9..000000000 --- a/ruby-client-sdk/docs/models/operations/createfilerequestbodyfile.md +++ /dev/null @@ -1,9 +0,0 @@ -# CreateFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content` | *String* | :heavy_check_mark: | N/A | -| `file` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md b/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md new file mode 100755 index 000000000..8546b6bbb --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md @@ -0,0 +1,26 @@ +# DeepObjectQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | +| `obj_arr_param_arr` | T::Array<*String*> | :heavy_check_mark: | N/A | | +| `obj_param_any` | *String* | :heavy_check_mark: | N/A | any | +| `obj_param_bigint_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `obj_param_bigint` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `obj_param_bool_opt` | *String* | :heavy_check_mark: | N/A | true | +| `obj_param_bool` | *String* | :heavy_check_mark: | N/A | true | +| `obj_param_date_time` | *String* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `obj_param_date` | *String* | :heavy_check_mark: | N/A | 2020-01-01 | +| `obj_param_decimal_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `obj_param_decimal` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `obj_param_enum` | *String* | :heavy_check_mark: | N/A | one | +| `obj_param_float32` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `obj_param_int32_enum` | *String* | :heavy_check_mark: | N/A | 55 | +| `obj_param_int32` | *String* | :heavy_check_mark: | N/A | 1 | +| `obj_param_int_enum` | *String* | :heavy_check_mark: | N/A | 2 | +| `obj_param_int` | *String* | :heavy_check_mark: | N/A | 1 | +| `obj_param_num` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `obj_param_str_opt` | *String* | :heavy_check_mark: | N/A | testOptional | +| `obj_param_str` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md b/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md deleted file mode 100755 index 180a7433b..000000000 --- a/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md +++ /dev/null @@ -1,8 +0,0 @@ -# DeepObjectQueryParamsObjectObjArrParam - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | T::Array<*String*> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md b/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md index 1456401ec..4aa02198c 100755 --- a/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md +++ b/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | -| `obj_param` | [Shared::SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `obj_arr_param` | [T.nilable(Operations::DeepObjectQueryParamsObjectObjArrParam)](../../models/operations/deepobjectqueryparamsobjectobjarrparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `obj_param` | [Shared::SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `obj_arr_param` | [T.nilable(Operations::ObjArrParam)](../../models/operations/objarrparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md b/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md index 24a033b5f..374381c83 100755 --- a/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md +++ b/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [Operations::DeepObjectQueryParamsObjectResArgs](../../models/operations/deepobjectqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [Operations::DeepObjectQueryParamsObjectArgs](../../models/operations/deepobjectqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/deepObject/obj?objArrParam[arr]=test&objArrParam[arr]=test2&objParam[any]=any&objParam[bigintStr]=9223372036854775808&objParam[bigint]=8821239038968084&objParam[boolOpt]=true&objParam[bool]=true&objParam[dateTime]=2020-01-01T00%3A00%3A00.000000001Z&objParam[date]=2020-01-01&objParam[decimalStr]=3.14159265358979344719667586&objParam[decimal]=3.141592653589793&objParam[enum]=one&objParam[float32]=1.1&objParam[int32Enum]=55&objParam[int32]=1&objParam[intEnum]=2&objParam[int]=1&objParam[num]=1.1&objParam[strOpt]=testOptional&objParam[str]=test | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md b/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md deleted file mode 100755 index f2178ebc0..000000000 --- a/ruby-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md +++ /dev/null @@ -1,26 +0,0 @@ -# DeepObjectQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | -| `obj_arr_param_arr` | T::Array<*String*> | :heavy_check_mark: | N/A | | -| `obj_param_any` | *String* | :heavy_check_mark: | N/A | any | -| `obj_param_bigint_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `obj_param_bigint` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `obj_param_bool_opt` | *String* | :heavy_check_mark: | N/A | true | -| `obj_param_bool` | *String* | :heavy_check_mark: | N/A | true | -| `obj_param_date_time` | *String* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `obj_param_date` | *String* | :heavy_check_mark: | N/A | 2020-01-01 | -| `obj_param_decimal_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `obj_param_decimal` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `obj_param_enum` | *String* | :heavy_check_mark: | N/A | one | -| `obj_param_float32` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `obj_param_int32_enum` | *String* | :heavy_check_mark: | N/A | 55 | -| `obj_param_int32` | *String* | :heavy_check_mark: | N/A | 1 | -| `obj_param_int_enum` | *String* | :heavy_check_mark: | N/A | 2 | -| `obj_param_int` | *String* | :heavy_check_mark: | N/A | 1 | -| `obj_param_num` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `obj_param_str_opt` | *String* | :heavy_check_mark: | N/A | testOptional | -| `obj_param_str` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md b/ruby-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md deleted file mode 100755 index 1528dfa9c..000000000 --- a/ruby-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# DeprecatedObjectInSchemaGet200ApplicationJSON - -A successful response that contains a deprecatedObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | -| ~~`json`~~ | [T.nilable(Shared::DeprecatedObject)](../../models/shared/deprecatedobject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md b/ruby-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md index 2a9fc3573..067584ed2 100755 --- a/ruby-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md +++ b/ruby-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `deprecated_object_in_schema_get_200_application_json_object` | [T.nilable(Operations::DeprecatedObjectInSchemaGet200ApplicationJSON)](../../models/operations/deprecatedobjectinschemaget200applicationjson.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::DeprecatedObjectInSchemaGetResponseBody)](../../models/operations/deprecatedobjectinschemagetresponsebody.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md b/ruby-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md new file mode 100755 index 000000000..55d07f759 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md @@ -0,0 +1,10 @@ +# DeprecatedObjectInSchemaGetResponseBody + +A successful response that contains a deprecatedObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | +| ~~`json`~~ | [T.nilable(Shared::DeprecatedObject)](../../models/shared/deprecatedobject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/differentfilename.md b/ruby-client-sdk/docs/models/operations/differentfilename.md new file mode 100755 index 000000000..4b746d6a3 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/differentfilename.md @@ -0,0 +1,9 @@ +# DifferentFileName + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *String* | :heavy_check_mark: | N/A | +| `file_name` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/empty.md b/ruby-client-sdk/docs/models/operations/empty.md new file mode 100755 index 000000000..f9f6b3eab --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/empty.md @@ -0,0 +1,7 @@ +# Empty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md b/ruby-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md deleted file mode 100755 index bbddca47a..000000000 --- a/ruby-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md +++ /dev/null @@ -1,9 +0,0 @@ -# EmptyResponseObjectWithCommentGet200ApplicationOctetStream - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md b/ruby-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md new file mode 100755 index 000000000..5098e6819 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md @@ -0,0 +1,9 @@ +# EmptyResponseObjectWithCommentGetResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md b/ruby-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md new file mode 100755 index 000000000..1da3e5d24 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md @@ -0,0 +1,7 @@ +# EmptyRespWithEmptyProperies + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/emptywithemptyproperties.md b/ruby-client-sdk/docs/models/operations/emptywithemptyproperties.md new file mode 100755 index 000000000..535ae89ed --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/emptywithemptyproperties.md @@ -0,0 +1,7 @@ +# EmptyWithEmptyProperties + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/enumnameoverride.md b/ruby-client-sdk/docs/models/operations/enumnameoverride.md new file mode 100755 index 000000000..c678e92bd --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/enumnameoverride.md @@ -0,0 +1,12 @@ +# EnumNameOverride + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `VALUE1` | value1 | +| `VALUE2` | value2 | +| `VALUE3` | value3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/enumparameter.md b/ruby-client-sdk/docs/models/operations/enumparameter.md new file mode 100755 index 000000000..11b789b86 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/enumparameter.md @@ -0,0 +1,12 @@ +# EnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `VALUE1` | value1 | +| `VALUE2` | value2 | +| `VALUE3` | value3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/file.md b/ruby-client-sdk/docs/models/operations/file.md new file mode 100755 index 000000000..03cb1c587 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/file.md @@ -0,0 +1,9 @@ +# File + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *String* | :heavy_check_mark: | N/A | +| `file_name` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/form.md b/ruby-client-sdk/docs/models/operations/form.md new file mode 100755 index 000000000..ff31bfd21 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/form.md @@ -0,0 +1,14 @@ +# Form + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | *String* | :heavy_check_mark: | N/A | +| `bool` | *String* | :heavy_check_mark: | N/A | +| `int` | *String* | :heavy_check_mark: | N/A | +| `map` | *String* | :heavy_check_mark: | N/A | +| `num` | *String* | :heavy_check_mark: | N/A | +| `obj` | *String* | :heavy_check_mark: | N/A | +| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsarrayargs.md b/ruby-client-sdk/docs/models/operations/formqueryparamsarrayargs.md new file mode 100755 index 000000000..2c31e13db --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/formqueryparamsarrayargs.md @@ -0,0 +1,9 @@ +# FormQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | +| `arr_param` | *String* | :heavy_check_mark: | N/A | test,test2 | +| `arr_param_exploded` | T::Array<*String*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsarrayres.md b/ruby-client-sdk/docs/models/operations/formqueryparamsarrayres.md index d8f304a3d..ade5fb335 100755 --- a/ruby-client-sdk/docs/models/operations/formqueryparamsarrayres.md +++ b/ruby-client-sdk/docs/models/operations/formqueryparamsarrayres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | -| `args` | [Operations::FormQueryParamsArrayResArgs](../../models/operations/formqueryparamsarrayresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [Operations::FormQueryParamsArrayArgs](../../models/operations/formqueryparamsarrayargs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/array?arrParam=test%2Ctest2&arrParamExploded=1&arrParamExploded=2 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md b/ruby-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md deleted file mode 100755 index 91f4b74e2..000000000 --- a/ruby-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | -| `arr_param` | *String* | :heavy_check_mark: | N/A | test,test2 | -| `arr_param_exploded` | T::Array<*String*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md b/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md new file mode 100755 index 000000000..c2b83737f --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md @@ -0,0 +1,9 @@ +# FormQueryParamsCamelObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `item_count` | *String* | :heavy_check_mark: | N/A | 10 | +| `search_term` | *String* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md b/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md deleted file mode 100755 index 737bc0aa9..000000000 --- a/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParam - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | -| `encoded_count` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 11 | -| `encoded_term` | *T.nilable(String)* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md b/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md deleted file mode 100755 index 55756c24e..000000000 --- a/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParamExploded - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | -| `item_count` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 10 | -| `search_term` | *T.nilable(String)* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md b/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md index d0e0643f7..f733d8d30 100755 --- a/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md +++ b/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -| `obj_param_exploded` | [Operations::FormQueryParamsCamelObjectObjParamExploded](../../models/operations/formqueryparamscamelobjectobjparamexploded.md) | :heavy_check_mark: | N/A | -| `obj_param` | [T.nilable(Operations::FormQueryParamsCamelObjectObjParam)](../../models/operations/formqueryparamscamelobjectobjparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | +| `obj_param_exploded` | [Operations::ObjParamExploded](../../models/operations/objparamexploded.md) | :heavy_check_mark: | N/A | +| `obj_param` | [T.nilable(Operations::ObjParam)](../../models/operations/objparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md b/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md index 5b0b77736..656d0e081 100755 --- a/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md +++ b/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [Operations::FormQueryParamsCamelObjectResArgs](../../models/operations/formqueryparamscamelobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [Operations::FormQueryParamsCamelObjectArgs](../../models/operations/formqueryparamscamelobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/camelObj?item_count=10&obj_param=encoded_count%2C11%2Cencoded_term%2Cbar&search_term=foo | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md b/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md deleted file mode 100755 index d66d53e3c..000000000 --- a/ruby-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `item_count` | *String* | :heavy_check_mark: | N/A | 10 | -| `search_term` | *String* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsobjectargs.md b/ruby-client-sdk/docs/models/operations/formqueryparamsobjectargs.md new file mode 100755 index 000000000..36bcb1cfd --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/formqueryparamsobjectargs.md @@ -0,0 +1,28 @@ +# FormQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `any` | *String* | :heavy_check_mark: | N/A | any | +| `bigint` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `bigint_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `bool` | *String* | :heavy_check_mark: | N/A | true | +| `bool_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | true | +| `date` | *String* | :heavy_check_mark: | N/A | 2020-01-01 | +| `date_time` | *String* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `decimal` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `decimal_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `enum` | *String* | :heavy_check_mark: | N/A | one | +| `float32` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `int` | *String* | :heavy_check_mark: | N/A | 1 | +| `int32` | *String* | :heavy_check_mark: | N/A | 1 | +| `int32_enum` | *String* | :heavy_check_mark: | N/A | 55 | +| `int_enum` | *String* | :heavy_check_mark: | N/A | 2 | +| `int_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | | +| `num` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `num_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | | +| `obj_param` | *String* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `str_` | *String* | :heavy_check_mark: | N/A | test | +| `str_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsobjectres.md b/ruby-client-sdk/docs/models/operations/formqueryparamsobjectres.md index 669ac8c0e..30880c5e7 100755 --- a/ruby-client-sdk/docs/models/operations/formqueryparamsobjectres.md +++ b/ruby-client-sdk/docs/models/operations/formqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [Operations::FormQueryParamsObjectResArgs](../../models/operations/formqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [Operations::FormQueryParamsObjectArgs](../../models/operations/formqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/obj?any=any&bigint=8821239038968084&bigintStr=9223372036854775808&bool=true&boolOpt=true&date=2020-01-01&dateTime=2020-01-01T00%3A00%3A00.000000001Z&decimal=3.141592653589793&decimalStr=3.14159265358979344719667586&enum=one&float32=1.1&int=1&int32=1&int32Enum=55&intEnum=2&num=1.1&objParam=any%2Cany%2Cbigint%2C8821239038968084%2CbigintStr%2C9223372036854775808%2Cbool%2Ctrue%2CboolOpt%2Ctrue%2Cdate%2C2020-01-01%2CdateTime%2C2020-01-01T00%3A00%3A00.000000001Z%2Cdecimal%2C3.141592653589793%2CdecimalStr%2C3.14159265358979344719667586%2Cenum%2Cone%2Cfloat32%2C1.1%2Cint%2C1%2Cint32%2C1%2Cint32Enum%2C55%2CintEnum%2C2%2Cnum%2C1.1%2Cstr%2Ctest%2CstrOpt%2CtestOptional&str=test&strOpt=testOptional | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md b/ruby-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md deleted file mode 100755 index 6ac6fb6e6..000000000 --- a/ruby-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md +++ /dev/null @@ -1,28 +0,0 @@ -# FormQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `any` | *String* | :heavy_check_mark: | N/A | any | -| `bigint` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `bigint_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `bool` | *String* | :heavy_check_mark: | N/A | true | -| `bool_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | true | -| `date` | *String* | :heavy_check_mark: | N/A | 2020-01-01 | -| `date_time` | *String* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `decimal` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `decimal_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `enum` | *String* | :heavy_check_mark: | N/A | one | -| `float32` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `int` | *String* | :heavy_check_mark: | N/A | 1 | -| `int32` | *String* | :heavy_check_mark: | N/A | 1 | -| `int32_enum` | *String* | :heavy_check_mark: | N/A | 55 | -| `int_enum` | *String* | :heavy_check_mark: | N/A | 2 | -| `int_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | | -| `num` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `num_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | | -| `obj_param` | *String* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `str_` | *String* | :heavy_check_mark: | N/A | test | -| `str_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md b/ruby-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md new file mode 100755 index 000000000..204fa444b --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md @@ -0,0 +1,11 @@ +# FormQueryParamsPrimitiveArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `bool_param` | *String* | :heavy_check_mark: | N/A | true | +| `int_param` | *String* | :heavy_check_mark: | N/A | 1 | +| `num_param` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `str_param` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md b/ruby-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md index 4b2af39bf..88b93922e 100755 --- a/ruby-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md +++ b/ruby-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -| `args` | [Operations::FormQueryParamsPrimitiveResArgs](../../models/operations/formqueryparamsprimitiveresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [Operations::FormQueryParamsPrimitiveArgs](../../models/operations/formqueryparamsprimitiveargs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/primitive?boolParam=true&intParam=1&numParam=1.1&strParam=test | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md b/ruby-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md deleted file mode 100755 index c8e376c14..000000000 --- a/ruby-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md +++ /dev/null @@ -1,11 +0,0 @@ -# FormQueryParamsPrimitiveResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `bool_param` | *String* | :heavy_check_mark: | N/A | true | -| `int_param` | *String* | :heavy_check_mark: | N/A | 1 | -| `num_param` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `str_param` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md b/ruby-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md new file mode 100755 index 000000000..b7fb07078 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md @@ -0,0 +1,12 @@ +# FormQueryParamsRefParamObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | +| `bool` | *String* | :heavy_check_mark: | N/A | true | +| `int` | *String* | :heavy_check_mark: | N/A | 1 | +| `num` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `ref_obj_param` | *String* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | +| `str_` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md b/ruby-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md index c4cf9fdab..9455360b0 100755 --- a/ruby-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md +++ b/ruby-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [Operations::FormQueryParamsRefParamObjectResArgs](../../models/operations/formqueryparamsrefparamobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [Operations::FormQueryParamsRefParamObjectArgs](../../models/operations/formqueryparamsrefparamobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/refParamObject?bool=true&int=1&num=1.1&refObjParam=bool%2Ctrue%2Cint%2C1%2Cnum%2C1.1%2Cstr%2Ctest&str=test | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md b/ruby-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md deleted file mode 100755 index c16161a81..000000000 --- a/ruby-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md +++ /dev/null @@ -1,12 +0,0 @@ -# FormQueryParamsRefParamObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -| `bool` | *String* | :heavy_check_mark: | N/A | true | -| `int` | *String* | :heavy_check_mark: | N/A | 1 | -| `num` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `ref_obj_param` | *String* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | -| `str_` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md b/ruby-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md deleted file mode 100755 index 3a76158d3..000000000 --- a/ruby-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# GetGlobalNameOverride200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [T.nilable(Shared::SimpleObject)](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md b/ruby-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md index 5ffcb2f11..ebb8108d1 100755 --- a/ruby-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md +++ b/ruby-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `get_global_name_override_200_application_json_object` | [T.nilable(Operations::GetGlobalNameOverride200ApplicationJSON)](../../models/operations/getglobalnameoverride200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::GetGlobalNameOverrideResponseBody)](../../models/operations/getglobalnameoverrideresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md b/ruby-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md new file mode 100755 index 000000000..12f390a5c --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md @@ -0,0 +1,10 @@ +# GetGlobalNameOverrideResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [T.nilable(Shared::SimpleObject)](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/globalsqueryparametergetres.md b/ruby-client-sdk/docs/models/operations/globalsqueryparametergetres.md index 0bc89f09a..afc9bdf9a 100755 --- a/ruby-client-sdk/docs/models/operations/globalsqueryparametergetres.md +++ b/ruby-client-sdk/docs/models/operations/globalsqueryparametergetres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `args` | [Operations::GlobalsQueryParameterGetResArgs](../../models/operations/globalsqueryparametergetresargs.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | +| `args` | [Operations::Args](../../models/operations/args.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md b/ruby-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md deleted file mode 100755 index e1d0d175d..000000000 --- a/ruby-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# GlobalsQueryParameterGetResArgs - - -## Fields - -| Field | Type | Required | Description | -| -------------------- | -------------------- | -------------------- | -------------------- | -| `global_query_param` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headerparamsarrayres.md b/ruby-client-sdk/docs/models/operations/headerparamsarrayres.md index c71951c2d..31363f59c 100755 --- a/ruby-client-sdk/docs/models/operations/headerparamsarrayres.md +++ b/ruby-client-sdk/docs/models/operations/headerparamsarrayres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `headers` | [Operations::HeaderParamsArrayResHeaders](../../models/operations/headerparamsarrayresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | +| `headers` | [Operations::Headers](../../models/operations/headers.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headerparamsarrayresheaders.md b/ruby-client-sdk/docs/models/operations/headerparamsarrayresheaders.md deleted file mode 100755 index 46f217ce3..000000000 --- a/ruby-client-sdk/docs/models/operations/headerparamsarrayresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# HeaderParamsArrayResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `x_header_array` | *String* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headerparamsmapheaders.md b/ruby-client-sdk/docs/models/operations/headerparamsmapheaders.md new file mode 100755 index 000000000..37b7dcd79 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/headerparamsmapheaders.md @@ -0,0 +1,9 @@ +# HeaderParamsMapHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | +| `x_header_map` | *String* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | +| `x_header_map_explode` | *String* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headerparamsmapres.md b/ruby-client-sdk/docs/models/operations/headerparamsmapres.md index 0d38ade9a..5dbc8f3e9 100755 --- a/ruby-client-sdk/docs/models/operations/headerparamsmapres.md +++ b/ruby-client-sdk/docs/models/operations/headerparamsmapres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `headers` | [Operations::HeaderParamsMapResHeaders](../../models/operations/headerparamsmapresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `headers` | [Operations::HeaderParamsMapHeaders](../../models/operations/headerparamsmapheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headerparamsmapresheaders.md b/ruby-client-sdk/docs/models/operations/headerparamsmapresheaders.md deleted file mode 100755 index 66bf3f6eb..000000000 --- a/ruby-client-sdk/docs/models/operations/headerparamsmapresheaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsMapResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | -| `x_header_map` | *String* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | -| `x_header_map_explode` | *String* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headerparamsobjectheaders.md b/ruby-client-sdk/docs/models/operations/headerparamsobjectheaders.md new file mode 100755 index 000000000..7192c1d6d --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/headerparamsobjectheaders.md @@ -0,0 +1,9 @@ +# HeaderParamsObjectHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `x_header_obj` | *String* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `x_header_obj_explode` | *String* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headerparamsobjectres.md b/ruby-client-sdk/docs/models/operations/headerparamsobjectres.md index 05f9c4ae1..ff695919d 100755 --- a/ruby-client-sdk/docs/models/operations/headerparamsobjectres.md +++ b/ruby-client-sdk/docs/models/operations/headerparamsobjectres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `headers` | [Operations::HeaderParamsObjectResHeaders](../../models/operations/headerparamsobjectresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `headers` | [Operations::HeaderParamsObjectHeaders](../../models/operations/headerparamsobjectheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headerparamsobjectresheaders.md b/ruby-client-sdk/docs/models/operations/headerparamsobjectresheaders.md deleted file mode 100755 index 4f984784f..000000000 --- a/ruby-client-sdk/docs/models/operations/headerparamsobjectresheaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsObjectResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `x_header_obj` | *String* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `x_header_obj_explode` | *String* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md b/ruby-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md new file mode 100755 index 000000000..be7d807ca --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md @@ -0,0 +1,11 @@ +# HeaderParamsPrimitiveHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `x_header_boolean` | *String* | :heavy_check_mark: | N/A | true | +| `x_header_integer` | *String* | :heavy_check_mark: | N/A | 1 | +| `x_header_number` | *String* | :heavy_check_mark: | N/A | 1.1 | +| `x_header_string` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headerparamsprimitiveres.md b/ruby-client-sdk/docs/models/operations/headerparamsprimitiveres.md index 00f2d7adf..58bad55f4 100755 --- a/ruby-client-sdk/docs/models/operations/headerparamsprimitiveres.md +++ b/ruby-client-sdk/docs/models/operations/headerparamsprimitiveres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `headers` | [Operations::HeaderParamsPrimitiveResHeaders](../../models/operations/headerparamsprimitiveresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| `headers` | [Operations::HeaderParamsPrimitiveHeaders](../../models/operations/headerparamsprimitiveheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md b/ruby-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md deleted file mode 100755 index ff95d4ef6..000000000 --- a/ruby-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md +++ /dev/null @@ -1,11 +0,0 @@ -# HeaderParamsPrimitiveResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `x_header_boolean` | *String* | :heavy_check_mark: | N/A | true | -| `x_header_integer` | *String* | :heavy_check_mark: | N/A | 1 | -| `x_header_number` | *String* | :heavy_check_mark: | N/A | 1.1 | -| `x_header_string` | *String* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/headers.md b/ruby-client-sdk/docs/models/operations/headers.md new file mode 100755 index 000000000..4cabdc138 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/headers.md @@ -0,0 +1,8 @@ +# Headers + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `x_header_array` | *String* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md b/ruby-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md deleted file mode 100755 index 75095ed5b..000000000 --- a/ruby-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# IgnoredGenerationGet200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [T.nilable(Shared::SimpleObject)](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md b/ruby-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md index 062a0c077..ff49d983a 100755 --- a/ruby-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md +++ b/ruby-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ignored_generation_get_200_application_json_object` | [T.nilable(Operations::IgnoredGenerationGet200ApplicationJSON)](../../models/operations/ignoredgenerationget200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::IgnoredGenerationGetResponseBody)](../../models/operations/ignoredgenerationgetresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md b/ruby-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md new file mode 100755 index 000000000..811cf5f31 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md @@ -0,0 +1,10 @@ +# IgnoredGenerationGetResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [T.nilable(Shared::SimpleObject)](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/ignorespostapplicationjson.md b/ruby-client-sdk/docs/models/operations/ignorespostapplicationjson.md deleted file mode 100755 index 9d07eaa77..000000000 --- a/ruby-client-sdk/docs/models/operations/ignorespostapplicationjson.md +++ /dev/null @@ -1,9 +0,0 @@ -# IgnoresPostApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------- | ------------------- | ------------------- | ------------------- | -| `callback_url` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `test_prop` | *T.nilable(String)* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/ignorespostrequest.md b/ruby-client-sdk/docs/models/operations/ignorespostrequest.md index 6d231a76f..fddf6f547 100755 --- a/ruby-client-sdk/docs/models/operations/ignorespostrequest.md +++ b/ruby-client-sdk/docs/models/operations/ignorespostrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `request_body` | [Operations::IgnoresPostApplicationJSON](../../models/operations/ignorespostapplicationjson.md) | :heavy_check_mark: | N/A | -| `test_param` | *T.nilable(String)* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `request_body` | [Operations::IgnoresPostRequestBody](../../models/operations/ignorespostrequestbody.md) | :heavy_check_mark: | N/A | +| `test_param` | *T.nilable(String)* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/ignorespostrequestbody.md b/ruby-client-sdk/docs/models/operations/ignorespostrequestbody.md new file mode 100755 index 000000000..845a300df --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/ignorespostrequestbody.md @@ -0,0 +1,9 @@ +# IgnoresPostRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------- | ------------------- | ------------------- | ------------------- | +| `callback_url` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `test_prop` | *T.nilable(String)* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md b/ruby-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md index 726892a7d..b7ba30fe0 100755 --- a/ruby-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md +++ b/ruby-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `args` | T::Hash[Symbol, *String*] | :heavy_check_mark: | N/A | -| `json` | [Operations::InlineBodyAndParamConflictResJson](../../models/operations/inlinebodyandparamconflictresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | +| `args` | T::Hash[Symbol, *String*] | :heavy_check_mark: | N/A | +| `json` | [Operations::Json](../../models/operations/json.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md b/ruby-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md deleted file mode 100755 index ac0281fb4..000000000 --- a/ruby-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamConflictResJson - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md b/ruby-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md new file mode 100755 index 000000000..ef8df90f5 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md @@ -0,0 +1,8 @@ +# InlineBodyAndParamNoConflictJson + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `body_str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md b/ruby-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md index dc1f3a149..31d7ec9cd 100755 --- a/ruby-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md +++ b/ruby-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | -| `args` | T::Hash[Symbol, *String*] | :heavy_check_mark: | N/A | -| `json` | [Operations::InlineBodyAndParamNoConflictResJson](../../models/operations/inlinebodyandparamnoconflictresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `args` | T::Hash[Symbol, *String*] | :heavy_check_mark: | N/A | +| `json` | [Operations::InlineBodyAndParamNoConflictJson](../../models/operations/inlinebodyandparamnoconflictjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md b/ruby-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md deleted file mode 100755 index 84479a0c3..000000000 --- a/ruby-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamNoConflictResJson - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `body_str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/json.md b/ruby-client-sdk/docs/models/operations/json.md new file mode 100755 index 000000000..08f5b1fa8 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/json.md @@ -0,0 +1,8 @@ +# Json + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md b/ruby-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md new file mode 100755 index 000000000..5a4ba0ac8 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md @@ -0,0 +1,9 @@ +# JsonQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `deep_obj_param` | *String* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | +| `simple_obj_param` | *String* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md b/ruby-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md index 32b15abe5..819e4aff0 100755 --- a/ruby-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md +++ b/ruby-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [Operations::JsonQueryParamsObjectResArgs](../../models/operations/jsonqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [Operations::JsonQueryParamsObjectArgs](../../models/operations/jsonqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/json/obj?deepObjParam={"any"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"arr"%3A[{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}]%2C"bool"%3Atrue%2C"int"%3A1%2C"map"%3A{"key"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"key2"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}}%2C"num"%3A1.1%2C"obj"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"str"%3A"test"}&simpleObjParam={"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"} | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md b/ruby-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md deleted file mode 100755 index 4dc3e3db4..000000000 --- a/ruby-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# JsonQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `deep_obj_param` | *String* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | -| `simple_obj_param` | *String* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md b/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md new file mode 100755 index 000000000..fd037fd00 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | +| `query_string_param` | *String* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md b/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md new file mode 100755 index 000000000..1a8ae92b1 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `header_param` | *String* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md b/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md index 0e6f19253..39ac79cec 100755 --- a/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md +++ b/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -| `args` | [Operations::MixedParametersCamelCaseResArgs](../../models/operations/mixedparameterscamelcaseresargs.md) | :heavy_check_mark: | N/A | | -| `headers` | [Operations::MixedParametersCamelCaseResHeaders](../../models/operations/mixedparameterscamelcaseresheaders.md) | :heavy_check_mark: | N/A | | -| `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | +| `args` | [Operations::MixedParametersCamelCaseArgs](../../models/operations/mixedparameterscamelcaseargs.md) | :heavy_check_mark: | N/A | | +| `headers` | [Operations::MixedParametersCamelCaseHeaders](../../models/operations/mixedparameterscamelcaseheaders.md) | :heavy_check_mark: | N/A | | +| `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md b/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md deleted file mode 100755 index 7273274cc..000000000 --- a/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | -| `query_string_param` | *String* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md b/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md deleted file mode 100755 index 977393f28..000000000 --- a/ruby-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `header_param` | *String* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md b/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md new file mode 100755 index 000000000..d8aecab92 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | +| `query_string_param` | *String* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md b/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md new file mode 100755 index 000000000..a353890f4 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `headerparam` | *String* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesres.md b/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesres.md index 0e255a285..1166cb8b0 100755 --- a/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesres.md +++ b/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesres.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | -| `args` | [Operations::MixedParametersPrimitivesResArgs](../../models/operations/mixedparametersprimitivesresargs.md) | :heavy_check_mark: | N/A | | -| `headers` | [Operations::MixedParametersPrimitivesResHeaders](../../models/operations/mixedparametersprimitivesresheaders.md) | :heavy_check_mark: | N/A | | -| `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `args` | [Operations::MixedParametersPrimitivesArgs](../../models/operations/mixedparametersprimitivesargs.md) | :heavy_check_mark: | N/A | | +| `headers` | [Operations::MixedParametersPrimitivesHeaders](../../models/operations/mixedparametersprimitivesheaders.md) | :heavy_check_mark: | N/A | | +| `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md b/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md deleted file mode 100755 index 9e0dde525..000000000 --- a/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | -| `query_string_param` | *String* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md b/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md deleted file mode 100755 index a2d023b7a..000000000 --- a/ruby-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `headerparam` | *String* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md b/ruby-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md deleted file mode 100755 index 9892181d6..000000000 --- a/ruby-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md +++ /dev/null @@ -1,12 +0,0 @@ -# NameOverrideGetEnumNameOverride - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `VALUE1` | value1 | -| `VALUE2` | value2 | -| `VALUE3` | value3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md b/ruby-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md new file mode 100755 index 000000000..36a01092f --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md @@ -0,0 +1,10 @@ +# NameOverrideGetOverriddenResponse + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [T.nilable(Shared::SimpleObject)](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nameoverridegetrequest.md b/ruby-client-sdk/docs/models/operations/nameoverridegetrequest.md index dc60dd473..b402158ae 100755 --- a/ruby-client-sdk/docs/models/operations/nameoverridegetrequest.md +++ b/ruby-client-sdk/docs/models/operations/nameoverridegetrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `test_enum_query_param` | [Operations::NameOverrideGetEnumNameOverride](../../models/operations/nameoverridegetenumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | -| `test_query_param` | *String* | :heavy_check_mark: | N/A | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | +| `test_enum_query_param` | [Operations::EnumNameOverride](../../models/operations/enumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | +| `test_query_param` | *String* | :heavy_check_mark: | N/A | example | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nameoverridegetresponse.md b/ruby-client-sdk/docs/models/operations/nameoverridegetresponse.md index dbe1dd246..b6fe7e196 100755 --- a/ruby-client-sdk/docs/models/operations/nameoverridegetresponse.md +++ b/ruby-client-sdk/docs/models/operations/nameoverridegetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `overridden_response` | [T.nilable(Operations::OverriddenResponse)](../../models/operations/overriddenresponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `overridden_response` | [T.nilable(Operations::NameOverrideGetOverriddenResponse)](../../models/operations/nameoverridegetoverriddenresponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullableoptionalobj.md b/ruby-client-sdk/docs/models/operations/nullableoptionalobj.md new file mode 100755 index 000000000..a4e5f26bb --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/nullableoptionalobj.md @@ -0,0 +1,7 @@ +# NullableOptionalObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md b/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md index 84af9108a..c0645f0e9 100755 --- a/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md +++ b/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `nullable_optional_obj` | [T.nilable(Operations::NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj)](../../models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md) | :heavy_minus_sign: | N/A | -| `nullable_required_obj` | [Operations::NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj](../../models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md) | :heavy_check_mark: | N/A | -| `required_obj` | [Operations::NullableRequiredEmptyObjectPostRequestBodyRequiredObj](../../models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `nullable_optional_obj` | [T.nilable(Operations::NullableOptionalObj)](../../models/operations/nullableoptionalobj.md) | :heavy_minus_sign: | N/A | +| `nullable_required_obj` | [Operations::NullableRequiredObj](../../models/operations/nullablerequiredobj.md) | :heavy_check_mark: | N/A | +| `required_obj` | [Operations::RequiredObj](../../models/operations/requiredobj.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md b/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md deleted file mode 100755 index 4bd625eb3..000000000 --- a/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md b/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md deleted file mode 100755 index f5a542eea..000000000 --- a/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md b/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md deleted file mode 100755 index 20a807232..000000000 --- a/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md b/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md index e427cef6e..7937b3618 100755 --- a/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md +++ b/ruby-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md @@ -8,4 +8,4 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullable_required_empty_object_post_200_application_json_string` | *T.nilable(String)* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *T.nilable(String)* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullablerequiredenum.md b/ruby-client-sdk/docs/models/operations/nullablerequiredenum.md new file mode 100755 index 000000000..99c697b3d --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/nullablerequiredenum.md @@ -0,0 +1,9 @@ +# NullableRequiredEnum + + +## Values + +| Name | Value | +| -------- | -------- | +| `FIRST` | first | +| `SECOND` | second | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullablerequiredobj.md b/ruby-client-sdk/docs/models/operations/nullablerequiredobj.md new file mode 100755 index 000000000..b1e3ab8c2 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/nullablerequiredobj.md @@ -0,0 +1,7 @@ +# NullableRequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md b/ruby-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md index 5c9528253..aefa5b45a 100755 --- a/ruby-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md +++ b/ruby-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `nullable_optional_int` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | -| `nullable_required_array` | T::Array<*Float*> | :heavy_check_mark: | N/A | -| `nullable_required_enum` | [Operations::NullableRequiredPropertyPostRequestBodyNullableRequiredEnum](../../models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md) | :heavy_check_mark: | N/A | -| `nullable_required_int` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | +| `nullable_optional_int` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | +| `nullable_required_array` | T::Array<*Float*> | :heavy_check_mark: | N/A | +| `nullable_required_enum` | [Operations::NullableRequiredEnum](../../models/operations/nullablerequiredenum.md) | :heavy_check_mark: | N/A | +| `nullable_required_int` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md b/ruby-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md deleted file mode 100755 index 67d85fb92..000000000 --- a/ruby-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md +++ /dev/null @@ -1,9 +0,0 @@ -# NullableRequiredPropertyPostRequestBodyNullableRequiredEnum - - -## Values - -| Name | Value | -| -------- | -------- | -| `FIRST` | first | -| `SECOND` | second | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md b/ruby-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md index 8f86f4ee7..349aba329 100755 --- a/ruby-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md +++ b/ruby-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md @@ -8,4 +8,4 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullable_required_property_post_200_application_json_string` | *T.nilable(String)* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *T.nilable(String)* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md b/ruby-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md index d0e6f1ce3..f369fdc18 100755 --- a/ruby-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md +++ b/ruby-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md @@ -8,4 +8,4 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullable_required_shared_object_post_200_application_json_string` | *T.nilable(String)* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *T.nilable(String)* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/obj.md b/ruby-client-sdk/docs/models/operations/obj.md new file mode 100755 index 000000000..24a2e1d56 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/obj.md @@ -0,0 +1,10 @@ +# Obj + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *T::Boolean* | :heavy_check_mark: | N/A | +| `num` | *Float* | :heavy_check_mark: | N/A | +| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/objarrparam.md b/ruby-client-sdk/docs/models/operations/objarrparam.md new file mode 100755 index 000000000..0af6d22e0 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/objarrparam.md @@ -0,0 +1,8 @@ +# ObjArrParam + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | T::Array<*String*> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/objparam.md b/ruby-client-sdk/docs/models/operations/objparam.md new file mode 100755 index 000000000..198a25351 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/objparam.md @@ -0,0 +1,9 @@ +# ObjParam + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | +| `encoded_count` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 11 | +| `encoded_term` | *T.nilable(String)* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/objparamexploded.md b/ruby-client-sdk/docs/models/operations/objparamexploded.md new file mode 100755 index 000000000..f64b3882d --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/objparamexploded.md @@ -0,0 +1,9 @@ +# ObjParamExploded + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | +| `item_count` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 10 | +| `search_term` | *T.nilable(String)* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/optenumparameter.md b/ruby-client-sdk/docs/models/operations/optenumparameter.md new file mode 100755 index 000000000..e4a2544eb --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/optenumparameter.md @@ -0,0 +1,12 @@ +# OptEnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `VALUE1` | value1 | +| `VALUE2` | value2 | +| `VALUE3` | value3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/overriddenresponse.md b/ruby-client-sdk/docs/models/operations/overriddenresponse.md deleted file mode 100755 index 797f497ae..000000000 --- a/ruby-client-sdk/docs/models/operations/overriddenresponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# OverriddenResponse - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [T.nilable(Shared::SimpleObject)](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md b/ruby-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md new file mode 100755 index 000000000..c0e2957ed --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md @@ -0,0 +1,9 @@ +# PipeDelimitedQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | +| `arr_param` | *String* | :heavy_check_mark: | N/A | test\|test2 | +| `arr_param_exploded` | T::Array<*String*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md b/ruby-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md index 695b5ef17..9c05f8a21 100755 --- a/ruby-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md +++ b/ruby-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `args` | [Operations::PipeDelimitedQueryParamsArrayResArgs](../../models/operations/pipedelimitedqueryparamsarrayresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [Operations::PipeDelimitedQueryParamsArrayArgs](../../models/operations/pipedelimitedqueryparamsarrayargs.md) | :heavy_check_mark: | N/A | | | `url` | *String* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/pipe/array?arrParam=test\|test2&arrParamExploded=1&arrParamExploded=2&mapParam=key1\|val1\|key2\|val2&objParam=any\|any\|bigint\|8821239038968084\|bigintStr\|9223372036854775808\|bool\|true\|boolOpt\|true\|date\|2020-01-01\|dateTime\|2020-01-01T00%3A00%3A00.000000001Z\|decimal\|3.141592653589793\|decimalStr\|3.14159265358979344719667586\|enum\|one\|float32\|1.1\|int\|1\|int32\|1\|int32Enum\|55\|intEnum\|2\|num\|1.1\|str\|test\|strOpt\|testOptional | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md b/ruby-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md deleted file mode 100755 index 34cec1787..000000000 --- a/ruby-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# PipeDelimitedQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | -| `arr_param` | *String* | :heavy_check_mark: | N/A | test\|test2 | -| `arr_param_exploded` | T::Array<*String*> | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md b/ruby-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md deleted file mode 100755 index 3c14fccba..000000000 --- a/ruby-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# PutAnythingIgnoredGeneration200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------- | ------------------- | ------------------- | ------------------- | -| `json` | *T.nilable(String)* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md b/ruby-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md index b5389af67..1f565dfa3 100755 --- a/ruby-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md +++ b/ruby-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `put_anything_ignored_generation_200_application_json_object` | [T.nilable(Operations::PutAnythingIgnoredGeneration200ApplicationJSON)](../../models/operations/putanythingignoredgeneration200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::PutAnythingIgnoredGenerationResponseBody)](../../models/operations/putanythingignoredgenerationresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md b/ruby-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md new file mode 100755 index 000000000..da934cd55 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md @@ -0,0 +1,10 @@ +# PutAnythingIgnoredGenerationResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------- | ------------------- | ------------------- | ------------------- | +| `json` | *T.nilable(String)* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md index 2a698c6f6..ed79bc15b 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md @@ -8,4 +8,4 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `simple_object_camel_cases` | T::Array<[Shared::SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | T::Array<[Shared::SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md index ccdab4a54..f6be91037 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md @@ -8,4 +8,4 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | T::Array> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | T::Array> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md index 79d72c46d..d3f715250 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md @@ -8,4 +8,4 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | T::Array> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | T::Array> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md index 566371d99..df6092580 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md @@ -8,4 +8,4 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | T::Array> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | T::Array> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md index 350cd4ab0..ad76bbb97 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md @@ -8,4 +8,4 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `maps` | T::Array | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | T::Array | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md index d1b5d4d9f..f050ca0c1 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md @@ -8,4 +8,4 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `maps` | T::Array | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | T::Array | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md index 167210029..e9d129e9a 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md @@ -8,4 +8,4 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `strings` | T::Array<*String*> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | T::Array<*String*> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md index c5d8ee1dd..e74bdaea0 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md @@ -8,4 +8,4 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `simple_objects` | T::Array<[Shared::SimpleObject](../../models/shared/simpleobject.md)> | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | T::Array<[Shared::SimpleObject](../../models/shared/simpleobject.md)> | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md deleted file mode 100755 index 59444837c..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostComplexNumberTypes200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | -| `json` | [Shared::ComplexNumberTypes](../../models/shared/complexnumbertypes.md) | :heavy_check_mark: | N/A | -| `url` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md index 9e703ae52..b1083bacf 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_complex_number_types_200_application_json_object` | [T.nilable(Operations::RequestBodyPostComplexNumberTypes200ApplicationJSON)](../../models/operations/requestbodypostcomplexnumbertypes200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostComplexNumberTypesResponseBody)](../../models/operations/requestbodypostcomplexnumbertypesresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md new file mode 100755 index 000000000..93a31516d --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostComplexNumberTypesResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| `json` | [Shared::ComplexNumberTypes](../../models/shared/complexnumbertypes.md) | :heavy_check_mark: | N/A | +| `url` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md deleted file mode 100755 index 07d95ea5e..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostDefaultsAndConsts200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `json` | [Shared::DefaultsAndConstsOutput](../../models/shared/defaultsandconstsoutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md index 472b4ad26..a69332d19 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_defaults_and_consts_200_application_json_object` | [T.nilable(Operations::RequestBodyPostDefaultsAndConsts200ApplicationJSON)](../../models/operations/requestbodypostdefaultsandconsts200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostDefaultsAndConstsResponseBody)](../../models/operations/requestbodypostdefaultsandconstsresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md new file mode 100755 index 000000000..de2d9847e --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostDefaultsAndConstsResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | +| `json` | [Shared::DefaultsAndConstsOutput](../../models/shared/defaultsandconstsoutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md deleted file mode 100755 index 411d738e1..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `empty` | [T.nilable(Operations::RequestBodyPostEmptyObject200ApplicationJSONEmpty)](../../models/operations/requestbodypostemptyobject200applicationjsonempty.md) | :heavy_minus_sign: | N/A | -| `empty_resp_with_empty_properies` | [T.nilable(Operations::RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies)](../../models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md deleted file mode 100755 index 6248bf538..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md deleted file mode 100755 index 27326d373..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md new file mode 100755 index 000000000..7624b0484 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md @@ -0,0 +1,7 @@ +# RequestBodyPostEmptyObjectEmpty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md index 2a45bfcc3..9da30e538 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `empty` | [T.nilable(Operations::RequestBodyPostEmptyObjectRequestBodyEmpty)](../../models/operations/requestbodypostemptyobjectrequestbodyempty.md) | :heavy_minus_sign: | N/A | -| `empty_with_empty_properties` | [T.nilable(Operations::RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties)](../../models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `empty` | [T.nilable(Operations::Empty)](../../models/operations/empty.md) | :heavy_minus_sign: | N/A | +| `empty_with_empty_properties` | [T.nilable(Operations::EmptyWithEmptyProperties)](../../models/operations/emptywithemptyproperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md deleted file mode 100755 index 60e906506..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md deleted file mode 100755 index 66bb29b41..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md index 3d6671ee9..c993bf9da 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_empty_object_200_application_json_object` | [T.nilable(Operations::RequestBodyPostEmptyObject200ApplicationJSON)](../../models/operations/requestbodypostemptyobject200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostEmptyObjectResponseBody)](../../models/operations/requestbodypostemptyobjectresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md new file mode 100755 index 000000000..83bf30f36 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostEmptyObjectResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `empty` | [T.nilable(Operations::RequestBodyPostEmptyObjectEmpty)](../../models/operations/requestbodypostemptyobjectempty.md) | :heavy_minus_sign: | N/A | +| `empty_resp_with_empty_properies` | [T.nilable(Operations::EmptyRespWithEmptyProperies)](../../models/operations/emptyrespwithemptyproperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostformdeepres.md b/ruby-client-sdk/docs/models/operations/requestbodypostformdeepres.md index 55625c994..8ad2d8197 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostformdeepres.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostformdeepres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `form` | [Operations::RequestBodyPostFormDeepResForm](../../models/operations/requestbodypostformdeepresform.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | +| `form` | [Operations::Form](../../models/operations/form.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostformdeepresform.md b/ruby-client-sdk/docs/models/operations/requestbodypostformdeepresform.md deleted file mode 100755 index 35236b2b1..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostformdeepresform.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPostFormDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | *String* | :heavy_check_mark: | N/A | -| `bool` | *String* | :heavy_check_mark: | N/A | -| `int` | *String* | :heavy_check_mark: | N/A | -| `map` | *String* | :heavy_check_mark: | N/A | -| `num` | *String* | :heavy_check_mark: | N/A | -| `obj` | *String* | :heavy_check_mark: | N/A | -| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleform.md b/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleform.md new file mode 100755 index 000000000..221f76b4c --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleform.md @@ -0,0 +1,21 @@ +# RequestBodyPostFormSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------- | ------------------- | ------------------- | ------------------- | +| `any` | *String* | :heavy_check_mark: | N/A | +| `bool` | *String* | :heavy_check_mark: | N/A | +| `bool_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `date` | *String* | :heavy_check_mark: | N/A | +| `date_time` | *String* | :heavy_check_mark: | N/A | +| `enum` | *String* | :heavy_check_mark: | N/A | +| `float32` | *String* | :heavy_check_mark: | N/A | +| `int` | *String* | :heavy_check_mark: | N/A | +| `int32` | *String* | :heavy_check_mark: | N/A | +| `int_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `num` | *String* | :heavy_check_mark: | N/A | +| `num_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `str_` | *String* | :heavy_check_mark: | N/A | +| `str_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md b/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md new file mode 100755 index 000000000..930343a85 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md @@ -0,0 +1,8 @@ +# RequestBodyPostFormSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content_type` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleres.md b/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleres.md index 49bce8021..f3c432a0d 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleres.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | -| `form` | [Operations::RequestBodyPostFormSimpleResForm](../../models/operations/requestbodypostformsimpleresform.md) | :heavy_check_mark: | N/A | -| `headers` | [Operations::RequestBodyPostFormSimpleResHeaders](../../models/operations/requestbodypostformsimpleresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| `form` | [Operations::RequestBodyPostFormSimpleForm](../../models/operations/requestbodypostformsimpleform.md) | :heavy_check_mark: | N/A | +| `headers` | [Operations::RequestBodyPostFormSimpleHeaders](../../models/operations/requestbodypostformsimpleheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md b/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md deleted file mode 100755 index ff496f19f..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPostFormSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------- | ------------------- | ------------------- | ------------------- | -| `any` | *String* | :heavy_check_mark: | N/A | -| `bool` | *String* | :heavy_check_mark: | N/A | -| `bool_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `date` | *String* | :heavy_check_mark: | N/A | -| `date_time` | *String* | :heavy_check_mark: | N/A | -| `enum` | *String* | :heavy_check_mark: | N/A | -| `float32` | *String* | :heavy_check_mark: | N/A | -| `int` | *String* | :heavy_check_mark: | N/A | -| `int32` | *String* | :heavy_check_mark: | N/A | -| `int_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `num` | *String* | :heavy_check_mark: | N/A | -| `num_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `str_` | *String* | :heavy_check_mark: | N/A | -| `str_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md b/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md deleted file mode 100755 index 78b2ae1f5..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPostFormSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content_type` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md deleted file mode 100755 index d4c82b090..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------- | ------------------- | ------------------- | ------------------- | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | T::Array<*Integer*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md index 9cf906ae3..80567888e 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_array_big_int_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesArrayBigIntResponseBody)](../../models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md new file mode 100755 index 000000000..f8adfc26c --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------- | ------------------- | ------------------- | ------------------- | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | T::Array<*Integer*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md deleted file mode 100755 index 463e296cd..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | T::Array<[DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html)> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md index 5b14a9a07..06c7c018c 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_array_date_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesArrayDateResponseBody)](../../models/operations/requestbodypostjsondatatypesarraydateresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md new file mode 100755 index 000000000..28216fbff --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | T::Array<[DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html)> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md deleted file mode 100755 index 1ef63ae2b..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | T::Array<*String*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md index b4d740988..5901b2790 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_array_decimal_str_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody)](../../models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md new file mode 100755 index 000000000..8157898be --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | T::Array<*String*> | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md deleted file mode 100755 index 73a6187ef..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md index 91892f4a2..f5616f4e7 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_big_int_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesBigInt200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesbigint200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesBigIntResponseBody)](../../models/operations/requestbodypostjsondatatypesbigintresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md new file mode 100755 index 000000000..179af52ca --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md deleted file mode 100755 index 6b9609bdb..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md index 0418c089a..7cda761b0 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_big_int_str_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesBigIntStrResponseBody)](../../models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md new file mode 100755 index 000000000..e1fb2fad7 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md deleted file mode 100755 index c86adf542..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesBoolean200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *T::Boolean* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md index fb21a30cc..358ca9b86 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_boolean_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesBoolean200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesboolean200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesBooleanResponseBody)](../../models/operations/requestbodypostjsondatatypesbooleanresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md new file mode 100755 index 000000000..a8e991326 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesBooleanResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *T::Boolean* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md deleted file mode 100755 index aceab29eb..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md index 9870a41ab..b04439797 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_date_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesDate200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesdate200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesDateResponseBody)](../../models/operations/requestbodypostjsondatatypesdateresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md new file mode 100755 index 000000000..8805b9605 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md deleted file mode 100755 index f625da247..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md index ab3acb738..e24a31ec3 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_date_time_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesDateTime200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesDateTimeResponseBody)](../../models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md new file mode 100755 index 000000000..3e873bc8a --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md deleted file mode 100755 index c327a97a6..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | *Float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md index 596e4333e..e92c4a046 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_decimal_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesDecimal200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesDecimalResponseBody)](../../models/operations/requestbodypostjsondatatypesdecimalresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md new file mode 100755 index 000000000..272b5fca7 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | *Float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md deleted file mode 100755 index 82b51eaed..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md index 4e6491b46..272716feb 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_decimal_str_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesDecimalStrResponseBody)](../../models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md new file mode 100755 index 000000000..9b2293663 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md deleted file mode 100755 index d3cfce044..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesFloat32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *Float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md index c1e2c4ec2..c6fa111cd 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_float32_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesFloat32200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesFloat32ResponseBody)](../../models/operations/requestbodypostjsondatatypesfloat32responsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md new file mode 100755 index 000000000..353248cd6 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesFloat32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *Float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md deleted file mode 100755 index ec06bfa1b..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInt32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md index 0d90a9530..30cb51ebc 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_int32_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesInt32200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesint32200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesInt32ResponseBody)](../../models/operations/requestbodypostjsondatatypesint32responsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md new file mode 100755 index 000000000..ab9c53289 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesInt32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md deleted file mode 100755 index a930c630f..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInteger200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md index 9d7fff9e6..ffd83dae2 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_integer_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesInteger200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesinteger200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesIntegerResponseBody)](../../models/operations/requestbodypostjsondatatypesintegerresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md new file mode 100755 index 000000000..354e79ab6 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesIntegerResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md deleted file mode 100755 index 1d0c95f3d..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------- | ------------------------- | ------------------------- | ------------------------- | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | T::Hash[Symbol, *String*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md index d92227a6e..53f3d85fe 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_map_big_int_str_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesMapBigIntStrResponseBody)](../../models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md new file mode 100755 index 000000000..33bf89ad4 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------- | ------------------------- | ------------------------- | ------------------------- | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | T::Hash[Symbol, *String*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md deleted file mode 100755 index a39ba6d61..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | T::Hash[Symbol, [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html)] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md index 6dc318450..ac27b32a7 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_map_date_time_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesMapDateTimeResponseBody)](../../models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md new file mode 100755 index 000000000..476b1e836 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | T::Hash[Symbol, [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html)] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md deleted file mode 100755 index e05fa7d49..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------ | ------------------------ | ------------------------ | ------------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | -| `json` | T::Hash[Symbol, *Float*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md index b0f72b09e..6835b91be 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_map_decimal_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesMapDecimalResponseBody)](../../models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md new file mode 100755 index 000000000..b7ce07f6f --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------ | ------------------------ | ------------------------ | ------------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | +| `json` | T::Hash[Symbol, *Float*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md deleted file mode 100755 index 6c0505f41..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesNumber200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *Float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md index 1e4bf1e4e..a12ec6f54 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_number_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesNumber200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesnumber200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesNumberResponseBody)](../../models/operations/requestbodypostjsondatatypesnumberresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md new file mode 100755 index 000000000..2e43ebddb --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesNumberResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *Float* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md deleted file mode 100755 index bc71b3891..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesString200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md index 6df29bdf7..0b5287b6b 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_json_data_types_string_200_application_json_object` | [T.nilable(Operations::RequestBodyPostJSONDataTypesString200ApplicationJSON)](../../models/operations/requestbodypostjsondatatypesstring200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostJsonDataTypesStringResponseBody)](../../models/operations/requestbodypostjsondatatypesstringresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md new file mode 100755 index 000000000..85f295dd7 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesStringResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md deleted file mode 100755 index 643e0e09d..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *T::Boolean* | :heavy_check_mark: | N/A | -| `num` | *Float* | :heavy_check_mark: | N/A | -| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md new file mode 100755 index 000000000..1625090dd --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesInlineFilteredRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *T::Boolean* | :heavy_check_mark: | N/A | +| `num` | *Float* | :heavy_check_mark: | N/A | +| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md deleted file mode 100755 index 4da75e07e..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *T::Boolean* | :heavy_check_mark: | N/A | -| `num` | *Float* | :heavy_check_mark: | N/A | -| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md deleted file mode 100755 index baecb1f6a..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool3` | *T::Boolean* | :heavy_check_mark: | N/A | -| `num3` | *Float* | :heavy_check_mark: | N/A | -| `str3` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md new file mode 100755 index 000000000..b70dec626 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool3` | *T::Boolean* | :heavy_check_mark: | N/A | +| `num3` | *Float* | :heavy_check_mark: | N/A | +| `str3` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md new file mode 100755 index 000000000..d05c3ea04 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitJsonRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *T::Boolean* | :heavy_check_mark: | N/A | +| `num` | *Float* | :heavy_check_mark: | N/A | +| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md deleted file mode 100755 index b2d9431ca..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool2` | *T::Boolean* | :heavy_check_mark: | N/A | -| `num2` | *Float* | :heavy_check_mark: | N/A | -| `str2` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md new file mode 100755 index 000000000..e3ecb7500 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool2` | *T::Boolean* | :heavy_check_mark: | N/A | +| `num2` | *Float* | :heavy_check_mark: | N/A | +| `str2` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md deleted file mode 100755 index 99c6cb0fe..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *T::Boolean* | :heavy_check_mark: | N/A | -| `num` | *Float* | :heavy_check_mark: | N/A | -| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md deleted file mode 100755 index c259e219d..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool3` | *T::Boolean* | :heavy_check_mark: | N/A | -| `num3` | *Float* | :heavy_check_mark: | N/A | -| `str3` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md index 03b6468ce..780fdaf9b 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md) | :heavy_check_mark: | N/A | -| `param_str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md) | :heavy_check_mark: | N/A | +| `param_str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md new file mode 100755 index 000000000..21a4bff18 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool3` | *T::Boolean* | :heavy_check_mark: | N/A | +| `num3` | *Float* | :heavy_check_mark: | N/A | +| `str3` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md index f40c55352..921761be8 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md @@ -5,5 +5,5 @@ | Field | Type | Required | Description | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md) | :heavy_check_mark: | N/A | +| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md) | :heavy_check_mark: | N/A | | `param_str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md new file mode 100755 index 000000000..4ce2d446f --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *T::Boolean* | :heavy_check_mark: | N/A | +| `num` | *Float* | :heavy_check_mark: | N/A | +| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md deleted file mode 100755 index 80ae0e762..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool2` | *T::Boolean* | :heavy_check_mark: | N/A | -| `num2` | *Float* | :heavy_check_mark: | N/A | -| `str2` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md index 4d5061217..045973e99 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md) | :heavy_check_mark: | N/A | -| `param_str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md) | :heavy_check_mark: | N/A | +| `param_str` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md new file mode 100755 index 000000000..88db0f04f --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool2` | *T::Boolean* | :heavy_check_mark: | N/A | +| `num2` | *Float* | :heavy_check_mark: | N/A | +| `str2` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md deleted file mode 100755 index e40b1bbae..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md index 1e376d353..3163fc477 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_not_nullable_not_required_string_body_200_application_json_object` | [T.nilable(Operations::RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON)](../../models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostNotNullableNotRequiredStringBodyResponseBody)](../../models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md new file mode 100755 index 000000000..719b5fc50 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNotNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md deleted file mode 100755 index 2680ec7c4..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md index 92b19398f..c37b0759e 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_nullable_not_required_string_body_200_application_json_object` | [T.nilable(Operations::RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON)](../../models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostNullableNotRequiredStringBodyResponseBody)](../../models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md new file mode 100755 index 000000000..8f22bc610 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md deleted file mode 100755 index 93739c710..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md index 70349c5b2..6a5507e1e 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_nullable_required_string_body_200_application_json_object` | [T.nilable(Operations::RequestBodyPostNullableRequiredStringBody200ApplicationJSON)](../../models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostNullableRequiredStringBodyResponseBody)](../../models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md new file mode 100755 index 000000000..63f197336 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md deleted file mode 100755 index e0fc5958d..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullArray200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md index c95a654fe..012afc625 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_null_array_200_application_json_object` | [T.nilable(Operations::RequestBodyPostNullArray200ApplicationJSON)](../../models/operations/requestbodypostnullarray200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostNullArrayResponseBody)](../../models/operations/requestbodypostnullarrayresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md new file mode 100755 index 000000000..0dfdf7a1b --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullArrayResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md b/ruby-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md deleted file mode 100755 index c226be683..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullDictionary200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md b/ruby-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md index 31fa2a27a..9eec05eb3 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md +++ b/ruby-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `request_body_post_null_dictionary_200_application_json_object` | [T.nilable(Operations::RequestBodyPostNullDictionary200ApplicationJSON)](../../models/operations/requestbodypostnulldictionary200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::RequestBodyPostNullDictionaryResponseBody)](../../models/operations/requestbodypostnulldictionaryresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md b/ruby-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md new file mode 100755 index 000000000..37db38e9c --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullDictionaryResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md b/ruby-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md new file mode 100755 index 000000000..69ade53cc --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md @@ -0,0 +1,8 @@ +# RequestBodyPutBytesWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| -------------------- | -------------------- | -------------------- | -------------------- | +| `query_string_param` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md b/ruby-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md index 2712e70ce..fd2672e82 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md +++ b/ruby-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `args` | [Operations::RequestBodyPutBytesWithParamsResArgs](../../models/operations/requestbodyputbyteswithparamsresargs.md) | :heavy_check_mark: | N/A | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `args` | [Operations::RequestBodyPutBytesWithParamsArgs](../../models/operations/requestbodyputbyteswithparamsargs.md) | :heavy_check_mark: | N/A | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md b/ruby-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md deleted file mode 100755 index 56c9a1a8a..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutBytesWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| -------------------- | -------------------- | -------------------- | -------------------- | -| `query_string_param` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md new file mode 100755 index 000000000..ecff1fa5c --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md @@ -0,0 +1,14 @@ +# RequestBodyPutMultipartDeepForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | *String* | :heavy_check_mark: | N/A | +| `bool` | *String* | :heavy_check_mark: | N/A | +| `int` | *String* | :heavy_check_mark: | N/A | +| `map` | *String* | :heavy_check_mark: | N/A | +| `num` | *String* | :heavy_check_mark: | N/A | +| `obj` | *String* | :heavy_check_mark: | N/A | +| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md index ab0c1d207..efbf98454 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md +++ b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -| `form` | [Operations::RequestBodyPutMultipartDeepResForm](../../models/operations/requestbodyputmultipartdeepresform.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | +| `form` | [Operations::RequestBodyPutMultipartDeepForm](../../models/operations/requestbodyputmultipartdeepform.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md deleted file mode 100755 index 585f50853..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPutMultipartDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | *String* | :heavy_check_mark: | N/A | -| `bool` | *String* | :heavy_check_mark: | N/A | -| `int` | *String* | :heavy_check_mark: | N/A | -| `map` | *String* | :heavy_check_mark: | N/A | -| `num` | *String* | :heavy_check_mark: | N/A | -| `obj` | *String* | :heavy_check_mark: | N/A | -| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md index 4584e8663..5eaa6bef3 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md +++ b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `different_file_name` | [T.nilable(Operations::RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName)](../../models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +| `different_file_name` | [T.nilable(Operations::DifferentFileName)](../../models/operations/differentfilename.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md deleted file mode 100755 index 4cfef293b..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName - - -## Fields - -| Field | Type | Required | Description | -| --------------------- | --------------------- | --------------------- | --------------------- | -| `content` | *String* | :heavy_check_mark: | N/A | -| `different_file_name` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md index 5a627bef4..d2823d13d 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md +++ b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | -| `file` | [T.nilable(Operations::RequestBodyPutMultipartFileRequestBodyFile)](../../models/operations/requestbodyputmultipartfilerequestbodyfile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | +| `file` | [T.nilable(Operations::File)](../../models/operations/file.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md deleted file mode 100755 index a885cdf51..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content` | *String* | :heavy_check_mark: | N/A | -| `file` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md new file mode 100755 index 000000000..05f82df2d --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md @@ -0,0 +1,21 @@ +# RequestBodyPutMultipartSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------- | ------------------- | ------------------- | ------------------- | +| `any` | *String* | :heavy_check_mark: | N/A | +| `bool` | *String* | :heavy_check_mark: | N/A | +| `bool_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `date` | *String* | :heavy_check_mark: | N/A | +| `date_time` | *String* | :heavy_check_mark: | N/A | +| `enum` | *String* | :heavy_check_mark: | N/A | +| `float32` | *String* | :heavy_check_mark: | N/A | +| `int` | *String* | :heavy_check_mark: | N/A | +| `int32` | *String* | :heavy_check_mark: | N/A | +| `int_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `num` | *String* | :heavy_check_mark: | N/A | +| `num_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `str_` | *String* | :heavy_check_mark: | N/A | +| `str_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md new file mode 100755 index 000000000..0801d14b4 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md @@ -0,0 +1,8 @@ +# RequestBodyPutMultipartSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content_type` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md index 906a962e2..f7e9c0ea0 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md +++ b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | -| `form` | [Operations::RequestBodyPutMultipartSimpleResForm](../../models/operations/requestbodyputmultipartsimpleresform.md) | :heavy_check_mark: | N/A | -| `headers` | [Operations::RequestBodyPutMultipartSimpleResHeaders](../../models/operations/requestbodyputmultipartsimpleresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| `form` | [Operations::RequestBodyPutMultipartSimpleForm](../../models/operations/requestbodyputmultipartsimpleform.md) | :heavy_check_mark: | N/A | +| `headers` | [Operations::RequestBodyPutMultipartSimpleHeaders](../../models/operations/requestbodyputmultipartsimpleheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md deleted file mode 100755 index 9e8f73977..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPutMultipartSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------- | ------------------- | ------------------- | ------------------- | -| `any` | *String* | :heavy_check_mark: | N/A | -| `bool` | *String* | :heavy_check_mark: | N/A | -| `bool_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `date` | *String* | :heavy_check_mark: | N/A | -| `date_time` | *String* | :heavy_check_mark: | N/A | -| `enum` | *String* | :heavy_check_mark: | N/A | -| `float32` | *String* | :heavy_check_mark: | N/A | -| `int` | *String* | :heavy_check_mark: | N/A | -| `int32` | *String* | :heavy_check_mark: | N/A | -| `int_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `num` | *String* | :heavy_check_mark: | N/A | -| `num_opt_null` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `str_` | *String* | :heavy_check_mark: | N/A | -| `str_opt` | *T.nilable(String)* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md b/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md deleted file mode 100755 index 8afeda75f..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutMultipartSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content_type` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md b/ruby-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md new file mode 100755 index 000000000..bc6704002 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md @@ -0,0 +1,8 @@ +# RequestBodyPutStringWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| -------------------- | -------------------- | -------------------- | -------------------- | +| `query_string_param` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md b/ruby-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md index 2f37ff727..eefa2f17f 100755 --- a/ruby-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md +++ b/ruby-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | -| `args` | [Operations::RequestBodyPutStringWithParamsResArgs](../../models/operations/requestbodyputstringwithparamsresargs.md) | :heavy_check_mark: | N/A | -| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| `args` | [Operations::RequestBodyPutStringWithParamsArgs](../../models/operations/requestbodyputstringwithparamsargs.md) | :heavy_check_mark: | N/A | +| `data` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md b/ruby-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md deleted file mode 100755 index fe3d7dc62..000000000 --- a/ruby-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutStringWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| -------------------- | -------------------- | -------------------- | -------------------- | -| `query_string_param` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/requiredobj.md b/ruby-client-sdk/docs/models/operations/requiredobj.md new file mode 100755 index 000000000..75e7b11a1 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/requiredobj.md @@ -0,0 +1,7 @@ +# RequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md deleted file mode 100755 index 5fae6b628..000000000 --- a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------- | ------------------------- | ------------------------- | ------------------------- | -| `json` | T::Hash[Symbol, *String*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md index 959790018..d8e785fad 100755 --- a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md +++ b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_additional_properties_complex_numbers_post_200_application_json_object` | [T.nilable(Operations::ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON)](../../models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody)](../../models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md new file mode 100755 index 000000000..9f62ac798 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------- | ------------------------- | ------------------------- | ------------------------- | +| `json` | T::Hash[Symbol, *String*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md deleted file mode 100755 index 82b948182..000000000 --- a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `json` | T::Hash[Symbol, [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html)] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md index 55d4b3993..45ae6a4d0 100755 --- a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md +++ b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_additional_properties_date_post_200_application_json_object` | [T.nilable(Operations::ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON)](../../models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::ResponseBodyAdditionalPropertiesDatePostResponseBody)](../../models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md new file mode 100755 index 000000000..8806d662b --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesDatePostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `json` | T::Hash[Symbol, [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html)] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md deleted file mode 100755 index 108372cec..000000000 --- a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -| `json` | T::Hash[Symbol, [Shared::SimpleObject](../../models/shared/simpleobject.md)] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md index 87f95faa2..e4084e6c2 100755 --- a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md +++ b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_additional_properties_object_post_200_application_json_object` | [T.nilable(Operations::ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON)](../../models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::ResponseBodyAdditionalPropertiesObjectPostResponseBody)](../../models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md new file mode 100755 index 000000000..20f917701 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesObjectPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `json` | T::Hash[Symbol, [Shared::SimpleObject](../../models/shared/simpleobject.md)] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md deleted file mode 100755 index 2ed282943..000000000 --- a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------- | ------------------------- | ------------------------- | ------------------------- | -| `json` | T::Hash[Symbol, *String*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md index 07a103cd8..ebaacd51d 100755 --- a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md +++ b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_additional_properties_post_200_application_json_object` | [T.nilable(Operations::ResponseBodyAdditionalPropertiesPost200ApplicationJSON)](../../models/operations/responsebodyadditionalpropertiespost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::ResponseBodyAdditionalPropertiesPostResponseBody)](../../models/operations/responsebodyadditionalpropertiespostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md new file mode 100755 index 000000000..8c1c068d1 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------- | ------------------------- | ------------------------- | ------------------------- | +| `json` | T::Hash[Symbol, *String*] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md b/ruby-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md index 97de9106f..db1c94f5e 100755 --- a/ruby-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md +++ b/ruby-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md @@ -8,5 +8,5 @@ | `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | | `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | | `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_optional_get_200_text_plain_string` | *T.nilable(String)* | :heavy_minus_sign: | OK | +| `res` | *T.nilable(String)* | :heavy_minus_sign: | OK | | `typed_object1` | [T.nilable(Shared::TypedObject1)](../../models/shared/typedobject1.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md b/ruby-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md deleted file mode 100755 index 96cf9d898..000000000 --- a/ruby-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `json` | [Shared::ObjWithZeroValueComplexTypePtrs](../../models/shared/objwithzerovaluecomplextypeptrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md b/ruby-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md index ab1875cdd..73979c52a 100755 --- a/ruby-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md +++ b/ruby-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `response_body_zero_value_complex_type_ptrs_post_200_application_json_object` | [T.nilable(Operations::ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON)](../../models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::ResponseBodyZeroValueComplexTypePtrsPostResponseBody)](../../models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md b/ruby-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md new file mode 100755 index 000000000..43dae2690 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyZeroValueComplexTypePtrsPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | +| `json` | [Shared::ObjWithZeroValueComplexTypePtrs](../../models/shared/objwithzerovaluecomplextypeptrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/statusgetxspeakeasyerrors501applicationjson.md b/ruby-client-sdk/docs/models/operations/statusgetxspeakeasyerrors501applicationjson.md deleted file mode 100755 index b7342bf6c..000000000 --- a/ruby-client-sdk/docs/models/operations/statusgetxspeakeasyerrors501applicationjson.md +++ /dev/null @@ -1,12 +0,0 @@ -# StatusGetXSpeakeasyErrors501ApplicationJSON - -Not Implemented - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | -| `code` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `type` | [T.nilable(Shared::ErrorType)](../../models/shared/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/statusgetxspeakeasyerrorsresponse.md b/ruby-client-sdk/docs/models/operations/statusgetxspeakeasyerrorsresponse.md index 6b3b6ae77..f1c64e10e 100755 --- a/ruby-client-sdk/docs/models/operations/statusgetxspeakeasyerrorsresponse.md +++ b/ruby-client-sdk/docs/models/operations/statusgetxspeakeasyerrorsresponse.md @@ -3,10 +3,10 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `error` | [T.nilable(Shared::Error)](../../models/shared/error.md) | :heavy_minus_sign: | Internal Server Error | -| `status_get_x_speakeasy_errors_501_application_json_object` | [T.nilable(Operations::StatusGetXSpeakeasyErrors501ApplicationJSON)](../../models/operations/statusgetxspeakeasyerrors501applicationjson.md) | :heavy_minus_sign: | Not Implemented | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `error` | [T.nilable(Shared::Error)](../../models/shared/error.md) | :heavy_minus_sign: | Internal Server Error | +| `object` | [T.nilable(Operations::StatusGetXSpeakeasyErrorsResponseBody)](../../models/operations/statusgetxspeakeasyerrorsresponsebody.md) | :heavy_minus_sign: | Not Implemented | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/statusgetxspeakeasyerrorsresponsebody.md b/ruby-client-sdk/docs/models/operations/statusgetxspeakeasyerrorsresponsebody.md new file mode 100755 index 000000000..a532c0ab8 --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/statusgetxspeakeasyerrorsresponsebody.md @@ -0,0 +1,12 @@ +# StatusGetXSpeakeasyErrorsResponseBody + +Not Implemented + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | +| `code` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `type` | [T.nilable(Shared::ErrorType)](../../models/shared/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/typedparametergenerationgetobj.md b/ruby-client-sdk/docs/models/operations/typedparametergenerationgetobj.md deleted file mode 100755 index 8410e069b..000000000 --- a/ruby-client-sdk/docs/models/operations/typedparametergenerationgetobj.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypedParameterGenerationGetObj - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *T::Boolean* | :heavy_check_mark: | N/A | -| `num` | *Float* | :heavy_check_mark: | N/A | -| `str_` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md b/ruby-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md index 565451cf9..8206f6755 100755 --- a/ruby-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md +++ b/ruby-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | -| `bigint` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | -| `date` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_minus_sign: | N/A | -| `decimal` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | -| `obj` | [T.nilable(Operations::TypedParameterGenerationGetObj)](../../models/operations/typedparametergenerationgetobj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `bigint` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | +| `date` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_minus_sign: | N/A | +| `decimal` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | +| `obj` | [T.nilable(Operations::Obj)](../../models/operations/obj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/typefromanchor.md b/ruby-client-sdk/docs/models/operations/typefromanchor.md deleted file mode 100755 index 471b35235..000000000 --- a/ruby-client-sdk/docs/models/operations/typefromanchor.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypeFromAnchor - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [T.nilable(Shared::SimpleObject)](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md b/ruby-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md deleted file mode 100755 index e103fa288..000000000 --- a/ruby-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSON - -A response body that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -| `json` | [Operations::UsageExamplePost200ApplicationJSONJSON](../../models/operations/usageexamplepost200applicationjsonjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md b/ruby-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md deleted file mode 100755 index de795d2e5..000000000 --- a/ruby-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSONJSON - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `faker_formatted_strings` | [T.nilable(Shared::FakerFormattedStrings)](../../models/shared/fakerformattedstrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | -| `faker_strings` | [T.nilable(Shared::FakerStrings)](../../models/shared/fakerstrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | -| `simple_object` | [T.nilable(Shared::SimpleObject)](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/usageexamplepostenumparameter.md b/ruby-client-sdk/docs/models/operations/usageexamplepostenumparameter.md deleted file mode 100755 index ab456314d..000000000 --- a/ruby-client-sdk/docs/models/operations/usageexamplepostenumparameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `VALUE1` | value1 | -| `VALUE2` | value2 | -| `VALUE3` | value3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/usageexamplepostjson.md b/ruby-client-sdk/docs/models/operations/usageexamplepostjson.md new file mode 100755 index 000000000..da1ff0e9f --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/usageexamplepostjson.md @@ -0,0 +1,10 @@ +# UsageExamplePostJson + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `faker_formatted_strings` | [T.nilable(Shared::FakerFormattedStrings)](../../models/shared/fakerformattedstrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | +| `faker_strings` | [T.nilable(Shared::FakerStrings)](../../models/shared/fakerstrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | +| `simple_object` | [T.nilable(Shared::SimpleObject)](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md b/ruby-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md deleted file mode 100755 index 7a18bbc53..000000000 --- a/ruby-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostOptEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `VALUE1` | value1 | -| `VALUE2` | value2 | -| `VALUE3` | value3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/usageexamplepostrequest.md b/ruby-client-sdk/docs/models/operations/usageexamplepostrequest.md index 00e315785..d04a97133 100755 --- a/ruby-client-sdk/docs/models/operations/usageexamplepostrequest.md +++ b/ruby-client-sdk/docs/models/operations/usageexamplepostrequest.md @@ -3,27 +3,27 @@ ## Fields -| Field | Type | Required | Description | Example | -| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [T.nilable(Operations::UsageExamplePostRequestBody)](../../models/operations/usageexamplepostrequestbody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | -| `bigint_parameter` | *Integer* | :heavy_check_mark: | An bigint parameter | | -| `bigint_parameter_optional` | *T.nilable(Integer)* | :heavy_minus_sign: | An bigint parameter | | -| `bigint_str_parameter` | *String* | :heavy_check_mark: | An bigint parameter | | -| `bigint_str_parameter_optional` | *T.nilable(String)* | :heavy_minus_sign: | An bigint parameter | | -| `bool_parameter` | *T::Boolean* | :heavy_check_mark: | A boolean parameter | | -| `date_parameter` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_check_mark: | A date parameter | | -| `date_time_default_parameter` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | A date time parameter with a default value | | -| `date_time_parameter` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | A date time parameter | | -| `decimal_parameter` | *Float* | :heavy_check_mark: | A decimal parameter | | -| `decimal_parameter_optional` | *T.nilable(Float)* | :heavy_minus_sign: | A decimal parameter | | -| `decimal_str_parameter` | *String* | :heavy_check_mark: | A decimal parameter | | -| `decimal_str_parameter_optional` | *T.nilable(String)* | :heavy_minus_sign: | A decimal parameter | | -| `double_parameter` | *Float* | :heavy_check_mark: | A double parameter | | -| `enum_parameter` | [Operations::UsageExamplePostEnumParameter](../../models/operations/usageexamplepostenumparameter.md) | :heavy_check_mark: | An enum parameter | | -| `falsey_number_parameter` | *Float* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | -| `float32_parameter` | *Float* | :heavy_check_mark: | A float32 parameter | | -| `float_parameter` | *Float* | :heavy_check_mark: | A float parameter | | -| `int64_parameter` | *Integer* | :heavy_check_mark: | An int64 parameter | | -| `int_parameter` | *Integer* | :heavy_check_mark: | An integer parameter | | -| `opt_enum_parameter` | [T.nilable(Operations::UsageExamplePostOptEnumParameter)](../../models/operations/usageexamplepostoptenumparameter.md) | :heavy_minus_sign: | An enum parameter | value3 | -| `str_parameter` | *String* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `request_body` | [T.nilable(Operations::UsageExamplePostRequestBody)](../../models/operations/usageexamplepostrequestbody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | +| `bigint_parameter` | *Integer* | :heavy_check_mark: | An bigint parameter | | +| `bigint_parameter_optional` | *T.nilable(Integer)* | :heavy_minus_sign: | An bigint parameter | | +| `bigint_str_parameter` | *String* | :heavy_check_mark: | An bigint parameter | | +| `bigint_str_parameter_optional` | *T.nilable(String)* | :heavy_minus_sign: | An bigint parameter | | +| `bool_parameter` | *T::Boolean* | :heavy_check_mark: | A boolean parameter | | +| `date_parameter` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_check_mark: | A date parameter | | +| `date_time_default_parameter` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | A date time parameter with a default value | | +| `date_time_parameter` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | A date time parameter | | +| `decimal_parameter` | *Float* | :heavy_check_mark: | A decimal parameter | | +| `decimal_parameter_optional` | *T.nilable(Float)* | :heavy_minus_sign: | A decimal parameter | | +| `decimal_str_parameter` | *String* | :heavy_check_mark: | A decimal parameter | | +| `decimal_str_parameter_optional` | *T.nilable(String)* | :heavy_minus_sign: | A decimal parameter | | +| `double_parameter` | *Float* | :heavy_check_mark: | A double parameter | | +| `enum_parameter` | [Operations::EnumParameter](../../models/operations/enumparameter.md) | :heavy_check_mark: | An enum parameter | | +| `falsey_number_parameter` | *Float* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | +| `float32_parameter` | *Float* | :heavy_check_mark: | A float32 parameter | | +| `float_parameter` | *Float* | :heavy_check_mark: | A float parameter | | +| `int64_parameter` | *Integer* | :heavy_check_mark: | An int64 parameter | | +| `int_parameter` | *Integer* | :heavy_check_mark: | An integer parameter | | +| `opt_enum_parameter` | [T.nilable(Operations::OptEnumParameter)](../../models/operations/optenumparameter.md) | :heavy_minus_sign: | An enum parameter | value3 | +| `str_parameter` | *String* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/usageexamplepostresponse.md b/ruby-client-sdk/docs/models/operations/usageexamplepostresponse.md index 967ea7b62..7a15544dd 100755 --- a/ruby-client-sdk/docs/models/operations/usageexamplepostresponse.md +++ b/ruby-client-sdk/docs/models/operations/usageexamplepostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | -| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | -| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `usage_example_post_200_application_json_object` | [T.nilable(Operations::UsageExamplePost200ApplicationJSON)](../../models/operations/usageexamplepost200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation | +| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | +| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [T.nilable(Operations::UsageExamplePostResponseBody)](../../models/operations/usageexamplepostresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/operations/usageexamplepostresponsebody.md b/ruby-client-sdk/docs/models/operations/usageexamplepostresponsebody.md new file mode 100755 index 000000000..ebbafb4db --- /dev/null +++ b/ruby-client-sdk/docs/models/operations/usageexamplepostresponsebody.md @@ -0,0 +1,10 @@ +# UsageExamplePostResponseBody + +A response body that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | +| `json` | [Operations::UsageExamplePostJson](../../models/operations/usageexamplepostjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/authservicerequestbody.md b/ruby-client-sdk/docs/models/shared/authservicerequestbody.md index 35386f841..f57b6b45c 100755 --- a/ruby-client-sdk/docs/models/shared/authservicerequestbody.md +++ b/ruby-client-sdk/docs/models/shared/authservicerequestbody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `basic_auth` | [T.nilable(Shared::AuthServiceRequestBodyBasicAuth)](../../models/shared/authservicerequestbodybasicauth.md) | :heavy_minus_sign: | N/A | -| `header_auth` | T::Array<[Shared::AuthServiceRequestBodyHeaderAuth](../../models/shared/authservicerequestbodyheaderauth.md)> | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | +| `basic_auth` | [T.nilable(Shared::BasicAuth)](../../models/shared/basicauth.md) | :heavy_minus_sign: | N/A | +| `header_auth` | T::Array<[Shared::HeaderAuth](../../models/shared/headerauth.md)> | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md b/ruby-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md deleted file mode 100755 index af376b041..000000000 --- a/ruby-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyBasicAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `password` | *String* | :heavy_check_mark: | N/A | -| `username` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md b/ruby-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md deleted file mode 100755 index 76316e345..000000000 --- a/ruby-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyHeaderAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `expected_value` | *String* | :heavy_check_mark: | N/A | -| `header_name` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/basicauth.md b/ruby-client-sdk/docs/models/shared/basicauth.md new file mode 100755 index 000000000..0e36cee88 --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/basicauth.md @@ -0,0 +1,9 @@ +# BasicAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `password` | *String* | :heavy_check_mark: | N/A | +| `username` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/chocolates.md b/ruby-client-sdk/docs/models/shared/chocolates.md new file mode 100755 index 000000000..5ab163deb --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/chocolates.md @@ -0,0 +1,8 @@ +# Chocolates + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `description` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/constenumint.md b/ruby-client-sdk/docs/models/shared/constenumint.md new file mode 100755 index 000000000..cab586d10 --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/constenumint.md @@ -0,0 +1,10 @@ +# ConstEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | 1 | +| `TWO` | 2 | +| `THREE` | 3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/constenumstr.md b/ruby-client-sdk/docs/models/shared/constenumstr.md new file mode 100755 index 000000000..986110929 --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/constenumstr.md @@ -0,0 +1,10 @@ +# ConstEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | one | +| `TWO` | two | +| `THREE` | three | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/defaultenumint.md b/ruby-client-sdk/docs/models/shared/defaultenumint.md new file mode 100755 index 000000000..ae0f52ec8 --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/defaultenumint.md @@ -0,0 +1,10 @@ +# DefaultEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | 1 | +| `TWO` | 2 | +| `THREE` | 3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/defaultenumstr.md b/ruby-client-sdk/docs/models/shared/defaultenumstr.md new file mode 100755 index 000000000..fe1bc0fbf --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/defaultenumstr.md @@ -0,0 +1,10 @@ +# DefaultEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | one | +| `TWO` | two | +| `THREE` | three | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/defaultsandconsts.md b/ruby-client-sdk/docs/models/shared/defaultsandconsts.md index c990fbd33..1e3cce426 100755 --- a/ruby-client-sdk/docs/models/shared/defaultsandconsts.md +++ b/ruby-client-sdk/docs/models/shared/defaultsandconsts.md @@ -3,33 +3,33 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | -| `const_big_int` | *Integer* | :heavy_check_mark: | N/A | -| `const_big_int_str` | *String* | :heavy_check_mark: | N/A | -| `const_bool` | *T::Boolean* | :heavy_check_mark: | N/A | -| `const_date` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_check_mark: | N/A | -| `const_date_time` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | N/A | -| `const_decimal` | *Float* | :heavy_check_mark: | N/A | -| `const_decimal_str` | *String* | :heavy_check_mark: | N/A | -| `const_enum_int` | [Shared::DefaultsAndConstsConstEnumInt](../../models/shared/defaultsandconstsconstenumint.md) | :heavy_check_mark: | N/A | -| `const_enum_str` | [Shared::DefaultsAndConstsConstEnumStr](../../models/shared/defaultsandconstsconstenumstr.md) | :heavy_check_mark: | N/A | -| `const_int` | *Integer* | :heavy_check_mark: | N/A | -| `const_num` | *Float* | :heavy_check_mark: | N/A | -| `const_str` | *String* | :heavy_check_mark: | N/A | -| `const_str_null` | *String* | :heavy_check_mark: | N/A | -| `default_big_int` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | -| `default_big_int_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `default_bool` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | N/A | -| `default_date` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_minus_sign: | N/A | -| `default_date_time` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_minus_sign: | N/A | -| `default_decimal` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | -| `default_decimal_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `default_enum_int` | [T.nilable(Shared::DefaultsAndConstsDefaultEnumInt)](../../models/shared/defaultsandconstsdefaultenumint.md) | :heavy_minus_sign: | N/A | -| `default_enum_str` | [T.nilable(Shared::DefaultsAndConstsDefaultEnumStr)](../../models/shared/defaultsandconstsdefaultenumstr.md) | :heavy_minus_sign: | N/A | -| `default_int` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | -| `default_num` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | -| `default_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `default_str_nullable` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `default_str_optional` | *T.nilable(String)* | :heavy_minus_sign: | N/A | -| `normal_field` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `const_big_int` | *Integer* | :heavy_check_mark: | N/A | +| `const_big_int_str` | *String* | :heavy_check_mark: | N/A | +| `const_bool` | *T::Boolean* | :heavy_check_mark: | N/A | +| `const_date` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_check_mark: | N/A | +| `const_date_time` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | N/A | +| `const_decimal` | *Float* | :heavy_check_mark: | N/A | +| `const_decimal_str` | *String* | :heavy_check_mark: | N/A | +| `const_enum_int` | [Shared::ConstEnumInt](../../models/shared/constenumint.md) | :heavy_check_mark: | N/A | +| `const_enum_str` | [Shared::ConstEnumStr](../../models/shared/constenumstr.md) | :heavy_check_mark: | N/A | +| `const_int` | *Integer* | :heavy_check_mark: | N/A | +| `const_num` | *Float* | :heavy_check_mark: | N/A | +| `const_str` | *String* | :heavy_check_mark: | N/A | +| `const_str_null` | *String* | :heavy_check_mark: | N/A | +| `default_big_int` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | +| `default_big_int_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `default_bool` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | N/A | +| `default_date` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_minus_sign: | N/A | +| `default_date_time` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_minus_sign: | N/A | +| `default_decimal` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | +| `default_decimal_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `default_enum_int` | [T.nilable(Shared::DefaultEnumInt)](../../models/shared/defaultenumint.md) | :heavy_minus_sign: | N/A | +| `default_enum_str` | [T.nilable(Shared::DefaultEnumStr)](../../models/shared/defaultenumstr.md) | :heavy_minus_sign: | N/A | +| `default_int` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | +| `default_num` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | +| `default_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `default_str_nullable` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `default_str_optional` | *T.nilable(String)* | :heavy_minus_sign: | N/A | +| `normal_field` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md b/ruby-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md deleted file mode 100755 index 0d99bc945..000000000 --- a/ruby-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | 1 | -| `TWO` | 2 | -| `THREE` | 3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md b/ruby-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md deleted file mode 100755 index e74129ef1..000000000 --- a/ruby-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | one | -| `TWO` | two | -| `THREE` | three | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md b/ruby-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md deleted file mode 100755 index 051ac2c0d..000000000 --- a/ruby-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | 1 | -| `TWO` | 2 | -| `THREE` | 3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md b/ruby-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md deleted file mode 100755 index 17ab70b26..000000000 --- a/ruby-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | one | -| `TWO` | two | -| `THREE` | three | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/deprecatedenum.md b/ruby-client-sdk/docs/models/shared/deprecatedenum.md new file mode 100755 index 000000000..2af19435d --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/deprecatedenum.md @@ -0,0 +1,12 @@ +# ~~DeprecatedEnum~~ + +> :warning: **DEPRECATED**: This enum is deprecated. + + +## Values + +| Name | Value | +| ----- | ----- | +| `A` | a | +| `B` | b | +| `C` | c | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/deprecatedfieldinobject.md b/ruby-client-sdk/docs/models/shared/deprecatedfieldinobject.md index fa4ea9062..08a3b461b 100755 --- a/ruby-client-sdk/docs/models/shared/deprecatedfieldinobject.md +++ b/ruby-client-sdk/docs/models/shared/deprecatedfieldinobject.md @@ -5,6 +5,6 @@ | Field | Type | Required | Description | | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| ~~`deprecated_enum`~~ | [T.nilable(Shared::DeprecatedFieldInObjectDeprecatedEnum)](../../models/shared/deprecatedfieldinobjectdeprecatedenum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | +| ~~`deprecated_enum`~~ | [T.nilable(Shared::DeprecatedEnum)](../../models/shared/deprecatedenum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | | ~~`deprecated_field`~~ | *T.nilable(String)* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. Use new_field instead. | | `new_field` | *T.nilable(String)* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md b/ruby-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md deleted file mode 100755 index 14c3d71b4..000000000 --- a/ruby-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md +++ /dev/null @@ -1,12 +0,0 @@ -# ~~DeprecatedFieldInObjectDeprecatedEnum~~ - -> :warning: **DEPRECATED**: This enum is deprecated. - - -## Values - -| Name | Value | -| ----- | ----- | -| `A` | a | -| `B` | b | -| `C` | c | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/enumnumber.md b/ruby-client-sdk/docs/models/shared/enumnumber.md new file mode 100755 index 000000000..79405247f --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/enumnumber.md @@ -0,0 +1,10 @@ +# EnumNumber + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | 1 | +| `TWO` | 2 | +| `THREE` | 3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/enumstr.md b/ruby-client-sdk/docs/models/shared/enumstr.md new file mode 100755 index 000000000..8e2938878 --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/enumstr.md @@ -0,0 +1,10 @@ +# EnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `ONE` | one | +| `TWO` | two | +| `THREE` | three | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/exampleresource.md b/ruby-client-sdk/docs/models/shared/exampleresource.md index b7624726c..d96c81070 100755 --- a/ruby-client-sdk/docs/models/shared/exampleresource.md +++ b/ruby-client-sdk/docs/models/shared/exampleresource.md @@ -3,17 +3,17 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `array_of_number` | T::Array<*Float*> | :heavy_minus_sign: | N/A | -| `array_of_string` | T::Array<*String*> | :heavy_minus_sign: | N/A | -| `chocolates` | T::Array<[Shared::ExampleResourceChocolates](../../models/shared/exampleresourcechocolates.md)> | :heavy_check_mark: | N/A | -| `created_at` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_minus_sign: | N/A | -| `enum_number` | [T.nilable(Shared::ExampleResourceEnumNumber)](../../models/shared/exampleresourceenumnumber.md) | :heavy_minus_sign: | N/A | -| `enum_str` | [T.nilable(Shared::ExampleResourceEnumStr)](../../models/shared/exampleresourceenumstr.md) | :heavy_minus_sign: | N/A | -| `id` | *String* | :heavy_check_mark: | N/A | -| `map_of_integer` | T::Hash[Symbol, *Integer*] | :heavy_minus_sign: | N/A | -| `map_of_string` | T::Hash[Symbol, *String*] | :heavy_minus_sign: | N/A | -| `name` | *String* | :heavy_check_mark: | N/A | -| `updated_at` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_minus_sign: | N/A | -| `vehicle` | *Object* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | +| `array_of_number` | T::Array<*Float*> | :heavy_minus_sign: | N/A | +| `array_of_string` | T::Array<*String*> | :heavy_minus_sign: | N/A | +| `chocolates` | T::Array<[Shared::Chocolates](../../models/shared/chocolates.md)> | :heavy_check_mark: | N/A | +| `created_at` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_minus_sign: | N/A | +| `enum_number` | [T.nilable(Shared::EnumNumber)](../../models/shared/enumnumber.md) | :heavy_minus_sign: | N/A | +| `enum_str` | [T.nilable(Shared::EnumStr)](../../models/shared/enumstr.md) | :heavy_minus_sign: | N/A | +| `id` | *String* | :heavy_check_mark: | N/A | +| `map_of_integer` | T::Hash[Symbol, *Integer*] | :heavy_minus_sign: | N/A | +| `map_of_string` | T::Hash[Symbol, *String*] | :heavy_minus_sign: | N/A | +| `name` | *String* | :heavy_check_mark: | N/A | +| `updated_at` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_minus_sign: | N/A | +| `vehicle` | *Object* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/exampleresourcechocolates.md b/ruby-client-sdk/docs/models/shared/exampleresourcechocolates.md deleted file mode 100755 index e0d9a9ad5..000000000 --- a/ruby-client-sdk/docs/models/shared/exampleresourcechocolates.md +++ /dev/null @@ -1,8 +0,0 @@ -# ExampleResourceChocolates - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `description` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/exampleresourceenumnumber.md b/ruby-client-sdk/docs/models/shared/exampleresourceenumnumber.md deleted file mode 100755 index a872613f0..000000000 --- a/ruby-client-sdk/docs/models/shared/exampleresourceenumnumber.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumNumber - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | 1 | -| `TWO` | 2 | -| `THREE` | 3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/exampleresourceenumstr.md b/ruby-client-sdk/docs/models/shared/exampleresourceenumstr.md deleted file mode 100755 index 7f8258195..000000000 --- a/ruby-client-sdk/docs/models/shared/exampleresourceenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `ONE` | one | -| `TWO` | two | -| `THREE` | three | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/headerauth.md b/ruby-client-sdk/docs/models/shared/headerauth.md new file mode 100755 index 000000000..61c6b1a2b --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/headerauth.md @@ -0,0 +1,9 @@ +# HeaderAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `expected_value` | *String* | :heavy_check_mark: | N/A | +| `header_name` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/httpbinsimplejsonobject.md b/ruby-client-sdk/docs/models/shared/httpbinsimplejsonobject.md index 62988c7f6..ade24baa1 100755 --- a/ruby-client-sdk/docs/models/shared/httpbinsimplejsonobject.md +++ b/ruby-client-sdk/docs/models/shared/httpbinsimplejsonobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `slideshow` | [Shared::HttpBinSimpleJsonObjectSlideshow](../../models/shared/httpbinsimplejsonobjectslideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | +| `slideshow` | [Shared::Slideshow](../../models/shared/slideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md b/ruby-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md deleted file mode 100755 index fda0e394e..000000000 --- a/ruby-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md +++ /dev/null @@ -1,11 +0,0 @@ -# HttpBinSimpleJsonObjectSlideshow - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | -| `author` | *String* | :heavy_check_mark: | N/A | -| `date` | *String* | :heavy_check_mark: | N/A | -| `slides` | T::Array<[Shared::HttpBinSimpleJsonObjectSlideshowSlides](../../models/shared/httpbinsimplejsonobjectslideshowslides.md)> | :heavy_check_mark: | N/A | -| `title` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md b/ruby-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md deleted file mode 100755 index 028266f5a..000000000 --- a/ruby-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md +++ /dev/null @@ -1,10 +0,0 @@ -# HttpBinSimpleJsonObjectSlideshowSlides - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `items` | T::Array<*String*> | :heavy_minus_sign: | N/A | -| `title` | *String* | :heavy_check_mark: | N/A | -| `type` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/int32enum.md b/ruby-client-sdk/docs/models/shared/int32enum.md new file mode 100755 index 000000000..1e9b518b6 --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/int32enum.md @@ -0,0 +1,12 @@ +# Int32Enum + +An int32 enum property. + + +## Values + +| Name | Value | +| ---------------------------- | ---------------------------- | +| `FIFTY_FIVE` | 55 | +| `SIXTY_NINE` | 69 | +| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/int32enumval.md b/ruby-client-sdk/docs/models/shared/int32enumval.md new file mode 100755 index 000000000..bb756154d --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/int32enumval.md @@ -0,0 +1,12 @@ +# Int32EnumVal + +An int32 enum property. + + +## Values + +| Name | Value | +| ---------------------------- | ---------------------------- | +| `FIFTY_FIVE` | 55 | +| `SIXTY_NINE` | 69 | +| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/intenum.md b/ruby-client-sdk/docs/models/shared/intenum.md new file mode 100755 index 000000000..53355ee96 --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/intenum.md @@ -0,0 +1,12 @@ +# IntEnum + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `FIRST` | 1 | +| `SECOND` | 2 | +| `THIRD` | 3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/intenumval.md b/ruby-client-sdk/docs/models/shared/intenumval.md new file mode 100755 index 000000000..4459ad910 --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/intenumval.md @@ -0,0 +1,12 @@ +# IntEnumVal + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `FIRST` | 1 | +| `SECOND` | 2 | +| `THIRD` | 3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/readwriteobject.md b/ruby-client-sdk/docs/models/shared/readwriteobject.md new file mode 100755 index 000000000..1b786d10b --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/readwriteobject.md @@ -0,0 +1,10 @@ +# ReadWriteObject + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `num1` | *Integer* | :heavy_check_mark: | N/A | +| `num2` | *Integer* | :heavy_check_mark: | N/A | +| `num3` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/readwriteobjectinput.md b/ruby-client-sdk/docs/models/shared/readwriteobjectinput.md deleted file mode 100755 index 77a737a60..000000000 --- a/ruby-client-sdk/docs/models/shared/readwriteobjectinput.md +++ /dev/null @@ -1,10 +0,0 @@ -# ReadWriteObjectInput - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `num1` | *Integer* | :heavy_check_mark: | N/A | -| `num2` | *Integer* | :heavy_check_mark: | N/A | -| `num3` | *Integer* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/simpleobject.md b/ruby-client-sdk/docs/models/shared/simpleobject.md index 3a3e153f5..3a620b9a3 100755 --- a/ruby-client-sdk/docs/models/shared/simpleobject.md +++ b/ruby-client-sdk/docs/models/shared/simpleobject.md @@ -8,25 +8,25 @@ A link to the external docs. ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `any` | *Object* | :heavy_check_mark: | An any property. | any | -| `bigint` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `bigint_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `bool` | *T::Boolean* | :heavy_check_mark: | A boolean property. | true | -| `bool_opt` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | An optional boolean property. | true | -| `date` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_check_mark: | A date property. | 2020-01-01 | -| `date_time` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00.000000001Z | -| `decimal` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `decimal_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `enum` | [Shared::Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | -| `float32` | *Float* | :heavy_check_mark: | A float32 property. | 1.1 | -| `int` | *Integer* | :heavy_check_mark: | An integer property. | 1 | -| `int32` | *Integer* | :heavy_check_mark: | An int32 property. | 1 | -| `int32_enum` | [Shared::SimpleObjectInt32Enum](../../models/shared/simpleobjectint32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | -| `int_enum` | [Shared::SimpleObjectIntEnum](../../models/shared/simpleobjectintenum.md) | :heavy_check_mark: | An integer enum property. | 2 | -| `int_opt_null` | *T.nilable(Integer)* | :heavy_minus_sign: | An optional integer property will be null for tests. | | -| `num` | *Float* | :heavy_check_mark: | A number property. | 1.1 | -| `num_opt_null` | *T.nilable(Float)* | :heavy_minus_sign: | An optional number property will be null for tests. | | -| `str_` | *String* | :heavy_check_mark: | A string property. | test | -| `str_opt` | *T.nilable(String)* | :heavy_minus_sign: | An optional string property. | testOptional | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `any` | *Object* | :heavy_check_mark: | An any property. | any | +| `bigint` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `bigint_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `bool` | *T::Boolean* | :heavy_check_mark: | A boolean property. | true | +| `bool_opt` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | An optional boolean property. | true | +| `date` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_check_mark: | A date property. | 2020-01-01 | +| `date_time` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00.000000001Z | +| `decimal` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `decimal_str` | *T.nilable(String)* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `enum` | [Shared::Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | +| `float32` | *Float* | :heavy_check_mark: | A float32 property. | 1.1 | +| `int` | *Integer* | :heavy_check_mark: | An integer property. | 1 | +| `int32` | *Integer* | :heavy_check_mark: | An int32 property. | 1 | +| `int32_enum` | [Shared::Int32Enum](../../models/shared/int32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | +| `int_enum` | [Shared::IntEnum](../../models/shared/intenum.md) | :heavy_check_mark: | An integer enum property. | 2 | +| `int_opt_null` | *T.nilable(Integer)* | :heavy_minus_sign: | An optional integer property will be null for tests. | | +| `num` | *Float* | :heavy_check_mark: | A number property. | 1.1 | +| `num_opt_null` | *T.nilable(Float)* | :heavy_minus_sign: | An optional number property will be null for tests. | | +| `str_` | *String* | :heavy_check_mark: | A string property. | test | +| `str_opt` | *T.nilable(String)* | :heavy_minus_sign: | An optional string property. | testOptional | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/simpleobjectcamelcase.md b/ruby-client-sdk/docs/models/shared/simpleobjectcamelcase.md index bafb49f9a..0586d8e18 100755 --- a/ruby-client-sdk/docs/models/shared/simpleobjectcamelcase.md +++ b/ruby-client-sdk/docs/models/shared/simpleobjectcamelcase.md @@ -8,24 +8,24 @@ A link to the external docs. ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `any_val` | *Object* | :heavy_check_mark: | An any property. | any example | -| `bigint_str_val` | *T.nilable(String)* | :heavy_minus_sign: | N/A | | -| `bigint_val` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | | -| `bool_opt_val` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | An optional boolean property. | true | -| `bool_val` | *T::Boolean* | :heavy_check_mark: | A boolean property. | true | -| `date_time_val` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | -| `date_val` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_check_mark: | A date property. | 2020-01-01 | -| `decimal_val` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | | -| `enum_val` | [Shared::Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | -| `float32_val` | *Float* | :heavy_check_mark: | A float32 property. | 2.2222222 | -| `int32_enum_val` | [Shared::SimpleObjectCamelCaseInt32EnumVal](../../models/shared/simpleobjectcamelcaseint32enumval.md) | :heavy_check_mark: | An int32 enum property. | 69 | -| `int32_val` | *Integer* | :heavy_check_mark: | An int32 property. | 1 | -| `int_enum_val` | [Shared::SimpleObjectCamelCaseIntEnumVal](../../models/shared/simpleobjectcamelcaseintenumval.md) | :heavy_check_mark: | An integer enum property. | 3 | -| `int_opt_null_val` | *T.nilable(Integer)* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | -| `int_val` | *Integer* | :heavy_check_mark: | An integer property. | 999999 | -| `num_opt_null_val` | *T.nilable(Float)* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | -| `num_val` | *Float* | :heavy_check_mark: | A number property. | 1.1 | -| `str_opt_val` | *T.nilable(String)* | :heavy_minus_sign: | An optional string property. | optional example | -| `str_val` | *String* | :heavy_check_mark: | A string property. | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `any_val` | *Object* | :heavy_check_mark: | An any property. | any example | +| `bigint_str_val` | *T.nilable(String)* | :heavy_minus_sign: | N/A | | +| `bigint_val` | *T.nilable(Integer)* | :heavy_minus_sign: | N/A | | +| `bool_opt_val` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | An optional boolean property. | true | +| `bool_val` | *T::Boolean* | :heavy_check_mark: | A boolean property. | true | +| `date_time_val` | [Date](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/Date.html) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | +| `date_val` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_check_mark: | A date property. | 2020-01-01 | +| `decimal_val` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | | +| `enum_val` | [Shared::Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | +| `float32_val` | *Float* | :heavy_check_mark: | A float32 property. | 2.2222222 | +| `int32_enum_val` | [Shared::Int32EnumVal](../../models/shared/int32enumval.md) | :heavy_check_mark: | An int32 enum property. | 69 | +| `int32_val` | *Integer* | :heavy_check_mark: | An int32 property. | 1 | +| `int_enum_val` | [Shared::IntEnumVal](../../models/shared/intenumval.md) | :heavy_check_mark: | An integer enum property. | 3 | +| `int_opt_null_val` | *T.nilable(Integer)* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | +| `int_val` | *Integer* | :heavy_check_mark: | An integer property. | 999999 | +| `num_opt_null_val` | *T.nilable(Float)* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | +| `num_val` | *Float* | :heavy_check_mark: | A number property. | 1.1 | +| `str_opt_val` | *T.nilable(String)* | :heavy_minus_sign: | An optional string property. | optional example | +| `str_val` | *String* | :heavy_check_mark: | A string property. | example | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md b/ruby-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md deleted file mode 100755 index 6be009c74..000000000 --- a/ruby-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseInt32EnumVal - -An int32 enum property. - - -## Values - -| Name | Value | -| ---------------------------- | ---------------------------- | -| `FIFTY_FIVE` | 55 | -| `SIXTY_NINE` | 69 | -| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md b/ruby-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md deleted file mode 100755 index 5a22f97c3..000000000 --- a/ruby-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseIntEnumVal - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `FIRST` | 1 | -| `SECOND` | 2 | -| `THIRD` | 3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/simpleobjectint32enum.md b/ruby-client-sdk/docs/models/shared/simpleobjectint32enum.md deleted file mode 100755 index 640bd271d..000000000 --- a/ruby-client-sdk/docs/models/shared/simpleobjectint32enum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectInt32Enum - -An int32 enum property. - - -## Values - -| Name | Value | -| ---------------------------- | ---------------------------- | -| `FIFTY_FIVE` | 55 | -| `SIXTY_NINE` | 69 | -| `ONE_HUNDRED_AND_EIGHTY_ONE` | 181 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/simpleobjectintenum.md b/ruby-client-sdk/docs/models/shared/simpleobjectintenum.md deleted file mode 100755 index 2516253b5..000000000 --- a/ruby-client-sdk/docs/models/shared/simpleobjectintenum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectIntEnum - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `FIRST` | 1 | -| `SECOND` | 2 | -| `THIRD` | 3 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/slides.md b/ruby-client-sdk/docs/models/shared/slides.md new file mode 100755 index 000000000..6d3c1fff9 --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/slides.md @@ -0,0 +1,10 @@ +# Slides + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `items` | T::Array<*String*> | :heavy_minus_sign: | N/A | +| `title` | *String* | :heavy_check_mark: | N/A | +| `type` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/slideshow.md b/ruby-client-sdk/docs/models/shared/slideshow.md new file mode 100755 index 000000000..4c8d3737b --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/slideshow.md @@ -0,0 +1,11 @@ +# Slideshow + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | +| `author` | *String* | :heavy_check_mark: | N/A | +| `date` | *String* | :heavy_check_mark: | N/A | +| `slides` | T::Array<[Shared::Slides](../../models/shared/slides.md)> | :heavy_check_mark: | N/A | +| `title` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/type.md b/ruby-client-sdk/docs/models/shared/type.md new file mode 100755 index 000000000..85fb069ba --- /dev/null +++ b/ruby-client-sdk/docs/models/shared/type.md @@ -0,0 +1,8 @@ +# Type + + +## Values + +| Name | Value | +| ------ | ------ | +| `OBJ1` | obj1 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/typedobject1.md b/ruby-client-sdk/docs/models/shared/typedobject1.md index f4d25074b..6c240c72d 100755 --- a/ruby-client-sdk/docs/models/shared/typedobject1.md +++ b/ruby-client-sdk/docs/models/shared/typedobject1.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | -| `type` | [Shared::TypedObject1Type](../../models/shared/typedobject1type.md) | :heavy_check_mark: | N/A | -| `value` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | +| `type` | [Shared::Type](../../models/shared/type.md) | :heavy_check_mark: | N/A | +| `value` | *String* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/ruby-client-sdk/docs/models/shared/typedobject1type.md b/ruby-client-sdk/docs/models/shared/typedobject1type.md deleted file mode 100755 index be9a3ff43..000000000 --- a/ruby-client-sdk/docs/models/shared/typedobject1type.md +++ /dev/null @@ -1,8 +0,0 @@ -# TypedObject1Type - - -## Values - -| Name | Value | -| ------ | ------ | -| `OBJ1` | obj1 | \ No newline at end of file diff --git a/ruby-client-sdk/docs/sdks/auth/README.md b/ruby-client-sdk/docs/sdks/auth/README.md index fae85b11c..32c907a5a 100755 --- a/ruby-client-sdk/docs/sdks/auth/README.md +++ b/ruby-client-sdk/docs/sdks/auth/README.md @@ -1,5 +1,5 @@ # Auth -(*auth*) + ## Overview diff --git a/ruby-client-sdk/docs/sdks/authnew/README.md b/ruby-client-sdk/docs/sdks/authnew/README.md index 3e8849f54..bcde0fdd6 100755 --- a/ruby-client-sdk/docs/sdks/authnew/README.md +++ b/ruby-client-sdk/docs/sdks/authnew/README.md @@ -1,5 +1,5 @@ # AuthNew -(*auth_new*) + ## Overview @@ -37,12 +37,12 @@ s.config_security( req = Shared::AuthServiceRequestBody.new( request=Shared::AuthServiceRequestBody.new( - basic_auth=Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth=Shared::BasicAuth.new( password="owsGgP4_AhRPMSJ", username="Devonte_Bins", ), header_auth=.new[ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( expected_value="string", header_name="string", ), @@ -89,12 +89,12 @@ s.config_security( req = Shared::AuthServiceRequestBody.new( request=Shared::AuthServiceRequestBody.new( - basic_auth=Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth=Shared::BasicAuth.new( password="xvJcf9GiJNr7T2x", username="Cory33", ), header_auth=.new[ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( expected_value="string", header_name="string", ), @@ -140,12 +140,12 @@ req = Shared::AuthServiceRequestBody.new( username="YOUR_USERNAME", ), request=Shared::AuthServiceRequestBody.new( - basic_auth=Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth=Shared::BasicAuth.new( password="Z2OStPksFyrcGeu", username="Ashton.Steuber27", ), header_auth=.new[ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( expected_value="string", header_name="string", ), @@ -191,12 +191,12 @@ req = Shared::AuthServiceRequestBody.new( api_key_auth_new=.foo"Token ", ), request=Shared::AuthServiceRequestBody.new( - basic_auth=Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth=Shared::BasicAuth.new( password="Iq1JSzG1wqLDz4v", username="Ismael.Emmerich", ), header_auth=.new[ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( expected_value="string", header_name="string", ), @@ -246,12 +246,12 @@ req = Shared::AuthServiceRequestBody.new( ), ), request=Shared::AuthServiceRequestBody.new( - basic_auth=Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth=Shared::BasicAuth.new( password="OcWVV5608IiaWJQ", username="Kameron42", ), header_auth=.new[ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( expected_value="string", header_name="string", ), @@ -300,12 +300,12 @@ req = Shared::AuthServiceRequestBody.new( ), ), request=Shared::AuthServiceRequestBody.new( - basic_auth=Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth=Shared::BasicAuth.new( password="fpwNE90MyqKIrXk", username="Caroline_Walsh", ), header_auth=.new[ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( expected_value="string", header_name="string", ), @@ -354,12 +354,12 @@ req = Shared::AuthServiceRequestBody.new( ), ), request=Shared::AuthServiceRequestBody.new( - basic_auth=Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth=Shared::BasicAuth.new( password="pibxDTiJSijK04Y", username="Selena76", ), header_auth=.new[ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( expected_value="string", header_name="string", ), @@ -405,12 +405,12 @@ req = Shared::AuthServiceRequestBody.new( api_key_auth_new=.foo"Token ", ), request=Shared::AuthServiceRequestBody.new( - basic_auth=Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth=Shared::BasicAuth.new( password="pzdKQgSGZSrUGNs", username="Eryn51", ), header_auth=.new[ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( expected_value="string", header_name="string", ), @@ -457,12 +457,12 @@ req = Shared::AuthServiceRequestBody.new( oauth2="Bearer YOUR_OAUTH2_TOKEN", ), request=Shared::AuthServiceRequestBody.new( - basic_auth=Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth=Shared::BasicAuth.new( password="UrAsw466AAaYtr1", username="Kenya.Baumbach", ), header_auth=.new[ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( expected_value="string", header_name="string", ), @@ -508,12 +508,12 @@ req = Shared::AuthServiceRequestBody.new( oauth2="Bearer YOUR_OAUTH2_TOKEN", ), request=Shared::AuthServiceRequestBody.new( - basic_auth=Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth=Shared::BasicAuth.new( password="V02sHy2onRTMRgS", username="Polly.Aufderhar78", ), header_auth=.new[ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( expected_value="string", header_name="string", ), @@ -559,12 +559,12 @@ req = Shared::AuthServiceRequestBody.new( open_id_connect="Bearer YOUR_OPENID_TOKEN", ), request=Shared::AuthServiceRequestBody.new( - basic_auth=Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth=Shared::BasicAuth.new( password="1_B3hNdr8HC3AeS", username="Floy_Heller", ), header_auth=.new[ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( expected_value="string", header_name="string", ), diff --git a/ruby-client-sdk/docs/sdks/documentation/README.md b/ruby-client-sdk/docs/sdks/documentation/README.md index 90cc389dd..4c4eab62f 100755 --- a/ruby-client-sdk/docs/sdks/documentation/README.md +++ b/ruby-client-sdk/docs/sdks/documentation/README.md @@ -1,5 +1,5 @@ # Documentation -(*documentation*) + ## Overview diff --git a/ruby-client-sdk/docs/sdks/errors/README.md b/ruby-client-sdk/docs/sdks/errors/README.md index 013ef8e4d..69bdf372f 100755 --- a/ruby-client-sdk/docs/sdks/errors/README.md +++ b/ruby-client-sdk/docs/sdks/errors/README.md @@ -1,5 +1,5 @@ # Errors -(*errors*) + ## Overview diff --git a/ruby-client-sdk/docs/sdks/first/README.md b/ruby-client-sdk/docs/sdks/first/README.md index 1138ff7b3..99f3529c8 100755 --- a/ruby-client-sdk/docs/sdks/first/README.md +++ b/ruby-client-sdk/docs/sdks/first/README.md @@ -1,5 +1,5 @@ # First -(*first*) + ### Available Operations diff --git a/ruby-client-sdk/docs/sdks/flattening/README.md b/ruby-client-sdk/docs/sdks/flattening/README.md index 649e44efb..cb222cb48 100755 --- a/ruby-client-sdk/docs/sdks/flattening/README.md +++ b/ruby-client-sdk/docs/sdks/flattening/README.md @@ -1,5 +1,5 @@ # Flattening -(*flattening*) + ## Overview @@ -45,8 +45,8 @@ req = Operations::ComponentBodyAndParamConflictRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=843322, num=1.1, num_opt_null=7126.06, @@ -69,8 +69,8 @@ req = Operations::ComponentBodyAndParamConflictRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=845828, num=1.1, num_opt_null=2573.18, @@ -133,8 +133,8 @@ req = Operations::ComponentBodyAndParamNoConflictRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=758827, num=1.1, num_opt_null=1702.8, @@ -156,8 +156,8 @@ req = Operations::ComponentBodyAndParamNoConflictRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=836157, num=1.1, num_opt_null=2914.21, diff --git a/ruby-client-sdk/docs/sdks/generation/README.md b/ruby-client-sdk/docs/sdks/generation/README.md index 381fc13be..e9460fa6a 100755 --- a/ruby-client-sdk/docs/sdks/generation/README.md +++ b/ruby-client-sdk/docs/sdks/generation/README.md @@ -1,5 +1,5 @@ # Generation -(*generation*) + ## Overview @@ -305,7 +305,7 @@ s.config_security( res = s.generation.deprecated_object_in_schema_get() -if ! res.deprecated_object_in_schema_get_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -499,7 +499,7 @@ s.config_security( res = s.generation.global_name_overridden() -if ! res.get_global_name_override_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -529,7 +529,7 @@ s.config_security( res = s.generation.ignored_generation_get() -if ! res.ignored_generation_get_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -559,13 +559,13 @@ s.config_security( req = Operations::IgnoresPostRequest.new( query_params=Operations::IgnoresPostRequest.new( - request_body=Operations::IgnoresPostApplicationJSON.new( + request_body=Operations::IgnoresPostRequestBody.new( callback_url="http://diligent-activist.biz", test_prop="string", ), test_param="string", ), - request_body=Operations::IgnoresPostApplicationJSON.new( + request_body=Operations::IgnoresPostRequestBody.new( callback_url="https://limping-upgrade.com", test_prop="string", ), @@ -581,10 +581,10 @@ end ### Parameters -| Parameter | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `request_body` | [Operations::IgnoresPostApplicationJSON](../../models/operations/ignorespostapplicationjson.md) | :heavy_check_mark: | N/A | -| `test_param` | *String* | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| `request_body` | [Operations::IgnoresPostRequestBody](../../models/operations/ignorespostrequestbody.md) | :heavy_check_mark: | N/A | +| `test_param` | *String* | :heavy_minus_sign: | N/A | ### Response @@ -610,7 +610,7 @@ s.config_security( req = Operations::NameOverrideGetRequest.new( query_params=Operations::NameOverrideGetRequest.new( - test_enum_query_param=Operations::NameOverrideGetEnumNameOverride::VALUE3, + test_enum_query_param=Operations::EnumNameOverride::VALUE3, test_query_param="example", ), ) @@ -625,10 +625,10 @@ end ### Parameters -| Parameter | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `test_enum_query_param` | [Operations::NameOverrideGetEnumNameOverride](../../models/operations/nameoverridegetenumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | -| `test_query_param` | *String* | :heavy_check_mark: | N/A | example | +| Parameter | Type | Required | Description | Example | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | +| `test_enum_query_param` | [Operations::EnumNameOverride](../../models/operations/enumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | +| `test_query_param` | *String* | :heavy_check_mark: | N/A | example | ### Response @@ -717,7 +717,7 @@ req = Operations::TypedParameterGenerationGetRequest.new( bigint=879275, date=Date.parse("2023-11-18"), decimal=3346.96, - obj=Operations::TypedParameterGenerationGetObj.new( + obj=Operations::Obj.new( bool=false, num=4778.06, str_="string", @@ -735,12 +735,12 @@ end ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `bigint` | *Integer* | :heavy_minus_sign: | N/A | -| `date` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_minus_sign: | N/A | -| `decimal` | *Float* | :heavy_minus_sign: | N/A | -| `obj` | [Operations::TypedParameterGenerationGetObj](../../models/operations/typedparametergenerationgetobj.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `bigint` | *Integer* | :heavy_minus_sign: | N/A | +| `date` | [DateTime](https://ruby-doc.org/stdlib-2.6.1/libdoc/date/rdoc/DateTime.html) | :heavy_minus_sign: | N/A | +| `decimal` | *Float* | :heavy_minus_sign: | N/A | +| `obj` | [Operations::Obj](../../models/operations/obj.md) | :heavy_minus_sign: | N/A | ### Response @@ -860,8 +860,8 @@ req = Operations::UsageExamplePostRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=165468, num=1.1, num_opt_null=5944.32, @@ -882,13 +882,13 @@ req = Operations::UsageExamplePostRequest.new( decimal_str_parameter="string", decimal_str_parameter_optional="string", double_parameter=8700.78, - enum_parameter=Operations::UsageExamplePostEnumParameter::VALUE2, + enum_parameter=Operations::EnumParameter::VALUE2, falsey_number_parameter=0, float32_parameter=1341.86, float_parameter=5429.24, int64_parameter=101970, int_parameter=938852, - opt_enum_parameter=Operations::UsageExamplePostOptEnumParameter::VALUE3, + opt_enum_parameter=Operations::OptEnumParameter::VALUE3, str_parameter="example 3", ), request_body=Operations::UsageExamplePostRequestBody.new( @@ -981,8 +981,8 @@ req = Operations::UsageExamplePostRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=303425, num=1.1, num_opt_null=2928.25, @@ -994,7 +994,7 @@ req = Operations::UsageExamplePostRequest.new( res = s.generation.usage_example_post(req) -if ! res.usage_example_post_200_application_json_object.nil? +if ! res.object.nil? # handle response end diff --git a/ruby-client-sdk/docs/sdks/globals/README.md b/ruby-client-sdk/docs/sdks/globals/README.md index 0513470dc..0d5125e93 100755 --- a/ruby-client-sdk/docs/sdks/globals/README.md +++ b/ruby-client-sdk/docs/sdks/globals/README.md @@ -1,5 +1,5 @@ # Globals -(*globals*) + ## Overview diff --git a/ruby-client-sdk/docs/sdks/nested/README.md b/ruby-client-sdk/docs/sdks/nested/README.md index 2da3a1149..75b2b25a0 100755 --- a/ruby-client-sdk/docs/sdks/nested/README.md +++ b/ruby-client-sdk/docs/sdks/nested/README.md @@ -1,5 +1,5 @@ # Nested -(*nested*) + ### Available Operations diff --git a/ruby-client-sdk/docs/sdks/nestedfirst/README.md b/ruby-client-sdk/docs/sdks/nestedfirst/README.md index 343e0081a..175e05ddc 100755 --- a/ruby-client-sdk/docs/sdks/nestedfirst/README.md +++ b/ruby-client-sdk/docs/sdks/nestedfirst/README.md @@ -1,5 +1,5 @@ # NestedFirst -(*nested.first*) + ### Available Operations diff --git a/ruby-client-sdk/docs/sdks/nestedsecond/README.md b/ruby-client-sdk/docs/sdks/nestedsecond/README.md index c3220012e..3f7dc3a77 100755 --- a/ruby-client-sdk/docs/sdks/nestedsecond/README.md +++ b/ruby-client-sdk/docs/sdks/nestedsecond/README.md @@ -1,5 +1,5 @@ # NestedSecond -(*nested.second*) + ### Available Operations diff --git a/ruby-client-sdk/docs/sdks/nestfirst/README.md b/ruby-client-sdk/docs/sdks/nestfirst/README.md index e4235a9f9..2c622dbe7 100755 --- a/ruby-client-sdk/docs/sdks/nestfirst/README.md +++ b/ruby-client-sdk/docs/sdks/nestfirst/README.md @@ -1,5 +1,5 @@ # NestFirst -(*nest.first*) + ### Available Operations diff --git a/ruby-client-sdk/docs/sdks/pagination/README.md b/ruby-client-sdk/docs/sdks/pagination/README.md index 3d0594eaa..3eaeb79b9 100755 --- a/ruby-client-sdk/docs/sdks/pagination/README.md +++ b/ruby-client-sdk/docs/sdks/pagination/README.md @@ -1,5 +1,5 @@ # Pagination -(*pagination*) + ## Overview diff --git a/ruby-client-sdk/docs/sdks/parameters/README.md b/ruby-client-sdk/docs/sdks/parameters/README.md index d6fc9c3c6..9ef4b9fd8 100755 --- a/ruby-client-sdk/docs/sdks/parameters/README.md +++ b/ruby-client-sdk/docs/sdks/parameters/README.md @@ -1,5 +1,5 @@ # Parameters -(*parameters*) + ## Overview @@ -113,15 +113,15 @@ req = Operations::DeepObjectQueryParamsObjectRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=303001, num=1.1, num_opt_null=5571.55, str_="test", str_opt="testOptional", ), - obj_arr_param=Operations::DeepObjectQueryParamsObjectObjArrParam.new( + obj_arr_param=Operations::ObjArrParam.new( arr=.new[ "test", ], @@ -139,10 +139,10 @@ end ### Parameters -| Parameter | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -| `obj_param` | [Shared::SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `obj_arr_param` | [Operations::DeepObjectQueryParamsObjectObjArrParam](../../models/operations/deepobjectqueryparamsobjectobjarrparam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `obj_param` | [Shared::SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `obj_arr_param` | [Operations::ObjArrParam](../../models/operations/objarrparam.md) | :heavy_minus_sign: | N/A | ### Response @@ -258,11 +258,11 @@ s.config_security( req = Operations::FormQueryParamsCamelObjectRequest.new( query_params=Operations::FormQueryParamsCamelObjectRequest.new( - obj_param_exploded=Operations::FormQueryParamsCamelObjectObjParamExploded.new( + obj_param_exploded=Operations::ObjParamExploded.new( item_count="10", search_term="foo", ), - obj_param=Operations::FormQueryParamsCamelObjectObjParam.new( + obj_param=Operations::ObjParam.new( encoded_count="11", encoded_term="bar", ), @@ -279,10 +279,10 @@ end ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -| `obj_param_exploded` | [Operations::FormQueryParamsCamelObjectObjParamExploded](../../models/operations/formqueryparamscamelobjectobjparamexploded.md) | :heavy_check_mark: | N/A | -| `obj_param` | [Operations::FormQueryParamsCamelObjectObjParam](../../models/operations/formqueryparamscamelobjectobjparam.md) | :heavy_minus_sign: | N/A | +| Parameter | Type | Required | Description | +| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | +| `obj_param_exploded` | [Operations::ObjParamExploded](../../models/operations/objparamexploded.md) | :heavy_check_mark: | N/A | +| `obj_param` | [Operations::ObjParam](../../models/operations/objparam.md) | :heavy_minus_sign: | N/A | ### Response @@ -370,8 +370,8 @@ req = Operations::FormQueryParamsObjectRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=645228, num=1.1, num_opt_null=7602.31, @@ -392,8 +392,8 @@ req = Operations::FormQueryParamsObjectRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=973554, num=1.1, num_opt_null=873.54, @@ -650,8 +650,8 @@ req = Operations::HeaderParamsObjectRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=590416, num=1.1, num_opt_null=144.68, @@ -672,8 +672,8 @@ req = Operations::HeaderParamsObjectRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=54344, num=1.1, num_opt_null=6940.18, @@ -787,8 +787,8 @@ req = Operations::JsonQueryParamsObjectRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=740671, num=1.1, num_opt_null=8661.35, @@ -813,8 +813,8 @@ req = Operations::JsonQueryParamsObjectRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=835122, num=1.1, num_opt_null=9111.59, @@ -837,8 +837,8 @@ req = Operations::JsonQueryParamsObjectRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=416807, num=1.1, num_opt_null=8525.86, @@ -862,8 +862,8 @@ req = Operations::JsonQueryParamsObjectRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=488845, num=1.1, num_opt_null=5405.85, @@ -1038,8 +1038,8 @@ req = Operations::MixedQueryParamsRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=89281, num=1.1, num_opt_null=2132.48, @@ -1060,8 +1060,8 @@ req = Operations::MixedQueryParamsRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=218100, num=1.1, num_opt_null=75.58, @@ -1082,8 +1082,8 @@ req = Operations::MixedQueryParamsRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=387493, num=1.1, num_opt_null=5641.93, @@ -1147,8 +1147,8 @@ req = Operations::PathParameterJsonRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=355762, num=1.1, num_opt_null=5955.49, @@ -1219,8 +1219,8 @@ req = Operations::PipeDelimitedQueryParamsArrayRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=161819, num=1.1, num_opt_null=722.43, @@ -1377,8 +1377,8 @@ req = Operations::SimplePathParameterObjectsRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=384918, num=1.1, num_opt_null=9559.93, @@ -1399,8 +1399,8 @@ req = Operations::SimplePathParameterObjectsRequest.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=678638, num=1.1, num_opt_null=5865.54, diff --git a/ruby-client-sdk/docs/sdks/requestbodies/README.md b/ruby-client-sdk/docs/sdks/requestbodies/README.md index b81d2de60..76049c759 100755 --- a/ruby-client-sdk/docs/sdks/requestbodies/README.md +++ b/ruby-client-sdk/docs/sdks/requestbodies/README.md @@ -1,5 +1,5 @@ # RequestBodies -(*request_bodies*) + ## Overview @@ -150,15 +150,15 @@ s.config_security( req = Operations::NullableRequiredEmptyObjectPostRequestBody.new( request=Operations::NullableRequiredEmptyObjectPostRequestBody.new( - nullable_optional_obj=Operations::NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.new(), - nullable_required_obj=Operations::NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.new(), - required_obj=Operations::NullableRequiredEmptyObjectPostRequestBodyRequiredObj.new(), + nullable_optional_obj=Operations::NullableOptionalObj.new(), + nullable_required_obj=Operations::NullableRequiredObj.new(), + required_obj=Operations::RequiredObj.new(), ), ) res = s.request_bodies.nullable_required_empty_object_post(req) -if ! res.nullable_required_empty_object_post_200_application_json_string.nil? +if ! res.res.nil? # handle response end @@ -198,14 +198,14 @@ req = Operations::NullableRequiredPropertyPostRequestBody.new( nullable_required_array=.new[ 6917.41, ], - nullable_required_enum=Operations::NullableRequiredPropertyPostRequestBodyNullableRequiredEnum::FIRST, + nullable_required_enum=Operations::NullableRequiredEnum::FIRST, nullable_required_int=282026, ), ) res = s.request_bodies.nullable_required_property_post(req) -if ! res.nullable_required_property_post_200_application_json_string.nil? +if ! res.res.nil? # handle response end @@ -254,7 +254,7 @@ req = Operations::NullableRequiredSharedObjectPostRequestBody.new( res = s.request_bodies.nullable_required_shared_object_post(req) -if ! res.nullable_required_shared_object_post_200_application_json_string.nil? +if ! res.res.nil? # handle response end @@ -304,8 +304,8 @@ req = ::.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=690448, num=1.1, num_opt_null=7926.4, @@ -317,7 +317,7 @@ req = ::.new( res = s.request_bodies.request_body_post_application_json_array(req) -if ! res.simple_objects.nil? +if ! res.res.nil? # handle response end @@ -365,9 +365,9 @@ req = ::.new( decimal_val=6846.04, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::FIFTY_FIVE, + int32_enum_val=Shared::Int32EnumVal::FIFTY_FIVE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::SECOND, + int_enum_val=Shared::IntEnumVal::SECOND, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -380,7 +380,7 @@ req = ::.new( res = s.request_bodies.request_body_post_application_json_array_camel_case(req) -if ! res.simple_object_camel_cases.nil? +if ! res.res.nil? # handle response end @@ -431,8 +431,8 @@ req = ::.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=441726, num=1.1, num_opt_null=9818.33, @@ -491,9 +491,9 @@ req = ::.new( decimal_val=5504.23, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::FIFTY_FIVE, + int32_enum_val=Shared::Int32EnumVal::FIFTY_FIVE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::SECOND, + int_enum_val=Shared::IntEnumVal::SECOND, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -557,8 +557,8 @@ req = ::.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=74811, num=1.1, num_opt_null=5257.68, @@ -571,7 +571,7 @@ req = ::.new( res = s.request_bodies.request_body_post_application_json_array_of_array(req) -if ! res.arrs.nil? +if ! res.res.nil? # handle response end @@ -620,9 +620,9 @@ req = ::.new( decimal_val=4024.25, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::FIFTY_FIVE, + int32_enum_val=Shared::Int32EnumVal::FIFTY_FIVE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::SECOND, + int_enum_val=Shared::IntEnumVal::SECOND, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -636,7 +636,7 @@ req = ::.new( res = s.request_bodies.request_body_post_application_json_array_of_array_camel_case(req) -if ! res.arrs.nil? +if ! res.res.nil? # handle response end @@ -681,7 +681,7 @@ req = ::.new( res = s.request_bodies.request_body_post_application_json_array_of_array_of_primitive(req) -if ! res.arrs.nil? +if ! res.res.nil? # handle response end @@ -733,8 +733,8 @@ req = ::.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=633957, num=1.1, num_opt_null=7796.22, @@ -747,7 +747,7 @@ req = ::.new( res = s.request_bodies.request_body_post_application_json_array_of_map(req) -if ! res.maps.nil? +if ! res.res.nil? # handle response end @@ -796,9 +796,9 @@ req = ::.new( decimal_val=3788.16, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::FIFTY_FIVE, + int32_enum_val=Shared::Int32EnumVal::FIFTY_FIVE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::SECOND, + int_enum_val=Shared::IntEnumVal::SECOND, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -812,7 +812,7 @@ req = ::.new( res = s.request_bodies.request_body_post_application_json_array_of_map_camel_case(req) -if ! res.maps.nil? +if ! res.res.nil? # handle response end @@ -855,7 +855,7 @@ req = ::.new( res = s.request_bodies.request_body_post_application_json_array_of_primitive(req) -if ! res.strings.nil? +if ! res.res.nil? # handle response end @@ -908,8 +908,8 @@ req = Shared::DeepObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=331525, num=1.1, num_opt_null=7388.48, @@ -934,8 +934,8 @@ req = Shared::DeepObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=991506, num=1.1, num_opt_null=4260.62, @@ -958,8 +958,8 @@ req = Shared::DeepObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=724689, num=1.1, num_opt_null=9926.81, @@ -1022,9 +1022,9 @@ req = Shared::DeepObjectCamelCase.new( decimal_val=9629.09, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::FIFTY_FIVE, + int32_enum_val=Shared::Int32EnumVal::FIFTY_FIVE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::SECOND, + int_enum_val=Shared::IntEnumVal::SECOND, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1047,9 +1047,9 @@ req = Shared::DeepObjectCamelCase.new( decimal_val=4268.81, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::FIFTY_FIVE, + int32_enum_val=Shared::Int32EnumVal::FIFTY_FIVE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::FIRST, + int_enum_val=Shared::IntEnumVal::FIRST, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1070,9 +1070,9 @@ req = Shared::DeepObjectCamelCase.new( decimal_val=3547.55, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::FIFTY_FIVE, + int32_enum_val=Shared::Int32EnumVal::FIFTY_FIVE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::FIRST, + int_enum_val=Shared::IntEnumVal::FIRST, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1137,8 +1137,8 @@ req = ::.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=821581, num=1.1, num_opt_null=7650.52, @@ -1198,9 +1198,9 @@ req = ::.new( decimal_val=3388.78, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::SIXTY_NINE, + int32_enum_val=Shared::Int32EnumVal::SIXTY_NINE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::FIRST, + int_enum_val=Shared::IntEnumVal::FIRST, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1264,8 +1264,8 @@ req = ::.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=108451, num=1.1, num_opt_null=7446.57, @@ -1324,9 +1324,9 @@ req = ::.new( decimal_val=9878.97, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::FIFTY_FIVE, + int32_enum_val=Shared::Int32EnumVal::FIFTY_FIVE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::SECOND, + int_enum_val=Shared::IntEnumVal::SECOND, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1390,8 +1390,8 @@ req = ::.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=381188, num=1.1, num_opt_null=3457.34, @@ -1453,9 +1453,9 @@ req = ::.new( decimal_val=7481.74, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::ONE_HUNDRED_AND_EIGHTY_ONE, + int32_enum_val=Shared::Int32EnumVal::ONE_HUNDRED_AND_EIGHTY_ONE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::SECOND, + int_enum_val=Shared::IntEnumVal::SECOND, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1521,8 +1521,8 @@ req = ::.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=313517, num=1.1, num_opt_null=4543.93, @@ -1584,9 +1584,9 @@ req = ::.new( decimal_val=5080.8, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::FIFTY_FIVE, + int32_enum_val=Shared::Int32EnumVal::FIFTY_FIVE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::THIRD, + int_enum_val=Shared::IntEnumVal::THIRD, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1738,8 +1738,8 @@ req = Shared::SimpleObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=680661, num=1.1, num_opt_null=8809.47, @@ -1799,8 +1799,8 @@ req = Shared::SimpleObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=387512, num=1.1, num_opt_null=7875.71, @@ -1857,9 +1857,9 @@ req = Shared::SimpleObjectCamelCase.new( decimal_val=9976.38, enum_val=Shared::Enum::ONE, float32_val=2.2222222, - int32_enum_val=Shared::SimpleObjectCamelCaseInt32EnumVal::SIXTY_NINE, + int32_enum_val=Shared::Int32EnumVal::SIXTY_NINE, int32_val=1, - int_enum_val=Shared::SimpleObjectCamelCaseIntEnumVal::SECOND, + int_enum_val=Shared::IntEnumVal::SECOND, int_opt_null_val=999999, int_val=999999, num_opt_null_val=1.1, @@ -1948,7 +1948,7 @@ req = Operations::RequestBodyPostComplexNumberTypesRequest.new( res = s.request_bodies.request_body_post_complex_number_types(req) -if ! res.request_body_post_complex_number_types_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -1991,8 +1991,8 @@ req = Shared::DefaultsAndConsts.new( const_date_time=DateTime.iso8601('2022-12-15T04:16:08.794Z'), const_decimal=9160.69, const_decimal_str="string", - const_enum_int=Shared::DefaultsAndConstsConstEnumInt::ONE, - const_enum_str=Shared::DefaultsAndConstsConstEnumStr::THREE, + const_enum_int=Shared::ConstEnumInt::ONE, + const_enum_str=Shared::ConstEnumStr::THREE, const_int=299545, const_num=4612.63, const_str="string", @@ -2004,8 +2004,8 @@ req = Shared::DefaultsAndConsts.new( default_date_time=DateTime.iso8601('2021-10-01T11:08:55.738Z'), default_decimal=4585.94, default_decimal_str="string", - default_enum_int=Shared::DefaultsAndConstsDefaultEnumInt::TWO, - default_enum_str=Shared::DefaultsAndConstsDefaultEnumStr::ONE, + default_enum_int=Shared::DefaultEnumInt::TWO, + default_enum_str=Shared::DefaultEnumStr::ONE, default_int=788517, default_num=639.73, default_str="string", @@ -2017,7 +2017,7 @@ req = Shared::DefaultsAndConsts.new( res = s.request_bodies.request_body_post_defaults_and_consts(req) -if ! res.request_body_post_defaults_and_consts_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2053,14 +2053,14 @@ s.config_security( req = Operations::RequestBodyPostEmptyObjectRequestBody.new( request=Operations::RequestBodyPostEmptyObjectRequestBody.new( - empty=Operations::RequestBodyPostEmptyObjectRequestBodyEmpty.new(), - empty_with_empty_properties=Operations::RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.new(), + empty=Operations::Empty.new(), + empty_with_empty_properties=Operations::EmptyWithEmptyProperties.new(), ), ) res = s.request_bodies.request_body_post_empty_object(req) -if ! res.request_body_post_empty_object_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2112,8 +2112,8 @@ req = Shared::DeepObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=14993, num=1.1, num_opt_null=6785.62, @@ -2138,8 +2138,8 @@ req = Shared::DeepObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=863312, num=1.1, num_opt_null=4808.84, @@ -2162,8 +2162,8 @@ req = Shared::DeepObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=736071, num=1.1, num_opt_null=5899.47, @@ -2268,8 +2268,8 @@ req = Shared::SimpleObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=5565, num=1.1, num_opt_null=8893.53, @@ -2322,7 +2322,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_array_big_int(req) -if ! res.request_body_post_json_data_types_array_big_int_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2364,7 +2364,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_array_date(req) -if ! res.request_body_post_json_data_types_array_date_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2406,7 +2406,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_array_decimal_str(req) -if ! res.request_body_post_json_data_types_array_decimal_str_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2446,7 +2446,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_big_int(req) -if ! res.request_body_post_json_data_types_big_int_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2486,7 +2486,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_big_int_str(req) -if ! res.request_body_post_json_data_types_big_int_str_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2526,7 +2526,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_boolean(req) -if ! res.request_body_post_json_data_types_boolean_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2566,7 +2566,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_date(req) -if ! res.request_body_post_json_data_types_date_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2606,7 +2606,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_date_time(req) -if ! res.request_body_post_json_data_types_date_time_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2646,7 +2646,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_decimal(req) -if ! res.request_body_post_json_data_types_decimal_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2686,7 +2686,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_decimal_str(req) -if ! res.request_body_post_json_data_types_decimal_str_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2726,7 +2726,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_float32(req) -if ! res.request_body_post_json_data_types_float32_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2766,7 +2766,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_int32(req) -if ! res.request_body_post_json_data_types_int32_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2806,7 +2806,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_integer(req) -if ! res.request_body_post_json_data_types_integer_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2848,7 +2848,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_map_big_int_str(req) -if ! res.request_body_post_json_data_types_map_big_int_str_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2890,7 +2890,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_map_date_time(req) -if ! res.request_body_post_json_data_types_map_date_time_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2932,7 +2932,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_map_decimal(req) -if ! res.request_body_post_json_data_types_map_decimal_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -2972,7 +2972,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_number(req) -if ! res.request_body_post_json_data_types_number_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -3012,7 +3012,7 @@ req = ::.new( res = s.request_bodies.request_body_post_json_data_types_string(req) -if ! res.request_body_post_json_data_types_string_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -3061,8 +3061,8 @@ req = Shared::SimpleObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=587803, num=1.1, num_opt_null=9724.14, @@ -3107,8 +3107,8 @@ s.config_security( ) -req = Operations::RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.new( - request=Operations::RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.new( +req = Operations::RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.new( + request=Operations::RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.new( bool=false, num=3558.41, str_="string", @@ -3125,9 +3125,9 @@ end ### Parameters -| Parameter | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [Operations::RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request` | [Operations::RequestBodyPostMultipleContentTypesInlineFilteredRequestBody](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3153,14 +3153,14 @@ s.config_security( req = Operations::RequestBodyPostMultipleContentTypesSplitParamFormRequest.new( query_params=Operations::RequestBodyPostMultipleContentTypesSplitParamFormRequest.new( - request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.new( + request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.new( bool3=false, num3=8693.24, str3="string", ), param_str="string", ), - request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.new( + request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.new( bool3=false, num3=1802.67, str3="string", @@ -3177,10 +3177,10 @@ end ### Parameters -| Parameter | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md) | :heavy_check_mark: | N/A | -| `param_str` | *String* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md) | :heavy_check_mark: | N/A | +| `param_str` | *String* | :heavy_check_mark: | N/A | ### Response @@ -3206,14 +3206,14 @@ s.config_security( req = Operations::RequestBodyPostMultipleContentTypesSplitParamJsonRequest.new( query_params=Operations::RequestBodyPostMultipleContentTypesSplitParamJsonRequest.new( - request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.new( + request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.new( bool=false, num=9771.91, str_="string", ), param_str="string", ), - request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.new( + request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.new( bool=false, num=5784.1, str_="string", @@ -3232,7 +3232,7 @@ end | Parameter | Type | Required | Description | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md) | :heavy_check_mark: | N/A | +| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md) | :heavy_check_mark: | N/A | | `param_str` | *String* | :heavy_check_mark: | N/A | @@ -3259,14 +3259,14 @@ s.config_security( req = Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.new( query_params=Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.new( - request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.new( + request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.new( bool2=false, num2=7000.76, str2="string", ), param_str="string", ), - request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.new( + request_body=Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.new( bool2=false, num2=6115.78, str2="string", @@ -3283,10 +3283,10 @@ end ### Parameters -| Parameter | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md) | :heavy_check_mark: | N/A | -| `param_str` | *String* | :heavy_check_mark: | N/A | +| Parameter | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request_body` | [Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md) | :heavy_check_mark: | N/A | +| `param_str` | *String* | :heavy_check_mark: | N/A | ### Response @@ -3310,8 +3310,8 @@ s.config_security( ) -req = Operations::RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.new( - request=Operations::RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.new( +req = Operations::RequestBodyPostMultipleContentTypesSplitFormRequestBody.new( + request=Operations::RequestBodyPostMultipleContentTypesSplitFormRequestBody.new( bool3=false, num3=7842.07, str3="string", @@ -3328,9 +3328,9 @@ end ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [Operations::RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request` | [Operations::RequestBodyPostMultipleContentTypesSplitFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3354,8 +3354,8 @@ s.config_security( ) -req = Operations::RequestBodyPostMultipleContentTypesSplitApplicationJSON.new( - request=Operations::RequestBodyPostMultipleContentTypesSplitApplicationJSON.new( +req = Operations::RequestBodyPostMultipleContentTypesSplitJsonRequestBody.new( + request=Operations::RequestBodyPostMultipleContentTypesSplitJsonRequestBody.new( bool=false, num=2445.56, str_="string", @@ -3374,7 +3374,7 @@ end | Parameter | Type | Required | Description | | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [Operations::RequestBodyPostMultipleContentTypesSplitApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md) | :heavy_check_mark: | The request object to use for the request. | +| `request` | [Operations::RequestBodyPostMultipleContentTypesSplitJsonRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3398,8 +3398,8 @@ s.config_security( ) -req = Operations::RequestBodyPostMultipleContentTypesSplitMultipartFormData.new( - request=Operations::RequestBodyPostMultipleContentTypesSplitMultipartFormData.new( +req = Operations::RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.new( + request=Operations::RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.new( bool2=false, num2=2079.2, str2="string", @@ -3416,9 +3416,9 @@ end ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [Operations::RequestBodyPostMultipleContentTypesSplitMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md) | :heavy_check_mark: | The request object to use for the request. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request` | [Operations::RequestBodyPostMultipleContentTypesSplitMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | ### Response @@ -3448,7 +3448,7 @@ req = ::.new( res = s.request_bodies.request_body_post_not_nullable_not_required_string_body(req) -if ! res.request_body_post_not_nullable_not_required_string_body_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -3490,7 +3490,7 @@ req = ::.new( res = s.request_bodies.request_body_post_null_array(req) -if ! res.request_body_post_null_array_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -3532,7 +3532,7 @@ req = ::.new( res = s.request_bodies.request_body_post_null_dictionary(req) -if ! res.request_body_post_null_dictionary_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -3572,7 +3572,7 @@ req = ::.new( res = s.request_bodies.request_body_post_nullable_not_required_string_body(req) -if ! res.request_body_post_nullable_not_required_string_body_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -3612,7 +3612,7 @@ req = ::.new( res = s.request_bodies.request_body_post_nullable_required_string_body(req) -if ! res.request_body_post_nullable_required_string_body_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -3647,7 +3647,7 @@ s.config_security( req = ::.new( - request="9sS}}O%}aJ".encode(), + request="0x5DbFFb1Ff9".encode(), ) res = s.request_bodies.request_body_put_bytes(req) @@ -3688,10 +3688,10 @@ s.config_security( req = Operations::RequestBodyPutBytesWithParamsRequest.new( query_params=Operations::RequestBodyPutBytesWithParamsRequest.new( - request_body="o%jIWe4_P6".encode(), + request_body="0xC1B9cA4eb5".encode(), query_string_param="string", ), - request_body="$GrQJ30)!E".encode(), + request_body="0x09Db943108".encode(), ) res = s.request_bodies.request_body_put_bytes_with_params(req) @@ -3749,8 +3749,8 @@ req = Shared::DeepObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=951052, num=1.1, num_opt_null=5976.82, @@ -3775,8 +3775,8 @@ req = Shared::DeepObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::SIXTY_NINE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::SIXTY_NINE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=539713, num=1.1, num_opt_null=6305.02, @@ -3799,8 +3799,8 @@ req = Shared::DeepObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::SECOND, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::SECOND, int_opt_null=354579, num=1.1, num_opt_null=7795.52, @@ -3850,9 +3850,9 @@ s.config_security( req = Operations::RequestBodyPutMultipartDifferentFileNameRequestBody.new( request=Operations::RequestBodyPutMultipartDifferentFileNameRequestBody.new( - different_file_name=Operations::RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.new( - content="Y}'H[5/Z[,".encode(), - different_file_name="string", + different_file_name=Operations::DifferentFileName.new( + content="0xdF19d43dd2".encode(), + file_name="west_tunisian.pdf", ), ), ) @@ -3895,9 +3895,9 @@ s.config_security( req = Operations::RequestBodyPutMultipartFileRequestBody.new( request=Operations::RequestBodyPutMultipartFileRequestBody.new( - file=Operations::RequestBodyPutMultipartFileRequestBodyFile.new( - content="OJa,v`.FW-".encode(), - file="string", + file=Operations::File.new( + content="0xa9f2Ee38c3".encode(), + file_name="bandwidth_sedan.pdf", ), ), ) @@ -3953,8 +3953,8 @@ req = Shared::SimpleObject.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum=Shared::SimpleObjectIntEnum::THIRD, + int32_enum=Shared::Int32Enum::FIFTY_FIVE, + int_enum=Shared::IntEnum::THIRD, int_opt_null=544005, num=1.1, num_opt_null=7648.28, @@ -4084,8 +4084,8 @@ s.config_security( ) -req = Shared::ReadWriteObjectInput.new( - request=Shared::ReadWriteObjectInput.new( +req = Shared::ReadWriteObject.new( + request=Shared::ReadWriteObject.new( num1=797612, num2=89374, num3=459345, @@ -4102,10 +4102,10 @@ end ### Parameters -| Parameter | Type | Required | Description | -| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | -| `request` | [Shared::ReadWriteObjectInput](../../models/shared/readwriteobjectinput.md) | :heavy_check_mark: | The request object to use for the request. | -| `server_url` | *String* | :heavy_minus_sign: | An optional server URL to use. | +| Parameter | Type | Required | Description | +| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | +| `request` | [Shared::ReadWriteObject](../../models/shared/readwriteobject.md) | :heavy_check_mark: | The request object to use for the request. | +| `server_url` | *String* | :heavy_minus_sign: | An optional server URL to use. | ### Response diff --git a/ruby-client-sdk/docs/sdks/resource/README.md b/ruby-client-sdk/docs/sdks/resource/README.md index bacd2748c..8822b3c19 100755 --- a/ruby-client-sdk/docs/sdks/resource/README.md +++ b/ruby-client-sdk/docs/sdks/resource/README.md @@ -1,5 +1,5 @@ # Resource -(*resource*) + ### Available Operations @@ -27,9 +27,9 @@ s.config_security( req = Operations::CreateFileRequestBody.new( request=Operations::CreateFileRequestBody.new( - file=Operations::CreateFileRequestBodyFile.new( - content="`'$Z`(L/RH".encode(), - file="string", + file=Operations::CreateFileFile.new( + content="0xf10df1a3b9".encode(), + file_name="rap_national.mp4v", ), ), ) @@ -79,13 +79,13 @@ req = Shared::ExampleResource.new( "string", ], chocolates=.new[ - Shared::ExampleResourceChocolates.new( + Shared::Chocolates.new( description="Re-engineered asynchronous array", ), ], created_at=DateTime.iso8601('2021-10-25T14:40:21.269Z'), - enum_number=Shared::ExampleResourceEnumNumber::THREE, - enum_str=Shared::ExampleResourceEnumStr::TWO, + enum_number=Shared::EnumNumber::THREE, + enum_str=Shared::EnumStr::TWO, id="", map_of_integer=.new{ "Florida": 967142, diff --git a/ruby-client-sdk/docs/sdks/responsebodies/README.md b/ruby-client-sdk/docs/sdks/responsebodies/README.md index 156e22981..89d3ed329 100755 --- a/ruby-client-sdk/docs/sdks/responsebodies/README.md +++ b/ruby-client-sdk/docs/sdks/responsebodies/README.md @@ -1,5 +1,5 @@ # ResponseBodies -(*response_bodies*) + ## Overview @@ -43,7 +43,7 @@ req = ::.new( res = s.response_bodies.response_body_additional_properties_complex_numbers_post(req) -if ! res.response_body_additional_properties_complex_numbers_post_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -85,7 +85,7 @@ req = ::.new( res = s.response_bodies.response_body_additional_properties_date_post(req) -if ! res.response_body_additional_properties_date_post_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -135,8 +135,8 @@ req = ::.new( float32=1.1, int=1, int32=1, - int32_enum=Shared::SimpleObjectInt32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, - int_enum=Shared::SimpleObjectIntEnum::FIRST, + int32_enum=Shared::Int32Enum::ONE_HUNDRED_AND_EIGHTY_ONE, + int_enum=Shared::IntEnum::FIRST, int_opt_null=957109, num=1.1, num_opt_null=7193.38, @@ -148,7 +148,7 @@ req = ::.new( res = s.response_bodies.response_body_additional_properties_object_post(req) -if ! res.response_body_additional_properties_object_post_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -190,7 +190,7 @@ req = ::.new( res = s.response_bodies.response_body_additional_properties_post(req) -if ! res.response_body_additional_properties_post_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -442,7 +442,7 @@ req = Shared::ObjWithZeroValueComplexTypePtrs.new( res = s.response_bodies.response_body_zero_value_complex_type_ptrs_post(req) -if ! res.response_body_zero_value_complex_type_ptrs_post_200_application_json_object.nil? +if ! res.object.nil? # handle response end diff --git a/ruby-client-sdk/docs/sdks/retries/README.md b/ruby-client-sdk/docs/sdks/retries/README.md index 5a4f0114b..3c49ff005 100755 --- a/ruby-client-sdk/docs/sdks/retries/README.md +++ b/ruby-client-sdk/docs/sdks/retries/README.md @@ -1,5 +1,5 @@ # Retries -(*retries*) + ## Overview diff --git a/ruby-client-sdk/docs/sdks/sdk/README.md b/ruby-client-sdk/docs/sdks/sdk/README.md index 3e868e842..dcf98edf2 100755 --- a/ruby-client-sdk/docs/sdks/sdk/README.md +++ b/ruby-client-sdk/docs/sdks/sdk/README.md @@ -33,9 +33,9 @@ req = ::.new( request="string", ) -res = s.sdk.put_anything_ignored_generation(req) +res = s.put_anything_ignored_generation(req) -if ! res.put_anything_ignored_generation_200_application_json_object.nil? +if ! res.object.nil? # handle response end @@ -69,7 +69,7 @@ s.config_security( ) -res = s.sdk.response_body_json_get() +res = s.response_body_json_get() if ! res.http_bin_simple_json_object.nil? # handle response diff --git a/ruby-client-sdk/docs/sdks/second/README.md b/ruby-client-sdk/docs/sdks/second/README.md index 7f50f33de..47d2e9aaa 100755 --- a/ruby-client-sdk/docs/sdks/second/README.md +++ b/ruby-client-sdk/docs/sdks/second/README.md @@ -1,5 +1,5 @@ # Second -(*second*) + ### Available Operations diff --git a/ruby-client-sdk/docs/sdks/servers/README.md b/ruby-client-sdk/docs/sdks/servers/README.md index ce4143789..25a49ca3c 100755 --- a/ruby-client-sdk/docs/sdks/servers/README.md +++ b/ruby-client-sdk/docs/sdks/servers/README.md @@ -1,5 +1,5 @@ # Servers -(*servers*) + ## Overview diff --git a/ruby-client-sdk/docs/sdks/telemetry/README.md b/ruby-client-sdk/docs/sdks/telemetry/README.md index b78c7f28d..3d38ab040 100755 --- a/ruby-client-sdk/docs/sdks/telemetry/README.md +++ b/ruby-client-sdk/docs/sdks/telemetry/README.md @@ -1,5 +1,5 @@ # Telemetry -(*telemetry*) + ## Overview diff --git a/ruby-client-sdk/docs/sdks/unions/README.md b/ruby-client-sdk/docs/sdks/unions/README.md index 33b7c6573..d1f2df2c2 100755 --- a/ruby-client-sdk/docs/sdks/unions/README.md +++ b/ruby-client-sdk/docs/sdks/unions/README.md @@ -1,5 +1,5 @@ # Unions -(*unions*) + ## Overview @@ -122,7 +122,7 @@ s.config_security( req = Shared::NullableOneOfRefInObject.new( request=Shared::NullableOneOfRefInObject.new( nullable_one_of_one=Shared::TypedObject1.new( - type=Shared::TypedObject1Type::OBJ1, + type=Shared::Type::OBJ1, value="string", ), nullable_one_of_two="string", @@ -252,7 +252,7 @@ s.config_security( req = Shared::TypedObject1.new( request=Shared::TypedObject1.new( - type=Shared::TypedObject1Type::OBJ1, + type=Shared::Type::OBJ1, value="string", ), ) diff --git a/ruby-client-sdk/files.gen b/ruby-client-sdk/files.gen index a2dc2af10..a2dc50c2b 100755 --- a/ruby-client-sdk/files.gen +++ b/ruby-client-sdk/files.gen @@ -1,26 +1,26 @@ lib/sdk/sdkconfiguration.rb -lib/sdk/auth.rb -lib/sdk/authnew.rb -lib/sdk/documentation.rb +lib/sdk/generation.rb lib/sdk/errors.rb -lib/sdk/first.rb +lib/sdk/unions.rb lib/sdk/flattening.rb -lib/sdk/generation.rb lib/sdk/globals.rb +lib/sdk/parameters.rb lib/sdk/nest_first.rb lib/sdk/nested.rb lib/sdk/nested_first.rb lib/sdk/nested_second.rb -lib/sdk/pagination.rb -lib/sdk/parameters.rb lib/sdk/requestbodies.rb -lib/sdk/resource.rb lib/sdk/responsebodies.rb -lib/sdk/retries.rb -lib/sdk/second.rb lib/sdk/servers.rb lib/sdk/telemetry.rb -lib/sdk/unions.rb +lib/sdk/authnew.rb +lib/sdk/auth.rb +lib/sdk/documentation.rb +lib/sdk/resource.rb +lib/sdk/first.rb +lib/sdk/second.rb +lib/sdk/pagination.rb +lib/sdk/retries.rb lib/sdk/sdk.rb .rubocop.yml Gemfile @@ -68,35 +68,6 @@ sorbet/rbi/gems/yarp@0.13.0.rbi sorbet/tapioca/config.yml sorbet/tapioca/require.rb openapi.gemspec -lib/sdk/models/operations/apikeyauth.rb -lib/sdk/models/operations/apikeyauthglobal.rb -lib/sdk/models/operations/basicauth.rb -lib/sdk/models/operations/bearerauth.rb -lib/sdk/models/operations/globalbearerauth.rb -lib/sdk/models/operations/oauth2auth.rb -lib/sdk/models/operations/oauth2override.rb -lib/sdk/models/operations/openidconnectauth.rb -lib/sdk/models/operations/apikeyauthglobalnew.rb -lib/sdk/models/operations/authglobal.rb -lib/sdk/models/operations/basicauthnew.rb -lib/sdk/models/operations/multiplemixedoptionsauth.rb -lib/sdk/models/operations/multiplemixedschemeauth.rb -lib/sdk/models/operations/multipleoptionswithmixedschemesauth.rb -lib/sdk/models/operations/multipleoptionswithsimpleschemesauth.rb -lib/sdk/models/operations/multiplesimpleoptionsauth.rb -lib/sdk/models/operations/multiplesimpleschemeauth.rb -lib/sdk/models/operations/oauth2authnew.rb -lib/sdk/models/operations/openidconnectauthnew.rb -lib/sdk/models/operations/getdocumentationperlanguage.rb -lib/sdk/models/operations/connectionerrorget.rb -lib/sdk/models/operations/statusgeterror.rb -lib/sdk/models/operations/statusgetxspeakeasyerrors.rb -lib/sdk/models/operations/groupfirstget.rb -lib/sdk/models/operations/componentbodyandparamconflict.rb -lib/sdk/models/operations/componentbodyandparamnoconflict.rb -lib/sdk/models/operations/conflictingparams.rb -lib/sdk/models/operations/inlinebodyandparamconflict.rb -lib/sdk/models/operations/inlinebodyandparamnoconflict.rb lib/sdk/models/operations/anchortypesget.rb lib/sdk/models/operations/arraycircularreferenceget.rb lib/sdk/models/operations/circularreferenceget.rb @@ -117,18 +88,31 @@ lib/sdk/models/operations/objectcircularreferenceget.rb lib/sdk/models/operations/oneofcircularreferenceget.rb lib/sdk/models/operations/typedparametergenerationget.rb lib/sdk/models/operations/usageexamplepost.rb +lib/sdk/models/operations/connectionerrorget.rb +lib/sdk/models/operations/statusgeterror.rb +lib/sdk/models/operations/statusgetxspeakeasyerrors.rb +lib/sdk/models/operations/flattenedtypedobjectpost.rb +lib/sdk/models/operations/mixedtypeoneofpost.rb +lib/sdk/models/operations/nullableoneofrefinobjectpost.rb +lib/sdk/models/operations/nullableoneofschemapost.rb +lib/sdk/models/operations/nullableoneoftypeinobjectpost.rb +lib/sdk/models/operations/nullabletypedobjectpost.rb +lib/sdk/models/operations/primitivetypeoneofpost.rb +lib/sdk/models/operations/stronglytypedoneofpost.rb +lib/sdk/models/operations/typedobjectnullableoneofpost.rb +lib/sdk/models/operations/typedobjectoneofpost.rb +lib/sdk/models/operations/unionbigintdecimal.rb +lib/sdk/models/operations/uniondatenull.rb +lib/sdk/models/operations/uniondatetimebigint.rb +lib/sdk/models/operations/uniondatetimenull.rb +lib/sdk/models/operations/weaklytypedoneofpost.rb +lib/sdk/models/operations/componentbodyandparamconflict.rb +lib/sdk/models/operations/componentbodyandparamnoconflict.rb +lib/sdk/models/operations/conflictingparams.rb +lib/sdk/models/operations/inlinebodyandparamconflict.rb +lib/sdk/models/operations/inlinebodyandparamnoconflict.rb lib/sdk/models/operations/globalpathparameterget.rb lib/sdk/models/operations/globalsqueryparameterget.rb -lib/sdk/models/operations/nestfirstget.rb -lib/sdk/models/operations/nestedget.rb -lib/sdk/models/operations/nestedfirstget.rb -lib/sdk/models/operations/nestedsecondget.rb -lib/sdk/models/operations/paginationcursorbody.rb -lib/sdk/models/operations/paginationcursorparams.rb -lib/sdk/models/operations/paginationlimitoffsetoffsetbody.rb -lib/sdk/models/operations/paginationlimitoffsetoffsetparams.rb -lib/sdk/models/operations/paginationlimitoffsetpagebody.rb -lib/sdk/models/operations/paginationlimitoffsetpageparams.rb lib/sdk/models/operations/deepobjectqueryparamsmap.rb lib/sdk/models/operations/deepobjectqueryparamsobject.rb lib/sdk/models/operations/duplicateparam.rb @@ -152,6 +136,10 @@ lib/sdk/models/operations/simplepathparameterarrays.rb lib/sdk/models/operations/simplepathparametermaps.rb lib/sdk/models/operations/simplepathparameterobjects.rb lib/sdk/models/operations/simplepathparameterprimitives.rb +lib/sdk/models/operations/nestfirstget.rb +lib/sdk/models/operations/nestedget.rb +lib/sdk/models/operations/nestedfirstget.rb +lib/sdk/models/operations/nestedsecondget.rb lib/sdk/models/operations/nullableobjectpost.rb lib/sdk/models/operations/nullablerequiredemptyobjectpost.rb lib/sdk/models/operations/nullablerequiredpropertypost.rb @@ -233,11 +221,6 @@ lib/sdk/models/operations/requestbodyreadwriteonlyunion.rb lib/sdk/models/operations/requestbodywriteonly.rb lib/sdk/models/operations/requestbodywriteonlyoutput.rb lib/sdk/models/operations/requestbodywriteonlyunion.rb -lib/sdk/models/operations/createfile.rb -lib/sdk/models/operations/createresource.rb -lib/sdk/models/operations/deleteresource.rb -lib/sdk/models/operations/getresource.rb -lib/sdk/models/operations/updateresource.rb lib/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.rb lib/sdk/models/operations/responsebodyadditionalpropertiesdatepost.rb lib/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.rb @@ -249,8 +232,6 @@ lib/sdk/models/operations/responsebodyreadonly.rb lib/sdk/models/operations/responsebodystringget.rb lib/sdk/models/operations/responsebodyxmlget.rb lib/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.rb -lib/sdk/models/operations/retriesget.rb -lib/sdk/models/operations/groupsecondget.rb lib/sdk/models/operations/selectglobalserver.rb lib/sdk/models/operations/selectserverwithid.rb lib/sdk/models/operations/serverwithprotocoltemplate.rb @@ -259,27 +240,42 @@ lib/sdk/models/operations/serverwithtemplatesglobal.rb lib/sdk/models/operations/serversbyidwithtemplates.rb lib/sdk/models/operations/telemetryspeakeasyuseragentget.rb lib/sdk/models/operations/telemetryuseragentget.rb -lib/sdk/models/operations/flattenedtypedobjectpost.rb -lib/sdk/models/operations/mixedtypeoneofpost.rb -lib/sdk/models/operations/nullableoneofrefinobjectpost.rb -lib/sdk/models/operations/nullableoneofschemapost.rb -lib/sdk/models/operations/nullableoneoftypeinobjectpost.rb -lib/sdk/models/operations/nullabletypedobjectpost.rb -lib/sdk/models/operations/primitivetypeoneofpost.rb -lib/sdk/models/operations/stronglytypedoneofpost.rb -lib/sdk/models/operations/typedobjectnullableoneofpost.rb -lib/sdk/models/operations/typedobjectoneofpost.rb -lib/sdk/models/operations/unionbigintdecimal.rb -lib/sdk/models/operations/uniondatenull.rb -lib/sdk/models/operations/uniondatetimebigint.rb -lib/sdk/models/operations/uniondatetimenull.rb -lib/sdk/models/operations/weaklytypedoneofpost.rb +lib/sdk/models/operations/apikeyauthglobalnew.rb +lib/sdk/models/operations/authglobal.rb +lib/sdk/models/operations/basicauthnew.rb +lib/sdk/models/operations/multiplemixedoptionsauth.rb +lib/sdk/models/operations/multiplemixedschemeauth.rb +lib/sdk/models/operations/multipleoptionswithmixedschemesauth.rb +lib/sdk/models/operations/multipleoptionswithsimpleschemesauth.rb +lib/sdk/models/operations/multiplesimpleoptionsauth.rb +lib/sdk/models/operations/multiplesimpleschemeauth.rb +lib/sdk/models/operations/oauth2authnew.rb +lib/sdk/models/operations/openidconnectauthnew.rb +lib/sdk/models/operations/apikeyauth.rb +lib/sdk/models/operations/apikeyauthglobal.rb +lib/sdk/models/operations/basicauth.rb +lib/sdk/models/operations/bearerauth.rb +lib/sdk/models/operations/globalbearerauth.rb +lib/sdk/models/operations/oauth2auth.rb +lib/sdk/models/operations/oauth2override.rb +lib/sdk/models/operations/openidconnectauth.rb +lib/sdk/models/operations/getdocumentationperlanguage.rb +lib/sdk/models/operations/createfile.rb +lib/sdk/models/operations/createresource.rb +lib/sdk/models/operations/deleteresource.rb +lib/sdk/models/operations/getresource.rb +lib/sdk/models/operations/updateresource.rb +lib/sdk/models/operations/groupfirstget.rb +lib/sdk/models/operations/groupsecondget.rb +lib/sdk/models/operations/paginationcursorbody.rb +lib/sdk/models/operations/paginationcursorparams.rb +lib/sdk/models/operations/paginationlimitoffsetoffsetbody.rb +lib/sdk/models/operations/paginationlimitoffsetoffsetparams.rb +lib/sdk/models/operations/paginationlimitoffsetpagebody.rb +lib/sdk/models/operations/paginationlimitoffsetpageparams.rb +lib/sdk/models/operations/retriesget.rb lib/sdk/models/operations/put_anything_ignoredgeneration.rb lib/sdk/models/operations/responsebodyjsonget.rb -lib/sdk/models/shared/authservicerequestbody.rb -lib/sdk/models/shared/security.rb -lib/sdk/models/shared/errortype.rb -lib/sdk/models/shared/error.rb lib/sdk/models/shared/simpleobject.rb lib/sdk/models/shared/enum.rb lib/sdk/models/shared/arraycircularreferenceobject.rb @@ -292,7 +288,11 @@ lib/sdk/models/shared/objectcircularreferenceobject.rb lib/sdk/models/shared/oneofcircularreferenceobject.rb lib/sdk/models/shared/fakerstrings.rb lib/sdk/models/shared/fakerformattedstrings.rb -lib/sdk/models/shared/limitoffsetconfig.rb +lib/sdk/models/shared/errortype.rb +lib/sdk/models/shared/error.rb +lib/sdk/models/shared/nullableoneofrefinobject.rb +lib/sdk/models/shared/typedobject1.rb +lib/sdk/models/shared/nullableoneoftypeinobject.rb lib/sdk/models/shared/refqueryparamobjexploded.rb lib/sdk/models/shared/refqueryparamobj.rb lib/sdk/models/shared/deepobject.rb @@ -309,95 +309,19 @@ lib/sdk/models/shared/defaultsandconsts.rb lib/sdk/models/shared/readwriteobject.rb lib/sdk/models/shared/readonlyobject.rb lib/sdk/models/shared/writeonlyobject.rb +lib/sdk/models/shared/objwithzerovaluecomplextypeptrs.rb +lib/sdk/models/shared/authservicerequestbody.rb +lib/sdk/models/shared/security.rb lib/sdk/models/shared/fileresource.rb lib/sdk/models/shared/exampleresource.rb -lib/sdk/models/shared/typedobject1.rb -lib/sdk/models/shared/objwithzerovaluecomplextypeptrs.rb -lib/sdk/models/shared/nullableoneofrefinobject.rb -lib/sdk/models/shared/nullableoneoftypeinobject.rb +lib/sdk/models/shared/limitoffsetconfig.rb lib/sdk/models/shared/alloftoallof.rb lib/sdk/models/shared/oneofgenerationstresstest.rb lib/sdk/models/shared/unsupportedenums.rb lib/sdk/models/callbacks/ignoredgenerationget.rb lib/openapi.rb USAGE.md -docs/models/operations/apikeyauthsecurity.md -docs/models/operations/apikeyauthtoken.md -docs/models/operations/apikeyauthresponse.md -docs/models/operations/apikeyauthglobaltoken.md -docs/models/operations/apikeyauthglobalresponse.md -docs/models/operations/basicauthsecurity.md -docs/models/operations/basicauthrequest.md -docs/models/operations/basicauthuser.md -docs/models/operations/basicauthresponse.md -docs/models/operations/bearerauthsecurity.md -docs/models/operations/bearerauthtoken.md -docs/models/operations/bearerauthresponse.md -docs/models/operations/globalbearerauthtoken.md -docs/models/operations/globalbearerauthresponse.md -docs/models/operations/oauth2authsecurity.md -docs/models/operations/oauth2authtoken.md -docs/models/operations/oauth2authresponse.md -docs/models/operations/oauth2overridesecurity.md -docs/models/operations/oauth2overriderequest.md -docs/models/operations/oauth2overridetoken.md -docs/models/operations/oauth2overrideresponse.md -docs/models/operations/openidconnectauthsecurity.md -docs/models/operations/openidconnectauthtoken.md -docs/models/operations/openidconnectauthresponse.md -docs/models/operations/apikeyauthglobalnewresponse.md -docs/models/operations/authglobalresponse.md -docs/models/operations/basicauthnewsecurity.md -docs/models/operations/basicauthnewresponse.md -docs/models/operations/multiplemixedoptionsauthsecurity.md -docs/models/operations/multiplemixedoptionsauthresponse.md -docs/models/operations/multiplemixedschemeauthsecurity.md -docs/models/operations/multiplemixedschemeauthresponse.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md -docs/models/operations/multipleoptionswithmixedschemesauthresponse.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md -docs/models/operations/multipleoptionswithsimpleschemesauthresponse.md -docs/models/operations/multiplesimpleoptionsauthsecurity.md -docs/models/operations/multiplesimpleoptionsauthresponse.md -docs/models/operations/multiplesimpleschemeauthsecurity.md -docs/models/operations/multiplesimpleschemeauthresponse.md -docs/models/operations/oauth2authnewsecurity.md -docs/models/operations/oauth2authnewresponse.md -docs/models/operations/openidconnectauthnewsecurity.md -docs/models/operations/openidconnectauthnewresponse.md -docs/models/operations/getdocumentationperlanguagerequest.md -docs/models/operations/getdocumentationperlanguageresponse.md -docs/models/operations/connectionerrorgetresponse.md -docs/models/operations/statusgeterrorrequest.md -docs/models/operations/statusgeterrorresponse.md -docs/models/operations/statusgetxspeakeasyerrorsrequest.md -docs/models/operations/statusgetxspeakeasyerrors501applicationjson.md -docs/models/operations/statusgetxspeakeasyerrorsresponse.md -docs/models/operations/groupfirstgetresponse.md -docs/models/operations/componentbodyandparamconflictrequest.md -docs/models/operations/componentbodyandparamconflictres.md -docs/models/operations/componentbodyandparamconflictresponse.md -docs/models/operations/componentbodyandparamnoconflictrequest.md -docs/models/operations/componentbodyandparamnoconflictres.md -docs/models/operations/componentbodyandparamnoconflictresponse.md -docs/models/operations/conflictingparamsrequest.md -docs/models/operations/conflictingparamsres.md -docs/models/operations/conflictingparamsresponse.md -docs/models/operations/inlinebodyandparamconflictrequestbody.md -docs/models/operations/inlinebodyandparamconflictrequest.md -docs/models/operations/inlinebodyandparamconflictresjson.md -docs/models/operations/inlinebodyandparamconflictres.md -docs/models/operations/inlinebodyandparamconflictresponse.md -docs/models/operations/inlinebodyandparamnoconflictrequestbody.md -docs/models/operations/inlinebodyandparamnoconflictrequest.md -docs/models/operations/inlinebodyandparamnoconflictresjson.md -docs/models/operations/inlinebodyandparamnoconflictres.md -docs/models/operations/inlinebodyandparamnoconflictresponse.md -docs/models/operations/typefromanchor.md +docs/models/operations/anchortypesgettypefromanchor.md docs/models/operations/anchortypesgetresponse.md docs/models/operations/arraycircularreferencegetresponse.md docs/models/operations/circularreferencegetresponse.md @@ -408,7 +332,7 @@ docs/models/operations/datetimeparamwithdefaultresponse.md docs/models/operations/decimalparamwithdefaultrequest.md docs/models/operations/decimalparamwithdefaultresponse.md docs/models/operations/deprecatedfieldinschemapostresponse.md -docs/models/operations/deprecatedobjectinschemaget200applicationjson.md +docs/models/operations/deprecatedobjectinschemagetresponsebody.md docs/models/operations/deprecatedobjectinschemagetresponse.md docs/models/operations/deprecatedoperationnocommentsgetrequest.md docs/models/operations/deprecatedoperationnocommentsgetresponse.md @@ -416,123 +340,158 @@ docs/models/operations/deprecatedoperationwithcommentsgetrequest.md docs/models/operations/deprecatedoperationwithcommentsgetresponse.md docs/models/operations/emptyobjectgetrequest.md docs/models/operations/emptyobjectgetresponse.md -docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md +docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md docs/models/operations/emptyresponseobjectwithcommentgetresponse.md -docs/models/operations/getglobalnameoverride200applicationjson.md +docs/models/operations/getglobalnameoverrideresponsebody.md docs/models/operations/getglobalnameoverrideresponse.md -docs/models/operations/ignoredgenerationget200applicationjson.md +docs/models/operations/ignoredgenerationgetresponsebody.md docs/models/operations/ignoredgenerationgetresponse.md -docs/models/operations/ignorespostapplicationjson.md +docs/models/operations/ignorespostrequestbody.md docs/models/operations/ignorespostrequest.md docs/models/operations/ignorespostresponse.md -docs/models/operations/nameoverridegetenumnameoverride.md +docs/models/operations/enumnameoverride.md docs/models/operations/nameoverridegetrequest.md -docs/models/operations/overriddenresponse.md +docs/models/operations/nameoverridegetoverriddenresponse.md docs/models/operations/nameoverridegetresponse.md docs/models/operations/objectcircularreferencegetresponse.md docs/models/operations/oneofcircularreferencegetresponse.md -docs/models/operations/typedparametergenerationgetobj.md +docs/models/operations/obj.md docs/models/operations/typedparametergenerationgetrequest.md docs/models/operations/typedparametergenerationgetresponse.md docs/models/operations/usageexamplepostsecurity.md docs/models/operations/usageexamplepostrequestbody.md -docs/models/operations/usageexamplepostenumparameter.md -docs/models/operations/usageexamplepostoptenumparameter.md +docs/models/operations/enumparameter.md +docs/models/operations/optenumparameter.md docs/models/operations/usageexamplepostrequest.md -docs/models/operations/usageexamplepost200applicationjsonjson.md -docs/models/operations/usageexamplepost200applicationjson.md +docs/models/operations/usageexamplepostjson.md +docs/models/operations/usageexamplepostresponsebody.md docs/models/operations/usageexamplepostresponse.md +docs/models/operations/connectionerrorgetresponse.md +docs/models/operations/statusgeterrorrequest.md +docs/models/operations/statusgeterrorresponse.md +docs/models/operations/statusgetxspeakeasyerrorsrequest.md +docs/models/operations/statusgetxspeakeasyerrorsresponsebody.md +docs/models/operations/statusgetxspeakeasyerrorsresponse.md +docs/models/operations/flattenedtypedobjectpostres.md +docs/models/operations/flattenedtypedobjectpostresponse.md +docs/models/operations/mixedtypeoneofpostres.md +docs/models/operations/mixedtypeoneofpostresponse.md +docs/models/operations/nullableoneofrefinobjectpostres.md +docs/models/operations/nullableoneofrefinobjectpostresponse.md +docs/models/operations/nullableoneofschemapostres.md +docs/models/operations/nullableoneofschemapostresponse.md +docs/models/operations/nullableoneoftypeinobjectpostres.md +docs/models/operations/nullableoneoftypeinobjectpostresponse.md +docs/models/operations/nullabletypedobjectpostres.md +docs/models/operations/nullabletypedobjectpostresponse.md +docs/models/operations/primitivetypeoneofpostres.md +docs/models/operations/primitivetypeoneofpostresponse.md +docs/models/operations/stronglytypedoneofpostres.md +docs/models/operations/stronglytypedoneofpostresponse.md +docs/models/operations/typedobjectnullableoneofpostres.md +docs/models/operations/typedobjectnullableoneofpostresponse.md +docs/models/operations/typedobjectoneofpostres.md +docs/models/operations/typedobjectoneofpostresponse.md +docs/models/operations/unionbigintdecimalres.md +docs/models/operations/unionbigintdecimalresponse.md +docs/models/operations/uniondatenullres.md +docs/models/operations/uniondatenullresponse.md +docs/models/operations/uniondatetimebigintres.md +docs/models/operations/uniondatetimebigintresponse.md +docs/models/operations/uniondatetimenullres.md +docs/models/operations/uniondatetimenullresponse.md +docs/models/operations/weaklytypedoneofpostres.md +docs/models/operations/weaklytypedoneofpostresponse.md +docs/models/operations/componentbodyandparamconflictrequest.md +docs/models/operations/componentbodyandparamconflictres.md +docs/models/operations/componentbodyandparamconflictresponse.md +docs/models/operations/componentbodyandparamnoconflictrequest.md +docs/models/operations/componentbodyandparamnoconflictres.md +docs/models/operations/componentbodyandparamnoconflictresponse.md +docs/models/operations/conflictingparamsrequest.md +docs/models/operations/conflictingparamsres.md +docs/models/operations/conflictingparamsresponse.md +docs/models/operations/inlinebodyandparamconflictrequestbody.md +docs/models/operations/inlinebodyandparamconflictrequest.md +docs/models/operations/json.md +docs/models/operations/inlinebodyandparamconflictres.md +docs/models/operations/inlinebodyandparamconflictresponse.md +docs/models/operations/inlinebodyandparamnoconflictrequestbody.md +docs/models/operations/inlinebodyandparamnoconflictrequest.md +docs/models/operations/inlinebodyandparamnoconflictjson.md +docs/models/operations/inlinebodyandparamnoconflictres.md +docs/models/operations/inlinebodyandparamnoconflictresponse.md docs/models/operations/globalpathparametergetrequest.md docs/models/operations/globalpathparametergetres.md docs/models/operations/globalpathparametergetresponse.md docs/models/operations/globalsqueryparametergetrequest.md -docs/models/operations/globalsqueryparametergetresargs.md +docs/models/operations/args.md docs/models/operations/globalsqueryparametergetres.md docs/models/operations/globalsqueryparametergetresponse.md -docs/models/operations/nestfirstgetresponse.md -docs/models/operations/nestedgetresponse.md -docs/models/operations/nestedfirstgetresponse.md -docs/models/operations/nestedsecondgetresponse.md -docs/models/operations/paginationcursorbodyrequestbody.md -docs/models/operations/paginationcursorbodyres.md -docs/models/operations/paginationcursorbodyresponse.md -docs/models/operations/paginationcursorparamsrequest.md -docs/models/operations/paginationcursorparamsres.md -docs/models/operations/paginationcursorparamsresponse.md -docs/models/operations/paginationlimitoffsetoffsetbodyres.md -docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md -docs/models/operations/paginationlimitoffsetoffsetparamsrequest.md -docs/models/operations/paginationlimitoffsetoffsetparamsres.md -docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md -docs/models/operations/paginationlimitoffsetpagebodyres.md -docs/models/operations/paginationlimitoffsetpagebodyresponse.md -docs/models/operations/paginationlimitoffsetpageparamsrequest.md -docs/models/operations/paginationlimitoffsetpageparamsres.md -docs/models/operations/paginationlimitoffsetpageparamsresponse.md docs/models/operations/deepobjectqueryparamsmaprequest.md docs/models/operations/deepobjectqueryparamsmapres.md docs/models/operations/deepobjectqueryparamsmapresponse.md -docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md +docs/models/operations/objarrparam.md docs/models/operations/deepobjectqueryparamsobjectrequest.md -docs/models/operations/deepobjectqueryparamsobjectresargs.md +docs/models/operations/deepobjectqueryparamsobjectargs.md docs/models/operations/deepobjectqueryparamsobjectres.md docs/models/operations/deepobjectqueryparamsobjectresponse.md docs/models/operations/duplicateparamrequest.md docs/models/operations/duplicateparamduplicateparamresponse.md docs/models/operations/duplicateparamresponse.md docs/models/operations/formqueryparamsarrayrequest.md -docs/models/operations/formqueryparamsarrayresargs.md +docs/models/operations/formqueryparamsarrayargs.md docs/models/operations/formqueryparamsarrayres.md docs/models/operations/formqueryparamsarrayresponse.md -docs/models/operations/formqueryparamscamelobjectobjparam.md -docs/models/operations/formqueryparamscamelobjectobjparamexploded.md +docs/models/operations/objparam.md +docs/models/operations/objparamexploded.md docs/models/operations/formqueryparamscamelobjectrequest.md -docs/models/operations/formqueryparamscamelobjectresargs.md +docs/models/operations/formqueryparamscamelobjectargs.md docs/models/operations/formqueryparamscamelobjectres.md docs/models/operations/formqueryparamscamelobjectresponse.md docs/models/operations/formqueryparamsmaprequest.md docs/models/operations/formqueryparamsmapres.md docs/models/operations/formqueryparamsmapresponse.md docs/models/operations/formqueryparamsobjectrequest.md -docs/models/operations/formqueryparamsobjectresargs.md +docs/models/operations/formqueryparamsobjectargs.md docs/models/operations/formqueryparamsobjectres.md docs/models/operations/formqueryparamsobjectresponse.md docs/models/operations/formqueryparamsprimitiverequest.md -docs/models/operations/formqueryparamsprimitiveresargs.md +docs/models/operations/formqueryparamsprimitiveargs.md docs/models/operations/formqueryparamsprimitiveres.md docs/models/operations/formqueryparamsprimitiveresponse.md docs/models/operations/formqueryparamsrefparamobjectrequest.md -docs/models/operations/formqueryparamsrefparamobjectresargs.md +docs/models/operations/formqueryparamsrefparamobjectargs.md docs/models/operations/formqueryparamsrefparamobjectres.md docs/models/operations/formqueryparamsrefparamobjectresponse.md docs/models/operations/headerparamsarrayrequest.md -docs/models/operations/headerparamsarrayresheaders.md +docs/models/operations/headers.md docs/models/operations/headerparamsarrayres.md docs/models/operations/headerparamsarrayresponse.md docs/models/operations/headerparamsmaprequest.md -docs/models/operations/headerparamsmapresheaders.md +docs/models/operations/headerparamsmapheaders.md docs/models/operations/headerparamsmapres.md docs/models/operations/headerparamsmapresponse.md docs/models/operations/headerparamsobjectrequest.md -docs/models/operations/headerparamsobjectresheaders.md +docs/models/operations/headerparamsobjectheaders.md docs/models/operations/headerparamsobjectres.md docs/models/operations/headerparamsobjectresponse.md docs/models/operations/headerparamsprimitiverequest.md -docs/models/operations/headerparamsprimitiveresheaders.md +docs/models/operations/headerparamsprimitiveheaders.md docs/models/operations/headerparamsprimitiveres.md docs/models/operations/headerparamsprimitiveresponse.md docs/models/operations/jsonqueryparamsobjectrequest.md -docs/models/operations/jsonqueryparamsobjectresargs.md +docs/models/operations/jsonqueryparamsobjectargs.md docs/models/operations/jsonqueryparamsobjectres.md docs/models/operations/jsonqueryparamsobjectresponse.md docs/models/operations/mixedparameterscamelcaserequest.md -docs/models/operations/mixedparameterscamelcaseresargs.md -docs/models/operations/mixedparameterscamelcaseresheaders.md +docs/models/operations/mixedparameterscamelcaseargs.md +docs/models/operations/mixedparameterscamelcaseheaders.md docs/models/operations/mixedparameterscamelcaseres.md docs/models/operations/mixedparameterscamelcaseresponse.md docs/models/operations/mixedparametersprimitivesrequest.md -docs/models/operations/mixedparametersprimitivesresargs.md -docs/models/operations/mixedparametersprimitivesresheaders.md +docs/models/operations/mixedparametersprimitivesargs.md +docs/models/operations/mixedparametersprimitivesheaders.md docs/models/operations/mixedparametersprimitivesres.md docs/models/operations/mixedparametersprimitivesresponse.md docs/models/operations/mixedqueryparamsrequest.md @@ -542,7 +501,7 @@ docs/models/operations/pathparameterjsonrequest.md docs/models/operations/pathparameterjsonres.md docs/models/operations/pathparameterjsonresponse.md docs/models/operations/pipedelimitedqueryparamsarrayrequest.md -docs/models/operations/pipedelimitedqueryparamsarrayresargs.md +docs/models/operations/pipedelimitedqueryparamsarrayargs.md docs/models/operations/pipedelimitedqueryparamsarrayres.md docs/models/operations/pipedelimitedqueryparamsarrayresponse.md docs/models/operations/simplepathparameterarraysrequest.md @@ -557,14 +516,18 @@ docs/models/operations/simplepathparameterobjectsresponse.md docs/models/operations/simplepathparameterprimitivesrequest.md docs/models/operations/simplepathparameterprimitivesres.md docs/models/operations/simplepathparameterprimitivesresponse.md +docs/models/operations/nestfirstgetresponse.md +docs/models/operations/nestedgetresponse.md +docs/models/operations/nestedfirstgetresponse.md +docs/models/operations/nestedsecondgetresponse.md docs/models/operations/nullableobjectpostres.md docs/models/operations/nullableobjectpostresponse.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md +docs/models/operations/nullableoptionalobj.md +docs/models/operations/nullablerequiredobj.md +docs/models/operations/requiredobj.md docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md docs/models/operations/nullablerequiredemptyobjectpostresponse.md -docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md +docs/models/operations/nullablerequiredenum.md docs/models/operations/nullablerequiredpropertypostrequestbody.md docs/models/operations/nullablerequiredpropertypostresponse.md docs/models/operations/nullablerequiredsharedobjectpostrequestbody.md @@ -600,123 +563,123 @@ docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseres.md docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md docs/models/operations/requestbodypostcomplexnumbertypesrequest.md -docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md +docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md docs/models/operations/requestbodypostcomplexnumbertypesresponse.md -docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md +docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md docs/models/operations/requestbodypostdefaultsandconstsresponse.md -docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md -docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md +docs/models/operations/empty.md +docs/models/operations/emptywithemptyproperties.md docs/models/operations/requestbodypostemptyobjectrequestbody.md -docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md -docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md -docs/models/operations/requestbodypostemptyobject200applicationjson.md +docs/models/operations/requestbodypostemptyobjectempty.md +docs/models/operations/emptyrespwithemptyproperies.md +docs/models/operations/requestbodypostemptyobjectresponsebody.md docs/models/operations/requestbodypostemptyobjectresponse.md -docs/models/operations/requestbodypostformdeepresform.md +docs/models/operations/form.md docs/models/operations/requestbodypostformdeepres.md docs/models/operations/requestbodypostformdeepresponse.md docs/models/operations/requestbodypostformmapprimitiveres.md docs/models/operations/requestbodypostformmapprimitiveresponse.md -docs/models/operations/requestbodypostformsimpleresform.md -docs/models/operations/requestbodypostformsimpleresheaders.md +docs/models/operations/requestbodypostformsimpleform.md +docs/models/operations/requestbodypostformsimpleheaders.md docs/models/operations/requestbodypostformsimpleres.md docs/models/operations/requestbodypostformsimpleresponse.md -docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md -docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md -docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md -docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md docs/models/operations/requestbodypostjsondatatypesbigintresponse.md -docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md -docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md -docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md docs/models/operations/requestbodypostjsondatatypesdateresponse.md -docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md -docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md -docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md -docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md docs/models/operations/requestbodypostjsondatatypesfloat32response.md -docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesint32responsebody.md docs/models/operations/requestbodypostjsondatatypesint32response.md -docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md docs/models/operations/requestbodypostjsondatatypesintegerresponse.md -docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md -docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md -docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md -docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md docs/models/operations/requestbodypostjsondatatypesnumberresponse.md -docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md docs/models/operations/requestbodypostjsondatatypesstringresponse.md docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredres.md docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md -docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredres.md docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md +docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitformres.md docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitjsonres.md docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md +docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartres.md docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md -docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md -docs/models/operations/requestbodypostnullarray200applicationjson.md +docs/models/operations/requestbodypostnullarrayresponsebody.md docs/models/operations/requestbodypostnullarrayresponse.md -docs/models/operations/requestbodypostnulldictionary200applicationjson.md +docs/models/operations/requestbodypostnulldictionaryresponsebody.md docs/models/operations/requestbodypostnulldictionaryresponse.md -docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md -docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md docs/models/operations/requestbodyputbytesres.md docs/models/operations/requestbodyputbytesresponse.md docs/models/operations/requestbodyputbyteswithparamsrequest.md -docs/models/operations/requestbodyputbyteswithparamsresargs.md +docs/models/operations/requestbodyputbyteswithparamsargs.md docs/models/operations/requestbodyputbyteswithparamsres.md docs/models/operations/requestbodyputbyteswithparamsresponse.md -docs/models/operations/requestbodyputmultipartdeepresform.md +docs/models/operations/requestbodyputmultipartdeepform.md docs/models/operations/requestbodyputmultipartdeepres.md docs/models/operations/requestbodyputmultipartdeepresponse.md -docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md +docs/models/operations/differentfilename.md docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md docs/models/operations/requestbodyputmultipartdifferentfilenameres.md docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md -docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md +docs/models/operations/file.md docs/models/operations/requestbodyputmultipartfilerequestbody.md docs/models/operations/requestbodyputmultipartfileres.md docs/models/operations/requestbodyputmultipartfileresponse.md -docs/models/operations/requestbodyputmultipartsimpleresform.md -docs/models/operations/requestbodyputmultipartsimpleresheaders.md +docs/models/operations/requestbodyputmultipartsimpleform.md +docs/models/operations/requestbodyputmultipartsimpleheaders.md docs/models/operations/requestbodyputmultipartsimpleres.md docs/models/operations/requestbodyputmultipartsimpleresponse.md docs/models/operations/requestbodyputstringres.md docs/models/operations/requestbodyputstringresponse.md docs/models/operations/requestbodyputstringwithparamsrequest.md -docs/models/operations/requestbodyputstringwithparamsresargs.md +docs/models/operations/requestbodyputstringwithparamsargs.md docs/models/operations/requestbodyputstringwithparamsres.md docs/models/operations/requestbodyputstringwithparamsresponse.md docs/models/operations/requestbodyreadandwriteresponse.md @@ -726,23 +689,13 @@ docs/models/operations/requestbodyreadwriteonlyunionresponse.md docs/models/operations/requestbodywriteonlyresponse.md docs/models/operations/requestbodywriteonlyoutputresponse.md docs/models/operations/requestbodywriteonlyunionresponse.md -docs/models/operations/createfilerequestbodyfile.md -docs/models/operations/createfilerequestbody.md -docs/models/operations/createfileresponse.md -docs/models/operations/createresourceresponse.md -docs/models/operations/deleteresourcerequest.md -docs/models/operations/deleteresourceresponse.md -docs/models/operations/getresourcerequest.md -docs/models/operations/getresourceresponse.md -docs/models/operations/updateresourcerequest.md -docs/models/operations/updateresourceresponse.md -docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md -docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md -docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md -docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md docs/models/operations/responsebodyadditionalpropertiespostresponse.md docs/models/operations/responsebodybytesgetresponse.md docs/models/operations/responsebodyemptywithheadersrequest.md @@ -751,12 +704,8 @@ docs/models/operations/responsebodyoptionalgetresponse.md docs/models/operations/responsebodyreadonlyresponse.md docs/models/operations/responsebodystringgetresponse.md docs/models/operations/responsebodyxmlgetresponse.md -docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md +docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md -docs/models/operations/retriesgetrequest.md -docs/models/operations/retriesgetretries.md -docs/models/operations/retriesgetresponse.md -docs/models/operations/groupsecondgetresponse.md docs/models/operations/selectglobalserverresponse.md docs/models/operations/selectserverwithidresponse.md docs/models/operations/serverwithprotocoltemplateresponse.md @@ -768,70 +717,119 @@ docs/models/operations/telemetryspeakeasyuseragentgetres.md docs/models/operations/telemetryspeakeasyuseragentgetresponse.md docs/models/operations/telemetryuseragentgetres.md docs/models/operations/telemetryuseragentgetresponse.md -docs/models/operations/flattenedtypedobjectpostres.md -docs/models/operations/flattenedtypedobjectpostresponse.md -docs/models/operations/mixedtypeoneofpostres.md -docs/models/operations/mixedtypeoneofpostresponse.md -docs/models/operations/nullableoneofrefinobjectpostres.md -docs/models/operations/nullableoneofrefinobjectpostresponse.md -docs/models/operations/nullableoneofschemapostres.md -docs/models/operations/nullableoneofschemapostresponse.md -docs/models/operations/nullableoneoftypeinobjectpostres.md -docs/models/operations/nullableoneoftypeinobjectpostresponse.md -docs/models/operations/nullabletypedobjectpostres.md -docs/models/operations/nullabletypedobjectpostresponse.md -docs/models/operations/primitivetypeoneofpostres.md -docs/models/operations/primitivetypeoneofpostresponse.md -docs/models/operations/stronglytypedoneofpostres.md -docs/models/operations/stronglytypedoneofpostresponse.md -docs/models/operations/typedobjectnullableoneofpostres.md -docs/models/operations/typedobjectnullableoneofpostresponse.md -docs/models/operations/typedobjectoneofpostres.md -docs/models/operations/typedobjectoneofpostresponse.md -docs/models/operations/unionbigintdecimalres.md -docs/models/operations/unionbigintdecimalresponse.md -docs/models/operations/uniondatenullres.md -docs/models/operations/uniondatenullresponse.md -docs/models/operations/uniondatetimebigintres.md -docs/models/operations/uniondatetimebigintresponse.md -docs/models/operations/uniondatetimenullres.md -docs/models/operations/uniondatetimenullresponse.md -docs/models/operations/weaklytypedoneofpostres.md -docs/models/operations/weaklytypedoneofpostresponse.md -docs/models/operations/putanythingignoredgeneration200applicationjson.md +docs/models/operations/apikeyauthglobalnewresponse.md +docs/models/operations/authglobalresponse.md +docs/models/operations/basicauthnewsecurity.md +docs/models/operations/basicauthnewresponse.md +docs/models/operations/multiplemixedoptionsauthsecurity.md +docs/models/operations/multiplemixedoptionsauthresponse.md +docs/models/operations/multiplemixedschemeauthsecurity.md +docs/models/operations/multiplemixedschemeauthresponse.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md +docs/models/operations/multipleoptionswithmixedschemesauthresponse.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md +docs/models/operations/multipleoptionswithsimpleschemesauthresponse.md +docs/models/operations/multiplesimpleoptionsauthsecurity.md +docs/models/operations/multiplesimpleoptionsauthresponse.md +docs/models/operations/multiplesimpleschemeauthsecurity.md +docs/models/operations/multiplesimpleschemeauthresponse.md +docs/models/operations/oauth2authnewsecurity.md +docs/models/operations/oauth2authnewresponse.md +docs/models/operations/openidconnectauthnewsecurity.md +docs/models/operations/openidconnectauthnewresponse.md +docs/models/operations/apikeyauthsecurity.md +docs/models/operations/apikeyauthtoken.md +docs/models/operations/apikeyauthresponse.md +docs/models/operations/apikeyauthglobaltoken.md +docs/models/operations/apikeyauthglobalresponse.md +docs/models/operations/basicauthsecurity.md +docs/models/operations/basicauthrequest.md +docs/models/operations/basicauthuser.md +docs/models/operations/basicauthresponse.md +docs/models/operations/bearerauthsecurity.md +docs/models/operations/bearerauthtoken.md +docs/models/operations/bearerauthresponse.md +docs/models/operations/globalbearerauthtoken.md +docs/models/operations/globalbearerauthresponse.md +docs/models/operations/oauth2authsecurity.md +docs/models/operations/oauth2authtoken.md +docs/models/operations/oauth2authresponse.md +docs/models/operations/oauth2overridesecurity.md +docs/models/operations/oauth2overriderequest.md +docs/models/operations/oauth2overridetoken.md +docs/models/operations/oauth2overrideresponse.md +docs/models/operations/openidconnectauthsecurity.md +docs/models/operations/openidconnectauthtoken.md +docs/models/operations/openidconnectauthresponse.md +docs/models/operations/getdocumentationperlanguagerequest.md +docs/models/operations/getdocumentationperlanguageresponse.md +docs/models/operations/createfilefile.md +docs/models/operations/createfilerequestbody.md +docs/models/operations/createfileresponse.md +docs/models/operations/createresourceresponse.md +docs/models/operations/deleteresourcerequest.md +docs/models/operations/deleteresourceresponse.md +docs/models/operations/getresourcerequest.md +docs/models/operations/getresourceresponse.md +docs/models/operations/updateresourcerequest.md +docs/models/operations/updateresourceresponse.md +docs/models/operations/groupfirstgetresponse.md +docs/models/operations/groupsecondgetresponse.md +docs/models/operations/paginationcursorbodyrequestbody.md +docs/models/operations/paginationcursorbodyres.md +docs/models/operations/paginationcursorbodyresponse.md +docs/models/operations/paginationcursorparamsrequest.md +docs/models/operations/paginationcursorparamsres.md +docs/models/operations/paginationcursorparamsresponse.md +docs/models/operations/paginationlimitoffsetoffsetbodyres.md +docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md +docs/models/operations/paginationlimitoffsetoffsetparamsrequest.md +docs/models/operations/paginationlimitoffsetoffsetparamsres.md +docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md +docs/models/operations/paginationlimitoffsetpagebodyres.md +docs/models/operations/paginationlimitoffsetpagebodyresponse.md +docs/models/operations/paginationlimitoffsetpageparamsrequest.md +docs/models/operations/paginationlimitoffsetpageparamsres.md +docs/models/operations/paginationlimitoffsetpageparamsresponse.md +docs/models/operations/retriesgetrequest.md +docs/models/operations/retriesgetretries.md +docs/models/operations/retriesgetresponse.md +docs/models/operations/putanythingignoredgenerationresponsebody.md docs/models/operations/putanythingignoredgenerationresponse.md docs/models/operations/responsebodyjsongetresponse.md -docs/models/shared/authservicerequestbodybasicauth.md -docs/models/shared/authservicerequestbodyheaderauth.md -docs/models/shared/authservicerequestbody.md -docs/models/shared/schemebasicauth.md -docs/models/shared/security.md -docs/models/shared/errortype.md -docs/models/shared/error.md -docs/models/shared/simpleobjectint32enum.md -docs/models/shared/simpleobjectintenum.md +docs/models/shared/int32enum.md +docs/models/shared/intenum.md docs/models/shared/simpleobject.md docs/models/shared/enum.md docs/models/shared/arraycircularreferenceobject.md docs/models/shared/validcircularreferenceobject.md -docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md +docs/models/shared/deprecatedenum.md docs/models/shared/deprecatedfieldinobject.md docs/models/shared/deprecatedobject.md docs/models/shared/emptyobjectparam.md -docs/models/shared/httpbinsimplejsonobjectslideshowslides.md -docs/models/shared/httpbinsimplejsonobjectslideshow.md +docs/models/shared/slides.md +docs/models/shared/slideshow.md docs/models/shared/httpbinsimplejsonobject.md docs/models/shared/objectcircularreferenceobject.md docs/models/shared/oneofcircularreferenceobject.md docs/models/shared/fakerstrings.md docs/models/shared/fakerformattedstrings.md -docs/models/shared/limitoffsetconfig.md +docs/models/shared/errortype.md +docs/models/shared/error.md +docs/models/shared/nullableoneofrefinobject.md +docs/models/shared/type.md +docs/models/shared/typedobject1.md +docs/models/shared/nullableoneoftypeinobject.md docs/models/shared/refqueryparamobjexploded.md docs/models/shared/refqueryparamobj.md docs/models/shared/deepobject.md docs/models/shared/nullableobject.md -docs/models/shared/simpleobjectcamelcaseint32enumval.md -docs/models/shared/simpleobjectcamelcaseintenumval.md +docs/models/shared/int32enumval.md +docs/models/shared/intenumval.md docs/models/shared/simpleobjectcamelcase.md docs/models/shared/arrobjvalue.md docs/models/shared/arrobjvaluecamelcase.md @@ -844,27 +842,29 @@ docs/models/shared/defaultsandconstsoutputconstenumstr.md docs/models/shared/defaultsandconstsoutputdefaultenumint.md docs/models/shared/defaultsandconstsoutputdefaultenumstr.md docs/models/shared/defaultsandconstsoutput.md -docs/models/shared/defaultsandconstsconstenumint.md -docs/models/shared/defaultsandconstsconstenumstr.md -docs/models/shared/defaultsandconstsdefaultenumint.md -docs/models/shared/defaultsandconstsdefaultenumstr.md +docs/models/shared/constenumint.md +docs/models/shared/constenumstr.md +docs/models/shared/defaultenumint.md +docs/models/shared/defaultenumstr.md docs/models/shared/defaultsandconsts.md -docs/models/shared/readwriteobjectinput.md +docs/models/shared/readwriteobject.md docs/models/shared/readwriteobjectoutput.md docs/models/shared/readonlyobject.md docs/models/shared/readonlyobjectinput.md docs/models/shared/writeonlyobject.md docs/models/shared/writeonlyobjectoutput.md +docs/models/shared/objwithzerovaluecomplextypeptrs.md +docs/models/shared/basicauth.md +docs/models/shared/headerauth.md +docs/models/shared/authservicerequestbody.md +docs/models/shared/schemebasicauth.md +docs/models/shared/security.md docs/models/shared/fileresource.md -docs/models/shared/exampleresourcechocolates.md -docs/models/shared/exampleresourceenumnumber.md -docs/models/shared/exampleresourceenumstr.md +docs/models/shared/chocolates.md +docs/models/shared/enumnumber.md +docs/models/shared/enumstr.md docs/models/shared/exampleresource.md -docs/models/shared/typedobject1type.md -docs/models/shared/typedobject1.md -docs/models/shared/objwithzerovaluecomplextypeptrs.md -docs/models/shared/nullableoneofrefinobject.md -docs/models/shared/nullableoneoftypeinobject.md +docs/models/shared/limitoffsetconfig.md docs/models/shared/alloftoallof.md docs/models/shared/oneofgenerationstresstest.md docs/models/shared/unsupportedenums.md @@ -873,28 +873,28 @@ docs/models/callbacks/ignoredgenerationgetsingledignoredcallbackoperationrequest docs/models/callbacks/ignoredgenerationgetnotignoredcallbackresponse.md docs/models/callbacks/ignoredgenerationgetnotignoredcallbackrequestbody.md docs/sdks/sdk/README.md -docs/sdks/auth/README.md -docs/sdks/authnew/README.md -docs/sdks/documentation/README.md +docs/sdks/generation/README.md docs/sdks/errors/README.md -docs/sdks/first/README.md +docs/sdks/unions/README.md docs/sdks/flattening/README.md -docs/sdks/generation/README.md docs/sdks/globals/README.md +docs/sdks/parameters/README.md docs/sdks/nestfirst/README.md docs/sdks/nested/README.md docs/sdks/nestedfirst/README.md docs/sdks/nestedsecond/README.md -docs/sdks/pagination/README.md -docs/sdks/parameters/README.md docs/sdks/requestbodies/README.md -docs/sdks/resource/README.md docs/sdks/responsebodies/README.md -docs/sdks/retries/README.md -docs/sdks/second/README.md docs/sdks/servers/README.md docs/sdks/telemetry/README.md -docs/sdks/unions/README.md +docs/sdks/authnew/README.md +docs/sdks/auth/README.md +docs/sdks/documentation/README.md +docs/sdks/resource/README.md +docs/sdks/first/README.md +docs/sdks/second/README.md +docs/sdks/pagination/README.md +docs/sdks/retries/README.md test/common_helper_test.rb testcommon/common_helper_test.rb testprimary/auth_test.rb diff --git a/ruby-client-sdk/gen.yaml b/ruby-client-sdk/gen.yaml index bc8cbb0b6..8d2c74044 100755 --- a/ruby-client-sdk/gen.yaml +++ b/ruby-client-sdk/gen.yaml @@ -2,15 +2,15 @@ configVersion: 1.0.0 management: docChecksum: 0c1717dc8f9e83b99bad896fa719645c docVersion: 0.1.0 - speakeasyVersion: 1.112.1 - generationVersion: 2.173.0 + speakeasyVersion: 1.114.1 + generationVersion: 2.181.1 generation: comments: {} sdkClassName: SDK repoURL: https://github.com/speakeasy-api/openapi-generation-tests.git features: ruby: - core: 2.91.1 + core: 3.0.1 deprecations: 2.81.1 docs: 0.0.3 enums: 2.81.1 @@ -28,9 +28,17 @@ features: nameOverrides: 2.81.1 serverIDs: 2.81.1 ruby: - version: 1.36.2 + version: 2.0.0 author: Speakeasy description: Ruby Client SDK Generated by Speakeasy + imports: + option: openapi + paths: + callbacks: models/callbacks + errors: models/errors + operations: models/operations + shared: models/shared + webhooks: models/webhooks installationURL: https://github.com/speakeasy-api/openapi-generation-tests -d ruby-client-sdk maxMethodParams: 5 module: OpenApiSdk diff --git a/ruby-client-sdk/lib/openapi.rb b/ruby-client-sdk/lib/openapi.rb index 2f9acfada..8d3beb173 100755 --- a/ruby-client-sdk/lib/openapi.rb +++ b/ruby-client-sdk/lib/openapi.rb @@ -6,10 +6,6 @@ require_relative 'sdk/utils/utils' require_relative 'sdk/utils/metadata_fields' require_relative 'sdk/sdk' -require_relative 'sdk/models/shared/authservicerequestbody' -require_relative 'sdk/models/shared/security' -require_relative 'sdk/models/shared/errortype' -require_relative 'sdk/models/shared/error' require_relative 'sdk/models/shared/simpleobject' require_relative 'sdk/models/shared/enum' require_relative 'sdk/models/shared/arraycircularreferenceobject' @@ -22,7 +18,11 @@ require_relative 'sdk/models/shared/oneofcircularreferenceobject' require_relative 'sdk/models/shared/fakerstrings' require_relative 'sdk/models/shared/fakerformattedstrings' -require_relative 'sdk/models/shared/limitoffsetconfig' +require_relative 'sdk/models/shared/errortype' +require_relative 'sdk/models/shared/error' +require_relative 'sdk/models/shared/nullableoneofrefinobject' +require_relative 'sdk/models/shared/typedobject1' +require_relative 'sdk/models/shared/nullableoneoftypeinobject' require_relative 'sdk/models/shared/refqueryparamobjexploded' require_relative 'sdk/models/shared/refqueryparamobj' require_relative 'sdk/models/shared/deepobject' @@ -39,12 +39,12 @@ require_relative 'sdk/models/shared/readwriteobject' require_relative 'sdk/models/shared/readonlyobject' require_relative 'sdk/models/shared/writeonlyobject' +require_relative 'sdk/models/shared/objwithzerovaluecomplextypeptrs' +require_relative 'sdk/models/shared/authservicerequestbody' +require_relative 'sdk/models/shared/security' require_relative 'sdk/models/shared/fileresource' require_relative 'sdk/models/shared/exampleresource' -require_relative 'sdk/models/shared/typedobject1' -require_relative 'sdk/models/shared/objwithzerovaluecomplextypeptrs' -require_relative 'sdk/models/shared/nullableoneofrefinobject' -require_relative 'sdk/models/shared/nullableoneoftypeinobject' +require_relative 'sdk/models/shared/limitoffsetconfig' require_relative 'sdk/models/shared/alloftoallof' require_relative 'sdk/models/shared/oneofgenerationstresstest' require_relative 'sdk/models/shared/unsupportedenums' @@ -257,28 +257,28 @@ require_relative 'sdk/models/operations/usageexamplepost' require_relative 'sdk/models/operations/weaklytypedoneofpost' require_relative 'sdk/sdkconfiguration' -require_relative 'sdk/auth' -require_relative 'sdk/authnew' -require_relative 'sdk/documentation' +require_relative 'sdk/generation' require_relative 'sdk/errors' -require_relative 'sdk/first' +require_relative 'sdk/unions' require_relative 'sdk/flattening' -require_relative 'sdk/generation' require_relative 'sdk/globals' +require_relative 'sdk/parameters' require_relative 'sdk/nest_first' require_relative 'sdk/nested' require_relative 'sdk/nested_first' require_relative 'sdk/nested_second' -require_relative 'sdk/pagination' -require_relative 'sdk/parameters' require_relative 'sdk/requestbodies' -require_relative 'sdk/resource' require_relative 'sdk/responsebodies' -require_relative 'sdk/retries' -require_relative 'sdk/second' require_relative 'sdk/servers' require_relative 'sdk/telemetry' -require_relative 'sdk/unions' +require_relative 'sdk/authnew' +require_relative 'sdk/auth' +require_relative 'sdk/documentation' +require_relative 'sdk/resource' +require_relative 'sdk/first' +require_relative 'sdk/second' +require_relative 'sdk/pagination' +require_relative 'sdk/retries' module OpenApiSDK end diff --git a/ruby-client-sdk/lib/sdk/errors.rb b/ruby-client-sdk/lib/sdk/errors.rb index 630566fe0..7c25490ab 100755 --- a/ruby-client-sdk/lib/sdk/errors.rb +++ b/ruby-client-sdk/lib/sdk/errors.rb @@ -117,8 +117,8 @@ def status_get_x_speakeasy_errors(status_code, server_url = nil) end elsif r.status == 501 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::StatusGetXSpeakeasyErrors501ApplicationJSON) - res.status_get_x_speakeasy_errors_501_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::StatusGetXSpeakeasyErrorsResponseBody) + res.object = out end end res diff --git a/ruby-client-sdk/lib/sdk/generation.rb b/ruby-client-sdk/lib/sdk/generation.rb index 6eb0c9ae8..c9e2214d6 100755 --- a/ruby-client-sdk/lib/sdk/generation.rb +++ b/ruby-client-sdk/lib/sdk/generation.rb @@ -39,7 +39,7 @@ def anchor_types_get ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::TypeFromAnchor) + out = Utils.unmarshal_complex(r.env.response_body, Operations::AnchorTypesGetTypeFromAnchor) res.type_from_anchor = out end end @@ -254,8 +254,8 @@ def deprecated_object_in_schema_get ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::DeprecatedObjectInSchemaGet200ApplicationJSON) - res.deprecated_object_in_schema_get_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::DeprecatedObjectInSchemaGetResponseBody) + res.object = out end end res @@ -411,8 +411,8 @@ def global_name_overridden ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::GetGlobalNameOverride200ApplicationJSON) - res.get_global_name_override_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::GetGlobalNameOverrideResponseBody) + res.object = out end end res @@ -440,14 +440,14 @@ def ignored_generation_get ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::IgnoredGenerationGet200ApplicationJSON) - res.ignored_generation_get_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::IgnoredGenerationGetResponseBody) + res.object = out end end res end - sig { params(request_body: Operations::IgnoresPostApplicationJSON, test_param: T.nilable(String)).returns(Utils::FieldAugmented) } + sig { params(request_body: Operations::IgnoresPostRequestBody, test_param: T.nilable(String)).returns(Utils::FieldAugmented) } def ignores_post(request_body, test_param = nil) request = Operations::IgnoresPostRequest.new( @@ -493,7 +493,7 @@ def ignores_post(request_body, test_param = nil) res end - sig { params(test_enum_query_param: Operations::NameOverrideGetEnumNameOverride, test_query_param: String).returns(Utils::FieldAugmented) } + sig { params(test_enum_query_param: Operations::EnumNameOverride, test_query_param: String).returns(Utils::FieldAugmented) } def name_override(test_enum_query_param, test_query_param) request = Operations::NameOverrideGetRequest.new( @@ -522,7 +522,7 @@ def name_override(test_enum_query_param, test_query_param) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::OverriddenResponse) + out = Utils.unmarshal_complex(r.env.response_body, Operations::NameOverrideGetOverriddenResponse) res.overridden_response = out end end @@ -587,7 +587,7 @@ def one_of_circular_reference_get res end - sig { params(bigint: T.nilable(Integer), date: T.nilable(Date), decimal: T.nilable(Float), obj: T.nilable(Operations::TypedParameterGenerationGetObj)).returns(Utils::FieldAugmented) } + sig { params(bigint: T.nilable(Integer), date: T.nilable(Date), decimal: T.nilable(Float), obj: T.nilable(Operations::Obj)).returns(Utils::FieldAugmented) } def typed_parameter_generation_get(bigint = nil, date = nil, decimal = nil, obj = nil) request = Operations::TypedParameterGenerationGetRequest.new( @@ -656,8 +656,8 @@ def usage_example_post(request, security) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::UsageExamplePost200ApplicationJSON) - res.usage_example_post_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::UsageExamplePostResponseBody) + res.object = out end end res diff --git a/ruby-client-sdk/lib/sdk/models/operations/anchortypesget.rb b/ruby-client-sdk/lib/sdk/models/operations/anchortypesget.rb index 3710e5599..ea444a42a 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/anchortypesget.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/anchortypesget.rb @@ -10,7 +10,7 @@ module OpenApiSDK module Operations # A successful response that contains the simpleObject sent in the request body - class TypeFromAnchor < OpenApiSDK::Utils::FieldAugmented + class AnchorTypesGetTypeFromAnchor < OpenApiSDK::Utils::FieldAugmented extend T::Sig # A simple object that uses all our supported primitive types and enums and has optional properties. @@ -35,10 +35,10 @@ class AnchorTypesGetResponse < OpenApiSDK::Utils::FieldAugmented # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) # A successful response that contains the simpleObject sent in the request body - field :type_from_anchor, T.nilable(Operations::TypeFromAnchor) + field :type_from_anchor, T.nilable(Operations::AnchorTypesGetTypeFromAnchor) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), type_from_anchor: T.nilable(Operations::TypeFromAnchor)).void } + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), type_from_anchor: T.nilable(Operations::AnchorTypesGetTypeFromAnchor)).void } def initialize(content_type: nil, status_code: nil, raw_response: nil, type_from_anchor: nil) @content_type = content_type @status_code = status_code diff --git a/ruby-client-sdk/lib/sdk/models/operations/createfile.rb b/ruby-client-sdk/lib/sdk/models/operations/createfile.rb index 5e0d26951..96cc14df9 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/createfile.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/createfile.rb @@ -10,19 +10,19 @@ module OpenApiSDK module Operations - class CreateFileRequestBodyFile < OpenApiSDK::Utils::FieldAugmented + class CreateFileFile < OpenApiSDK::Utils::FieldAugmented extend T::Sig field :content, String, { 'multipart_form': { 'content': true } } - field :file, String, { 'multipart_form': { 'field_name': 'file' } } + field :file_name, String, { 'multipart_form': { 'field_name': 'file' } } - sig { params(content: String, file: String).void } - def initialize(content: nil, file: nil) + sig { params(content: String, file_name: String).void } + def initialize(content: nil, file_name: nil) @content = content - @file = file + @file_name = file_name end end @@ -31,10 +31,10 @@ class CreateFileRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :file, T.nilable(Operations::CreateFileRequestBodyFile), { 'multipart_form': { 'file': true } } + field :file, T.nilable(Operations::CreateFileFile), { 'multipart_form': { 'file': true } } - sig { params(file: T.nilable(Operations::CreateFileRequestBodyFile)).void } + sig { params(file: T.nilable(Operations::CreateFileFile)).void } def initialize(file: nil) @file = file end diff --git a/ruby-client-sdk/lib/sdk/models/operations/deepobjectqueryparamsobject.rb b/ruby-client-sdk/lib/sdk/models/operations/deepobjectqueryparamsobject.rb index 86176fca1..d7c46f983 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/deepobjectqueryparamsobject.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/deepobjectqueryparamsobject.rb @@ -10,7 +10,7 @@ module OpenApiSDK module Operations - class DeepObjectQueryParamsObjectObjArrParam < OpenApiSDK::Utils::FieldAugmented + class ObjArrParam < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,10 +30,10 @@ class DeepObjectQueryParamsObjectRequest < OpenApiSDK::Utils::FieldAugmented # A simple object that uses all our supported primitive types and enums and has optional properties. field :obj_param, Shared::SimpleObject, { 'query_param': { 'field_name': 'objParam', 'style': 'deepObject', 'explode': true } } - field :obj_arr_param, T.nilable(Operations::DeepObjectQueryParamsObjectObjArrParam), { 'query_param': { 'field_name': 'objArrParam', 'style': 'deepObject', 'explode': true } } + field :obj_arr_param, T.nilable(Operations::ObjArrParam), { 'query_param': { 'field_name': 'objArrParam', 'style': 'deepObject', 'explode': true } } - sig { params(obj_param: Shared::SimpleObject, obj_arr_param: T.nilable(Operations::DeepObjectQueryParamsObjectObjArrParam)).void } + sig { params(obj_param: Shared::SimpleObject, obj_arr_param: T.nilable(Operations::ObjArrParam)).void } def initialize(obj_param: nil, obj_arr_param: nil) @obj_param = obj_param @obj_arr_param = obj_arr_param @@ -41,7 +41,7 @@ def initialize(obj_param: nil, obj_arr_param: nil) end - class DeepObjectQueryParamsObjectResArgs < OpenApiSDK::Utils::FieldAugmented + class DeepObjectQueryParamsObjectArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -113,12 +113,12 @@ class DeepObjectQueryParamsObjectRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::DeepObjectQueryParamsObjectResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::DeepObjectQueryParamsObjectArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } field :url, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('url') } } - sig { params(args: Operations::DeepObjectQueryParamsObjectResArgs, url: String).void } + sig { params(args: Operations::DeepObjectQueryParamsObjectArgs, url: String).void } def initialize(args: nil, url: nil) @args = args @url = url diff --git a/ruby-client-sdk/lib/sdk/models/operations/deprecatedobjectinschemaget.rb b/ruby-client-sdk/lib/sdk/models/operations/deprecatedobjectinschemaget.rb index be071523f..127809d70 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/deprecatedobjectinschemaget.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/deprecatedobjectinschemaget.rb @@ -10,7 +10,7 @@ module OpenApiSDK module Operations # A successful response that contains a deprecatedObject sent in the request body - class DeprecatedObjectInSchemaGet200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class DeprecatedObjectInSchemaGetResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig # @deprecated true: This object is deprecated. @@ -32,16 +32,16 @@ class DeprecatedObjectInSchemaGetResponse < OpenApiSDK::Utils::FieldAugmented # HTTP response status code for this operation field :status_code, Integer # A successful response that contains a deprecatedObject sent in the request body - field :deprecated_object_in_schema_get_200_application_json_object, T.nilable(Operations::DeprecatedObjectInSchemaGet200ApplicationJSON) + field :object, T.nilable(Operations::DeprecatedObjectInSchemaGetResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - sig { params(content_type: String, status_code: Integer, deprecated_object_in_schema_get_200_application_json_object: T.nilable(Operations::DeprecatedObjectInSchemaGet200ApplicationJSON), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, deprecated_object_in_schema_get_200_application_json_object: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::DeprecatedObjectInSchemaGetResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code - @deprecated_object_in_schema_get_200_application_json_object = deprecated_object_in_schema_get_200_application_json_object + @object = object @raw_response = raw_response end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/emptyresponseobjectwithcommentget.rb b/ruby-client-sdk/lib/sdk/models/operations/emptyresponseobjectwithcommentget.rb index b4edf5f2c..bdf168da0 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/emptyresponseobjectwithcommentget.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/emptyresponseobjectwithcommentget.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class EmptyResponseObjectWithCommentGet200ApplicationOctetStream < OpenApiSDK::Utils::FieldAugmented + class EmptyResponseObjectWithCommentGetResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig diff --git a/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsarray.rb b/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsarray.rb index d708f7992..dee509b7d 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsarray.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsarray.rb @@ -26,7 +26,7 @@ def initialize(arr_param: nil, arr_param_exploded: nil) end - class FormQueryParamsArrayResArgs < OpenApiSDK::Utils::FieldAugmented + class FormQueryParamsArrayArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -47,12 +47,12 @@ class FormQueryParamsArrayRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::FormQueryParamsArrayResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::FormQueryParamsArrayArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } field :url, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('url') } } - sig { params(args: Operations::FormQueryParamsArrayResArgs, url: String).void } + sig { params(args: Operations::FormQueryParamsArrayArgs, url: String).void } def initialize(args: nil, url: nil) @args = args @url = url diff --git a/ruby-client-sdk/lib/sdk/models/operations/formqueryparamscamelobject.rb b/ruby-client-sdk/lib/sdk/models/operations/formqueryparamscamelobject.rb index ea550e3ee..1fc9d6f05 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/formqueryparamscamelobject.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/formqueryparamscamelobject.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class FormQueryParamsCamelObjectObjParam < OpenApiSDK::Utils::FieldAugmented + class ObjParam < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -26,7 +26,7 @@ def initialize(encoded_count: nil, encoded_term: nil) end - class FormQueryParamsCamelObjectObjParamExploded < OpenApiSDK::Utils::FieldAugmented + class ObjParamExploded < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -47,12 +47,12 @@ class FormQueryParamsCamelObjectRequest < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :obj_param_exploded, Operations::FormQueryParamsCamelObjectObjParamExploded, { 'query_param': { 'field_name': 'obj_param_exploded', 'style': 'form', 'explode': true } } + field :obj_param_exploded, Operations::ObjParamExploded, { 'query_param': { 'field_name': 'obj_param_exploded', 'style': 'form', 'explode': true } } - field :obj_param, T.nilable(Operations::FormQueryParamsCamelObjectObjParam), { 'query_param': { 'field_name': 'obj_param', 'style': 'form', 'explode': false } } + field :obj_param, T.nilable(Operations::ObjParam), { 'query_param': { 'field_name': 'obj_param', 'style': 'form', 'explode': false } } - sig { params(obj_param_exploded: Operations::FormQueryParamsCamelObjectObjParamExploded, obj_param: T.nilable(Operations::FormQueryParamsCamelObjectObjParam)).void } + sig { params(obj_param_exploded: Operations::ObjParamExploded, obj_param: T.nilable(Operations::ObjParam)).void } def initialize(obj_param_exploded: nil, obj_param: nil) @obj_param_exploded = obj_param_exploded @obj_param = obj_param @@ -60,7 +60,7 @@ def initialize(obj_param_exploded: nil, obj_param: nil) end - class FormQueryParamsCamelObjectResArgs < OpenApiSDK::Utils::FieldAugmented + class FormQueryParamsCamelObjectArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -81,12 +81,12 @@ class FormQueryParamsCamelObjectRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::FormQueryParamsCamelObjectResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::FormQueryParamsCamelObjectArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } field :url, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('url') } } - sig { params(args: Operations::FormQueryParamsCamelObjectResArgs, url: String).void } + sig { params(args: Operations::FormQueryParamsCamelObjectArgs, url: String).void } def initialize(args: nil, url: nil) @args = args @url = url diff --git a/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsobject.rb b/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsobject.rb index 428379230..ab7f581ad 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsobject.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsobject.rb @@ -27,7 +27,7 @@ def initialize(obj_param_exploded: nil, obj_param: nil) end - class FormQueryParamsObjectResArgs < OpenApiSDK::Utils::FieldAugmented + class FormQueryParamsObjectArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -105,12 +105,12 @@ class FormQueryParamsObjectRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::FormQueryParamsObjectResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::FormQueryParamsObjectArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } field :url, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('url') } } - sig { params(args: Operations::FormQueryParamsObjectResArgs, url: String).void } + sig { params(args: Operations::FormQueryParamsObjectArgs, url: String).void } def initialize(args: nil, url: nil) @args = args @url = url diff --git a/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsprimitive.rb b/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsprimitive.rb index 64186c45a..7a902f402 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsprimitive.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsprimitive.rb @@ -32,7 +32,7 @@ def initialize(bool_param: nil, int_param: nil, num_param: nil, str_param: nil) end - class FormQueryParamsPrimitiveResArgs < OpenApiSDK::Utils::FieldAugmented + class FormQueryParamsPrimitiveArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -59,12 +59,12 @@ class FormQueryParamsPrimitiveRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::FormQueryParamsPrimitiveResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::FormQueryParamsPrimitiveArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } field :url, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('url') } } - sig { params(args: Operations::FormQueryParamsPrimitiveResArgs, url: String).void } + sig { params(args: Operations::FormQueryParamsPrimitiveArgs, url: String).void } def initialize(args: nil, url: nil) @args = args @url = url diff --git a/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsrefparamobject.rb b/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsrefparamobject.rb index b2832f29a..3aff10ee8 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsrefparamobject.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/formqueryparamsrefparamobject.rb @@ -28,7 +28,7 @@ def initialize(ref_obj_param: nil, ref_obj_param_exploded: nil) end - class FormQueryParamsRefParamObjectResArgs < OpenApiSDK::Utils::FieldAugmented + class FormQueryParamsRefParamObjectArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -58,12 +58,12 @@ class FormQueryParamsRefParamObjectRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::FormQueryParamsRefParamObjectResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::FormQueryParamsRefParamObjectArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } field :url, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('url') } } - sig { params(args: Operations::FormQueryParamsRefParamObjectResArgs, url: String).void } + sig { params(args: Operations::FormQueryParamsRefParamObjectArgs, url: String).void } def initialize(args: nil, url: nil) @args = args @url = url diff --git a/ruby-client-sdk/lib/sdk/models/operations/getglobalnameoverride.rb b/ruby-client-sdk/lib/sdk/models/operations/getglobalnameoverride.rb index b3144a873..0ea451bb5 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/getglobalnameoverride.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/getglobalnameoverride.rb @@ -10,7 +10,7 @@ module OpenApiSDK module Operations # A successful response that contains the simpleObject sent in the request body - class GetGlobalNameOverride200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class GetGlobalNameOverrideResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig # A simple object that uses all our supported primitive types and enums and has optional properties. @@ -33,16 +33,16 @@ class GetGlobalNameOverrideResponse < OpenApiSDK::Utils::FieldAugmented # HTTP response status code for this operation field :status_code, Integer # A successful response that contains the simpleObject sent in the request body - field :get_global_name_override_200_application_json_object, T.nilable(Operations::GetGlobalNameOverride200ApplicationJSON) + field :object, T.nilable(Operations::GetGlobalNameOverrideResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - sig { params(content_type: String, status_code: Integer, get_global_name_override_200_application_json_object: T.nilable(Operations::GetGlobalNameOverride200ApplicationJSON), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, get_global_name_override_200_application_json_object: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::GetGlobalNameOverrideResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code - @get_global_name_override_200_application_json_object = get_global_name_override_200_application_json_object + @object = object @raw_response = raw_response end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/globalsqueryparameterget.rb b/ruby-client-sdk/lib/sdk/models/operations/globalsqueryparameterget.rb index fd2146a06..436bc978c 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/globalsqueryparameterget.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/globalsqueryparameterget.rb @@ -23,7 +23,7 @@ def initialize(global_query_param: nil) end - class GlobalsQueryParameterGetResArgs < OpenApiSDK::Utils::FieldAugmented + class Args < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -41,10 +41,10 @@ class GlobalsQueryParameterGetRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::GlobalsQueryParameterGetResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::Args, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } - sig { params(args: Operations::GlobalsQueryParameterGetResArgs).void } + sig { params(args: Operations::Args).void } def initialize(args: nil) @args = args end diff --git a/ruby-client-sdk/lib/sdk/models/operations/headerparamsarray.rb b/ruby-client-sdk/lib/sdk/models/operations/headerparamsarray.rb index d4c1373b2..0b03b9649 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/headerparamsarray.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/headerparamsarray.rb @@ -23,7 +23,7 @@ def initialize(x_header_array: nil) end - class HeaderParamsArrayResHeaders < OpenApiSDK::Utils::FieldAugmented + class Headers < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -41,10 +41,10 @@ class HeaderParamsArrayRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :headers, Operations::HeaderParamsArrayResHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } + field :headers, Operations::Headers, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } - sig { params(headers: Operations::HeaderParamsArrayResHeaders).void } + sig { params(headers: Operations::Headers).void } def initialize(headers: nil) @headers = headers end diff --git a/ruby-client-sdk/lib/sdk/models/operations/headerparamsmap.rb b/ruby-client-sdk/lib/sdk/models/operations/headerparamsmap.rb index c83284896..2055dc03a 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/headerparamsmap.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/headerparamsmap.rb @@ -26,7 +26,7 @@ def initialize(x_header_map: nil, x_header_map_explode: nil) end - class HeaderParamsMapResHeaders < OpenApiSDK::Utils::FieldAugmented + class HeaderParamsMapHeaders < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -47,10 +47,10 @@ class HeaderParamsMapRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :headers, Operations::HeaderParamsMapResHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } + field :headers, Operations::HeaderParamsMapHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } - sig { params(headers: Operations::HeaderParamsMapResHeaders).void } + sig { params(headers: Operations::HeaderParamsMapHeaders).void } def initialize(headers: nil) @headers = headers end diff --git a/ruby-client-sdk/lib/sdk/models/operations/headerparamsobject.rb b/ruby-client-sdk/lib/sdk/models/operations/headerparamsobject.rb index f87710fa6..9d0bb64ed 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/headerparamsobject.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/headerparamsobject.rb @@ -27,7 +27,7 @@ def initialize(x_header_obj: nil, x_header_obj_explode: nil) end - class HeaderParamsObjectResHeaders < OpenApiSDK::Utils::FieldAugmented + class HeaderParamsObjectHeaders < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -48,10 +48,10 @@ class HeaderParamsObjectRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :headers, Operations::HeaderParamsObjectResHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } + field :headers, Operations::HeaderParamsObjectHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } - sig { params(headers: Operations::HeaderParamsObjectResHeaders).void } + sig { params(headers: Operations::HeaderParamsObjectHeaders).void } def initialize(headers: nil) @headers = headers end diff --git a/ruby-client-sdk/lib/sdk/models/operations/headerparamsprimitive.rb b/ruby-client-sdk/lib/sdk/models/operations/headerparamsprimitive.rb index 07ac07de6..52e6fafed 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/headerparamsprimitive.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/headerparamsprimitive.rb @@ -32,7 +32,7 @@ def initialize(x_header_boolean: nil, x_header_integer: nil, x_header_number: ni end - class HeaderParamsPrimitiveResHeaders < OpenApiSDK::Utils::FieldAugmented + class HeaderParamsPrimitiveHeaders < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -59,10 +59,10 @@ class HeaderParamsPrimitiveRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :headers, Operations::HeaderParamsPrimitiveResHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } + field :headers, Operations::HeaderParamsPrimitiveHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } - sig { params(headers: Operations::HeaderParamsPrimitiveResHeaders).void } + sig { params(headers: Operations::HeaderParamsPrimitiveHeaders).void } def initialize(headers: nil) @headers = headers end diff --git a/ruby-client-sdk/lib/sdk/models/operations/ignoredgenerationget.rb b/ruby-client-sdk/lib/sdk/models/operations/ignoredgenerationget.rb index 6c6c072a3..c3f96b8cb 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/ignoredgenerationget.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/ignoredgenerationget.rb @@ -10,7 +10,7 @@ module OpenApiSDK module Operations # A successful response that contains the simpleObject sent in the request body - class IgnoredGenerationGet200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class IgnoredGenerationGetResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig # A simple object that uses all our supported primitive types and enums and has optional properties. @@ -33,16 +33,16 @@ class IgnoredGenerationGetResponse < OpenApiSDK::Utils::FieldAugmented # HTTP response status code for this operation field :status_code, Integer # A successful response that contains the simpleObject sent in the request body - field :ignored_generation_get_200_application_json_object, T.nilable(Operations::IgnoredGenerationGet200ApplicationJSON) + field :object, T.nilable(Operations::IgnoredGenerationGetResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - sig { params(content_type: String, status_code: Integer, ignored_generation_get_200_application_json_object: T.nilable(Operations::IgnoredGenerationGet200ApplicationJSON), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, ignored_generation_get_200_application_json_object: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::IgnoredGenerationGetResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code - @ignored_generation_get_200_application_json_object = ignored_generation_get_200_application_json_object + @object = object @raw_response = raw_response end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/ignorespost.rb b/ruby-client-sdk/lib/sdk/models/operations/ignorespost.rb index 862d9057b..59080da60 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/ignorespost.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/ignorespost.rb @@ -10,7 +10,7 @@ module OpenApiSDK module Operations - class IgnoresPostApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class IgnoresPostRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -31,12 +31,12 @@ class IgnoresPostRequest < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :request_body, Operations::IgnoresPostApplicationJSON, { 'request': { 'media_type': 'application/json' } } + field :request_body, Operations::IgnoresPostRequestBody, { 'request': { 'media_type': 'application/json' } } field :test_param, T.nilable(String), { 'query_param': { 'field_name': 'testParam', 'style': 'form', 'explode': true } } - sig { params(request_body: Operations::IgnoresPostApplicationJSON, test_param: T.nilable(String)).void } + sig { params(request_body: Operations::IgnoresPostRequestBody, test_param: T.nilable(String)).void } def initialize(request_body: nil, test_param: nil) @request_body = request_body @test_param = test_param diff --git a/ruby-client-sdk/lib/sdk/models/operations/inlinebodyandparamconflict.rb b/ruby-client-sdk/lib/sdk/models/operations/inlinebodyandparamconflict.rb index a8c8c13c3..f4f160020 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/inlinebodyandparamconflict.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/inlinebodyandparamconflict.rb @@ -40,7 +40,7 @@ def initialize(request_body: nil, str_: nil) end - class InlineBodyAndParamConflictResJson < OpenApiSDK::Utils::FieldAugmented + class Json < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -60,10 +60,10 @@ class InlineBodyAndParamConflictRes < OpenApiSDK::Utils::FieldAugmented field :args, T::Hash[Symbol, String], { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } - field :json, Operations::InlineBodyAndParamConflictResJson, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('json') } } + field :json, Operations::Json, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('json') } } - sig { params(args: T::Hash[Symbol, String], json: Operations::InlineBodyAndParamConflictResJson).void } + sig { params(args: T::Hash[Symbol, String], json: Operations::Json).void } def initialize(args: nil, json: nil) @args = args @json = json diff --git a/ruby-client-sdk/lib/sdk/models/operations/inlinebodyandparamnoconflict.rb b/ruby-client-sdk/lib/sdk/models/operations/inlinebodyandparamnoconflict.rb index b3bd3dcd1..8b4eea472 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/inlinebodyandparamnoconflict.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/inlinebodyandparamnoconflict.rb @@ -40,7 +40,7 @@ def initialize(param_str: nil, request_body: nil) end - class InlineBodyAndParamNoConflictResJson < OpenApiSDK::Utils::FieldAugmented + class InlineBodyAndParamNoConflictJson < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -60,10 +60,10 @@ class InlineBodyAndParamNoConflictRes < OpenApiSDK::Utils::FieldAugmented field :args, T::Hash[Symbol, String], { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } - field :json, Operations::InlineBodyAndParamNoConflictResJson, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('json') } } + field :json, Operations::InlineBodyAndParamNoConflictJson, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('json') } } - sig { params(args: T::Hash[Symbol, String], json: Operations::InlineBodyAndParamNoConflictResJson).void } + sig { params(args: T::Hash[Symbol, String], json: Operations::InlineBodyAndParamNoConflictJson).void } def initialize(args: nil, json: nil) @args = args @json = json diff --git a/ruby-client-sdk/lib/sdk/models/operations/jsonqueryparamsobject.rb b/ruby-client-sdk/lib/sdk/models/operations/jsonqueryparamsobject.rb index 9d6c1d997..03451ebe0 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/jsonqueryparamsobject.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/jsonqueryparamsobject.rb @@ -28,7 +28,7 @@ def initialize(deep_obj_param: nil, simple_obj_param: nil) end - class JsonQueryParamsObjectResArgs < OpenApiSDK::Utils::FieldAugmented + class JsonQueryParamsObjectArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -49,12 +49,12 @@ class JsonQueryParamsObjectRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::JsonQueryParamsObjectResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::JsonQueryParamsObjectArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } field :url, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('url') } } - sig { params(args: Operations::JsonQueryParamsObjectResArgs, url: String).void } + sig { params(args: Operations::JsonQueryParamsObjectArgs, url: String).void } def initialize(args: nil, url: nil) @args = args @url = url diff --git a/ruby-client-sdk/lib/sdk/models/operations/mixedparameterscamelcase.rb b/ruby-client-sdk/lib/sdk/models/operations/mixedparameterscamelcase.rb index f74c45ac7..405cbd876 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/mixedparameterscamelcase.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/mixedparameterscamelcase.rb @@ -29,7 +29,7 @@ def initialize(header_param: nil, path_param: nil, query_string_param: nil) end - class MixedParametersCamelCaseResArgs < OpenApiSDK::Utils::FieldAugmented + class MixedParametersCamelCaseArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -43,7 +43,7 @@ def initialize(query_string_param: nil) end - class MixedParametersCamelCaseResHeaders < OpenApiSDK::Utils::FieldAugmented + class MixedParametersCamelCaseHeaders < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -61,14 +61,14 @@ class MixedParametersCamelCaseRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::MixedParametersCamelCaseResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::MixedParametersCamelCaseArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } - field :headers, Operations::MixedParametersCamelCaseResHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } + field :headers, Operations::MixedParametersCamelCaseHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } field :url, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('url') } } - sig { params(args: Operations::MixedParametersCamelCaseResArgs, headers: Operations::MixedParametersCamelCaseResHeaders, url: String).void } + sig { params(args: Operations::MixedParametersCamelCaseArgs, headers: Operations::MixedParametersCamelCaseHeaders, url: String).void } def initialize(args: nil, headers: nil, url: nil) @args = args @headers = headers diff --git a/ruby-client-sdk/lib/sdk/models/operations/mixedparametersprimitives.rb b/ruby-client-sdk/lib/sdk/models/operations/mixedparametersprimitives.rb index 09aa66635..19554a9b3 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/mixedparametersprimitives.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/mixedparametersprimitives.rb @@ -29,7 +29,7 @@ def initialize(header_param: nil, path_param: nil, query_string_param: nil) end - class MixedParametersPrimitivesResArgs < OpenApiSDK::Utils::FieldAugmented + class MixedParametersPrimitivesArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -43,7 +43,7 @@ def initialize(query_string_param: nil) end - class MixedParametersPrimitivesResHeaders < OpenApiSDK::Utils::FieldAugmented + class MixedParametersPrimitivesHeaders < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -61,14 +61,14 @@ class MixedParametersPrimitivesRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::MixedParametersPrimitivesResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::MixedParametersPrimitivesArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } - field :headers, Operations::MixedParametersPrimitivesResHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } + field :headers, Operations::MixedParametersPrimitivesHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } field :url, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('url') } } - sig { params(args: Operations::MixedParametersPrimitivesResArgs, headers: Operations::MixedParametersPrimitivesResHeaders, url: String).void } + sig { params(args: Operations::MixedParametersPrimitivesArgs, headers: Operations::MixedParametersPrimitivesHeaders, url: String).void } def initialize(args: nil, headers: nil, url: nil) @args = args @headers = headers diff --git a/ruby-client-sdk/lib/sdk/models/operations/nameoverrideget.rb b/ruby-client-sdk/lib/sdk/models/operations/nameoverrideget.rb index 8afd08546..6278a8b70 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/nameoverrideget.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/nameoverrideget.rb @@ -9,8 +9,8 @@ module OpenApiSDK module Operations - # NameOverrideGetEnumNameOverride - An enum type - class NameOverrideGetEnumNameOverride < T::Enum + # EnumNameOverride - An enum type + class EnumNameOverride < T::Enum enums do VALUE1 = new('value1') VALUE2 = new('value2') @@ -24,12 +24,12 @@ class NameOverrideGetRequest < OpenApiSDK::Utils::FieldAugmented extend T::Sig # An enum type - field :test_enum_query_param, Operations::NameOverrideGetEnumNameOverride, { 'query_param': { 'field_name': 'enumNameOverride', 'style': 'form', 'explode': true } } + field :test_enum_query_param, Operations::EnumNameOverride, { 'query_param': { 'field_name': 'enumNameOverride', 'style': 'form', 'explode': true } } field :test_query_param, String, { 'query_param': { 'field_name': 'nameOverride', 'style': 'form', 'explode': true } } - sig { params(test_enum_query_param: Operations::NameOverrideGetEnumNameOverride, test_query_param: String).void } + sig { params(test_enum_query_param: Operations::EnumNameOverride, test_query_param: String).void } def initialize(test_enum_query_param: nil, test_query_param: nil) @test_enum_query_param = test_enum_query_param @test_query_param = test_query_param @@ -37,7 +37,7 @@ def initialize(test_enum_query_param: nil, test_query_param: nil) end # A successful response that contains the simpleObject sent in the request body - class OverriddenResponse < OpenApiSDK::Utils::FieldAugmented + class NameOverrideGetOverriddenResponse < OpenApiSDK::Utils::FieldAugmented extend T::Sig # A simple object that uses all our supported primitive types and enums and has optional properties. @@ -60,12 +60,12 @@ class NameOverrideGetResponse < OpenApiSDK::Utils::FieldAugmented # HTTP response status code for this operation field :status_code, Integer # A successful response that contains the simpleObject sent in the request body - field :overridden_response, T.nilable(Operations::OverriddenResponse) + field :overridden_response, T.nilable(Operations::NameOverrideGetOverriddenResponse) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - sig { params(content_type: String, status_code: Integer, overridden_response: T.nilable(Operations::OverriddenResponse), raw_response: T.nilable(Faraday::Response)).void } + sig { params(content_type: String, status_code: Integer, overridden_response: T.nilable(Operations::NameOverrideGetOverriddenResponse), raw_response: T.nilable(Faraday::Response)).void } def initialize(content_type: nil, status_code: nil, overridden_response: nil, raw_response: nil) @content_type = content_type @status_code = status_code diff --git a/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredemptyobjectpost.rb b/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredemptyobjectpost.rb index a924458c8..c4e7d2435 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredemptyobjectpost.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredemptyobjectpost.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj < OpenApiSDK::Utils::FieldAugmented + class NullableOptionalObj < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -19,7 +19,7 @@ def initialize; end end - class NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj < OpenApiSDK::Utils::FieldAugmented + class NullableRequiredObj < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -29,7 +29,7 @@ def initialize; end end - class NullableRequiredEmptyObjectPostRequestBodyRequiredObj < OpenApiSDK::Utils::FieldAugmented + class RequiredObj < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -43,14 +43,14 @@ class NullableRequiredEmptyObjectPostRequestBody < OpenApiSDK::Utils::FieldAugme extend T::Sig - field :nullable_required_obj, Operations::NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('NullableRequiredObj') } } + field :nullable_required_obj, Operations::NullableRequiredObj, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('NullableRequiredObj') } } - field :required_obj, Operations::NullableRequiredEmptyObjectPostRequestBodyRequiredObj, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('RequiredObj') } } + field :required_obj, Operations::RequiredObj, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('RequiredObj') } } - field :nullable_optional_obj, T.nilable(Operations::NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('NullableOptionalObj') } } + field :nullable_optional_obj, T.nilable(Operations::NullableOptionalObj), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('NullableOptionalObj') } } - sig { params(nullable_required_obj: Operations::NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj, required_obj: Operations::NullableRequiredEmptyObjectPostRequestBodyRequiredObj, nullable_optional_obj: T.nilable(Operations::NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj)).void } + sig { params(nullable_required_obj: Operations::NullableRequiredObj, required_obj: Operations::RequiredObj, nullable_optional_obj: T.nilable(Operations::NullableOptionalObj)).void } def initialize(nullable_required_obj: nil, required_obj: nil, nullable_optional_obj: nil) @nullable_required_obj = nullable_required_obj @required_obj = required_obj @@ -66,18 +66,18 @@ class NullableRequiredEmptyObjectPostResponse < OpenApiSDK::Utils::FieldAugmente field :content_type, String # HTTP response status code for this operation field :status_code, Integer - # OK - field :nullable_required_empty_object_post_200_application_json_string, T.nilable(String) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) + # OK + field :res, T.nilable(String) - sig { params(content_type: String, status_code: Integer, nullable_required_empty_object_post_200_application_json_string: T.nilable(String), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, nullable_required_empty_object_post_200_application_json_string: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(String)).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil) @content_type = content_type @status_code = status_code - @nullable_required_empty_object_post_200_application_json_string = nullable_required_empty_object_post_200_application_json_string @raw_response = raw_response + @res = res end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredpropertypost.rb b/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredpropertypost.rb index cbb78add1..e2c574bcf 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredpropertypost.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredpropertypost.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class NullableRequiredPropertyPostRequestBodyNullableRequiredEnum < T::Enum + class NullableRequiredEnum < T::Enum enums do FIRST = new('first') SECOND = new('second') @@ -24,14 +24,14 @@ class NullableRequiredPropertyPostRequestBody < OpenApiSDK::Utils::FieldAugmente field :nullable_required_array, T::Array[Float], { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('NullableRequiredArray') } } - field :nullable_required_enum, Operations::NullableRequiredPropertyPostRequestBodyNullableRequiredEnum, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('NullableRequiredEnum'), 'decoder': Utils.enum_from_string(Operations::NullableRequiredPropertyPostRequestBodyNullableRequiredEnum, false) } } + field :nullable_required_enum, Operations::NullableRequiredEnum, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('NullableRequiredEnum'), 'decoder': Utils.enum_from_string(Operations::NullableRequiredEnum, false) } } field :nullable_required_int, Integer, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('NullableRequiredInt') } } field :nullable_optional_int, T.nilable(Integer), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('NullableOptionalInt') } } - sig { params(nullable_required_array: T::Array[Float], nullable_required_enum: Operations::NullableRequiredPropertyPostRequestBodyNullableRequiredEnum, nullable_required_int: Integer, nullable_optional_int: T.nilable(Integer)).void } + sig { params(nullable_required_array: T::Array[Float], nullable_required_enum: Operations::NullableRequiredEnum, nullable_required_int: Integer, nullable_optional_int: T.nilable(Integer)).void } def initialize(nullable_required_array: nil, nullable_required_enum: nil, nullable_required_int: nil, nullable_optional_int: nil) @nullable_required_array = nullable_required_array @nullable_required_enum = nullable_required_enum @@ -48,18 +48,18 @@ class NullableRequiredPropertyPostResponse < OpenApiSDK::Utils::FieldAugmented field :content_type, String # HTTP response status code for this operation field :status_code, Integer - # OK - field :nullable_required_property_post_200_application_json_string, T.nilable(String) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) + # OK + field :res, T.nilable(String) - sig { params(content_type: String, status_code: Integer, nullable_required_property_post_200_application_json_string: T.nilable(String), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, nullable_required_property_post_200_application_json_string: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(String)).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil) @content_type = content_type @status_code = status_code - @nullable_required_property_post_200_application_json_string = nullable_required_property_post_200_application_json_string @raw_response = raw_response + @res = res end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredsharedobjectpost.rb b/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredsharedobjectpost.rb index 456eb1599..229c6401b 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredsharedobjectpost.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/nullablerequiredsharedobjectpost.rb @@ -34,18 +34,18 @@ class NullableRequiredSharedObjectPostResponse < OpenApiSDK::Utils::FieldAugment field :content_type, String # HTTP response status code for this operation field :status_code, Integer - # OK - field :nullable_required_shared_object_post_200_application_json_string, T.nilable(String) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) + # OK + field :res, T.nilable(String) - sig { params(content_type: String, status_code: Integer, nullable_required_shared_object_post_200_application_json_string: T.nilable(String), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, nullable_required_shared_object_post_200_application_json_string: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(String)).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil) @content_type = content_type @status_code = status_code - @nullable_required_shared_object_post_200_application_json_string = nullable_required_shared_object_post_200_application_json_string @raw_response = raw_response + @res = res end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/pipedelimitedqueryparamsarray.rb b/ruby-client-sdk/lib/sdk/models/operations/pipedelimitedqueryparamsarray.rb index bb9014606..a92821a6d 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/pipedelimitedqueryparamsarray.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/pipedelimitedqueryparamsarray.rb @@ -33,7 +33,7 @@ def initialize(arr_param: nil, arr_param_exploded: nil, map_param: nil, obj_para end - class PipeDelimitedQueryParamsArrayResArgs < OpenApiSDK::Utils::FieldAugmented + class PipeDelimitedQueryParamsArrayArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -54,12 +54,12 @@ class PipeDelimitedQueryParamsArrayRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::PipeDelimitedQueryParamsArrayResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::PipeDelimitedQueryParamsArrayArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } field :url, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('url') } } - sig { params(args: Operations::PipeDelimitedQueryParamsArrayResArgs, url: String).void } + sig { params(args: Operations::PipeDelimitedQueryParamsArrayArgs, url: String).void } def initialize(args: nil, url: nil) @args = args @url = url diff --git a/ruby-client-sdk/lib/sdk/models/operations/put_anything_ignoredgeneration.rb b/ruby-client-sdk/lib/sdk/models/operations/put_anything_ignoredgeneration.rb index f4fd67f0b..47c3e3906 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/put_anything_ignoredgeneration.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/put_anything_ignoredgeneration.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class PutAnythingIgnoredGeneration200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class PutAnythingIgnoredGenerationResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -31,16 +31,16 @@ class PutAnythingIgnoredGenerationResponse < OpenApiSDK::Utils::FieldAugmented # HTTP response status code for this operation field :status_code, Integer # OK - field :put_anything_ignored_generation_200_application_json_object, T.nilable(Operations::PutAnythingIgnoredGeneration200ApplicationJSON) + field :object, T.nilable(Operations::PutAnythingIgnoredGenerationResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - sig { params(content_type: String, status_code: Integer, put_anything_ignored_generation_200_application_json_object: T.nilable(Operations::PutAnythingIgnoredGeneration200ApplicationJSON), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, put_anything_ignored_generation_200_application_json_object: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::PutAnythingIgnoredGenerationResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code - @put_anything_ignored_generation_200_application_json_object = put_anything_ignored_generation_200_application_json_object + @object = object @raw_response = raw_response end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarray.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarray.rb index a686c7945..1a607c4aa 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarray.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarray.rb @@ -22,15 +22,15 @@ class RequestBodyPostApplicationJsonArrayResponse < OpenApiSDK::Utils::FieldAugm # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) # OK - field :simple_objects, T.nilable(T::Array[Shared::SimpleObject]) + field :res, T.nilable(T::Array[Shared::SimpleObject]) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), simple_objects: T.nilable(T::Array[Shared::SimpleObject])).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, simple_objects: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(T::Array[Shared::SimpleObject])).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil) @content_type = content_type @status_code = status_code @raw_response = raw_response - @simple_objects = simple_objects + @res = res end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.rb index 163701dcd..d59feadfe 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.rb @@ -22,15 +22,15 @@ class RequestBodyPostApplicationJsonArrayCamelCaseResponse < OpenApiSDK::Utils:: # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) # OK - field :simple_object_camel_cases, T.nilable(T::Array[Shared::SimpleObjectCamelCase]) + field :res, T.nilable(T::Array[Shared::SimpleObjectCamelCase]) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), simple_object_camel_cases: T.nilable(T::Array[Shared::SimpleObjectCamelCase])).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, simple_object_camel_cases: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(T::Array[Shared::SimpleObjectCamelCase])).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil) @content_type = content_type @status_code = status_code @raw_response = raw_response - @simple_object_camel_cases = simple_object_camel_cases + @res = res end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.rb index 683494f8f..5f21635a4 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.rb @@ -19,18 +19,18 @@ class RequestBodyPostApplicationJsonArrayOfArrayResponse < OpenApiSDK::Utils::Fi field :content_type, String # HTTP response status code for this operation field :status_code, Integer - # OK - field :arrs, T.nilable(T::Array[T::Array[Shared::SimpleObject]]) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) + # OK + field :res, T.nilable(T::Array[T::Array[Shared::SimpleObject]]) - sig { params(content_type: String, status_code: Integer, arrs: T.nilable(T::Array[T::Array[Shared::SimpleObject]]), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, arrs: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(T::Array[T::Array[Shared::SimpleObject]])).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil) @content_type = content_type @status_code = status_code - @arrs = arrs @raw_response = raw_response + @res = res end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.rb index c279e9913..d44804d5d 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.rb @@ -19,18 +19,18 @@ class RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse < OpenApiSDK:: field :content_type, String # HTTP response status code for this operation field :status_code, Integer - # OK - field :arrs, T.nilable(T::Array[T::Array[Shared::SimpleObjectCamelCase]]) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) + # OK + field :res, T.nilable(T::Array[T::Array[Shared::SimpleObjectCamelCase]]) - sig { params(content_type: String, status_code: Integer, arrs: T.nilable(T::Array[T::Array[Shared::SimpleObjectCamelCase]]), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, arrs: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(T::Array[T::Array[Shared::SimpleObjectCamelCase]])).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil) @content_type = content_type @status_code = status_code - @arrs = arrs @raw_response = raw_response + @res = res end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.rb index c86703784..56534387f 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.rb @@ -19,18 +19,18 @@ class RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse < OpenApiSDK field :content_type, String # HTTP response status code for this operation field :status_code, Integer - # OK - field :arrs, T.nilable(T::Array[T::Array[String]]) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) + # OK + field :res, T.nilable(T::Array[T::Array[String]]) - sig { params(content_type: String, status_code: Integer, arrs: T.nilable(T::Array[T::Array[String]]), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, arrs: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(T::Array[T::Array[String]])).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil) @content_type = content_type @status_code = status_code - @arrs = arrs @raw_response = raw_response + @res = res end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.rb index 1a4ba7e5a..659c27f96 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.rb @@ -19,18 +19,18 @@ class RequestBodyPostApplicationJsonArrayOfMapResponse < OpenApiSDK::Utils::Fiel field :content_type, String # HTTP response status code for this operation field :status_code, Integer - # OK - field :maps, T.nilable(T::Array[T::Hash[Symbol, Shared::SimpleObject]]) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) + # OK + field :res, T.nilable(T::Array[T::Hash[Symbol, Shared::SimpleObject]]) - sig { params(content_type: String, status_code: Integer, maps: T.nilable(T::Array[T::Hash[Symbol, Shared::SimpleObject]]), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, maps: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(T::Array[T::Hash[Symbol, Shared::SimpleObject]])).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil) @content_type = content_type @status_code = status_code - @maps = maps @raw_response = raw_response + @res = res end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.rb index 68a059df8..bc04916c2 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.rb @@ -19,18 +19,18 @@ class RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse < OpenApiSDK::Ut field :content_type, String # HTTP response status code for this operation field :status_code, Integer - # OK - field :maps, T.nilable(T::Array[T::Hash[Symbol, Shared::SimpleObjectCamelCase]]) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) + # OK + field :res, T.nilable(T::Array[T::Hash[Symbol, Shared::SimpleObjectCamelCase]]) - sig { params(content_type: String, status_code: Integer, maps: T.nilable(T::Array[T::Hash[Symbol, Shared::SimpleObjectCamelCase]]), raw_response: T.nilable(Faraday::Response)).void } - def initialize(content_type: nil, status_code: nil, maps: nil, raw_response: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(T::Array[T::Hash[Symbol, Shared::SimpleObjectCamelCase]])).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil) @content_type = content_type @status_code = status_code - @maps = maps @raw_response = raw_response + @res = res end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.rb index 5beae0ed3..f666bfc67 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.rb @@ -22,15 +22,15 @@ class RequestBodyPostApplicationJsonArrayOfPrimitiveResponse < OpenApiSDK::Utils # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) # OK - field :strings, T.nilable(T::Array[String]) + field :res, T.nilable(T::Array[String]) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), strings: T.nilable(T::Array[String])).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, strings: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(T::Array[String])).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil) @content_type = content_type @status_code = status_code @raw_response = raw_response - @strings = strings + @res = res end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostcomplexnumbertypes.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostcomplexnumbertypes.rb index 7c69c9c34..39da8c572 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostcomplexnumbertypes.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostcomplexnumbertypes.rb @@ -48,7 +48,7 @@ def initialize(complex_number_types: nil, path_big_int: nil, path_big_int_str: n end # OK - class RequestBodyPostComplexNumberTypes200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostComplexNumberTypesResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -72,18 +72,18 @@ class RequestBodyPostComplexNumberTypesResponse < OpenApiSDK::Utils::FieldAugmen field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostComplexNumberTypesResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_complex_number_types_200_application_json_object, T.nilable(Operations::RequestBodyPostComplexNumberTypes200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_complex_number_types_200_application_json_object: T.nilable(Operations::RequestBodyPostComplexNumberTypes200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_complex_number_types_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostComplexNumberTypesResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_complex_number_types_200_application_json_object = request_body_post_complex_number_types_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostdefaultsandconsts.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostdefaultsandconsts.rb index b29512434..bd9a0b467 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostdefaultsandconsts.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostdefaultsandconsts.rb @@ -10,7 +10,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostDefaultsAndConsts200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostDefaultsAndConstsResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -31,18 +31,18 @@ class RequestBodyPostDefaultsAndConstsResponse < OpenApiSDK::Utils::FieldAugment field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostDefaultsAndConstsResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_defaults_and_consts_200_application_json_object, T.nilable(Operations::RequestBodyPostDefaultsAndConsts200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_defaults_and_consts_200_application_json_object: T.nilable(Operations::RequestBodyPostDefaultsAndConsts200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_defaults_and_consts_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostDefaultsAndConstsResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_defaults_and_consts_200_application_json_object = request_body_post_defaults_and_consts_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostemptyobject.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostemptyobject.rb index b5fe3e33b..4aa3770eb 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostemptyobject.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostemptyobject.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPostEmptyObjectRequestBodyEmpty < OpenApiSDK::Utils::FieldAugmented + class Empty < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -19,7 +19,7 @@ def initialize; end end - class RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties < OpenApiSDK::Utils::FieldAugmented + class EmptyWithEmptyProperties < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,12 +33,12 @@ class RequestBodyPostEmptyObjectRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :empty, T.nilable(Operations::RequestBodyPostEmptyObjectRequestBodyEmpty), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('empty') } } + field :empty, T.nilable(Operations::Empty), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('empty') } } - field :empty_with_empty_properties, T.nilable(Operations::RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('emptyWithEmptyProperties') } } + field :empty_with_empty_properties, T.nilable(Operations::EmptyWithEmptyProperties), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('emptyWithEmptyProperties') } } - sig { params(empty: T.nilable(Operations::RequestBodyPostEmptyObjectRequestBodyEmpty), empty_with_empty_properties: T.nilable(Operations::RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties)).void } + sig { params(empty: T.nilable(Operations::Empty), empty_with_empty_properties: T.nilable(Operations::EmptyWithEmptyProperties)).void } def initialize(empty: nil, empty_with_empty_properties: nil) @empty = empty @empty_with_empty_properties = empty_with_empty_properties @@ -46,7 +46,7 @@ def initialize(empty: nil, empty_with_empty_properties: nil) end - class RequestBodyPostEmptyObject200ApplicationJSONEmpty < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostEmptyObjectEmpty < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -56,7 +56,7 @@ def initialize; end end - class RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies < OpenApiSDK::Utils::FieldAugmented + class EmptyRespWithEmptyProperies < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -66,16 +66,16 @@ def initialize; end end # OK - class RequestBodyPostEmptyObject200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostEmptyObjectResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :empty, T.nilable(Operations::RequestBodyPostEmptyObject200ApplicationJSONEmpty), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('empty') } } + field :empty, T.nilable(Operations::RequestBodyPostEmptyObjectEmpty), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('empty') } } - field :empty_resp_with_empty_properies, T.nilable(Operations::RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('emptyRespWithEmptyProperies') } } + field :empty_resp_with_empty_properies, T.nilable(Operations::EmptyRespWithEmptyProperies), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('emptyRespWithEmptyProperies') } } - sig { params(empty: T.nilable(Operations::RequestBodyPostEmptyObject200ApplicationJSONEmpty), empty_resp_with_empty_properies: T.nilable(Operations::RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies)).void } + sig { params(empty: T.nilable(Operations::RequestBodyPostEmptyObjectEmpty), empty_resp_with_empty_properies: T.nilable(Operations::EmptyRespWithEmptyProperies)).void } def initialize(empty: nil, empty_resp_with_empty_properies: nil) @empty = empty @empty_resp_with_empty_properies = empty_resp_with_empty_properies @@ -90,18 +90,18 @@ class RequestBodyPostEmptyObjectResponse < OpenApiSDK::Utils::FieldAugmented field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostEmptyObjectResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_empty_object_200_application_json_object, T.nilable(Operations::RequestBodyPostEmptyObject200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_empty_object_200_application_json_object: T.nilable(Operations::RequestBodyPostEmptyObject200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_empty_object_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostEmptyObjectResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_empty_object_200_application_json_object = request_body_post_empty_object_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostformdeep.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostformdeep.rb index 96812eb90..206dfb79c 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostformdeep.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostformdeep.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPostFormDeepResForm < OpenApiSDK::Utils::FieldAugmented + class Form < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -45,10 +45,10 @@ class RequestBodyPostFormDeepRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :form, Operations::RequestBodyPostFormDeepResForm, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('form') } } + field :form, Operations::Form, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('form') } } - sig { params(form: Operations::RequestBodyPostFormDeepResForm).void } + sig { params(form: Operations::Form).void } def initialize(form: nil) @form = form end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostformsimple.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostformsimple.rb index 8a122ee27..414ea15f6 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostformsimple.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostformsimple.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPostFormSimpleResForm < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostFormSimpleForm < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -62,7 +62,7 @@ def initialize(any: nil, bool: nil, date: nil, date_time: nil, enum: nil, float3 end - class RequestBodyPostFormSimpleResHeaders < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostFormSimpleHeaders < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -80,12 +80,12 @@ class RequestBodyPostFormSimpleRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :form, Operations::RequestBodyPostFormSimpleResForm, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('form') } } + field :form, Operations::RequestBodyPostFormSimpleForm, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('form') } } - field :headers, Operations::RequestBodyPostFormSimpleResHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } + field :headers, Operations::RequestBodyPostFormSimpleHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } - sig { params(form: Operations::RequestBodyPostFormSimpleResForm, headers: Operations::RequestBodyPostFormSimpleResHeaders).void } + sig { params(form: Operations::RequestBodyPostFormSimpleForm, headers: Operations::RequestBodyPostFormSimpleHeaders).void } def initialize(form: nil, headers: nil) @form = form @headers = headers diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraybigint.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraybigint.rb index f0e690fc2..bc5b3b818 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraybigint.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraybigint.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesArrayBigIntResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesArrayBigIntResponse < OpenApiSDK::Utils::Field field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesArrayBigIntResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_array_big_int_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_array_big_int_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_array_big_int_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesArrayBigIntResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_array_big_int_200_application_json_object = request_body_post_json_data_types_array_big_int_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraydate.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraydate.rb index 51b36b159..bcc58cf27 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraydate.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraydate.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesArrayDateResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesArrayDateResponse < OpenApiSDK::Utils::FieldAu field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesArrayDateResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_array_date_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_array_date_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_array_date_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesArrayDateResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_array_date_200_application_json_object = request_body_post_json_data_types_array_date_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.rb index 9b51284bc..e5ca664e2 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesArrayDecimalStrResponse < OpenApiSDK::Utils::F field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_array_decimal_str_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_array_decimal_str_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_array_decimal_str_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_array_decimal_str_200_application_json_object = request_body_post_json_data_types_array_decimal_str_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesbigint.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesbigint.rb index 69999db7f..fc1f05101 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesbigint.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesbigint.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesBigInt200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesBigIntResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesBigIntResponse < OpenApiSDK::Utils::FieldAugme field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesBigIntResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_big_int_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesBigInt200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_big_int_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesBigInt200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_big_int_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesBigIntResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_big_int_200_application_json_object = request_body_post_json_data_types_big_int_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesbigintstr.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesbigintstr.rb index b50ded492..793d2ed52 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesbigintstr.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesbigintstr.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesBigIntStrResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesBigIntStrResponse < OpenApiSDK::Utils::FieldAu field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesBigIntStrResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_big_int_str_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_big_int_str_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_big_int_str_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesBigIntStrResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_big_int_str_200_application_json_object = request_body_post_json_data_types_big_int_str_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesboolean.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesboolean.rb index 7c9e582fd..18ec449b1 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesboolean.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesboolean.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesBoolean200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesBooleanResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class RequestBodyPostJsonDataTypesBooleanResponse < OpenApiSDK::Utils::FieldAugm field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesBooleanResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_boolean_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesBoolean200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_boolean_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesBoolean200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_boolean_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesBooleanResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_boolean_200_application_json_object = request_body_post_json_data_types_boolean_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdate.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdate.rb index 503cc255f..648772111 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdate.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdate.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesDate200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesDateResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesDateResponse < OpenApiSDK::Utils::FieldAugment field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesDateResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_date_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesDate200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_date_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesDate200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_date_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesDateResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_date_200_application_json_object = request_body_post_json_data_types_date_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdatetime.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdatetime.rb index 5609fa9d4..38717453e 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdatetime.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdatetime.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesDateTime200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesDateTimeResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesDateTimeResponse < OpenApiSDK::Utils::FieldAug field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesDateTimeResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_date_time_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesDateTime200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_date_time_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesDateTime200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_date_time_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesDateTimeResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_date_time_200_application_json_object = request_body_post_json_data_types_date_time_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdecimal.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdecimal.rb index 5ee4ce5be..03fb39822 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdecimal.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdecimal.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesDecimal200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesDecimalResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesDecimalResponse < OpenApiSDK::Utils::FieldAugm field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesDecimalResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_decimal_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesDecimal200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_decimal_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesDecimal200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_decimal_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesDecimalResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_decimal_200_application_json_object = request_body_post_json_data_types_decimal_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.rb index 4a5681c5a..9a091379a 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesDecimalStrResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesDecimalStrResponse < OpenApiSDK::Utils::FieldA field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesDecimalStrResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_decimal_str_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_decimal_str_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_decimal_str_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesDecimalStrResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_decimal_str_200_application_json_object = request_body_post_json_data_types_decimal_str_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesfloat32.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesfloat32.rb index dce1b23db..6616f5005 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesfloat32.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesfloat32.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesFloat32200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesFloat32ResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class RequestBodyPostJsonDataTypesFloat32Response < OpenApiSDK::Utils::FieldAugm field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesFloat32ResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_float32_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesFloat32200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_float32_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesFloat32200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_float32_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesFloat32ResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_float32_200_application_json_object = request_body_post_json_data_types_float32_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesint32.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesint32.rb index 44b4a2694..9b6e12e17 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesint32.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesint32.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesInt32200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesInt32ResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class RequestBodyPostJsonDataTypesInt32Response < OpenApiSDK::Utils::FieldAugmen field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesInt32ResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_int32_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesInt32200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_int32_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesInt32200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_int32_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesInt32ResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_int32_200_application_json_object = request_body_post_json_data_types_int32_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesinteger.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesinteger.rb index 059633c01..f125739c9 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesinteger.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesinteger.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesInteger200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesIntegerResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class RequestBodyPostJsonDataTypesIntegerResponse < OpenApiSDK::Utils::FieldAugm field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesIntegerResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_integer_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesInteger200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_integer_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesInteger200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_integer_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesIntegerResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_integer_200_application_json_object = request_body_post_json_data_types_integer_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.rb index 437d10bf6..ea18ab966 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesMapBigIntStrResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesMapBigIntStrResponse < OpenApiSDK::Utils::Fiel field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesMapBigIntStrResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_map_big_int_str_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_map_big_int_str_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_map_big_int_str_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesMapBigIntStrResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_map_big_int_str_200_application_json_object = request_body_post_json_data_types_map_big_int_str_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.rb index 89e46498e..dd6e5c15a 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesMapDateTimeResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesMapDateTimeResponse < OpenApiSDK::Utils::Field field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesMapDateTimeResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_map_date_time_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_map_date_time_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_map_date_time_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesMapDateTimeResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_map_date_time_200_application_json_object = request_body_post_json_data_types_map_date_time_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.rb index 3c36144c7..48b292a07 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesMapDecimalResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -33,18 +33,18 @@ class RequestBodyPostJsonDataTypesMapDecimalResponse < OpenApiSDK::Utils::FieldA field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesMapDecimalResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_map_decimal_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_map_decimal_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_map_decimal_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesMapDecimalResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_map_decimal_200_application_json_object = request_body_post_json_data_types_map_decimal_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesnumber.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesnumber.rb index 8394c2ae4..6326295c6 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesnumber.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesnumber.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesNumber200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesNumberResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class RequestBodyPostJsonDataTypesNumberResponse < OpenApiSDK::Utils::FieldAugme field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesNumberResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_number_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesNumber200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_number_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesNumber200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_number_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesNumberResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_number_200_application_json_object = request_body_post_json_data_types_number_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesstring.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesstring.rb index 32f9a9636..2e147af7e 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesstring.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostjsondatatypesstring.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostJSONDataTypesString200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostJsonDataTypesStringResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class RequestBodyPostJsonDataTypesStringResponse < OpenApiSDK::Utils::FieldAugme field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostJsonDataTypesStringResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_json_data_types_string_200_application_json_object, T.nilable(Operations::RequestBodyPostJSONDataTypesString200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_json_data_types_string_200_application_json_object: T.nilable(Operations::RequestBodyPostJSONDataTypesString200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_json_data_types_string_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostJsonDataTypesStringResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_json_data_types_string_200_application_json_object = request_body_post_json_data_types_string_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.rb index e90d59052..18034b25c 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostMultipleContentTypesInlineFilteredRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_form.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_form.rb index a398fa52f..db1a8efb5 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_form.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_form.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostMultipleContentTypesSplitFormRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_json.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_json.rb index 1757f40df..1ea60e8d8 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_json.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_json.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPostMultipleContentTypesSplitApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostMultipleContentTypesSplitJsonRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_multipart.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_multipart.rb index 02ce594fd..5a8ea5026 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_multipart.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplit_multipart.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPostMultipleContentTypesSplitMultipartFormData < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostMultipleContentTypesSplitMultipartRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_form.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_form.rb index a0a01256f..b74a612ce 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_form.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_form.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostMultipleContentTypesSplitParamFormRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -35,10 +35,10 @@ class RequestBodyPostMultipleContentTypesSplitParamFormRequest < OpenApiSDK::Uti field :param_str, String, { 'query_param': { 'field_name': 'paramStr', 'style': 'form', 'explode': true } } - field :request_body, Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded, { 'request': { 'media_type': 'application/x-www-form-urlencoded' } } + field :request_body, Operations::RequestBodyPostMultipleContentTypesSplitParamFormRequestBody, { 'request': { 'media_type': 'application/x-www-form-urlencoded' } } - sig { params(param_str: String, request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded).void } + sig { params(param_str: String, request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamFormRequestBody).void } def initialize(param_str: nil, request_body: nil) @param_str = param_str @request_body = request_body diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_json.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_json.rb index 904cb4a7c..b277e8b8d 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_json.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_json.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPostMultipleContentTypesSplitParamApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -35,10 +35,10 @@ class RequestBodyPostMultipleContentTypesSplitParamJsonRequest < OpenApiSDK::Uti field :param_str, String, { 'query_param': { 'field_name': 'paramStr', 'style': 'form', 'explode': true } } - field :request_body, Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationJSON, { 'request': { 'media_type': 'application/json' } } + field :request_body, Operations::RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody, { 'request': { 'media_type': 'application/json' } } - sig { params(param_str: String, request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationJSON).void } + sig { params(param_str: String, request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody).void } def initialize(param_str: nil, request_body: nil) @param_str = param_str @request_body = request_body diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_multipart.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_multipart.rb index dce2d926f..ef6493631 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_multipart.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostmultiplecontenttypessplitparam_multipart.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPostMultipleContentTypesSplitParamMultipartFormData < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -35,10 +35,10 @@ class RequestBodyPostMultipleContentTypesSplitParamMultipartRequest < OpenApiSDK field :param_str, String, { 'query_param': { 'field_name': 'paramStr', 'style': 'form', 'explode': true } } - field :request_body, Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartFormData, { 'request': { 'media_type': 'multipart/form-data' } } + field :request_body, Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody, { 'request': { 'media_type': 'multipart/form-data' } } - sig { params(param_str: String, request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartFormData).void } + sig { params(param_str: String, request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody).void } def initialize(param_str: nil, request_body: nil) @param_str = param_str @request_body = request_body diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.rb index 0d54e9992..c51130e44 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostNotNullableNotRequiredStringBodyResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class RequestBodyPostNotNullableNotRequiredStringBodyResponse < OpenApiSDK::Util field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostNotNullableNotRequiredStringBodyResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_not_nullable_not_required_string_body_200_application_json_object, T.nilable(Operations::RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_not_nullable_not_required_string_body_200_application_json_object: T.nilable(Operations::RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_not_nullable_not_required_string_body_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostNotNullableNotRequiredStringBodyResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_not_nullable_not_required_string_body_200_application_json_object = request_body_post_not_nullable_not_required_string_body_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.rb index 474fe1a1e..4c37b2e52 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostNullableNotRequiredStringBodyResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class RequestBodyPostNullableNotRequiredStringBodyResponse < OpenApiSDK::Utils:: field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostNullableNotRequiredStringBodyResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_nullable_not_required_string_body_200_application_json_object, T.nilable(Operations::RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_nullable_not_required_string_body_200_application_json_object: T.nilable(Operations::RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_nullable_not_required_string_body_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostNullableNotRequiredStringBodyResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_nullable_not_required_string_body_200_application_json_object = request_body_post_nullable_not_required_string_body_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullablerequiredstringbody.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullablerequiredstringbody.rb index fa8b56a0a..04bc62dbe 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullablerequiredstringbody.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullablerequiredstringbody.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostNullableRequiredStringBody200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostNullableRequiredStringBodyResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class RequestBodyPostNullableRequiredStringBodyResponse < OpenApiSDK::Utils::Fie field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostNullableRequiredStringBodyResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_nullable_required_string_body_200_application_json_object, T.nilable(Operations::RequestBodyPostNullableRequiredStringBody200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_nullable_required_string_body_200_application_json_object: T.nilable(Operations::RequestBodyPostNullableRequiredStringBody200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_nullable_required_string_body_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostNullableRequiredStringBodyResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_nullable_required_string_body_200_application_json_object = request_body_post_nullable_required_string_body_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullarray.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullarray.rb index df44ea1bd..82f17e8a9 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullarray.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnullarray.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostNullArray200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostNullArrayResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class RequestBodyPostNullArrayResponse < OpenApiSDK::Utils::FieldAugmented field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostNullArrayResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_null_array_200_application_json_object, T.nilable(Operations::RequestBodyPostNullArray200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_null_array_200_application_json_object: T.nilable(Operations::RequestBodyPostNullArray200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_null_array_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostNullArrayResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_null_array_200_application_json_object = request_body_post_null_array_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnulldictionary.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnulldictionary.rb index 8820e00c4..5da0d5d48 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnulldictionary.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodypostnulldictionary.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class RequestBodyPostNullDictionary200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPostNullDictionaryResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class RequestBodyPostNullDictionaryResponse < OpenApiSDK::Utils::FieldAugmented field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::RequestBodyPostNullDictionaryResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :request_body_post_null_dictionary_200_application_json_object, T.nilable(Operations::RequestBodyPostNullDictionary200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), request_body_post_null_dictionary_200_application_json_object: T.nilable(Operations::RequestBodyPostNullDictionary200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, request_body_post_null_dictionary_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::RequestBodyPostNullDictionaryResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @request_body_post_null_dictionary_200_application_json_object = request_body_post_null_dictionary_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputbyteswithparams.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputbyteswithparams.rb index 63080f5bf..2e46af987 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputbyteswithparams.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputbyteswithparams.rb @@ -26,7 +26,7 @@ def initialize(query_string_param: nil, request_body: nil) end - class RequestBodyPutBytesWithParamsResArgs < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPutBytesWithParamsArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -44,12 +44,12 @@ class RequestBodyPutBytesWithParamsRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::RequestBodyPutBytesWithParamsResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::RequestBodyPutBytesWithParamsArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } field :data, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('data') } } - sig { params(args: Operations::RequestBodyPutBytesWithParamsResArgs, data: String).void } + sig { params(args: Operations::RequestBodyPutBytesWithParamsArgs, data: String).void } def initialize(args: nil, data: nil) @args = args @data = data diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartdeep.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartdeep.rb index 99f9280cb..357e2f9bb 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartdeep.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartdeep.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPutMultipartDeepResForm < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPutMultipartDeepForm < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -45,10 +45,10 @@ class RequestBodyPutMultipartDeepRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :form, Operations::RequestBodyPutMultipartDeepResForm, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('form') } } + field :form, Operations::RequestBodyPutMultipartDeepForm, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('form') } } - sig { params(form: Operations::RequestBodyPutMultipartDeepResForm).void } + sig { params(form: Operations::RequestBodyPutMultipartDeepForm).void } def initialize(form: nil) @form = form end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartdifferentfilename.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartdifferentfilename.rb index cd85b9b5f..6d1597162 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartdifferentfilename.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartdifferentfilename.rb @@ -9,19 +9,19 @@ module OpenApiSDK module Operations - class RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName < OpenApiSDK::Utils::FieldAugmented + class DifferentFileName < OpenApiSDK::Utils::FieldAugmented extend T::Sig field :content, String, { 'multipart_form': { 'content': true } } - field :different_file_name, String, { 'multipart_form': { 'field_name': 'differentFileName' } } + field :file_name, String, { 'multipart_form': { 'field_name': 'differentFileName' } } - sig { params(content: String, different_file_name: String).void } - def initialize(content: nil, different_file_name: nil) + sig { params(content: String, file_name: String).void } + def initialize(content: nil, file_name: nil) @content = content - @different_file_name = different_file_name + @file_name = file_name end end @@ -30,10 +30,10 @@ class RequestBodyPutMultipartDifferentFileNameRequestBody < OpenApiSDK::Utils::F extend T::Sig - field :different_file_name, T.nilable(Operations::RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName), { 'multipart_form': { 'file': true } } + field :different_file_name, T.nilable(Operations::DifferentFileName), { 'multipart_form': { 'file': true } } - sig { params(different_file_name: T.nilable(Operations::RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName)).void } + sig { params(different_file_name: T.nilable(Operations::DifferentFileName)).void } def initialize(different_file_name: nil) @different_file_name = different_file_name end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartfile.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartfile.rb index 207f2520d..d1921f269 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartfile.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartfile.rb @@ -9,19 +9,19 @@ module OpenApiSDK module Operations - class RequestBodyPutMultipartFileRequestBodyFile < OpenApiSDK::Utils::FieldAugmented + class File < OpenApiSDK::Utils::FieldAugmented extend T::Sig field :content, String, { 'multipart_form': { 'content': true } } - field :file, String, { 'multipart_form': { 'field_name': 'file' } } + field :file_name, String, { 'multipart_form': { 'field_name': 'file' } } - sig { params(content: String, file: String).void } - def initialize(content: nil, file: nil) + sig { params(content: String, file_name: String).void } + def initialize(content: nil, file_name: nil) @content = content - @file = file + @file_name = file_name end end @@ -30,10 +30,10 @@ class RequestBodyPutMultipartFileRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :file, T.nilable(Operations::RequestBodyPutMultipartFileRequestBodyFile), { 'multipart_form': { 'file': true } } + field :file, T.nilable(Operations::File), { 'multipart_form': { 'file': true } } - sig { params(file: T.nilable(Operations::RequestBodyPutMultipartFileRequestBodyFile)).void } + sig { params(file: T.nilable(Operations::File)).void } def initialize(file: nil) @file = file end diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartsimple.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartsimple.rb index 39f183b94..7e162f264 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartsimple.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputmultipartsimple.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class RequestBodyPutMultipartSimpleResForm < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPutMultipartSimpleForm < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -62,7 +62,7 @@ def initialize(any: nil, bool: nil, date: nil, date_time: nil, enum: nil, float3 end - class RequestBodyPutMultipartSimpleResHeaders < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPutMultipartSimpleHeaders < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -80,12 +80,12 @@ class RequestBodyPutMultipartSimpleRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :form, Operations::RequestBodyPutMultipartSimpleResForm, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('form') } } + field :form, Operations::RequestBodyPutMultipartSimpleForm, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('form') } } - field :headers, Operations::RequestBodyPutMultipartSimpleResHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } + field :headers, Operations::RequestBodyPutMultipartSimpleHeaders, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headers') } } - sig { params(form: Operations::RequestBodyPutMultipartSimpleResForm, headers: Operations::RequestBodyPutMultipartSimpleResHeaders).void } + sig { params(form: Operations::RequestBodyPutMultipartSimpleForm, headers: Operations::RequestBodyPutMultipartSimpleHeaders).void } def initialize(form: nil, headers: nil) @form = form @headers = headers diff --git a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputstringwithparams.rb b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputstringwithparams.rb index 365b7cdac..88c531ffb 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/requestbodyputstringwithparams.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/requestbodyputstringwithparams.rb @@ -26,7 +26,7 @@ def initialize(query_string_param: nil, request_body: nil) end - class RequestBodyPutStringWithParamsResArgs < OpenApiSDK::Utils::FieldAugmented + class RequestBodyPutStringWithParamsArgs < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -44,12 +44,12 @@ class RequestBodyPutStringWithParamsRes < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :args, Operations::RequestBodyPutStringWithParamsResArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } + field :args, Operations::RequestBodyPutStringWithParamsArgs, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('args') } } field :data, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('data') } } - sig { params(args: Operations::RequestBodyPutStringWithParamsResArgs, data: String).void } + sig { params(args: Operations::RequestBodyPutStringWithParamsArgs, data: String).void } def initialize(args: nil, data: nil) @args = args @data = data diff --git a/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.rb b/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.rb index 2cc7d7840..18bc41fac 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class ResponseBodyAdditionalPropertiesComplexNumbersPostResponse < OpenApiSDK::U field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :response_body_additional_properties_complex_numbers_post_200_application_json_object, T.nilable(Operations::ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), response_body_additional_properties_complex_numbers_post_200_application_json_object: T.nilable(Operations::ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, response_body_additional_properties_complex_numbers_post_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @response_body_additional_properties_complex_numbers_post_200_application_json_object = response_body_additional_properties_complex_numbers_post_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiesdatepost.rb b/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiesdatepost.rb index b8023a6b8..3747075fe 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiesdatepost.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiesdatepost.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class ResponseBodyAdditionalPropertiesDatePostResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class ResponseBodyAdditionalPropertiesDatePostResponse < OpenApiSDK::Utils::Fiel field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::ResponseBodyAdditionalPropertiesDatePostResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :response_body_additional_properties_date_post_200_application_json_object, T.nilable(Operations::ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), response_body_additional_properties_date_post_200_application_json_object: T.nilable(Operations::ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, response_body_additional_properties_date_post_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::ResponseBodyAdditionalPropertiesDatePostResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @response_body_additional_properties_date_post_200_application_json_object = response_body_additional_properties_date_post_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.rb b/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.rb index a66243ed0..f66ae1f90 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class ResponseBodyAdditionalPropertiesObjectPostResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class ResponseBodyAdditionalPropertiesObjectPostResponse < OpenApiSDK::Utils::Fi field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::ResponseBodyAdditionalPropertiesObjectPostResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :response_body_additional_properties_object_post_200_application_json_object, T.nilable(Operations::ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), response_body_additional_properties_object_post_200_application_json_object: T.nilable(Operations::ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, response_body_additional_properties_object_post_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::ResponseBodyAdditionalPropertiesObjectPostResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @response_body_additional_properties_object_post_200_application_json_object = response_body_additional_properties_object_post_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiespost.rb b/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiespost.rb index a670482f7..abe3664ee 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiespost.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/responsebodyadditionalpropertiespost.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations # OK - class ResponseBodyAdditionalPropertiesPost200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class ResponseBodyAdditionalPropertiesPostResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -30,18 +30,18 @@ class ResponseBodyAdditionalPropertiesPostResponse < OpenApiSDK::Utils::FieldAug field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::ResponseBodyAdditionalPropertiesPostResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :response_body_additional_properties_post_200_application_json_object, T.nilable(Operations::ResponseBodyAdditionalPropertiesPost200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), response_body_additional_properties_post_200_application_json_object: T.nilable(Operations::ResponseBodyAdditionalPropertiesPost200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, response_body_additional_properties_post_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::ResponseBodyAdditionalPropertiesPostResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @response_body_additional_properties_post_200_application_json_object = response_body_additional_properties_post_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/responsebodyoptionalget.rb b/ruby-client-sdk/lib/sdk/models/operations/responsebodyoptionalget.rb index c3178539f..44b4bc65a 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/responsebodyoptionalget.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/responsebodyoptionalget.rb @@ -23,17 +23,17 @@ class ResponseBodyOptionalGetResponse < OpenApiSDK::Utils::FieldAugmented # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) # OK - field :response_body_optional_get_200_text_plain_string, T.nilable(String) + field :res, T.nilable(String) # OK field :typed_object1, T.nilable(Shared::TypedObject1) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), response_body_optional_get_200_text_plain_string: T.nilable(String), typed_object1: T.nilable(Shared::TypedObject1)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, response_body_optional_get_200_text_plain_string: nil, typed_object1: nil) + sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), res: T.nilable(String), typed_object1: T.nilable(Shared::TypedObject1)).void } + def initialize(content_type: nil, status_code: nil, raw_response: nil, res: nil, typed_object1: nil) @content_type = content_type @status_code = status_code @raw_response = raw_response - @response_body_optional_get_200_text_plain_string = response_body_optional_get_200_text_plain_string + @res = res @typed_object1 = typed_object1 end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.rb b/ruby-client-sdk/lib/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.rb index 6b20d28ab..54aede9d5 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.rb @@ -10,7 +10,7 @@ module OpenApiSDK module Operations # OK - class ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class ResponseBodyZeroValueComplexTypePtrsPostResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -31,18 +31,18 @@ class ResponseBodyZeroValueComplexTypePtrsPostResponse < OpenApiSDK::Utils::Fiel field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # OK + field :object, T.nilable(Operations::ResponseBodyZeroValueComplexTypePtrsPostResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # OK - field :response_body_zero_value_complex_type_ptrs_post_200_application_json_object, T.nilable(Operations::ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), response_body_zero_value_complex_type_ptrs_post_200_application_json_object: T.nilable(Operations::ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, response_body_zero_value_complex_type_ptrs_post_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::ResponseBodyZeroValueComplexTypePtrsPostResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @response_body_zero_value_complex_type_ptrs_post_200_application_json_object = response_body_zero_value_complex_type_ptrs_post_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/statusgetxspeakeasyerrors.rb b/ruby-client-sdk/lib/sdk/models/operations/statusgetxspeakeasyerrors.rb index 0190ceb3a..6bd4ab890 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/statusgetxspeakeasyerrors.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/statusgetxspeakeasyerrors.rb @@ -28,7 +28,7 @@ def initialize(status_code: nil) end # Not Implemented - class StatusGetXSpeakeasyErrors501ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class StatusGetXSpeakeasyErrorsResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -57,19 +57,19 @@ class StatusGetXSpeakeasyErrorsResponse < OpenApiSDK::Utils::FieldAugmented field :status_code, Integer # Internal Server Error field :error, T.nilable(Shared::Error) + # Not Implemented + field :object, T.nilable(Operations::StatusGetXSpeakeasyErrorsResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # Not Implemented - field :status_get_x_speakeasy_errors_501_application_json_object, T.nilable(Operations::StatusGetXSpeakeasyErrors501ApplicationJSON) - sig { params(content_type: String, status_code: Integer, error: T.nilable(Shared::Error), raw_response: T.nilable(Faraday::Response), status_get_x_speakeasy_errors_501_application_json_object: T.nilable(Operations::StatusGetXSpeakeasyErrors501ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, error: nil, raw_response: nil, status_get_x_speakeasy_errors_501_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, error: T.nilable(Shared::Error), object: T.nilable(Operations::StatusGetXSpeakeasyErrorsResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, error: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code @error = error + @object = object @raw_response = raw_response - @status_get_x_speakeasy_errors_501_application_json_object = status_get_x_speakeasy_errors_501_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/operations/typedparametergenerationget.rb b/ruby-client-sdk/lib/sdk/models/operations/typedparametergenerationget.rb index 03fcda2ae..4331a956d 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/typedparametergenerationget.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/typedparametergenerationget.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Operations - class TypedParameterGenerationGetObj < OpenApiSDK::Utils::FieldAugmented + class Obj < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -39,10 +39,10 @@ class TypedParameterGenerationGetRequest < OpenApiSDK::Utils::FieldAugmented field :decimal, T.nilable(Float), { 'query_param': { 'field_name': 'decimal', 'style': 'form', 'explode': true } } - field :obj, T.nilable(Operations::TypedParameterGenerationGetObj), { 'query_param': { 'field_name': 'obj', 'style': 'form', 'explode': true } } + field :obj, T.nilable(Operations::Obj), { 'query_param': { 'field_name': 'obj', 'style': 'form', 'explode': true } } - sig { params(bigint: T.nilable(Integer), date: T.nilable(Date), decimal: T.nilable(Float), obj: T.nilable(Operations::TypedParameterGenerationGetObj)).void } + sig { params(bigint: T.nilable(Integer), date: T.nilable(Date), decimal: T.nilable(Float), obj: T.nilable(Operations::Obj)).void } def initialize(bigint: nil, date: nil, decimal: nil, obj: nil) @bigint = bigint @date = date diff --git a/ruby-client-sdk/lib/sdk/models/operations/usageexamplepost.rb b/ruby-client-sdk/lib/sdk/models/operations/usageexamplepost.rb index 78017cf1c..7c6a5a0dc 100755 --- a/ruby-client-sdk/lib/sdk/models/operations/usageexamplepost.rb +++ b/ruby-client-sdk/lib/sdk/models/operations/usageexamplepost.rb @@ -49,8 +49,8 @@ def initialize(faker_formatted_strings: nil, faker_strings: nil, simple_object: end end - # UsageExamplePostEnumParameter - An enum type - class UsageExamplePostEnumParameter < T::Enum + # EnumParameter - An enum type + class EnumParameter < T::Enum enums do VALUE1 = new('value1') VALUE2 = new('value2') @@ -59,8 +59,8 @@ class UsageExamplePostEnumParameter < T::Enum end - # UsageExamplePostOptEnumParameter - An enum type - class UsageExamplePostOptEnumParameter < T::Enum + # OptEnumParameter - An enum type + class OptEnumParameter < T::Enum enums do VALUE1 = new('value1') VALUE2 = new('value2') @@ -92,7 +92,7 @@ class UsageExamplePostRequest < OpenApiSDK::Utils::FieldAugmented # A double parameter field :double_parameter, Float, { 'query_param': { 'field_name': 'doubleParameter', 'style': 'form', 'explode': true } } # An enum parameter - field :enum_parameter, Operations::UsageExamplePostEnumParameter, { 'query_param': { 'field_name': 'enumParameter', 'style': 'form', 'explode': true } } + field :enum_parameter, Operations::EnumParameter, { 'query_param': { 'field_name': 'enumParameter', 'style': 'form', 'explode': true } } # A number parameter that contains a falsey example value field :falsey_number_parameter, Float, { 'query_param': { 'field_name': 'falseyNumberParameter', 'style': 'form', 'explode': true } } # A float32 parameter @@ -114,12 +114,12 @@ class UsageExamplePostRequest < OpenApiSDK::Utils::FieldAugmented # A decimal parameter field :decimal_str_parameter_optional, T.nilable(String), { 'query_param': { 'field_name': 'decimalStrParameterOptional', 'style': 'form', 'explode': true } } # An enum parameter - field :opt_enum_parameter, T.nilable(Operations::UsageExamplePostOptEnumParameter), { 'query_param': { 'field_name': 'optEnumParameter', 'style': 'form', 'explode': true } } + field :opt_enum_parameter, T.nilable(Operations::OptEnumParameter), { 'query_param': { 'field_name': 'optEnumParameter', 'style': 'form', 'explode': true } } # A request body that contains fields with different formats for testing example generation field :request_body, T.nilable(Operations::UsageExamplePostRequestBody), { 'request': { 'media_type': 'application/json' } } - sig { params(bigint_parameter: Integer, bigint_str_parameter: String, bool_parameter: T::Boolean, date_parameter: Date, date_time_default_parameter: DateTime, date_time_parameter: DateTime, decimal_parameter: Float, decimal_str_parameter: String, double_parameter: Float, enum_parameter: Operations::UsageExamplePostEnumParameter, falsey_number_parameter: Float, float32_parameter: Float, float_parameter: Float, int64_parameter: Integer, int_parameter: Integer, str_parameter: String, bigint_parameter_optional: T.nilable(Integer), bigint_str_parameter_optional: T.nilable(String), decimal_parameter_optional: T.nilable(Float), decimal_str_parameter_optional: T.nilable(String), opt_enum_parameter: T.nilable(Operations::UsageExamplePostOptEnumParameter), request_body: T.nilable(Operations::UsageExamplePostRequestBody)).void } + sig { params(bigint_parameter: Integer, bigint_str_parameter: String, bool_parameter: T::Boolean, date_parameter: Date, date_time_default_parameter: DateTime, date_time_parameter: DateTime, decimal_parameter: Float, decimal_str_parameter: String, double_parameter: Float, enum_parameter: Operations::EnumParameter, falsey_number_parameter: Float, float32_parameter: Float, float_parameter: Float, int64_parameter: Integer, int_parameter: Integer, str_parameter: String, bigint_parameter_optional: T.nilable(Integer), bigint_str_parameter_optional: T.nilable(String), decimal_parameter_optional: T.nilable(Float), decimal_str_parameter_optional: T.nilable(String), opt_enum_parameter: T.nilable(Operations::OptEnumParameter), request_body: T.nilable(Operations::UsageExamplePostRequestBody)).void } def initialize(bigint_parameter: nil, bigint_str_parameter: nil, bool_parameter: nil, date_parameter: nil, date_time_default_parameter: nil, date_time_parameter: nil, decimal_parameter: nil, decimal_str_parameter: nil, double_parameter: nil, enum_parameter: nil, falsey_number_parameter: nil, float32_parameter: nil, float_parameter: nil, int64_parameter: nil, int_parameter: nil, str_parameter: nil, bigint_parameter_optional: nil, bigint_str_parameter_optional: nil, decimal_parameter_optional: nil, decimal_str_parameter_optional: nil, opt_enum_parameter: nil, request_body: nil) @bigint_parameter = bigint_parameter @bigint_str_parameter = bigint_str_parameter @@ -147,7 +147,7 @@ def initialize(bigint_parameter: nil, bigint_str_parameter: nil, bool_parameter: end - class UsageExamplePost200ApplicationJSONJSON < OpenApiSDK::Utils::FieldAugmented + class UsageExamplePostJson < OpenApiSDK::Utils::FieldAugmented extend T::Sig # A set of strings with format values that lead to relevant examples being generated for them @@ -168,14 +168,14 @@ def initialize(faker_formatted_strings: nil, faker_strings: nil, simple_object: end # A response body that contains the simpleObject sent in the request body - class UsageExamplePost200ApplicationJSON < OpenApiSDK::Utils::FieldAugmented + class UsageExamplePostResponseBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :json, Operations::UsageExamplePost200ApplicationJSONJSON, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('json') } } + field :json, Operations::UsageExamplePostJson, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('json') } } - sig { params(json: Operations::UsageExamplePost200ApplicationJSONJSON).void } + sig { params(json: Operations::UsageExamplePostJson).void } def initialize(json: nil) @json = json end @@ -189,18 +189,18 @@ class UsageExamplePostResponse < OpenApiSDK::Utils::FieldAugmented field :content_type, String # HTTP response status code for this operation field :status_code, Integer + # A successful response that contains the simpleObject sent in the request body + field :object, T.nilable(Operations::UsageExamplePostResponseBody) # Raw HTTP response; suitable for custom response parsing field :raw_response, T.nilable(Faraday::Response) - # A successful response that contains the simpleObject sent in the request body - field :usage_example_post_200_application_json_object, T.nilable(Operations::UsageExamplePost200ApplicationJSON) - sig { params(content_type: String, status_code: Integer, raw_response: T.nilable(Faraday::Response), usage_example_post_200_application_json_object: T.nilable(Operations::UsageExamplePost200ApplicationJSON)).void } - def initialize(content_type: nil, status_code: nil, raw_response: nil, usage_example_post_200_application_json_object: nil) + sig { params(content_type: String, status_code: Integer, object: T.nilable(Operations::UsageExamplePostResponseBody), raw_response: T.nilable(Faraday::Response)).void } + def initialize(content_type: nil, status_code: nil, object: nil, raw_response: nil) @content_type = content_type @status_code = status_code + @object = object @raw_response = raw_response - @usage_example_post_200_application_json_object = usage_example_post_200_application_json_object end end end diff --git a/ruby-client-sdk/lib/sdk/models/shared/authservicerequestbody.rb b/ruby-client-sdk/lib/sdk/models/shared/authservicerequestbody.rb index 6f5403947..6ccaa61e4 100755 --- a/ruby-client-sdk/lib/sdk/models/shared/authservicerequestbody.rb +++ b/ruby-client-sdk/lib/sdk/models/shared/authservicerequestbody.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Shared - class AuthServiceRequestBodyBasicAuth < OpenApiSDK::Utils::FieldAugmented + class BasicAuth < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -26,7 +26,7 @@ def initialize(password: nil, username: nil) end - class AuthServiceRequestBodyHeaderAuth < OpenApiSDK::Utils::FieldAugmented + class HeaderAuth < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -47,12 +47,12 @@ class AuthServiceRequestBody < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :basic_auth, T.nilable(Shared::AuthServiceRequestBodyBasicAuth), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('basicAuth') } } + field :basic_auth, T.nilable(Shared::BasicAuth), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('basicAuth') } } - field :header_auth, T.nilable(T::Array[Shared::AuthServiceRequestBodyHeaderAuth]), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headerAuth') } } + field :header_auth, T.nilable(T::Array[Shared::HeaderAuth]), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('headerAuth') } } - sig { params(basic_auth: T.nilable(Shared::AuthServiceRequestBodyBasicAuth), header_auth: T.nilable(T::Array[Shared::AuthServiceRequestBodyHeaderAuth])).void } + sig { params(basic_auth: T.nilable(Shared::BasicAuth), header_auth: T.nilable(T::Array[Shared::HeaderAuth])).void } def initialize(basic_auth: nil, header_auth: nil) @basic_auth = basic_auth @header_auth = header_auth diff --git a/ruby-client-sdk/lib/sdk/models/shared/defaultsandconsts.rb b/ruby-client-sdk/lib/sdk/models/shared/defaultsandconsts.rb index 73ec065d4..f26f86b76 100755 --- a/ruby-client-sdk/lib/sdk/models/shared/defaultsandconsts.rb +++ b/ruby-client-sdk/lib/sdk/models/shared/defaultsandconsts.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Shared - class DefaultsAndConstsConstEnumInt < T::Enum + class ConstEnumInt < T::Enum enums do ONE = new(1) TWO = new(2) @@ -19,7 +19,7 @@ class DefaultsAndConstsConstEnumInt < T::Enum - class DefaultsAndConstsConstEnumStr < T::Enum + class ConstEnumStr < T::Enum enums do ONE = new('one') TWO = new('two') @@ -29,7 +29,7 @@ class DefaultsAndConstsConstEnumStr < T::Enum - class DefaultsAndConstsDefaultEnumInt < T::Enum + class DefaultEnumInt < T::Enum enums do ONE = new(1) TWO = new(2) @@ -39,7 +39,7 @@ class DefaultsAndConstsDefaultEnumInt < T::Enum - class DefaultsAndConstsDefaultEnumStr < T::Enum + class DefaultEnumStr < T::Enum enums do ONE = new('one') TWO = new('two') @@ -67,9 +67,9 @@ class DefaultsAndConsts < OpenApiSDK::Utils::FieldAugmented field :const_decimal_str, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('constDecimalStr') } } - field :const_enum_int, Shared::DefaultsAndConstsConstEnumInt, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('constEnumInt'), 'decoder': Utils.enum_from_string(Shared::DefaultsAndConstsConstEnumInt, false) } } + field :const_enum_int, Shared::ConstEnumInt, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('constEnumInt'), 'decoder': Utils.enum_from_string(Shared::ConstEnumInt, false) } } - field :const_enum_str, Shared::DefaultsAndConstsConstEnumStr, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('constEnumStr'), 'decoder': Utils.enum_from_string(Shared::DefaultsAndConstsConstEnumStr, false) } } + field :const_enum_str, Shared::ConstEnumStr, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('constEnumStr'), 'decoder': Utils.enum_from_string(Shared::ConstEnumStr, false) } } field :const_int, Integer, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('constInt') } } @@ -95,9 +95,9 @@ class DefaultsAndConsts < OpenApiSDK::Utils::FieldAugmented field :default_decimal_str, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('defaultDecimalStr') } } - field :default_enum_int, T.nilable(Shared::DefaultsAndConstsDefaultEnumInt), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('defaultEnumInt'), 'decoder': Utils.enum_from_string(Shared::DefaultsAndConstsDefaultEnumInt, true) } } + field :default_enum_int, T.nilable(Shared::DefaultEnumInt), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('defaultEnumInt'), 'decoder': Utils.enum_from_string(Shared::DefaultEnumInt, true) } } - field :default_enum_str, T.nilable(Shared::DefaultsAndConstsDefaultEnumStr), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('defaultEnumStr'), 'decoder': Utils.enum_from_string(Shared::DefaultsAndConstsDefaultEnumStr, true) } } + field :default_enum_str, T.nilable(Shared::DefaultEnumStr), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('defaultEnumStr'), 'decoder': Utils.enum_from_string(Shared::DefaultEnumStr, true) } } field :default_int, T.nilable(Integer), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('defaultInt') } } @@ -110,7 +110,7 @@ class DefaultsAndConsts < OpenApiSDK::Utils::FieldAugmented field :default_str_optional, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('defaultStrOptional') } } - sig { params(const_big_int: Integer, const_big_int_str: String, const_bool: T::Boolean, const_date: Date, const_date_time: DateTime, const_decimal: Float, const_decimal_str: String, const_enum_int: Shared::DefaultsAndConstsConstEnumInt, const_enum_str: Shared::DefaultsAndConstsConstEnumStr, const_int: Integer, const_num: Float, const_str: String, const_str_null: String, normal_field: String, default_big_int: T.nilable(Integer), default_big_int_str: T.nilable(String), default_bool: T.nilable(T::Boolean), default_date: T.nilable(Date), default_date_time: T.nilable(DateTime), default_decimal: T.nilable(Float), default_decimal_str: T.nilable(String), default_enum_int: T.nilable(Shared::DefaultsAndConstsDefaultEnumInt), default_enum_str: T.nilable(Shared::DefaultsAndConstsDefaultEnumStr), default_int: T.nilable(Integer), default_num: T.nilable(Float), default_str: T.nilable(String), default_str_nullable: T.nilable(String), default_str_optional: T.nilable(String)).void } + sig { params(const_big_int: Integer, const_big_int_str: String, const_bool: T::Boolean, const_date: Date, const_date_time: DateTime, const_decimal: Float, const_decimal_str: String, const_enum_int: Shared::ConstEnumInt, const_enum_str: Shared::ConstEnumStr, const_int: Integer, const_num: Float, const_str: String, const_str_null: String, normal_field: String, default_big_int: T.nilable(Integer), default_big_int_str: T.nilable(String), default_bool: T.nilable(T::Boolean), default_date: T.nilable(Date), default_date_time: T.nilable(DateTime), default_decimal: T.nilable(Float), default_decimal_str: T.nilable(String), default_enum_int: T.nilable(Shared::DefaultEnumInt), default_enum_str: T.nilable(Shared::DefaultEnumStr), default_int: T.nilable(Integer), default_num: T.nilable(Float), default_str: T.nilable(String), default_str_nullable: T.nilable(String), default_str_optional: T.nilable(String)).void } def initialize(const_big_int: nil, const_big_int_str: nil, const_bool: nil, const_date: nil, const_date_time: nil, const_decimal: nil, const_decimal_str: nil, const_enum_int: nil, const_enum_str: nil, const_int: nil, const_num: nil, const_str: nil, const_str_null: nil, normal_field: nil, default_big_int: nil, default_big_int_str: nil, default_bool: nil, default_date: nil, default_date_time: nil, default_decimal: nil, default_decimal_str: nil, default_enum_int: nil, default_enum_str: nil, default_int: nil, default_num: nil, default_str: nil, default_str_nullable: nil, default_str_optional: nil) @const_big_int = const_big_int @const_big_int_str = const_big_int_str diff --git a/ruby-client-sdk/lib/sdk/models/shared/deprecatedfieldinobject.rb b/ruby-client-sdk/lib/sdk/models/shared/deprecatedfieldinobject.rb index ab0c2da25..c5b2c8278 100755 --- a/ruby-client-sdk/lib/sdk/models/shared/deprecatedfieldinobject.rb +++ b/ruby-client-sdk/lib/sdk/models/shared/deprecatedfieldinobject.rb @@ -8,10 +8,10 @@ module OpenApiSDK module Shared - # DeprecatedFieldInObjectDeprecatedEnum + # DeprecatedEnum # # @deprecated class: This enum is deprecated. - class DeprecatedFieldInObjectDeprecatedEnum < T::Enum + class DeprecatedEnum < T::Enum enums do A = new('a') B = new('b') @@ -25,14 +25,14 @@ class DeprecatedFieldInObject < OpenApiSDK::Utils::FieldAugmented extend T::Sig # @deprecated true: This enum is deprecated. - field :deprecated_enum, T.nilable(Shared::DeprecatedFieldInObjectDeprecatedEnum), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('deprecatedEnum'), 'decoder': Utils.enum_from_string(Shared::DeprecatedFieldInObjectDeprecatedEnum, true) } } + field :deprecated_enum, T.nilable(Shared::DeprecatedEnum), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('deprecatedEnum'), 'decoder': Utils.enum_from_string(Shared::DeprecatedEnum, true) } } # @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible. Use new_field instead. field :deprecated_field, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('deprecatedField') } } field :new_field, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('newField') } } - sig { params(deprecated_enum: T.nilable(Shared::DeprecatedFieldInObjectDeprecatedEnum), deprecated_field: T.nilable(String), new_field: T.nilable(String)).void } + sig { params(deprecated_enum: T.nilable(Shared::DeprecatedEnum), deprecated_field: T.nilable(String), new_field: T.nilable(String)).void } def initialize(deprecated_enum: nil, deprecated_field: nil, new_field: nil) @deprecated_enum = deprecated_enum @deprecated_field = deprecated_field diff --git a/ruby-client-sdk/lib/sdk/models/shared/exampleresource.rb b/ruby-client-sdk/lib/sdk/models/shared/exampleresource.rb index d9893d595..d5224fccd 100755 --- a/ruby-client-sdk/lib/sdk/models/shared/exampleresource.rb +++ b/ruby-client-sdk/lib/sdk/models/shared/exampleresource.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Shared - class ExampleResourceChocolates < OpenApiSDK::Utils::FieldAugmented + class Chocolates < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -23,7 +23,7 @@ def initialize(description: nil) end - class ExampleResourceEnumNumber < T::Enum + class EnumNumber < T::Enum enums do ONE = new(1) TWO = new(2) @@ -33,7 +33,7 @@ class ExampleResourceEnumNumber < T::Enum - class ExampleResourceEnumStr < T::Enum + class EnumStr < T::Enum enums do ONE = new('one') TWO = new('two') @@ -47,7 +47,7 @@ class ExampleResource < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :chocolates, T::Array[Shared::ExampleResourceChocolates], { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('chocolates') } } + field :chocolates, T::Array[Shared::Chocolates], { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('chocolates') } } field :id, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('id') } } @@ -61,9 +61,9 @@ class ExampleResource < OpenApiSDK::Utils::FieldAugmented field :created_at, T.nilable(DateTime), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('createdAt'), 'decoder': Utils.datetime_from_iso_format(true) } } - field :enum_number, T.nilable(Shared::ExampleResourceEnumNumber), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('enumNumber'), 'decoder': Utils.enum_from_string(Shared::ExampleResourceEnumNumber, true) } } + field :enum_number, T.nilable(Shared::EnumNumber), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('enumNumber'), 'decoder': Utils.enum_from_string(Shared::EnumNumber, true) } } - field :enum_str, T.nilable(Shared::ExampleResourceEnumStr), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('enumStr'), 'decoder': Utils.enum_from_string(Shared::ExampleResourceEnumStr, true) } } + field :enum_str, T.nilable(Shared::EnumStr), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('enumStr'), 'decoder': Utils.enum_from_string(Shared::EnumStr, true) } } field :map_of_integer, T.nilable(T::Hash[Symbol, Integer]), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('mapOfInteger') } } @@ -72,7 +72,7 @@ class ExampleResource < OpenApiSDK::Utils::FieldAugmented field :updated_at, T.nilable(DateTime), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('updatedAt'), 'decoder': Utils.datetime_from_iso_format(true) } } - sig { params(chocolates: T::Array[Shared::ExampleResourceChocolates], id: String, name: String, vehicle: Object, array_of_number: T.nilable(T::Array[Float]), array_of_string: T.nilable(T::Array[String]), created_at: T.nilable(DateTime), enum_number: T.nilable(Shared::ExampleResourceEnumNumber), enum_str: T.nilable(Shared::ExampleResourceEnumStr), map_of_integer: T.nilable(T::Hash[Symbol, Integer]), map_of_string: T.nilable(T::Hash[Symbol, String]), updated_at: T.nilable(DateTime)).void } + sig { params(chocolates: T::Array[Shared::Chocolates], id: String, name: String, vehicle: Object, array_of_number: T.nilable(T::Array[Float]), array_of_string: T.nilable(T::Array[String]), created_at: T.nilable(DateTime), enum_number: T.nilable(Shared::EnumNumber), enum_str: T.nilable(Shared::EnumStr), map_of_integer: T.nilable(T::Hash[Symbol, Integer]), map_of_string: T.nilable(T::Hash[Symbol, String]), updated_at: T.nilable(DateTime)).void } def initialize(chocolates: nil, id: nil, name: nil, vehicle: nil, array_of_number: nil, array_of_string: nil, created_at: nil, enum_number: nil, enum_str: nil, map_of_integer: nil, map_of_string: nil, updated_at: nil) @chocolates = chocolates @id = id diff --git a/ruby-client-sdk/lib/sdk/models/shared/httpbinsimplejsonobject.rb b/ruby-client-sdk/lib/sdk/models/shared/httpbinsimplejsonobject.rb index 04cedd4c6..c2c24bf0f 100755 --- a/ruby-client-sdk/lib/sdk/models/shared/httpbinsimplejsonobject.rb +++ b/ruby-client-sdk/lib/sdk/models/shared/httpbinsimplejsonobject.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Shared - class HttpBinSimpleJsonObjectSlideshowSlides < OpenApiSDK::Utils::FieldAugmented + class Slides < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -29,7 +29,7 @@ def initialize(title: nil, type: nil, items: nil) end - class HttpBinSimpleJsonObjectSlideshow < OpenApiSDK::Utils::FieldAugmented + class Slideshow < OpenApiSDK::Utils::FieldAugmented extend T::Sig @@ -37,12 +37,12 @@ class HttpBinSimpleJsonObjectSlideshow < OpenApiSDK::Utils::FieldAugmented field :date, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('date') } } - field :slides, T::Array[Shared::HttpBinSimpleJsonObjectSlideshowSlides], { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('slides') } } + field :slides, T::Array[Shared::Slides], { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('slides') } } field :title, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('title') } } - sig { params(author: String, date: String, slides: T::Array[Shared::HttpBinSimpleJsonObjectSlideshowSlides], title: String).void } + sig { params(author: String, date: String, slides: T::Array[Shared::Slides], title: String).void } def initialize(author: nil, date: nil, slides: nil, title: nil) @author = author @date = date @@ -56,10 +56,10 @@ class HttpBinSimpleJsonObject < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :slideshow, Shared::HttpBinSimpleJsonObjectSlideshow, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('slideshow') } } + field :slideshow, Shared::Slideshow, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('slideshow') } } - sig { params(slideshow: Shared::HttpBinSimpleJsonObjectSlideshow).void } + sig { params(slideshow: Shared::Slideshow).void } def initialize(slideshow: nil) @slideshow = slideshow end diff --git a/ruby-client-sdk/lib/sdk/models/shared/readwriteobject.rb b/ruby-client-sdk/lib/sdk/models/shared/readwriteobject.rb index 95f030570..d89eb804e 100755 --- a/ruby-client-sdk/lib/sdk/models/shared/readwriteobject.rb +++ b/ruby-client-sdk/lib/sdk/models/shared/readwriteobject.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Shared - class ReadWriteObjectInput < OpenApiSDK::Utils::FieldAugmented + class ReadWriteObject < OpenApiSDK::Utils::FieldAugmented extend T::Sig diff --git a/ruby-client-sdk/lib/sdk/models/shared/simpleobject.rb b/ruby-client-sdk/lib/sdk/models/shared/simpleobject.rb index 707a26918..07cd2ee74 100755 --- a/ruby-client-sdk/lib/sdk/models/shared/simpleobject.rb +++ b/ruby-client-sdk/lib/sdk/models/shared/simpleobject.rb @@ -9,8 +9,8 @@ module OpenApiSDK module Shared - # SimpleObjectInt32Enum - An int32 enum property. - class SimpleObjectInt32Enum < T::Enum + # Int32Enum - An int32 enum property. + class Int32Enum < T::Enum enums do FIFTY_FIVE = new(55) SIXTY_NINE = new(69) @@ -19,8 +19,8 @@ class SimpleObjectInt32Enum < T::Enum end - # SimpleObjectIntEnum - An integer enum property. - class SimpleObjectIntEnum < T::Enum + # IntEnum - An integer enum property. + class IntEnum < T::Enum enums do FIRST = new(1) SECOND = new(2) @@ -51,9 +51,9 @@ class SimpleObject < OpenApiSDK::Utils::FieldAugmented # An int32 property. field :int32, Integer, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('int32') }, 'header': { 'field_name': 'int32' }, 'path_param': { 'field_name': 'int32' }, 'query_param': { 'field_name': 'int32' }, 'form': { 'field_name': 'int32' }, 'multipart_form': { 'field_name': 'int32' } } # An int32 enum property. - field :int32_enum, Shared::SimpleObjectInt32Enum, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('int32Enum'), 'decoder': Utils.enum_from_string(Shared::SimpleObjectInt32Enum, false) }, 'header': { 'field_name': 'int32Enum' }, 'path_param': { 'field_name': 'int32Enum' }, 'query_param': { 'field_name': 'int32Enum' }, 'form': { 'field_name': 'int32Enum' }, 'multipart_form': { 'field_name': 'int32Enum' } } + field :int32_enum, Shared::Int32Enum, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('int32Enum'), 'decoder': Utils.enum_from_string(Shared::Int32Enum, false) }, 'header': { 'field_name': 'int32Enum' }, 'path_param': { 'field_name': 'int32Enum' }, 'query_param': { 'field_name': 'int32Enum' }, 'form': { 'field_name': 'int32Enum' }, 'multipart_form': { 'field_name': 'int32Enum' } } # An integer enum property. - field :int_enum, Shared::SimpleObjectIntEnum, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('intEnum'), 'decoder': Utils.enum_from_string(Shared::SimpleObjectIntEnum, false) }, 'header': { 'field_name': 'intEnum' }, 'path_param': { 'field_name': 'intEnum' }, 'query_param': { 'field_name': 'intEnum' }, 'form': { 'field_name': 'intEnum' }, 'multipart_form': { 'field_name': 'intEnum' } } + field :int_enum, Shared::IntEnum, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('intEnum'), 'decoder': Utils.enum_from_string(Shared::IntEnum, false) }, 'header': { 'field_name': 'intEnum' }, 'path_param': { 'field_name': 'intEnum' }, 'query_param': { 'field_name': 'intEnum' }, 'form': { 'field_name': 'intEnum' }, 'multipart_form': { 'field_name': 'intEnum' } } # A number property. field :num, Float, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('num') }, 'header': { 'field_name': 'num' }, 'path_param': { 'field_name': 'num' }, 'query_param': { 'field_name': 'num' }, 'form': { 'field_name': 'num' }, 'multipart_form': { 'field_name': 'num' } } # A string property. @@ -76,7 +76,7 @@ class SimpleObject < OpenApiSDK::Utils::FieldAugmented field :str_opt, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('strOpt') }, 'header': { 'field_name': 'strOpt' }, 'path_param': { 'field_name': 'strOpt' }, 'query_param': { 'field_name': 'strOpt' }, 'form': { 'field_name': 'strOpt' }, 'multipart_form': { 'field_name': 'strOpt' } } - sig { params(any: Object, bool: T::Boolean, date: Date, date_time: DateTime, enum: Shared::Enum, float32: Float, int: Integer, int32: Integer, int32_enum: Shared::SimpleObjectInt32Enum, int_enum: Shared::SimpleObjectIntEnum, num: Float, str_: String, bigint: T.nilable(Integer), bigint_str: T.nilable(String), bool_opt: T.nilable(T::Boolean), decimal: T.nilable(Float), decimal_str: T.nilable(String), int_opt_null: T.nilable(Integer), num_opt_null: T.nilable(Float), str_opt: T.nilable(String)).void } + sig { params(any: Object, bool: T::Boolean, date: Date, date_time: DateTime, enum: Shared::Enum, float32: Float, int: Integer, int32: Integer, int32_enum: Shared::Int32Enum, int_enum: Shared::IntEnum, num: Float, str_: String, bigint: T.nilable(Integer), bigint_str: T.nilable(String), bool_opt: T.nilable(T::Boolean), decimal: T.nilable(Float), decimal_str: T.nilable(String), int_opt_null: T.nilable(Integer), num_opt_null: T.nilable(Float), str_opt: T.nilable(String)).void } def initialize(any: nil, bool: nil, date: nil, date_time: nil, enum: nil, float32: nil, int: nil, int32: nil, int32_enum: nil, int_enum: nil, num: nil, str_: nil, bigint: nil, bigint_str: nil, bool_opt: nil, decimal: nil, decimal_str: nil, int_opt_null: nil, num_opt_null: nil, str_opt: nil) @any = any @bool = bool diff --git a/ruby-client-sdk/lib/sdk/models/shared/simpleobjectcamelcase.rb b/ruby-client-sdk/lib/sdk/models/shared/simpleobjectcamelcase.rb index 260dc8aff..fc80c7dd0 100755 --- a/ruby-client-sdk/lib/sdk/models/shared/simpleobjectcamelcase.rb +++ b/ruby-client-sdk/lib/sdk/models/shared/simpleobjectcamelcase.rb @@ -9,8 +9,8 @@ module OpenApiSDK module Shared - # SimpleObjectCamelCaseInt32EnumVal - An int32 enum property. - class SimpleObjectCamelCaseInt32EnumVal < T::Enum + # Int32EnumVal - An int32 enum property. + class Int32EnumVal < T::Enum enums do FIFTY_FIVE = new(55) SIXTY_NINE = new(69) @@ -19,8 +19,8 @@ class SimpleObjectCamelCaseInt32EnumVal < T::Enum end - # SimpleObjectCamelCaseIntEnumVal - An integer enum property. - class SimpleObjectCamelCaseIntEnumVal < T::Enum + # IntEnumVal - An integer enum property. + class IntEnumVal < T::Enum enums do FIRST = new(1) SECOND = new(2) @@ -47,11 +47,11 @@ class SimpleObjectCamelCase < OpenApiSDK::Utils::FieldAugmented # A float32 property. field :float32_val, Float, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('float32_val') } } # An integer enum property. - field :int_enum_val, Shared::SimpleObjectCamelCaseIntEnumVal, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('int_enum_val'), 'decoder': Utils.enum_from_string(Shared::SimpleObjectCamelCaseIntEnumVal, false) } } + field :int_enum_val, Shared::IntEnumVal, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('int_enum_val'), 'decoder': Utils.enum_from_string(Shared::IntEnumVal, false) } } # An integer property. field :int_val, Integer, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('int_val') } } # An int32 enum property. - field :int32_enum_val, Shared::SimpleObjectCamelCaseInt32EnumVal, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('int32_enum_val'), 'decoder': Utils.enum_from_string(Shared::SimpleObjectCamelCaseInt32EnumVal, false) } } + field :int32_enum_val, Shared::Int32EnumVal, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('int32_enum_val'), 'decoder': Utils.enum_from_string(Shared::Int32EnumVal, false) } } # An int32 property. field :int32_val, Integer, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('int32_val') } } # A number property. @@ -74,7 +74,7 @@ class SimpleObjectCamelCase < OpenApiSDK::Utils::FieldAugmented field :str_opt_val, T.nilable(String), { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('str_opt_val') } } - sig { params(any_val: Object, bool_val: T::Boolean, date_time_val: DateTime, date_val: Date, enum_val: Shared::Enum, float32_val: Float, int_enum_val: Shared::SimpleObjectCamelCaseIntEnumVal, int_val: Integer, int32_enum_val: Shared::SimpleObjectCamelCaseInt32EnumVal, int32_val: Integer, num_val: Float, str_val: String, bigint_str_val: T.nilable(String), bigint_val: T.nilable(Integer), bool_opt_val: T.nilable(T::Boolean), decimal_val: T.nilable(Float), int_opt_null_val: T.nilable(Integer), num_opt_null_val: T.nilable(Float), str_opt_val: T.nilable(String)).void } + sig { params(any_val: Object, bool_val: T::Boolean, date_time_val: DateTime, date_val: Date, enum_val: Shared::Enum, float32_val: Float, int_enum_val: Shared::IntEnumVal, int_val: Integer, int32_enum_val: Shared::Int32EnumVal, int32_val: Integer, num_val: Float, str_val: String, bigint_str_val: T.nilable(String), bigint_val: T.nilable(Integer), bool_opt_val: T.nilable(T::Boolean), decimal_val: T.nilable(Float), int_opt_null_val: T.nilable(Integer), num_opt_null_val: T.nilable(Float), str_opt_val: T.nilable(String)).void } def initialize(any_val: nil, bool_val: nil, date_time_val: nil, date_val: nil, enum_val: nil, float32_val: nil, int_enum_val: nil, int_val: nil, int32_enum_val: nil, int32_val: nil, num_val: nil, str_val: nil, bigint_str_val: nil, bigint_val: nil, bool_opt_val: nil, decimal_val: nil, int_opt_null_val: nil, num_opt_null_val: nil, str_opt_val: nil) @any_val = any_val @bool_val = bool_val diff --git a/ruby-client-sdk/lib/sdk/models/shared/typedobject1.rb b/ruby-client-sdk/lib/sdk/models/shared/typedobject1.rb index 7a3996320..b02957c92 100755 --- a/ruby-client-sdk/lib/sdk/models/shared/typedobject1.rb +++ b/ruby-client-sdk/lib/sdk/models/shared/typedobject1.rb @@ -9,7 +9,7 @@ module OpenApiSDK module Shared - class TypedObject1Type < T::Enum + class Type < T::Enum enums do OBJ1 = new('obj1') end @@ -21,12 +21,12 @@ class TypedObject1 < OpenApiSDK::Utils::FieldAugmented extend T::Sig - field :type, Shared::TypedObject1Type, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('type'), 'decoder': Utils.enum_from_string(Shared::TypedObject1Type, false) } } + field :type, Shared::Type, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('type'), 'decoder': Utils.enum_from_string(Shared::Type, false) } } field :value, String, { 'format_json': { 'letter_case': OpenApiSDK::Utils.field_name('value') } } - sig { params(type: Shared::TypedObject1Type, value: String).void } + sig { params(type: Shared::Type, value: String).void } def initialize(type: nil, value: nil) @type = type @value = value diff --git a/ruby-client-sdk/lib/sdk/parameters.rb b/ruby-client-sdk/lib/sdk/parameters.rb index 67e9f1253..2914c2853 100755 --- a/ruby-client-sdk/lib/sdk/parameters.rb +++ b/ruby-client-sdk/lib/sdk/parameters.rb @@ -53,7 +53,7 @@ def deep_object_query_params_map(map_param, map_arr_param = nil) res end - sig { params(obj_param: Shared::SimpleObject, obj_arr_param: T.nilable(Operations::DeepObjectQueryParamsObjectObjArrParam)).returns(Utils::FieldAugmented) } + sig { params(obj_param: Shared::SimpleObject, obj_arr_param: T.nilable(Operations::ObjArrParam)).returns(Utils::FieldAugmented) } def deep_object_query_params_object(obj_param, obj_arr_param = nil) request = Operations::DeepObjectQueryParamsObjectRequest.new( @@ -164,7 +164,7 @@ def form_query_params_array(arr_param = nil, arr_param_exploded = nil) res end - sig { params(obj_param_exploded: Operations::FormQueryParamsCamelObjectObjParamExploded, obj_param: T.nilable(Operations::FormQueryParamsCamelObjectObjParam)).returns(Utils::FieldAugmented) } + sig { params(obj_param_exploded: Operations::ObjParamExploded, obj_param: T.nilable(Operations::ObjParam)).returns(Utils::FieldAugmented) } def form_query_params_camel_object(obj_param_exploded, obj_param = nil) request = Operations::FormQueryParamsCamelObjectRequest.new( diff --git a/ruby-client-sdk/lib/sdk/requestbodies.rb b/ruby-client-sdk/lib/sdk/requestbodies.rb index ce258bf86..00bbdef00 100755 --- a/ruby-client-sdk/lib/sdk/requestbodies.rb +++ b/ruby-client-sdk/lib/sdk/requestbodies.rb @@ -87,7 +87,7 @@ def nullable_required_empty_object_post(request) status_code: r.status, content_type: content_type, raw_response: r ) if r.status == 200 - res.nullable_required_empty_object_post_200_application_json_string = r.env.response_body if Utils.match_content_type(content_type, 'application/json') + res.res = r.env.response_body if Utils.match_content_type(content_type, 'application/json') end res end @@ -123,7 +123,7 @@ def nullable_required_property_post(request) status_code: r.status, content_type: content_type, raw_response: r ) if r.status == 200 - res.nullable_required_property_post_200_application_json_string = r.env.response_body if Utils.match_content_type(content_type, 'application/json') + res.res = r.env.response_body if Utils.match_content_type(content_type, 'application/json') end res end @@ -159,7 +159,7 @@ def nullable_required_shared_object_post(request) status_code: r.status, content_type: content_type, raw_response: r ) if r.status == 200 - res.nullable_required_shared_object_post_200_application_json_string = r.env.response_body if Utils.match_content_type(content_type, 'application/json') + res.res = r.env.response_body if Utils.match_content_type(content_type, 'application/json') end res end @@ -198,7 +198,7 @@ def request_body_post_application_json_array(request, server_url = nil) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') out = Utils.unmarshal_complex(r.env.response_body, T::Array[Shared::SimpleObject]) - res.simple_objects = out + res.res = out end end res @@ -238,7 +238,7 @@ def request_body_post_application_json_array_camel_case(request, server_url = ni if r.status == 200 if Utils.match_content_type(content_type, 'application/json') out = Utils.unmarshal_complex(r.env.response_body, T::Array[Shared::SimpleObjectCamelCase]) - res.simple_object_camel_cases = out + res.res = out end end res @@ -356,7 +356,7 @@ def request_body_post_application_json_array_of_array(request, server_url = nil) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') out = Utils.unmarshal_complex(r.env.response_body, T::Array[T::Array[Shared::SimpleObject]]) - res.arrs = out + res.res = out end end res @@ -396,7 +396,7 @@ def request_body_post_application_json_array_of_array_camel_case(request, server if r.status == 200 if Utils.match_content_type(content_type, 'application/json') out = Utils.unmarshal_complex(r.env.response_body, T::Array[T::Array[Shared::SimpleObjectCamelCase]]) - res.arrs = out + res.res = out end end res @@ -436,7 +436,7 @@ def request_body_post_application_json_array_of_array_of_primitive(request, serv if r.status == 200 if Utils.match_content_type(content_type, 'application/json') out = Utils.unmarshal_complex(r.env.response_body, T::Array[T::Array[String]]) - res.arrs = out + res.res = out end end res @@ -476,7 +476,7 @@ def request_body_post_application_json_array_of_map(request, server_url = nil) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') out = Utils.unmarshal_complex(r.env.response_body, T::Array[T::Hash[Symbol, Shared::SimpleObject]]) - res.maps = out + res.res = out end end res @@ -516,7 +516,7 @@ def request_body_post_application_json_array_of_map_camel_case(request, server_u if r.status == 200 if Utils.match_content_type(content_type, 'application/json') out = Utils.unmarshal_complex(r.env.response_body, T::Array[T::Hash[Symbol, Shared::SimpleObjectCamelCase]]) - res.maps = out + res.res = out end end res @@ -556,7 +556,7 @@ def request_body_post_application_json_array_of_primitive(request, server_url = if r.status == 200 if Utils.match_content_type(content_type, 'application/json') out = Utils.unmarshal_complex(r.env.response_body, T::Array[String]) - res.strings = out + res.res = out end end res @@ -1195,8 +1195,8 @@ def request_body_post_complex_number_types(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostComplexNumberTypes200ApplicationJSON) - res.request_body_post_complex_number_types_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostComplexNumberTypesResponseBody) + res.object = out end end res @@ -1234,8 +1234,8 @@ def request_body_post_defaults_and_consts(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostDefaultsAndConsts200ApplicationJSON) - res.request_body_post_defaults_and_consts_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostDefaultsAndConstsResponseBody) + res.object = out end end res @@ -1273,8 +1273,8 @@ def request_body_post_empty_object(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostEmptyObject200ApplicationJSON) - res.request_body_post_empty_object_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostEmptyObjectResponseBody) + res.object = out end end res @@ -1429,8 +1429,8 @@ def request_body_post_json_data_types_array_big_int(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON) - res.request_body_post_json_data_types_array_big_int_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesArrayBigIntResponseBody) + res.object = out end end res @@ -1468,8 +1468,8 @@ def request_body_post_json_data_types_array_date(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON) - res.request_body_post_json_data_types_array_date_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesArrayDateResponseBody) + res.object = out end end res @@ -1507,8 +1507,8 @@ def request_body_post_json_data_types_array_decimal_str(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON) - res.request_body_post_json_data_types_array_decimal_str_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody) + res.object = out end end res @@ -1546,8 +1546,8 @@ def request_body_post_json_data_types_big_int(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesBigInt200ApplicationJSON) - res.request_body_post_json_data_types_big_int_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesBigIntResponseBody) + res.object = out end end res @@ -1585,8 +1585,8 @@ def request_body_post_json_data_types_big_int_str(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON) - res.request_body_post_json_data_types_big_int_str_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesBigIntStrResponseBody) + res.object = out end end res @@ -1624,8 +1624,8 @@ def request_body_post_json_data_types_boolean(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesBoolean200ApplicationJSON) - res.request_body_post_json_data_types_boolean_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesBooleanResponseBody) + res.object = out end end res @@ -1663,8 +1663,8 @@ def request_body_post_json_data_types_date(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesDate200ApplicationJSON) - res.request_body_post_json_data_types_date_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesDateResponseBody) + res.object = out end end res @@ -1702,8 +1702,8 @@ def request_body_post_json_data_types_date_time(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesDateTime200ApplicationJSON) - res.request_body_post_json_data_types_date_time_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesDateTimeResponseBody) + res.object = out end end res @@ -1741,8 +1741,8 @@ def request_body_post_json_data_types_decimal(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesDecimal200ApplicationJSON) - res.request_body_post_json_data_types_decimal_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesDecimalResponseBody) + res.object = out end end res @@ -1780,8 +1780,8 @@ def request_body_post_json_data_types_decimal_str(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON) - res.request_body_post_json_data_types_decimal_str_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesDecimalStrResponseBody) + res.object = out end end res @@ -1819,8 +1819,8 @@ def request_body_post_json_data_types_float32(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesFloat32200ApplicationJSON) - res.request_body_post_json_data_types_float32_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesFloat32ResponseBody) + res.object = out end end res @@ -1858,8 +1858,8 @@ def request_body_post_json_data_types_int32(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesInt32200ApplicationJSON) - res.request_body_post_json_data_types_int32_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesInt32ResponseBody) + res.object = out end end res @@ -1897,8 +1897,8 @@ def request_body_post_json_data_types_integer(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesInteger200ApplicationJSON) - res.request_body_post_json_data_types_integer_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesIntegerResponseBody) + res.object = out end end res @@ -1936,8 +1936,8 @@ def request_body_post_json_data_types_map_big_int_str(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON) - res.request_body_post_json_data_types_map_big_int_str_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesMapBigIntStrResponseBody) + res.object = out end end res @@ -1975,8 +1975,8 @@ def request_body_post_json_data_types_map_date_time(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON) - res.request_body_post_json_data_types_map_date_time_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesMapDateTimeResponseBody) + res.object = out end end res @@ -2014,8 +2014,8 @@ def request_body_post_json_data_types_map_decimal(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON) - res.request_body_post_json_data_types_map_decimal_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesMapDecimalResponseBody) + res.object = out end end res @@ -2053,8 +2053,8 @@ def request_body_post_json_data_types_number(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesNumber200ApplicationJSON) - res.request_body_post_json_data_types_number_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesNumberResponseBody) + res.object = out end end res @@ -2092,8 +2092,8 @@ def request_body_post_json_data_types_string(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJSONDataTypesString200ApplicationJSON) - res.request_body_post_json_data_types_string_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostJsonDataTypesStringResponseBody) + res.object = out end end res @@ -2138,7 +2138,7 @@ def request_body_post_multiple_content_types_component_filtered(request) res end - sig { params(request: Operations::RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON).returns(Utils::FieldAugmented) } + sig { params(request: Operations::RequestBodyPostMultipleContentTypesInlineFilteredRequestBody).returns(Utils::FieldAugmented) } def request_body_post_multiple_content_types_inline_filtered(request) url, params = @sdk_configuration.get_server_details @@ -2177,7 +2177,7 @@ def request_body_post_multiple_content_types_inline_filtered(request) res end - sig { params(request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded, param_str: String).returns(Utils::FieldAugmented) } + sig { params(request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamFormRequestBody, param_str: String).returns(Utils::FieldAugmented) } def request_body_post_multiple_content_types_split_param_form(request_body, param_str) request = Operations::RequestBodyPostMultipleContentTypesSplitParamFormRequest.new( @@ -2223,7 +2223,7 @@ def request_body_post_multiple_content_types_split_param_form(request_body, para res end - sig { params(request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationJSON, param_str: String).returns(Utils::FieldAugmented) } + sig { params(request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody, param_str: String).returns(Utils::FieldAugmented) } def request_body_post_multiple_content_types_split_param_json(request_body, param_str) request = Operations::RequestBodyPostMultipleContentTypesSplitParamJsonRequest.new( @@ -2269,7 +2269,7 @@ def request_body_post_multiple_content_types_split_param_json(request_body, para res end - sig { params(request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartFormData, param_str: String).returns(Utils::FieldAugmented) } + sig { params(request_body: Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody, param_str: String).returns(Utils::FieldAugmented) } def request_body_post_multiple_content_types_split_param_multipart(request_body, param_str) request = Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.new( @@ -2315,7 +2315,7 @@ def request_body_post_multiple_content_types_split_param_multipart(request_body, res end - sig { params(request: Operations::RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded).returns(Utils::FieldAugmented) } + sig { params(request: Operations::RequestBodyPostMultipleContentTypesSplitFormRequestBody).returns(Utils::FieldAugmented) } def request_body_post_multiple_content_types_split_form(request) url, params = @sdk_configuration.get_server_details @@ -2354,7 +2354,7 @@ def request_body_post_multiple_content_types_split_form(request) res end - sig { params(request: Operations::RequestBodyPostMultipleContentTypesSplitApplicationJSON).returns(Utils::FieldAugmented) } + sig { params(request: Operations::RequestBodyPostMultipleContentTypesSplitJsonRequestBody).returns(Utils::FieldAugmented) } def request_body_post_multiple_content_types_split_json(request) url, params = @sdk_configuration.get_server_details @@ -2393,7 +2393,7 @@ def request_body_post_multiple_content_types_split_json(request) res end - sig { params(request: Operations::RequestBodyPostMultipleContentTypesSplitMultipartFormData).returns(Utils::FieldAugmented) } + sig { params(request: Operations::RequestBodyPostMultipleContentTypesSplitMultipartRequestBody).returns(Utils::FieldAugmented) } def request_body_post_multiple_content_types_split_multipart(request) url, params = @sdk_configuration.get_server_details @@ -2463,8 +2463,8 @@ def request_body_post_not_nullable_not_required_string_body(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON) - res.request_body_post_not_nullable_not_required_string_body_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostNotNullableNotRequiredStringBodyResponseBody) + res.object = out end end res @@ -2502,8 +2502,8 @@ def request_body_post_null_array(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostNullArray200ApplicationJSON) - res.request_body_post_null_array_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostNullArrayResponseBody) + res.object = out end end res @@ -2541,8 +2541,8 @@ def request_body_post_null_dictionary(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostNullDictionary200ApplicationJSON) - res.request_body_post_null_dictionary_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostNullDictionaryResponseBody) + res.object = out end end res @@ -2579,8 +2579,8 @@ def request_body_post_nullable_not_required_string_body(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON) - res.request_body_post_nullable_not_required_string_body_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostNullableNotRequiredStringBodyResponseBody) + res.object = out end end res @@ -2618,8 +2618,8 @@ def request_body_post_nullable_required_string_body(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostNullableRequiredStringBody200ApplicationJSON) - res.request_body_post_nullable_required_string_body_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::RequestBodyPostNullableRequiredStringBodyResponseBody) + res.object = out end end res @@ -2951,7 +2951,7 @@ def request_body_put_string_with_params(request_body, query_string_param) res end - sig { params(request: Shared::ReadWriteObjectInput, server_url: T.nilable(String)).returns(Utils::FieldAugmented) } + sig { params(request: Shared::ReadWriteObject, server_url: T.nilable(String)).returns(Utils::FieldAugmented) } def request_body_read_and_write(request, server_url = nil) base_url = Utils.template_url(Operations::REQUEST_BODY_READ_AND_WRITE_SERVERS[0], { diff --git a/ruby-client-sdk/lib/sdk/responsebodies.rb b/ruby-client-sdk/lib/sdk/responsebodies.rb index 871396af9..a185547c1 100755 --- a/ruby-client-sdk/lib/sdk/responsebodies.rb +++ b/ruby-client-sdk/lib/sdk/responsebodies.rb @@ -49,8 +49,8 @@ def response_body_additional_properties_complex_numbers_post(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON) - res.response_body_additional_properties_complex_numbers_post_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody) + res.object = out end end res @@ -88,8 +88,8 @@ def response_body_additional_properties_date_post(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON) - res.response_body_additional_properties_date_post_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::ResponseBodyAdditionalPropertiesDatePostResponseBody) + res.object = out end end res @@ -127,8 +127,8 @@ def response_body_additional_properties_object_post(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON) - res.response_body_additional_properties_object_post_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::ResponseBodyAdditionalPropertiesObjectPostResponseBody) + res.object = out end end res @@ -166,8 +166,8 @@ def response_body_additional_properties_post(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::ResponseBodyAdditionalPropertiesPost200ApplicationJSON) - res.response_body_additional_properties_post_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::ResponseBodyAdditionalPropertiesPostResponseBody) + res.object = out end end res @@ -258,7 +258,7 @@ def response_body_optional_get(server_url = nil) out = Utils.unmarshal_complex(r.env.response_body, Shared::TypedObject1) res.typed_object1 = out end - res.response_body_optional_get_200_text_plain_string = r.env.response_body if Utils.match_content_type(content_type, 'text/plain') + res.res = r.env.response_body if Utils.match_content_type(content_type, 'text/plain') end res end @@ -377,8 +377,8 @@ def response_body_zero_value_complex_type_ptrs_post(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON) - res.response_body_zero_value_complex_type_ptrs_post_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::ResponseBodyZeroValueComplexTypePtrsPostResponseBody) + res.object = out end end res diff --git a/ruby-client-sdk/lib/sdk/sdk.rb b/ruby-client-sdk/lib/sdk/sdk.rb index e071bdc37..d6d983450 100755 --- a/ruby-client-sdk/lib/sdk/sdk.rb +++ b/ruby-client-sdk/lib/sdk/sdk.rb @@ -12,7 +12,7 @@ module OpenApiSDK class SDK extend T::Sig - attr_accessor :auth, :auth_new, :documentation, :errors, :first, :flattening, :generation, :globals, :nest_first, :nested, :nested_first, :nested_second, :pagination, :parameters, :request_bodies, :resource, :response_bodies, :retries, :second, :servers, :telemetry, :unions + attr_accessor :generation, :errors, :unions, :flattening, :globals, :parameters, :nest_first, :nested, :nested_first, :nested_second, :request_bodies, :response_bodies, :servers, :telemetry, :auth_new, :auth, :documentation, :resource, :first, :second, :pagination, :retries attr_accessor :security, :language, :sdk_version, :gen_version @@ -120,28 +120,28 @@ def config_security(security) sig { void } def init_sdks - @auth = Auth.new(@sdk_configuration) - @auth_new = AuthNew.new(@sdk_configuration) - @documentation = Documentation.new(@sdk_configuration) + @generation = Generation.new(@sdk_configuration) @errors = Errors.new(@sdk_configuration) - @first = First.new(@sdk_configuration) + @unions = Unions.new(@sdk_configuration) @flattening = Flattening.new(@sdk_configuration) - @generation = Generation.new(@sdk_configuration) @globals = Globals.new(@sdk_configuration) + @parameters = Parameters.new(@sdk_configuration) @nest_first = NestFirst.new(@sdk_configuration) @nested = Nested.new(@sdk_configuration) @nested_first = NestedFirst.new(@sdk_configuration) @nested_second = NestedSecond.new(@sdk_configuration) - @pagination = Pagination.new(@sdk_configuration) - @parameters = Parameters.new(@sdk_configuration) @request_bodies = RequestBodies.new(@sdk_configuration) - @resource = Resource.new(@sdk_configuration) @response_bodies = ResponseBodies.new(@sdk_configuration) - @retries = Retries.new(@sdk_configuration) - @second = Second.new(@sdk_configuration) @servers = Servers.new(@sdk_configuration) @telemetry = Telemetry.new(@sdk_configuration) - @unions = Unions.new(@sdk_configuration) + @auth_new = AuthNew.new(@sdk_configuration) + @auth = Auth.new(@sdk_configuration) + @documentation = Documentation.new(@sdk_configuration) + @resource = Resource.new(@sdk_configuration) + @first = First.new(@sdk_configuration) + @second = Second.new(@sdk_configuration) + @pagination = Pagination.new(@sdk_configuration) + @retries = Retries.new(@sdk_configuration) end @@ -177,8 +177,8 @@ def put_anything_ignored_generation(request) ) if r.status == 200 if Utils.match_content_type(content_type, 'application/json') - out = Utils.unmarshal_complex(r.env.response_body, Operations::PutAnythingIgnoredGeneration200ApplicationJSON) - res.put_anything_ignored_generation_200_application_json_object = out + out = Utils.unmarshal_complex(r.env.response_body, Operations::PutAnythingIgnoredGenerationResponseBody) + res.object = out end end res diff --git a/ruby-client-sdk/lib/sdk/sdkconfiguration.rb b/ruby-client-sdk/lib/sdk/sdkconfiguration.rb index f777e4519..d9eb4ac16 100755 --- a/ruby-client-sdk/lib/sdk/sdkconfiguration.rb +++ b/ruby-client-sdk/lib/sdk/sdkconfiguration.rb @@ -54,9 +54,9 @@ def initialize(client, security, server_url, server_idx, server_defaults, global @globals = globals.nil? ? {} : globals @language = 'ruby' @openapi_doc_version = '0.1.0' - @sdk_version = '1.36.2' - @gen_version = '2.173.0' - @user_agent = 'speakeasy-sdk/ruby 1.36.2 2.173.0 0.1.0 openapi' + @sdk_version = '2.0.0' + @gen_version = '2.181.1' + @user_agent = 'speakeasy-sdk/ruby 2.0.0 2.181.1 0.1.0 openapi' end sig { returns([String, T::Hash[Symbol, String]]) } diff --git a/ruby-client-sdk/openapi.gemspec b/ruby-client-sdk/openapi.gemspec index 2f08e35e9..2d73f0d00 100755 --- a/ruby-client-sdk/openapi.gemspec +++ b/ruby-client-sdk/openapi.gemspec @@ -4,7 +4,7 @@ $LOAD_PATH.push File.expand_path('lib', __dir__) Gem::Specification.new do |s| s.name = 'openapi' - s.version = '1.36.2' + s.version = '2.0.0' s.platform = Gem::Platform::RUBY s.licenses = ['Apache-2.0'] s.summary = '' diff --git a/ruby-client-sdk/testprimary/auth_test.rb b/ruby-client-sdk/testprimary/auth_test.rb index 1e7b8d85f..8b1fb81c3 100755 --- a/ruby-client-sdk/testprimary/auth_test.rb +++ b/ruby-client-sdk/testprimary/auth_test.rb @@ -16,7 +16,7 @@ def test_basic_auth res = @sdk.auth_new.basic_auth_new( Shared::AuthServiceRequestBody.new( - basic_auth: Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth: Shared::BasicAuth.new( username: 'testUser', password: 'testPass' ) @@ -40,11 +40,11 @@ def test_api_key_auth_global api_key_auth_new: 'test_api_key' ) ) - + res = @sdk.auth_new.api_key_auth_global_new( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'x-api-key', expected_value: 'test_api_key' ) @@ -104,7 +104,7 @@ def test_oauth_2_auth res = @sdk.auth_new.oauth2_auth_new( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'Authorization', expected_value: 'Bearer testToken' ) @@ -126,7 +126,7 @@ def test_open_id_connect_auth res = @sdk.auth_new.open_id_connect_auth_new( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'Authorization', expected_value: 'Bearer testToken' ) @@ -147,11 +147,11 @@ def test_multiple_simple_scheme_auth res = @sdk.auth_new.multiple_simple_scheme_auth( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'x-api-key', expected_value: 'test_api_key' ), - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'Authorization', expected_value: 'Bearer testToken' ) @@ -173,12 +173,12 @@ def test_multiple_mixed_scheme_auth res = @sdk.auth_new.multiple_mixed_scheme_auth( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'x-api-key', expected_value: 'test_api_key' ) ], - basic_auth: Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth: Shared::BasicAuth.new( username: 'testUser', password: 'testPass' ) @@ -202,7 +202,7 @@ def test_multiple_simple_options_auth_first_option res = @sdk.auth_new.multiple_simple_options_auth( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'x-api-key', expected_value: 'test_api_key' ) @@ -222,7 +222,7 @@ def test_multiple_simple_options_auth_second_option res = @sdk.auth_new.multiple_simple_options_auth( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'Authorization', expected_value: 'Bearer testToken' ) @@ -242,12 +242,12 @@ def test_multiple_mixed_options_auth_first_option res = @sdk.auth_new.multiple_mixed_options_auth( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'x-api-key', expected_value: 'test_api_key' ) ] - ), + ), Operations::MultipleMixedOptionsAuthSecurity.new( api_key_auth_new: 'test_api_key' ) @@ -261,7 +261,7 @@ def test_multiple_mixed_options_auth_second_option res = @sdk.auth_new.multiple_mixed_options_auth( Shared::AuthServiceRequestBody.new( - basic_auth: Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth: Shared::BasicAuth.new( username: 'testUser', password: 'testPass' ) @@ -283,11 +283,11 @@ def test_multiple_mixed_options_with_simple_schemes_auth_first_option res = @sdk.auth_new.multiple_options_with_simple_schemes_auth( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'x-api-key', expected_value: 'test_api_key' ), - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'Authorization', expected_value: 'Bearer testToken' ) @@ -310,16 +310,16 @@ def test_multiple_mixed_options_with_simple_schemes_auth_second_option res = @sdk.auth_new.multiple_options_with_simple_schemes_auth( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'x-api-key', expected_value: 'test_api_key' ), - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'Authorization', expected_value: 'Bearer testToken' ) ] - ), + ), Operations::MultipleOptionsWithSimpleSchemesAuthSecurity.new( option2: Operations::MultipleOptionsWithSimpleSchemesAuthSecurityOption2.new( api_key_auth_new: 'test_api_key', @@ -337,11 +337,11 @@ def test_multiple_mixed_options_with_mixed_schemes_auth_first_option res = @sdk.auth_new.multiple_options_with_mixed_schemes_auth( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'x-api-key', expected_value: 'test_api_key' ), - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'Authorization', expected_value: 'Bearer testToken' ) @@ -364,12 +364,12 @@ def test_multiple_mixed_options_with_mixed_schemes_auth_second_option res = @sdk.auth_new.multiple_options_with_mixed_schemes_auth( Shared::AuthServiceRequestBody.new( header_auth: [ - Shared::AuthServiceRequestBodyHeaderAuth.new( + Shared::HeaderAuth.new( header_name: 'x-api-key', expected_value: 'test_api_key' ) ], - basic_auth: Shared::AuthServiceRequestBodyBasicAuth.new( + basic_auth: Shared::BasicAuth.new( username: 'testUser', password: 'testPass' ) diff --git a/ruby-client-sdk/testprimary/helper_test.rb b/ruby-client-sdk/testprimary/helper_test.rb index 0fe9fedd4..f95bfd5c6 100755 --- a/ruby-client-sdk/testprimary/helper_test.rb +++ b/ruby-client-sdk/testprimary/helper_test.rb @@ -12,8 +12,8 @@ def create_simple_object bool: true, int: 1, int32: 1, - int32_enum: OpenApiSDK::Shared::SimpleObjectInt32Enum::FIFTY_FIVE, - int_enum: OpenApiSDK::Shared::SimpleObjectIntEnum::SECOND, + int32_enum: OpenApiSDK::Shared::Int32Enum::FIFTY_FIVE, + int_enum: OpenApiSDK::Shared::IntEnum::SECOND, num: 1.1, float32: 1.1, enum: OpenApiSDK::Shared::Enum::ONE, diff --git a/ruby-client-sdk/testprimary/parameter_test.rb b/ruby-client-sdk/testprimary/parameter_test.rb index 58852c17e..157fe4c60 100755 --- a/ruby-client-sdk/testprimary/parameter_test.rb +++ b/ruby-client-sdk/testprimary/parameter_test.rb @@ -80,7 +80,7 @@ def test_simple_path_parameter_maps # assert_equal(Rack::Utils.status_code(:ok), res.status_code) # refute_nil(res.res) # assert_equal('http://localhost:35123/anything/pathParams/json/{'any': 'any', 'bool': true, 'date': '2020-01-01', 'dateTime': '2020-01-01T00:00:00.000001Z', 'enum': 'one', 'float32': 1.1, 'int': 1, 'int32': 1, 'num': 1.1, 'str': 'test', 'boolOpt': true, 'strOpt': 'testOptional'}', res.res.url) - # end + # end def test_form_query_params_primitive record_test('parameters-form-query-params-primitive') @@ -221,7 +221,7 @@ def test_deep_object_query_params_object res = @sdk.parameters.deep_object_query_params_object( obj, - Operations::DeepObjectQueryParamsObjectObjArrParam.new( + Operations::ObjArrParam.new( arr: ['test', 'test2'] ) ) @@ -286,7 +286,7 @@ def test_json_query_params_object refute_nil(res) assert_equal(Rack::Utils.status_code(:ok), res.status_code) refute_nil(res.res) - + # rubocop:disable Style/StringLiterals assert_equal("http://localhost:35123/anything/queryParams/json/obj?deepObjParam={\"any\"%3A{\"any\"%3A\"any\"%2C\"bool\"%3Atrue%2C\"boolOpt\"%3Atrue%2C\"date\"%3A\"2020-01-01\"%2C\"dateTime\"%3A\"2020-01-01T00%3A00%3A00.000000001Z\"%2C\"enum\"%3A\"one\"%2C\"float32\"%3A1.1%2C\"int\"%3A1%2C\"int32\"%3A1%2C\"int32Enum\"%3A55%2C\"intEnum\"%3A2%2C\"num\"%3A1.1%2C\"str\"%3A\"test\"%2C\"strOpt\"%3A\"testOptional\"}%2C\"arr\"%3A[{\"any\"%3A\"any\"%2C\"bool\"%3Atrue%2C\"boolOpt\"%3Atrue%2C\"date\"%3A\"2020-01-01\"%2C\"dateTime\"%3A\"2020-01-01T00%3A00%3A00.000000001Z\"%2C\"enum\"%3A\"one\"%2C\"float32\"%3A1.1%2C\"int\"%3A1%2C\"int32\"%3A1%2C\"int32Enum\"%3A55%2C\"intEnum\"%3A2%2C\"num\"%3A1.1%2C\"str\"%3A\"test\"%2C\"strOpt\"%3A\"testOptional\"}%2C{\"any\"%3A\"any\"%2C\"bool\"%3Atrue%2C\"boolOpt\"%3Atrue%2C\"date\"%3A\"2020-01-01\"%2C\"dateTime\"%3A\"2020-01-01T00%3A00%3A00.000000001Z\"%2C\"enum\"%3A\"one\"%2C\"float32\"%3A1.1%2C\"int\"%3A1%2C\"int32\"%3A1%2C\"int32Enum\"%3A55%2C\"intEnum\"%3A2%2C\"num\"%3A1.1%2C\"str\"%3A\"test\"%2C\"strOpt\"%3A\"testOptional\"}]%2C\"bool\"%3Atrue%2C\"int\"%3A1%2C\"map\"%3A[[\"key\"%2C{\"any\"%3A\"any\"%2C\"bool\"%3Atrue%2C\"boolOpt\"%3Atrue%2C\"date\"%3A\"2020-01-01\"%2C\"dateTime\"%3A\"2020-01-01T00%3A00%3A00.000000001Z\"%2C\"enum\"%3A\"one\"%2C\"float32\"%3A1.1%2C\"int\"%3A1%2C\"int32\"%3A1%2C\"int32Enum\"%3A55%2C\"intEnum\"%3A2%2C\"num\"%3A1.1%2C\"str\"%3A\"test\"%2C\"strOpt\"%3A\"testOptional\"}]]%2C\"num\"%3A1.1%2C\"obj\"%3A{\"any\"%3A\"any\"%2C\"bool\"%3Atrue%2C\"boolOpt\"%3Atrue%2C\"date\"%3A\"2020-01-01\"%2C\"dateTime\"%3A\"2020-01-01T00%3A00%3A00.000000001Z\"%2C\"enum\"%3A\"one\"%2C\"float32\"%3A1.1%2C\"int\"%3A1%2C\"int32\"%3A1%2C\"int32Enum\"%3A55%2C\"intEnum\"%3A2%2C\"num\"%3A1.1%2C\"str\"%3A\"test\"%2C\"strOpt\"%3A\"testOptional\"}%2C\"str\"%3A\"test\"}&simpleObjParam={\"any\"%3A\"any\"%2C\"bool\"%3Atrue%2C\"boolOpt\"%3Atrue%2C\"date\"%3A\"2020-01-01\"%2C\"dateTime\"%3A\"2020-01-01T00%3A00%3A00.000000001Z\"%2C\"enum\"%3A\"one\"%2C\"float32\"%3A1.1%2C\"int\"%3A1%2C\"int32\"%3A1%2C\"int32Enum\"%3A55%2C\"intEnum\"%3A2%2C\"num\"%3A1.1%2C\"str\"%3A\"test\"%2C\"strOpt\"%3A\"testOptional\"}", res.res.url) # rubocop:enable Style/StringLiterals diff --git a/ruby-client-sdk/testprimary/requestbodies_test.rb b/ruby-client-sdk/testprimary/requestbodies_test.rb index 8d33422b3..4e5dddc73 100755 --- a/ruby-client-sdk/testprimary/requestbodies_test.rb +++ b/ruby-client-sdk/testprimary/requestbodies_test.rb @@ -31,8 +31,8 @@ def test_request_body_post_application_json_array refute_nil(res) assert_equal(Rack::Utils.status_code(:ok), res.status_code) - refute_nil(res.simple_objects) - compare_simple_object(obj, res.simple_objects[0]) + refute_nil(res.res) + compare_simple_object(obj, res.res[0]) end @@ -45,9 +45,9 @@ def test_request_body_post_application_json_array_of_array refute_nil(res) assert_equal(Rack::Utils.status_code(:ok), res.status_code) - refute_nil(res.arrs) - compare_simple_object(obj, res.arrs[0][0]) - compare_simple_object(obj, res.arrs[1][0]) + refute_nil(res.res) + compare_simple_object(obj, res.res[0][0]) + compare_simple_object(obj, res.res[1][0]) end @@ -130,11 +130,11 @@ def test_request_body_post_application_json_array_of_map refute_nil(res) assert_equal(Rack::Utils.status_code(:ok), res.status_code) - refute_nil(res.maps) - compare_simple_object(obj, res.maps[0]['mapElem1']) - compare_simple_object(obj, res.maps[0]['mapElem1']) - compare_simple_object(obj, res.maps[1]['mapElem2']) - compare_simple_object(obj, res.maps[1]['mapElem2']) + refute_nil(res.res) + compare_simple_object(obj, res.res[0]['mapElem1']) + compare_simple_object(obj, res.res[0]['mapElem1']) + compare_simple_object(obj, res.res[1]['mapElem2']) + compare_simple_object(obj, res.res[1]['mapElem2']) end def test_request_body_post_application_json_map_of_primitive @@ -159,8 +159,8 @@ def test_request_body_post_application_json_array_of_primitive refute_nil(res) assert_equal(Rack::Utils.status_code(:ok), res.status_code) - refute_nil(res.strings) - assert_equal(['hello', 'world'], res.strings) + refute_nil(res.res) + assert_equal(['hello', 'world'], res.res) end def test_request_body_post_application_json_map_of_map_of_primitive @@ -196,8 +196,8 @@ def test_request_body_post_application_json_array_of_array_of_primitive refute_nil(res) assert_equal(Rack::Utils.status_code(:ok), res.status_code) - refute_nil(res.arrs) - assert_equal([['foo', 'bar'], ['buzz', 'bazz']], res.arrs) + refute_nil(res.res) + assert_equal([['foo', 'bar'], ['buzz', 'bazz']], res.res) end def test_request_body_post_application_json_array_object @@ -294,7 +294,7 @@ def test_request_body_post_multiple_content_types_component_filtered def test_request_body_post_multiple_content_types_inline_filtered record_test('request-bodies-post-multiple-content-types-inline-filtered') - res = @sdk.request_bodies.request_body_post_multiple_content_types_inline_filtered(Operations::RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.new( + res = @sdk.request_bodies.request_body_post_multiple_content_types_inline_filtered(Operations::RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.new( bool: true, num: 1.1, str_: 'test' @@ -314,7 +314,7 @@ def test_request_body_post_multiple_content_types_inline_filtered def test_request_body_post_multiple_content_types_split_json record_test('request-bodies-post-multiple-content-types-split-json') - res = @sdk.request_bodies.request_body_post_multiple_content_types_split_json(Operations::RequestBodyPostMultipleContentTypesSplitApplicationJSON.new( + res = @sdk.request_bodies.request_body_post_multiple_content_types_split_json(Operations::RequestBodyPostMultipleContentTypesSplitJsonRequestBody.new( bool: true, num: 1.1, str_: 'test' @@ -333,7 +333,7 @@ def test_request_body_post_multiple_content_types_split_json def test_request_body_post_multiple_content_types_split_multipart record_test('request-bodies-post-multiple-content-types-split-multipart') - res = @sdk.request_bodies.request_body_post_multiple_content_types_split_multipart(Operations::RequestBodyPostMultipleContentTypesSplitMultipartFormData.new( + res = @sdk.request_bodies.request_body_post_multiple_content_types_split_multipart(Operations::RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.new( bool2: true, num2: 1.1, str2: 'test' @@ -352,7 +352,7 @@ def test_request_body_post_multiple_content_types_split_multipart def test_request_body_post_multiple_content_types_split_form record_test('request-bodies-post-multiple-content-types-split-form') - res = @sdk.request_bodies.request_body_post_multiple_content_types_split_form(Operations::RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.new( + res = @sdk.request_bodies.request_body_post_multiple_content_types_split_form(Operations::RequestBodyPostMultipleContentTypesSplitFormRequestBody.new( bool3: true, num3: 1.1, str3: 'test' @@ -372,7 +372,7 @@ def test_request_body_post_multiple_content_types_split_json_param record_test('request-bodies-post-multiple-content-types-split-json-with-param') res = @sdk.request_bodies.request_body_post_multiple_content_types_split_param_json( - Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.new( + Operations::RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.new( bool: true, num: 1.1, str_: 'test body' @@ -396,7 +396,7 @@ def test_request_body_post_multiple_content_types_split_multipart_param record_test('request-bodies-post-multiple-content-types-split-multipart-with-param') res = @sdk.request_bodies.request_body_post_multiple_content_types_split_param_multipart( - Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.new( + Operations::RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.new( bool2: true, num2: 1.1, str2: 'test body' @@ -421,7 +421,7 @@ def test_request_body_post_multiple_content_types_split_form_param record_test('request-bodies-post-multiple-content-types-split-form-with-param') res = @sdk.request_bodies.request_body_post_multiple_content_types_split_param_form( - Operations::RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.new( + Operations::RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.new( bool3: true, num3: 1.1, str3: 'test body' @@ -487,9 +487,9 @@ def test_request_body_put_multipart_file data = File.open('test/testdata/testUpload.json').read res = @sdk.request_bodies.request_body_put_multipart_file(Operations::RequestBodyPutMultipartFileRequestBody.new( - file: Operations::RequestBodyPutMultipartFileRequestBodyFile.new( + file: Operations::File.new( content: data, - file: 'test/testdata/testUpload.json' + file_name: 'test/testdata/testUpload.json' ) )) refute_nil(res) @@ -613,8 +613,8 @@ def test_request_body_post_empty_object record_test('request-bodies-post-empty-object') res = @sdk.request_bodies.request_body_post_empty_object(Operations::RequestBodyPostEmptyObjectRequestBody.new( - empty: Operations::RequestBodyPostEmptyObjectRequestBodyEmpty.new, - empty_with_empty_properties: Operations::RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.new + empty: Operations::Empty.new, + empty_with_empty_properties: Operations::EmptyWithEmptyProperties.new )) refute_nil(res) assert_equal(Rack::Utils.status_code(:ok), res.status_code) @@ -664,7 +664,7 @@ def test_request_body_write_only def test_request_body_read_and_write record_test('request-bodies-read-and-write') - res = @sdk.request_bodies.request_body_read_and_write(Shared::ReadWriteObjectInput.new( + res = @sdk.request_bodies.request_body_read_and_write(Shared::ReadWriteObject.new( num1: 1, num2: 2, num3: 4 diff --git a/ruby-client-sdk/testprimary/telemetry_test.rb b/ruby-client-sdk/testprimary/telemetry_test.rb index 3891e0951..3956cb616 100755 --- a/ruby-client-sdk/testprimary/telemetry_test.rb +++ b/ruby-client-sdk/testprimary/telemetry_test.rb @@ -17,7 +17,7 @@ def test_telemetry_user_agent_get refute_nil(res) assert_equal(Rack::Utils.status_code(:ok), res.status_code) - assert_equal('speakeasy-sdk/ruby 1.36.2 2.173.0 0.1.0 openapi', res.res.headers['X-Speakeasy-User-Agent']) + assert_equal('speakeasy-sdk/ruby 2.0.0 2.181.1 0.1.0 openapi', res.res.headers['X-Speakeasy-User-Agent']) end @@ -31,7 +31,7 @@ def test_telemetry_speakeasy_user_agent_get refute_nil(res) assert_equal(Rack::Utils.status_code(:ok), res.status_code) assert_equal(user_agent, res.res.headers['User-Agent']) - assert_equal('speakeasy-sdk/ruby 1.36.2 2.173.0 0.1.0 openapi', res.res.headers['X-Speakeasy-User-Agent']) + assert_equal('speakeasy-sdk/ruby 2.0.0 2.181.1 0.1.0 openapi', res.res.headers['X-Speakeasy-User-Agent']) end end diff --git a/swift-client-sdk/README.md b/swift-client-sdk/README.md index 8e2fdb8c8..4ab577861 100755 --- a/swift-client-sdk/README.md +++ b/swift-client-sdk/README.md @@ -28,7 +28,7 @@ You can add `OpenAPI` to your project directly in Xcode `(File > Add Packages... ```bash dependencies: [ - .package(url: "", .upToNextMajor(from: "0.1.2")) + .package(url: "", .upToNextMajor(from: "0.2.0")) ] ``` @@ -44,7 +44,7 @@ let client = Client(security: .apiKeyAuth("Token YOUR_API_KEY")) let response = try await client.generation.getGlobalNameOverride() switch response.data { -case .getGlobalNameOverride200ApplicationJSONObject(let getGlobalNameOverride200ApplicationJSONObject): +case .object(let object): // Handle response break case .empty: @@ -190,7 +190,7 @@ let response = try await client.generation.usageExamplePost( ) switch response.data { -case .usageExamplePost200ApplicationJSONObject(let usageExamplePost200ApplicationJSONObject): +case .object(let object): // Handle response break case .empty: diff --git a/swift-client-sdk/Sources/OpenAPI/Client.swift b/swift-client-sdk/Sources/OpenAPI/Client.swift index fd4bf2d9f..466c62450 100755 --- a/swift-client-sdk/Sources/OpenAPI/Client.swift +++ b/swift-client-sdk/Sources/OpenAPI/Client.swift @@ -11,10 +11,10 @@ import FoundationNetworking /// /// ### API calls /// -/// Each API endpoint (or *operation*) is exposed as a method. For instance, the 'basicAuth' operation is exposed as: +/// Each API endpoint (or *operation*) is exposed as a method. For instance, the 'dateParamWithDefault' operation is exposed as: /// /// ```swift -/// func basicAuth(request: Operations.BasicAuthRequest, security: Operations.BasicAuthSecurity) async throws -> Response +/// func dateParamWithDefault(request: Operations.DateParamWithDefaultRequest) async throws -> Response /// ``` /// /// ### Request and response objects @@ -23,13 +23,11 @@ import FoundationNetworking /// /// Each API method also returns a ``Response`` object, which provides information about the result of making the API request. It is generic and parameterised by the resulting data — stored in the ``Response/data`` property — which is determined by each API operation. /// -/// The ``Response/data`` property defined by each API operation is an enum, and you can `switch` on this value to extract the corresponding value from the response. For example, the 'basicAuth' operation returns a ``Operations/BasicAuthResponse`` value: +/// The ``Response/data`` property defined by each API operation is an enum, and you can `switch` on this value to extract the corresponding value from the response. For example, the 'dateParamWithDefault' operation returns a ``Operations/DateParamWithDefaultResponse`` value: /// /// ```swift -/// let response: Response = ... // Response from API call +/// let response: Response = ... // Response from API call /// switch response.data { -/// case .user(let user): -/// // Handle response /// case .empty: /// // Handle empty response /// } @@ -71,28 +69,28 @@ import FoundationNetworking /// /// These properties logically group other parts of the API. /// -/// - ``auth`` -/// - ``authNew`` -/// - ``documentation`` +/// - ``generation`` /// - ``errors`` -/// - ``first`` +/// - ``unions`` /// - ``flattening`` -/// - ``generation`` /// - ``globals`` +/// - ``parameters`` /// - ``nestFirst`` /// - ``nested`` /// - ``nestedFirst`` /// - ``nestedSecond`` -/// - ``pagination`` -/// - ``parameters`` /// - ``requestBodies`` -/// - ``resource`` /// - ``responseBodies`` -/// - ``retries`` -/// - ``second`` /// - ``servers`` /// - ``telemetry`` -/// - ``unions`` +/// - ``authNew`` +/// - ``auth`` +/// - ``documentation`` +/// - ``resource`` +/// - ``first`` +/// - ``second`` +/// - ``pagination`` +/// - ``retries`` /// public final class Client { internal struct APIResponse { diff --git a/swift-client-sdk/Sources/OpenAPI/OpenAPI.docc/OpenAPI.md b/swift-client-sdk/Sources/OpenAPI/OpenAPI.docc/OpenAPI.md index b0ad68d6a..97da87d10 100755 --- a/swift-client-sdk/Sources/OpenAPI/OpenAPI.docc/OpenAPI.md +++ b/swift-client-sdk/Sources/OpenAPI/OpenAPI.docc/OpenAPI.md @@ -14,10 +14,10 @@ import OpenAPI let client = Client(security: .apiKeyAuth("Token YOUR_API_KEY")) -let response = try await client.sdk.putAnythingIgnoredGeneration() +let response = try await client.putAnythingIgnoredGeneration() switch response.data { -case .putAnythingIgnoredGeneration200ApplicationJSONObject(let putAnythingIgnoredGeneration200ApplicationJSONObject): +case .object(let object): // Handle response break case .empty: @@ -28,7 +28,7 @@ case .empty: ``` ### Getting started -- ``OpenAPI`` defines the available API operations, including operations which are logically grouped by name (for example under ``OpenAPI/auth``). +- ``OpenAPI`` defines the available API operations, including operations which are logically grouped by name (for example under ``OpenAPI/generation``). - ``Client`` is the main object used when making requests to the API, and implements ``OpenAPI`` to provide this functionality. Each available API method is exposed as an `async` function, which you can call and `await` its response and handle any errors that are thrown. - API methods that require input data take a *request object* describing these parameters, and each method returns a *response object* containing information about the response. You can read more about these in . - Requests to the API must be authenticated. You can provide authentication credentials by initializing ``Client`` with a ``Shared/Security`` value. @@ -51,36 +51,31 @@ case .empty: ### API operations - ``OpenAPI/OpenAPI`` -- ``AuthAPI`` -- ``AuthNewAPI`` -- ``DocumentationAPI`` +- ``GenerationAPI`` - ``ErrorsAPI`` -- ``FirstAPI`` +- ``UnionsAPI`` - ``FlatteningAPI`` -- ``GenerationAPI`` - ``GlobalsAPI`` +- ``ParametersAPI`` - ``NestFirstAPI`` - ``NestedAPI`` - ``NestedFirstAPI`` - ``NestedSecondAPI`` -- ``PaginationAPI`` -- ``ParametersAPI`` - ``RequestBodiesAPI`` -- ``ResourceAPI`` - ``ResponseBodiesAPI`` -- ``RetriesAPI`` -- ``SecondAPI`` - ``ServersAPI`` - ``TelemetryAPI`` -- ``UnionsAPI`` +- ``AuthNewAPI`` +- ``AuthAPI`` +- ``DocumentationAPI`` +- ``ResourceAPI`` +- ``FirstAPI`` +- ``SecondAPI`` +- ``PaginationAPI`` +- ``RetriesAPI`` ### Security configuration -- ``Operations/ApiKeyAuthSecurity`` -- ``Operations/BasicAuthSecurity`` -- ``Operations/BearerAuthSecurity`` -- ``Operations/Oauth2AuthSecurity`` -- ``Operations/Oauth2OverrideSecurity`` -- ``Operations/OpenIdConnectAuthSecurity`` +- ``Operations/UsageExamplePostSecurity`` - ``Operations/BasicAuthNewSecurity`` - ``Operations/MultipleMixedOptionsAuthSecurity`` - ``Operations/MultipleMixedSchemeAuthSecurity`` @@ -90,28 +85,16 @@ case .empty: - ``Operations/MultipleSimpleSchemeAuthSecurity`` - ``Operations/Oauth2AuthNewSecurity`` - ``Operations/OpenIdConnectAuthNewSecurity`` -- ``Operations/UsageExamplePostSecurity`` +- ``Operations/ApiKeyAuthSecurity`` +- ``Operations/BasicAuthSecurity`` +- ``Operations/BearerAuthSecurity`` +- ``Operations/Oauth2AuthSecurity`` +- ``Operations/Oauth2OverrideSecurity`` +- ``Operations/OpenIdConnectAuthSecurity`` ### Server configuration -- ``AuthNewServers/ApiKeyAuthGlobalNew`` -- ``AuthNewServers/AuthGlobal`` -- ``AuthNewServers/BasicAuthNew`` -- ``AuthNewServers/MultipleMixedOptionsAuth`` -- ``AuthNewServers/MultipleMixedSchemeAuth`` -- ``AuthNewServers/MultipleOptionsWithMixedSchemesAuth`` -- ``AuthNewServers/MultipleOptionsWithSimpleSchemesAuth`` -- ``AuthNewServers/MultipleSimpleOptionsAuth`` -- ``AuthNewServers/MultipleSimpleSchemeAuth`` -- ``AuthNewServers/Oauth2AuthNew`` -- ``AuthNewServers/OpenIdConnectAuthNew`` - ``ErrorsServers/ConnectionErrorGet`` - ``ErrorsServers/StatusGetXSpeakeasyErrors`` -- ``PaginationServers/PaginationCursorBody`` -- ``PaginationServers/PaginationCursorParams`` -- ``PaginationServers/PaginationLimitOffsetOffsetBody`` -- ``PaginationServers/PaginationLimitOffsetOffsetParams`` -- ``PaginationServers/PaginationLimitOffsetPageBody`` -- ``PaginationServers/PaginationLimitOffsetPageParams`` - ``RequestBodiesServers/RequestBodyPostApplicationJsonArray`` - ``RequestBodiesServers/RequestBodyPostApplicationJsonArrayCamelCase`` - ``RequestBodiesServers/RequestBodyPostApplicationJsonArrayOfArray`` @@ -137,95 +120,112 @@ case .empty: - ``RequestBodiesServers/RequestBodyWriteOnlyUnion`` - ``ResponseBodiesServers/ResponseBodyOptionalGet`` - ``ResponseBodiesServers/ResponseBodyReadOnly`` -- ``RetriesServers/RetriesGet`` - ``ServersServers/SelectServerWithID`` - ``ServersServers/ServerWithProtocolTemplate`` - ``ServersServers/ServerWithTemplates`` - ``ServersServers/ServersByIDWithTemplates`` +- ``AuthNewServers/ApiKeyAuthGlobalNew`` +- ``AuthNewServers/AuthGlobal`` +- ``AuthNewServers/BasicAuthNew`` +- ``AuthNewServers/MultipleMixedOptionsAuth`` +- ``AuthNewServers/MultipleMixedSchemeAuth`` +- ``AuthNewServers/MultipleOptionsWithMixedSchemesAuth`` +- ``AuthNewServers/MultipleOptionsWithSimpleSchemesAuth`` +- ``AuthNewServers/MultipleSimpleOptionsAuth`` +- ``AuthNewServers/MultipleSimpleSchemeAuth`` +- ``AuthNewServers/Oauth2AuthNew`` +- ``AuthNewServers/OpenIdConnectAuthNew`` +- ``PaginationServers/PaginationCursorBody`` +- ``PaginationServers/PaginationCursorParams`` +- ``PaginationServers/PaginationLimitOffsetOffsetBody`` +- ``PaginationServers/PaginationLimitOffsetOffsetParams`` +- ``PaginationServers/PaginationLimitOffsetPageBody`` +- ``PaginationServers/PaginationLimitOffsetPageParams`` +- ``RetriesServers/RetriesGet`` ### Shared models +- ``Shared/Two`` - ``Shared/AllOfToAllOf`` +- ``Shared/`Any``` +- ``Shared/AnyVal`` - ``Shared/ArrayCircularReferenceObject`` - ``Shared/ArrObjValue`` - ``Shared/ArrObjValueCamelCase`` - ``Shared/AuthServiceRequestBody`` -- ``Shared/AuthServiceRequestBodyBasicAuth`` -- ``Shared/AuthServiceRequestBodyHeaderAuth`` +- ``Shared/BasicAuth`` +- ``Shared/Child`` +- ``Shared/Chocolates`` - ``Shared/ComplexNumberTypes`` +- ``Shared/ConstEnumInt`` +- ``Shared/ConstEnumStr`` - ``Shared/DeepObject`` -- ``Shared/DeepObjectAny`` - ``Shared/DeepObjectCamelCase`` -- ``Shared/DeepObjectCamelCaseAnyVal`` - ``Shared/DeepObjectWithType`` - ``Shared/DeepObjectWithTypeAny`` +- ``Shared/DefaultEnumInt`` +- ``Shared/DefaultEnumStr`` - ``Shared/DefaultsAndConsts`` -- ``Shared/DefaultsAndConstsConstEnumInt`` -- ``Shared/DefaultsAndConstsConstEnumStr`` -- ``Shared/DefaultsAndConstsDefaultEnumInt`` -- ``Shared/DefaultsAndConstsDefaultEnumStr`` - ``Shared/DefaultsAndConstsOutput`` - ``Shared/DefaultsAndConstsOutputConstEnumInt`` - ``Shared/DefaultsAndConstsOutputConstEnumStr`` - ``Shared/DefaultsAndConstsOutputDefaultEnumInt`` - ``Shared/DefaultsAndConstsOutputDefaultEnumStr`` +- ``Shared/DeprecatedEnum`` - ``Shared/DeprecatedFieldInObject`` -- ``Shared/DeprecatedFieldInObjectDeprecatedEnum`` - ``Shared/DeprecatedObject`` - ``Shared/EmptyObjectParam`` - ``Shared/Enum`` +- ``Shared/EnumNumber`` +- ``Shared/EnumStr`` - ``Shared/Error`` - ``Shared/ErrorType`` - ``Shared/ExampleBoat`` -- ``Shared/ExampleBoatType`` - ``Shared/ExampleCar`` - ``Shared/ExampleCarType`` - ``Shared/ExampleResource`` -- ``Shared/ExampleResourceChocolates`` -- ``Shared/ExampleResourceEnumNumber`` -- ``Shared/ExampleResourceEnumStr`` - ``Shared/ExampleVehicle`` - ``Shared/FakerFormattedStrings`` - ``Shared/FakerStrings`` - ``Shared/FileResource`` - ``Shared/FlattenedTypedObject1`` +- ``Shared/HeaderAuth`` - ``Shared/HttpBinSimpleJsonObject`` -- ``Shared/HttpBinSimpleJsonObjectSlideshow`` -- ``Shared/HttpBinSimpleJsonObjectSlideshowSlides`` +- ``Shared/IntEnumVal`` +- ``Shared/Int32EnumVal`` +- ``Shared/Int32Enum`` +- ``Shared/IntEnum`` - ``Shared/LimitOffsetConfig`` - ``Shared/MapObjValue`` - ``Shared/MapObjValueCamelCase`` - ``Shared/NullableObject`` - ``Shared/NullableOneOfRefInObject`` -- ``Shared/NullableOneOfRefInObjectNullableOneOfTwo`` -- ``Shared/NullableOneOfRefInObjectOneOfOne`` +- ``Shared/NullableOneOfTwo`` - ``Shared/NullableOneOfTypeInObject`` - ``Shared/NullableOneOfTypeInObjectNullableOneOfTwo`` - ``Shared/ObjectCircularReferenceObject`` - ``Shared/ObjWithZeroValueComplexTypePtrs`` - ``Shared/OneOfCircularReferenceObject`` -- ``Shared/OneOfCircularReferenceObjectChild`` +- ``Shared/OneOfFromArrayOfTypes`` - ``Shared/OneOfGenerationStressTest`` -- ``Shared/OneOfGenerationStressTestOneOfFromArrayOfTypes`` -- ``Shared/OneOfGenerationStressTestOneOfSameType`` -- ``Shared/OneOfGenerationStressTestOneOfSameType2`` +- ``Shared/OneOfOne`` +- ``Shared/OneOfSameType`` - ``Shared/PrimitiveTypeUnion`` - ``Shared/ReadOnlyObject`` - ``Shared/ReadOnlyObjectInput`` -- ``Shared/ReadWriteObjectInput`` +- ``Shared/ReadWriteObject`` - ``Shared/ReadWriteObjectOutput`` - ``Shared/RefQueryParamObj`` - ``Shared/RefQueryParamObjExploded`` - ``Shared/SchemeBasicAuth`` - ``Shared/SimpleObject`` -- ``Shared/SimpleObjectInt32Enum`` -- ``Shared/SimpleObjectIntEnum`` - ``Shared/SimpleObjectCamelCase`` -- ``Shared/SimpleObjectCamelCaseIntEnumVal`` -- ``Shared/SimpleObjectCamelCaseInt32EnumVal`` - ``Shared/SimpleObjectWithType`` - ``Shared/SimpleObjectWithTypeInt32Enum`` - ``Shared/SimpleObjectWithTypeIntEnum`` +- ``Shared/Slides`` +- ``Shared/Slideshow`` - ``Shared/StronglyTypedOneOfObject`` +- ``Shared/TypeModel`` - ``Shared/TypedObject1`` - ``Shared/TypedObject1Type`` - ``Shared/TypedObject2`` @@ -239,7 +239,7 @@ case .empty: - ``Shared/WeaklyTypedOneOfObject`` - ``Shared/WeaklyTypedOneOfReadOnlyObject`` - ``Shared/WeaklyTypedOneOfReadOnlyObjectInput`` -- ``Shared/WeaklyTypedOneOfReadWriteObjectInput`` +- ``Shared/WeaklyTypedOneOfReadWriteObject`` - ``Shared/WeaklyTypedOneOfReadWriteObjectOutput`` - ``Shared/WeaklyTypedOneOfWriteOnlyObject`` - ``Shared/WeaklyTypedOneOfWriteOnlyObjectOutput`` @@ -247,76 +247,16 @@ case .empty: - ``Shared/WriteOnlyObjectOutput`` ### Request objects -- ``Operations/BasicAuthRequest`` -- ``Operations/ComponentBodyAndParamConflictRequest`` -- ``Operations/ComponentBodyAndParamNoConflictRequest`` -- ``Operations/ConflictingParamsRequest`` -- ``Operations/DateParamWithDefaultRequest`` -- ``Operations/DateTimeParamWithDefaultRequest`` -- ``Operations/DecimalParamWithDefaultRequest`` -- ``Operations/DeepObjectQueryParamsMapRequest`` -- ``Operations/DeepObjectQueryParamsObjectRequest`` -- ``Operations/DeleteResourceRequest`` -- ``Operations/DeprecatedOperationNoCommentsGetRequest`` -- ``Operations/DeprecatedOperationWithCommentsGetRequest`` -- ``Operations/DuplicateParamRequest`` -- ``Operations/EmptyObjectGetRequest`` -- ``Operations/FormQueryParamsArrayRequest`` -- ``Operations/FormQueryParamsCamelObjectRequest`` -- ``Operations/FormQueryParamsMapRequest`` -- ``Operations/FormQueryParamsObjectRequest`` -- ``Operations/FormQueryParamsPrimitiveRequest`` -- ``Operations/FormQueryParamsRefParamObjectRequest`` -- ``Operations/GetDocumentationPerLanguageRequest`` -- ``Operations/GetResourceRequest`` -- ``Operations/GlobalPathParameterGetRequest`` -- ``Operations/GlobalsQueryParameterGetRequest`` -- ``Operations/HeaderParamsArrayRequest`` -- ``Operations/HeaderParamsMapRequest`` -- ``Operations/HeaderParamsObjectRequest`` -- ``Operations/HeaderParamsPrimitiveRequest`` -- ``Operations/IgnoresPostRequest`` -- ``Operations/InlineBodyAndParamConflictRequest`` -- ``Operations/InlineBodyAndParamNoConflictRequest`` -- ``Operations/JsonQueryParamsObjectRequest`` -- ``Operations/MixedParametersCamelCaseRequest`` -- ``Operations/MixedParametersPrimitivesRequest`` -- ``Operations/MixedQueryParamsRequest`` -- ``Operations/NameOverrideGetRequest`` -- ``Operations/Oauth2OverrideRequest`` -- ``Operations/PaginationCursorParamsRequest`` -- ``Operations/PaginationLimitOffsetOffsetParamsRequest`` -- ``Operations/PaginationLimitOffsetPageParamsRequest`` -- ``Operations/PathParameterJsonRequest`` -- ``Operations/PipeDelimitedQueryParamsArrayRequest`` -- ``Operations/RequestBodyPostComplexNumberTypesRequest`` -- ``Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest`` -- ``Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest`` -- ``Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest`` -- ``Operations/RequestBodyPutBytesWithParamsRequest`` -- ``Operations/RequestBodyPutStringWithParamsRequest`` -- ``Operations/ResponseBodyEmptyWithHeadersRequest`` -- ``Operations/RetriesGetRequest`` -- ``Operations/SimplePathParameterArraysRequest`` -- ``Operations/SimplePathParameterMapsRequest`` -- ``Operations/SimplePathParameterObjectsRequest`` -- ``Operations/SimplePathParameterPrimitivesRequest`` -- ``Operations/StatusGetErrorRequest`` -- ``Operations/StatusGetXSpeakeasyErrorsRequest`` -- ``Operations/TelemetrySpeakeasyUserAgentGetRequest`` -- ``Operations/TypedParameterGenerationGetRequest`` -- ``Operations/UpdateResourceRequest`` -- ``Operations/UsageExamplePostRequest`` ### Response objects - ``Operations/AnchorTypesGetResponse`` -- ``Operations/ApiKeyAuthGlobalNewResponse`` -- ``Operations/ApiKeyAuthGlobalResponse`` - ``Operations/ApiKeyAuthResponse`` +- ``Operations/ApiKeyAuthGlobalResponse`` +- ``Operations/ApiKeyAuthGlobalNewResponse`` - ``Operations/ArrayCircularReferenceGetResponse`` - ``Operations/AuthGlobalResponse`` -- ``Operations/BasicAuthNewResponse`` - ``Operations/BasicAuthResponse`` +- ``Operations/BasicAuthNewResponse`` - ``Operations/BearerAuthResponse`` - ``Operations/CircularReferenceGetResponse`` - ``Operations/ComponentBodyAndParamConflictResponse`` @@ -385,13 +325,13 @@ case .empty: - ``Operations/NullableRequiredPropertyPostResponse`` - ``Operations/NullableRequiredSharedObjectPostResponse`` - ``Operations/NullableTypedObjectPostResponse`` -- ``Operations/Oauth2AuthNewResponse`` - ``Operations/Oauth2AuthResponse`` +- ``Operations/Oauth2AuthNewResponse`` - ``Operations/Oauth2OverrideResponse`` - ``Operations/ObjectCircularReferenceGetResponse`` - ``Operations/OneOfCircularReferenceGetResponse`` -- ``Operations/OpenIdConnectAuthNewResponse`` - ``Operations/OpenIdConnectAuthResponse`` +- ``Operations/OpenIdConnectAuthNewResponse`` - ``Operations/PaginationCursorBodyResponse`` - ``Operations/PaginationCursorParamsResponse`` - ``Operations/PaginationLimitOffsetOffsetBodyResponse`` @@ -402,31 +342,31 @@ case .empty: - ``Operations/PipeDelimitedQueryParamsArrayResponse`` - ``Operations/PrimitiveTypeOneOfPostResponse`` - ``Operations/PutAnythingIgnoredGenerationResponse`` +- ``Operations/RequestBodyPostApplicationJsonArrayResponse`` - ``Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse`` -- ``Operations/RequestBodyPostApplicationJsonArrayObjCamelCaseResponse`` - ``Operations/RequestBodyPostApplicationJsonArrayObjResponse`` +- ``Operations/RequestBodyPostApplicationJsonArrayObjCamelCaseResponse`` +- ``Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse`` - ``Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse`` - ``Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse`` -- ``Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse`` -- ``Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse`` - ``Operations/RequestBodyPostApplicationJsonArrayOfMapResponse`` +- ``Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse`` - ``Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse`` -- ``Operations/RequestBodyPostApplicationJsonArrayResponse`` -- ``Operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse`` - ``Operations/RequestBodyPostApplicationJsonDeepResponse`` +- ``Operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse`` +- ``Operations/RequestBodyPostApplicationJsonMapResponse`` - ``Operations/RequestBodyPostApplicationJsonMapCamelCaseResponse`` -- ``Operations/RequestBodyPostApplicationJsonMapObjCamelCaseResponse`` - ``Operations/RequestBodyPostApplicationJsonMapObjResponse`` -- ``Operations/RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse`` +- ``Operations/RequestBodyPostApplicationJsonMapObjCamelCaseResponse`` - ``Operations/RequestBodyPostApplicationJsonMapOfArrayResponse`` +- ``Operations/RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse`` +- ``Operations/RequestBodyPostApplicationJsonMapOfMapResponse`` - ``Operations/RequestBodyPostApplicationJsonMapOfMapCamelCaseResponse`` - ``Operations/RequestBodyPostApplicationJsonMapOfMapOfPrimitiveResponse`` -- ``Operations/RequestBodyPostApplicationJsonMapOfMapResponse`` - ``Operations/RequestBodyPostApplicationJsonMapOfPrimitiveResponse`` -- ``Operations/RequestBodyPostApplicationJsonMapResponse`` - ``Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse`` -- ``Operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse`` - ``Operations/RequestBodyPostApplicationJsonSimpleResponse`` +- ``Operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse`` - ``Operations/RequestBodyPostComplexNumberTypesResponse`` - ``Operations/RequestBodyPostDefaultsAndConstsResponse`` - ``Operations/RequestBodyPostEmptyObjectResponse`` @@ -476,8 +416,8 @@ case .empty: - ``Operations/RequestBodyReadOnlyInputResponse`` - ``Operations/RequestBodyReadOnlyUnionResponse`` - ``Operations/RequestBodyReadWriteOnlyUnionResponse`` -- ``Operations/RequestBodyWriteOnlyOutputResponse`` - ``Operations/RequestBodyWriteOnlyResponse`` +- ``Operations/RequestBodyWriteOnlyOutputResponse`` - ``Operations/RequestBodyWriteOnlyUnionResponse`` - ``Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse`` - ``Operations/ResponseBodyAdditionalPropertiesDatePostResponse`` @@ -496,8 +436,8 @@ case .empty: - ``Operations/SelectServerWithIDResponse`` - ``Operations/ServersByIDWithTemplatesResponse`` - ``Operations/ServerWithProtocolTemplateResponse`` -- ``Operations/ServerWithTemplatesGlobalResponse`` - ``Operations/ServerWithTemplatesResponse`` +- ``Operations/ServerWithTemplatesGlobalResponse`` - ``Operations/SimplePathParameterArraysResponse`` - ``Operations/SimplePathParameterMapsResponse`` - ``Operations/SimplePathParameterObjectsResponse`` @@ -521,208 +461,268 @@ case .empty: - ``Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse`` ### Other models +- ``Operations/AnchorTypesGetTypeFromAnchor`` - ``Operations/ApiKeyAuthToken`` - ``Operations/ApiKeyAuthGlobalToken`` +- ``Operations/Args`` +- ``Operations/BasicAuthRequest`` - ``Operations/BasicAuthUser`` - ``Operations/BearerAuthToken`` +- ``Operations/ComponentBodyAndParamConflictRequest`` - ``Operations/ComponentBodyAndParamConflictRes`` +- ``Operations/ComponentBodyAndParamNoConflictRequest`` - ``Operations/ComponentBodyAndParamNoConflictRes`` +- ``Operations/ConflictingParamsRequest`` - ``Operations/ConflictingParamsRes`` +- ``Operations/CreateFileFile`` - ``Operations/CreateFileRequestBody`` -- ``Operations/CreateFileRequestBodyFile`` +- ``Operations/DateParamWithDefaultRequest`` +- ``Operations/DateTimeParamWithDefaultRequest`` +- ``Operations/DecimalParamWithDefaultRequest`` +- ``Operations/DeepObjectQueryParamsMapArgs`` +- ``Operations/DeepObjectQueryParamsMapRequest`` - ``Operations/DeepObjectQueryParamsMapRes`` -- ``Operations/DeepObjectQueryParamsMapResArgs`` +- ``Operations/DeepObjectQueryParamsObjectArgs`` +- ``Operations/DeepObjectQueryParamsObjectRequest`` - ``Operations/DeepObjectQueryParamsObjectRes`` -- ``Operations/DeepObjectQueryParamsObjectResArgs`` -- ``Operations/DeepObjectQueryParamsObjectObjArrParam`` -- ``Operations/DeprecatedObjectInSchemaGet200ApplicationJSON`` +- ``Operations/DeleteResourceRequest`` +- ``Operations/DeprecatedObjectInSchemaGetResponseBody`` +- ``Operations/DeprecatedOperationNoCommentsGetRequest`` +- ``Operations/DeprecatedOperationWithCommentsGetRequest`` +- ``Operations/DifferentFileName`` - ``Operations/DuplicateParamDuplicateParamResponse`` -- ``Operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream`` +- ``Operations/DuplicateParamRequest`` +- ``Operations/Empty`` +- ``Operations/EmptyObjectGetRequest`` +- ``Operations/EmptyResponseObjectWithCommentGetResponseBody`` +- ``Operations/EmptyRespWithEmptyProperies`` +- ``Operations/EmptyWithEmptyProperties`` +- ``Operations/EnumNameOverride`` +- ``Operations/EnumParameter`` +- ``Operations/File`` - ``Operations/FlattenedTypedObjectPostRes`` +- ``Operations/Form`` +- ``Operations/FormQueryParamsArrayArgs`` +- ``Operations/FormQueryParamsArrayRequest`` - ``Operations/FormQueryParamsArrayRes`` -- ``Operations/FormQueryParamsArrayResArgs`` +- ``Operations/FormQueryParamsCamelObjectArgs`` +- ``Operations/FormQueryParamsCamelObjectRequest`` - ``Operations/FormQueryParamsCamelObjectRes`` -- ``Operations/FormQueryParamsCamelObjectResArgs`` -- ``Operations/FormQueryParamsCamelObjectObjParam`` -- ``Operations/FormQueryParamsCamelObjectObjParamExploded`` +- ``Operations/FormQueryParamsMapRequest`` - ``Operations/FormQueryParamsMapRes`` +- ``Operations/FormQueryParamsObjectArgs`` +- ``Operations/FormQueryParamsObjectRequest`` - ``Operations/FormQueryParamsObjectRes`` -- ``Operations/FormQueryParamsObjectResArgs`` +- ``Operations/FormQueryParamsPrimitiveArgs`` +- ``Operations/FormQueryParamsPrimitiveRequest`` - ``Operations/FormQueryParamsPrimitiveRes`` -- ``Operations/FormQueryParamsPrimitiveResArgs`` +- ``Operations/FormQueryParamsRefParamObjectArgs`` +- ``Operations/FormQueryParamsRefParamObjectRequest`` - ``Operations/FormQueryParamsRefParamObjectRes`` -- ``Operations/FormQueryParamsRefParamObjectResArgs`` -- ``Operations/GetGlobalNameOverride200ApplicationJSON`` +- ``Operations/GetDocumentationPerLanguageRequest`` +- ``Operations/GetGlobalNameOverrideResponseBody`` +- ``Operations/GetResourceRequest`` - ``Operations/GlobalBearerAuthToken`` +- ``Operations/GlobalPathParameterGetRequest`` - ``Operations/GlobalPathParameterGetRes`` +- ``Operations/GlobalsQueryParameterGetRequest`` - ``Operations/GlobalsQueryParameterGetRes`` -- ``Operations/GlobalsQueryParameterGetResArgs`` +- ``Operations/HeaderParamsArrayRequest`` - ``Operations/HeaderParamsArrayRes`` -- ``Operations/HeaderParamsArrayResHeaders`` +- ``Operations/HeaderParamsMapHeaders`` +- ``Operations/HeaderParamsMapRequest`` - ``Operations/HeaderParamsMapRes`` -- ``Operations/HeaderParamsMapResHeaders`` +- ``Operations/HeaderParamsObjectHeaders`` +- ``Operations/HeaderParamsObjectRequest`` - ``Operations/HeaderParamsObjectRes`` -- ``Operations/HeaderParamsObjectResHeaders`` +- ``Operations/HeaderParamsPrimitiveHeaders`` +- ``Operations/HeaderParamsPrimitiveRequest`` - ``Operations/HeaderParamsPrimitiveRes`` -- ``Operations/HeaderParamsPrimitiveResHeaders`` -- ``Operations/IgnoredGenerationGet200ApplicationJSON`` -- ``Operations/IgnoresPostApplicationJSON`` +- ``Operations/Headers`` +- ``Operations/IgnoredGenerationGetResponseBody`` +- ``Operations/IgnoresPostRequest`` +- ``Operations/IgnoresPostRequestBody`` +- ``Operations/InlineBodyAndParamConflictRequest`` - ``Operations/InlineBodyAndParamConflictRequestBody`` - ``Operations/InlineBodyAndParamConflictRes`` -- ``Operations/InlineBodyAndParamConflictResJson`` +- ``Operations/InlineBodyAndParamNoConflictJson`` +- ``Operations/InlineBodyAndParamNoConflictRequest`` - ``Operations/InlineBodyAndParamNoConflictRequestBody`` - ``Operations/InlineBodyAndParamNoConflictRes`` -- ``Operations/InlineBodyAndParamNoConflictResJson`` +- ``Operations/Json`` +- ``Operations/JsonQueryParamsObjectArgs`` +- ``Operations/JsonQueryParamsObjectRequest`` - ``Operations/JsonQueryParamsObjectRes`` -- ``Operations/JsonQueryParamsObjectResArgs`` +- ``Operations/MixedParametersCamelCaseArgs`` +- ``Operations/MixedParametersCamelCaseHeaders`` +- ``Operations/MixedParametersCamelCaseRequest`` - ``Operations/MixedParametersCamelCaseRes`` -- ``Operations/MixedParametersCamelCaseResArgs`` -- ``Operations/MixedParametersCamelCaseResHeaders`` +- ``Operations/MixedParametersPrimitivesArgs`` +- ``Operations/MixedParametersPrimitivesHeaders`` +- ``Operations/MixedParametersPrimitivesRequest`` - ``Operations/MixedParametersPrimitivesRes`` -- ``Operations/MixedParametersPrimitivesResArgs`` -- ``Operations/MixedParametersPrimitivesResHeaders`` +- ``Operations/MixedQueryParamsRequest`` - ``Operations/MixedQueryParamsRes`` +- ``Operations/MixedTypeOneOfPostJson`` - ``Operations/MixedTypeOneOfPostRequestBody`` - ``Operations/MixedTypeOneOfPostRes`` -- ``Operations/MixedTypeOneOfPostResJson`` -- ``Operations/NameOverrideGetEnumNameOverride`` +- ``Operations/NameOverrideGetOverriddenResponse`` +- ``Operations/NameOverrideGetRequest`` - ``Operations/NullableObjectPostRes`` - ``Operations/NullableOneOfRefInObjectPostRes`` +- ``Operations/NullableOneOfSchemaPostJson`` - ``Operations/NullableOneOfSchemaPostRequestBody`` - ``Operations/NullableOneOfSchemaPostRes`` -- ``Operations/NullableOneOfSchemaPostResJson`` - ``Operations/NullableOneOfTypeInObjectPostRes`` +- ``Operations/NullableOptionalObj`` - ``Operations/NullableRequiredEmptyObjectPostRequestBody`` -- ``Operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj`` -- ``Operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj`` -- ``Operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj`` +- ``Operations/NullableRequiredEnum`` +- ``Operations/NullableRequiredObj`` - ``Operations/NullableRequiredPropertyPostRequestBody`` -- ``Operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum`` - ``Operations/NullableRequiredSharedObjectPostRequestBody`` - ``Operations/NullableTypedObjectPostRes`` - ``Operations/Oauth2AuthToken`` +- ``Operations/Oauth2OverrideRequest`` - ``Operations/Oauth2OverrideToken`` +- ``Operations/Obj`` +- ``Operations/ObjParam`` +- ``Operations/ObjParamExploded`` +- ``Operations/ObjArrParam`` - ``Operations/OpenIdConnectAuthToken`` -- ``Operations/OverriddenResponse`` +- ``Operations/OptEnumParameter`` - ``Operations/PaginationCursorBodyRequestBody`` - ``Operations/PaginationCursorBodyRes`` +- ``Operations/PaginationCursorParamsRequest`` - ``Operations/PaginationCursorParamsRes`` - ``Operations/PaginationLimitOffsetOffsetBodyRes`` +- ``Operations/PaginationLimitOffsetOffsetParamsRequest`` - ``Operations/PaginationLimitOffsetOffsetParamsRes`` - ``Operations/PaginationLimitOffsetPageBodyRes`` +- ``Operations/PaginationLimitOffsetPageParamsRequest`` - ``Operations/PaginationLimitOffsetPageParamsRes`` +- ``Operations/PathParameterJsonRequest`` - ``Operations/PathParameterJsonRes`` +- ``Operations/PipeDelimitedQueryParamsArrayArgs`` +- ``Operations/PipeDelimitedQueryParamsArrayRequest`` - ``Operations/PipeDelimitedQueryParamsArrayRes`` -- ``Operations/PipeDelimitedQueryParamsArrayResArgs`` +- ``Operations/PrimitiveTypeOneOfPostJson`` - ``Operations/PrimitiveTypeOneOfPostRequestBody`` - ``Operations/PrimitiveTypeOneOfPostRes`` -- ``Operations/PrimitiveTypeOneOfPostResJson`` -- ``Operations/PutAnythingIgnoredGeneration200ApplicationJSON`` +- ``Operations/PutAnythingIgnoredGenerationResponseBody`` - ``Operations/RequestBodyPostApplicationJsonDeepRes`` - ``Operations/RequestBodyPostApplicationJsonDeepCamelCaseRes`` - ``Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredRes`` - ``Operations/RequestBodyPostApplicationJsonSimpleRes`` - ``Operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes`` -- ``Operations/RequestBodyPostComplexNumberTypes200ApplicationJSON`` -- ``Operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON`` -- ``Operations/RequestBodyPostEmptyObject200ApplicationJSON`` -- ``Operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty`` -- ``Operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies`` +- ``Operations/RequestBodyPostComplexNumberTypesRequest`` +- ``Operations/RequestBodyPostComplexNumberTypesResponseBody`` +- ``Operations/RequestBodyPostDefaultsAndConstsResponseBody`` +- ``Operations/RequestBodyPostEmptyObjectEmpty`` - ``Operations/RequestBodyPostEmptyObjectRequestBody`` -- ``Operations/RequestBodyPostEmptyObjectRequestBodyEmpty`` -- ``Operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties`` +- ``Operations/RequestBodyPostEmptyObjectResponseBody`` - ``Operations/RequestBodyPostFormDeepRes`` -- ``Operations/RequestBodyPostFormDeepResForm`` - ``Operations/RequestBodyPostFormMapPrimitiveRes`` +- ``Operations/RequestBodyPostFormSimpleForm`` +- ``Operations/RequestBodyPostFormSimpleHeaders`` - ``Operations/RequestBodyPostFormSimpleRes`` -- ``Operations/RequestBodyPostFormSimpleResForm`` -- ``Operations/RequestBodyPostFormSimpleResHeaders`` -- ``Operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON`` -- ``Operations/RequestBodyPostJSONDataTypesString200ApplicationJSON`` +- ``Operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesArrayDateResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesBigIntResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesBooleanResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesDateResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesDateTimeResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesDecimalResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesFloat32ResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesInt32ResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesIntegerResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesNumberResponseBody`` +- ``Operations/RequestBodyPostJsonDataTypesStringResponseBody`` - ``Operations/RequestBodyPostMultipleContentTypesComponentFilteredRes`` -- ``Operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON`` +- ``Operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody`` - ``Operations/RequestBodyPostMultipleContentTypesInlineFilteredRes`` -- ``Operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON`` -- ``Operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded`` +- ``Operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody`` - ``Operations/RequestBodyPostMultipleContentTypesSplitFormRes`` +- ``Operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody`` - ``Operations/RequestBodyPostMultipleContentTypesSplitJsonRes`` +- ``Operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody`` - ``Operations/RequestBodyPostMultipleContentTypesSplitMultipartRes`` -- ``Operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData`` -- ``Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON`` -- ``Operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded`` +- ``Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest`` +- ``Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody`` - ``Operations/RequestBodyPostMultipleContentTypesSplitParamFormRes`` +- ``Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest`` +- ``Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody`` - ``Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes`` +- ``Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest`` +- ``Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody`` - ``Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes`` -- ``Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData`` -- ``Operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON`` -- ``Operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON`` -- ``Operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON`` -- ``Operations/RequestBodyPostNullArray200ApplicationJSON`` -- ``Operations/RequestBodyPostNullDictionary200ApplicationJSON`` +- ``Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody`` +- ``Operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody`` +- ``Operations/RequestBodyPostNullableRequiredStringBodyResponseBody`` +- ``Operations/RequestBodyPostNullArrayResponseBody`` +- ``Operations/RequestBodyPostNullDictionaryResponseBody`` - ``Operations/RequestBodyPutBytesRes`` +- ``Operations/RequestBodyPutBytesWithParamsArgs`` +- ``Operations/RequestBodyPutBytesWithParamsRequest`` - ``Operations/RequestBodyPutBytesWithParamsRes`` -- ``Operations/RequestBodyPutBytesWithParamsResArgs`` +- ``Operations/RequestBodyPutMultipartDeepForm`` - ``Operations/RequestBodyPutMultipartDeepRes`` -- ``Operations/RequestBodyPutMultipartDeepResForm`` - ``Operations/RequestBodyPutMultipartDifferentFileNameRequestBody`` -- ``Operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName`` - ``Operations/RequestBodyPutMultipartDifferentFileNameRes`` - ``Operations/RequestBodyPutMultipartFileRequestBody`` -- ``Operations/RequestBodyPutMultipartFileRequestBodyFile`` - ``Operations/RequestBodyPutMultipartFileRes`` +- ``Operations/RequestBodyPutMultipartSimpleForm`` +- ``Operations/RequestBodyPutMultipartSimpleHeaders`` - ``Operations/RequestBodyPutMultipartSimpleRes`` -- ``Operations/RequestBodyPutMultipartSimpleResForm`` -- ``Operations/RequestBodyPutMultipartSimpleResHeaders`` - ``Operations/RequestBodyPutStringRes`` +- ``Operations/RequestBodyPutStringWithParamsArgs`` +- ``Operations/RequestBodyPutStringWithParamsRequest`` - ``Operations/RequestBodyPutStringWithParamsRes`` -- ``Operations/RequestBodyPutStringWithParamsResArgs`` -- ``Operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON`` -- ``Operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON`` -- ``Operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON`` -- ``Operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON`` -- ``Operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON`` +- ``Operations/RequiredObj`` +- ``Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody`` +- ``Operations/ResponseBodyAdditionalPropertiesDatePostResponseBody`` +- ``Operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody`` +- ``Operations/ResponseBodyAdditionalPropertiesPostResponseBody`` +- ``Operations/ResponseBodyEmptyWithHeadersRequest`` +- ``Operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody`` +- ``Operations/RetriesGetRequest`` - ``Operations/RetriesGetRetries`` +- ``Operations/SimplePathParameterArraysRequest`` - ``Operations/SimplePathParameterArraysRes`` +- ``Operations/SimplePathParameterMapsRequest`` - ``Operations/SimplePathParameterMapsRes`` +- ``Operations/SimplePathParameterObjectsRequest`` - ``Operations/SimplePathParameterObjectsRes`` +- ``Operations/SimplePathParameterPrimitivesRequest`` - ``Operations/SimplePathParameterPrimitivesRes`` -- ``Operations/StatusGetXSpeakeasyErrors501ApplicationJSON`` +- ``Operations/StatusGetErrorRequest`` +- ``Operations/StatusGetXSpeakeasyErrorsRequest`` +- ``Operations/StatusGetXSpeakeasyErrorsResponseBody`` - ``Operations/StronglyTypedOneOfPostRes`` +- ``Operations/TelemetrySpeakeasyUserAgentGetRequest`` - ``Operations/TelemetrySpeakeasyUserAgentGetRes`` - ``Operations/TelemetryUserAgentGetRes`` - ``Operations/TypedObjectNullableOneOfPostRes`` - ``Operations/TypedObjectOneOfPostRes`` -- ``Operations/TypedParameterGenerationGetObj`` -- ``Operations/TypeFromAnchor`` +- ``Operations/TypedParameterGenerationGetRequest`` +- ``Operations/UnionBigIntDecimalJson`` - ``Operations/UnionBigIntDecimalRequestBody`` - ``Operations/UnionBigIntDecimalRes`` -- ``Operations/UnionBigIntDecimalResJson`` - ``Operations/UnionDateNullRes`` +- ``Operations/UnionDateTimeBigIntJson`` - ``Operations/UnionDateTimeBigIntRequestBody`` - ``Operations/UnionDateTimeBigIntRes`` -- ``Operations/UnionDateTimeBigIntResJson`` - ``Operations/UnionDateTimeNullRes`` -- ``Operations/UsageExamplePost200ApplicationJSON`` -- ``Operations/UsageExamplePost200ApplicationJSONJSON`` +- ``Operations/UpdateResourceRequest`` +- ``Operations/UsageExamplePostJson`` +- ``Operations/UsageExamplePostRequest`` - ``Operations/UsageExamplePostRequestBody`` -- ``Operations/UsageExamplePostEnumParameter`` -- ``Operations/UsageExamplePostOptEnumParameter`` +- ``Operations/UsageExamplePostResponseBody`` - ``Operations/WeaklyTypedOneOfPostRes`` - ``Callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody`` - ``Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody`` diff --git a/swift-client-sdk/Sources/OpenAPI/OpenAPI.swift b/swift-client-sdk/Sources/OpenAPI/OpenAPI.swift index 57f96bf68..0fea6b30d 100755 --- a/swift-client-sdk/Sources/OpenAPI/OpenAPI.swift +++ b/swift-client-sdk/Sources/OpenAPI/OpenAPI.swift @@ -19,188 +19,171 @@ import Foundation /// /// These properties logically group other parts of the API. /// -/// - ``auth`` -/// - ``authNew`` -/// - ``documentation`` +/// - ``generation`` /// - ``errors`` -/// - ``first`` +/// - ``unions`` /// - ``flattening`` -/// - ``generation`` /// - ``globals`` +/// - ``parameters`` /// - ``nestFirst`` /// - ``nested`` /// - ``nestedFirst`` /// - ``nestedSecond`` -/// - ``pagination`` -/// - ``parameters`` /// - ``requestBodies`` -/// - ``resource`` /// - ``responseBodies`` -/// - ``retries`` -/// - ``second`` /// - ``servers`` /// - ``telemetry`` -/// - ``unions`` +/// - ``authNew`` +/// - ``auth`` +/// - ``documentation`` +/// - ``resource`` +/// - ``first`` +/// - ``second`` +/// - ``pagination`` +/// - ``retries`` /// public protocol OpenAPI { func putAnythingIgnoredGeneration(request: String) async throws -> Response func responseBodyJsonGet() async throws -> Response // MARK: - Scoped APIs - /// Endpoints for testing authentication. - var auth: AuthAPI { get } - /// Endpoints for testing authentication. - var authNew: AuthNewAPI { get } - /// Testing for documentation extensions and tooling. - var documentation: DocumentationAPI { get } + /// Endpoints for purely testing valid generation behavior. + var generation: GenerationAPI { get } /// Endpoints for testing error responses. var errors: ErrorsAPI { get } - var first: FirstAPI { get } + /// Endpoints for testing union types. + var unions: UnionsAPI { get } /// Endpoints for testing flattening through request body and parameter combinations. var flattening: FlatteningAPI { get } - /// Endpoints for purely testing valid generation behavior. - var generation: GenerationAPI { get } /// Endpoints for testing global parameters. var globals: GlobalsAPI { get } + /// Endpoints for testing parameters. + var parameters: ParametersAPI { get } var nestFirst: NestFirstAPI { get } var nested: NestedAPI { get } var nestedFirst: NestedFirstAPI { get } var nestedSecond: NestedSecondAPI { get } - /// Endpoints for testing the pagination extension - var pagination: PaginationAPI { get } - /// Endpoints for testing parameters. - var parameters: ParametersAPI { get } /// Endpoints for testing request bodies. var requestBodies: RequestBodiesAPI { get } - var resource: ResourceAPI { get } /// Endpoints for testing response bodies. var responseBodies: ResponseBodiesAPI { get } - /// Endpoints for testing retries. - var retries: RetriesAPI { get } - var second: SecondAPI { get } /// Endpoints for testing servers. var servers: ServersAPI { get } /// Endpoints for testing telemetry. var telemetry: TelemetryAPI { get } - /// Endpoints for testing union types. - var unions: UnionsAPI { get } + /// Endpoints for testing authentication. + var authNew: AuthNewAPI { get } + /// Endpoints for testing authentication. + var auth: AuthAPI { get } + /// Testing for documentation extensions and tooling. + var documentation: DocumentationAPI { get } + var resource: ResourceAPI { get } + var first: FirstAPI { get } + var second: SecondAPI { get } + /// Endpoints for testing the pagination extension + var pagination: PaginationAPI { get } + /// Endpoints for testing retries. + var retries: RetriesAPI { get } } -// MARK: - AuthAPI +// MARK: - GenerationAPI -/// Endpoints for testing authentication. +/// Endpoints for purely testing valid generation behavior. /// /// ## Topics /// /// ### API calls /// -/// - ``apiKeyAuth(security:)`` -/// - ``apiKeyAuthGlobal()`` -/// - ``basicAuth(request:security:)`` -/// - ``bearerAuth(security:)`` -/// - ``globalBearerAuth()`` -/// - ``oauth2Auth(security:)`` -/// - ``oauth2Override(request:security:)`` -/// - ``openIdConnectAuth(security:)`` +/// - ``anchorTypesGet()`` +/// - ``arrayCircularReferenceGet()`` +/// - ``circularReferenceGet()`` +/// - ``dateParamWithDefault(request:)`` +/// - ``dateTimeParamWithDefault(request:)`` +/// - ``decimalParamWithDefault(request:)`` +/// - ``deprecatedFieldInSchemaPost(request:)`` +/// - ``deprecatedObjectInSchemaGet()`` +/// - ``deprecatedOperationNoCommentsGet(request:)`` +/// - ``deprecatedOperationWithCommentsGet(request:)`` +/// - ``emptyObjectGet(request:)`` +/// - ``emptyResponseObjectWithCommentGet()`` +/// - ``getGlobalNameOverride()`` +/// - ``ignoredGenerationGet()`` +/// - ``ignoresPost(request:)`` +/// - ``nameOverrideGet(request:)`` +/// - ``objectCircularReferenceGet()`` +/// - ``oneOfCircularReferenceGet()`` +/// - ``typedParameterGenerationGet(request:)`` +/// - ``usageExamplePost(request:security:)`` /// -public protocol AuthAPI { - func apiKeyAuth(security: Operations.ApiKeyAuthSecurity) async throws -> Response +public protocol GenerationAPI { + func anchorTypesGet() async throws -> Response - func apiKeyAuthGlobal() async throws -> Response + func arrayCircularReferenceGet() async throws -> Response - func basicAuth(request: Operations.BasicAuthRequest, security: Operations.BasicAuthSecurity) async throws -> Response + func circularReferenceGet() async throws -> Response - func bearerAuth(security: Operations.BearerAuthSecurity) async throws -> Response + func dateParamWithDefault(request: Operations.DateParamWithDefaultRequest) async throws -> Response - func globalBearerAuth() async throws -> Response + func dateTimeParamWithDefault(request: Operations.DateTimeParamWithDefaultRequest) async throws -> Response - func oauth2Auth(security: Operations.Oauth2AuthSecurity) async throws -> Response + func decimalParamWithDefault(request: Operations.DecimalParamWithDefaultRequest) async throws -> Response - func oauth2Override(request: Operations.Oauth2OverrideRequest, security: Operations.Oauth2OverrideSecurity) async throws -> Response + func deprecatedFieldInSchemaPost(request: Shared.DeprecatedFieldInObject) async throws -> Response - func openIdConnectAuth(security: Operations.OpenIdConnectAuthSecurity) async throws -> Response -} + func deprecatedObjectInSchemaGet() async throws -> Response -// MARK: - AuthNewAPI -public enum AuthNewServers { + /// + /// - Parameter request: A ``Operations/DeprecatedOperationNoCommentsGetRequest`` object describing the input to the API operation + /// - Returns: A ``Operations/DeprecatedOperationNoCommentsGetResponse`` object describing the result of the API operation + /// - Throws: An error of type ``OpenAPIError`` + @available(*, deprecated, message: "This will be removed in a future release, please migrate away from it as soon as possible") + func deprecatedOperationNoCommentsGet(request: Operations.DeprecatedOperationNoCommentsGetRequest) async throws -> Response -/// Describes the available servers that can be used when making 'apiKeyAuthGlobalNew' requests. -/// -/// Use this type when making calls to ``AuthNewAPI/apiKeyAuthGlobalNew(request:server:)`` to customize the server which is used. - public enum ApiKeyAuthGlobalNew: Servers, ServerConvertible { - /// Supported server value. - /// - /// Corresponds to `http://localhost:35456` - case server1 + /// This is an endpoint setup to test deprecation with comments + /// + /// - Parameter request: A ``Operations/DeprecatedOperationWithCommentsGetRequest`` object describing the input to the API operation + /// - Returns: A ``Operations/DeprecatedOperationWithCommentsGetResponse`` object describing the result of the API operation + /// - Throws: An error of type ``OpenAPIError`` + @available(*, deprecated, renamed: "simplePathParameterObjects", message: "This operation is deprecated") + func deprecatedOperationWithCommentsGet(request: Operations.DeprecatedOperationWithCommentsGetRequest) async throws -> Response - /// Defines the raw URL strings for each server option. - /// - /// > Note: You do not need to use these values directly. - /// - /// The available URL strings are defined as: - /// ```swift - /// public static let urlStrings = [ - /// "http://localhost:35456" - /// ] - /// ``` - public static let urlStrings = [ - "http://localhost:35456" - ] + func emptyObjectGet(request: Operations.EmptyObjectGetRequest) async throws -> Response - static func `default`() throws -> Server { - return try AuthNewServers.ApiKeyAuthGlobalNew.server1.server() - } + func emptyResponseObjectWithCommentGet() async throws -> Response - func server() throws -> Server { - switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) - } - } - } + func getGlobalNameOverride() async throws -> Response -/// Describes the available servers that can be used when making 'authGlobal' requests. -/// -/// Use this type when making calls to ``AuthNewAPI/authGlobal(request:server:)`` to customize the server which is used. - public enum AuthGlobal: Servers, ServerConvertible { - /// Supported server value. - /// - /// Corresponds to `http://localhost:35456` - case server1 + func ignoredGenerationGet() async throws -> Response - /// Defines the raw URL strings for each server option. - /// - /// > Note: You do not need to use these values directly. - /// - /// The available URL strings are defined as: - /// ```swift - /// public static let urlStrings = [ - /// "http://localhost:35456" - /// ] - /// ``` - public static let urlStrings = [ - "http://localhost:35456" - ] + func ignoresPost(request: Operations.IgnoresPostRequest) async throws -> Response - static func `default`() throws -> Server { - return try AuthNewServers.AuthGlobal.server1.server() - } + func nameOverrideGet(request: Operations.NameOverrideGetRequest) async throws -> Response - func server() throws -> Server { - switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) - } - } - } + func objectCircularReferenceGet() async throws -> Response -/// Describes the available servers that can be used when making 'basicAuthNew' requests. + func oneOfCircularReferenceGet() async throws -> Response + + func typedParameterGenerationGet(request: Operations.TypedParameterGenerationGetRequest) async throws -> Response + + /// An operation used for testing usage examples that includes a large array of parameters and input types to ensure that all are handled correctly + /// + /// - Parameter request: A ``Operations/UsageExamplePostRequest`` object describing the input to the API operation + /// - Parameter security: An authentication object used to authenticate this request + /// - Returns: A ``Operations/UsageExamplePostResponse`` object describing the result of the API operation + /// - Throws: An error of type ``OpenAPIError`` + func usageExamplePost(request: Operations.UsageExamplePostRequest, security: Operations.UsageExamplePostSecurity) async throws -> Response +} + +// MARK: - ErrorsAPI +public enum ErrorsServers { + +/// Describes the available servers that can be used when making 'connectionErrorGet' requests. /// -/// Use this type when making calls to ``AuthNewAPI/basicAuthNew(request:security:server:)`` to customize the server which is used. - public enum BasicAuthNew: Servers, ServerConvertible { +/// Use this type when making calls to ``ErrorsAPI/connectionErrorGet(server:)`` to customize the server which is used. + public enum ConnectionErrorGet: Servers, ServerConvertible { /// Supported server value. /// - /// Corresponds to `http://localhost:35456` + /// Corresponds to `http://somebrokenapi.broken` case server1 /// Defines the raw URL strings for each server option. @@ -210,15 +193,15 @@ public enum AuthNewServers { /// The available URL strings are defined as: /// ```swift /// public static let urlStrings = [ - /// "http://localhost:35456" + /// "http://somebrokenapi.broken" /// ] /// ``` public static let urlStrings = [ - "http://localhost:35456" + "http://somebrokenapi.broken" ] static func `default`() throws -> Server { - return try AuthNewServers.BasicAuthNew.server1.server() + return try ErrorsServers.ConnectionErrorGet.server1.server() } func server() throws -> Server { @@ -229,10 +212,10 @@ public enum AuthNewServers { } } -/// Describes the available servers that can be used when making 'multipleMixedOptionsAuth' requests. +/// Describes the available servers that can be used when making 'statusGetXSpeakeasyErrors' requests. /// -/// Use this type when making calls to ``AuthNewAPI/multipleMixedOptionsAuth(request:security:server:)`` to customize the server which is used. - public enum MultipleMixedOptionsAuth: Servers, ServerConvertible { +/// Use this type when making calls to ``ErrorsAPI/statusGetXSpeakeasyErrors(request:server:)`` to customize the server which is used. + public enum StatusGetXSpeakeasyErrors: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -253,7 +236,7 @@ public enum AuthNewServers { ] static func `default`() throws -> Server { - return try AuthNewServers.MultipleMixedOptionsAuth.server1.server() + return try ErrorsServers.StatusGetXSpeakeasyErrors.server1.server() } func server() throws -> Server { @@ -263,20 +246,265 @@ public enum AuthNewServers { } } } +} -/// Describes the available servers that can be used when making 'multipleMixedSchemeAuth' requests. +/// Endpoints for testing error responses. /// -/// Use this type when making calls to ``AuthNewAPI/multipleMixedSchemeAuth(request:security:server:)`` to customize the server which is used. - public enum MultipleMixedSchemeAuth: Servers, ServerConvertible { - /// Supported server value. - /// - /// Corresponds to `http://localhost:35456` - case server1 +/// ## Topics +/// +/// ### API calls +/// +/// - ``connectionErrorGet(server:)`` +/// - ``statusGetError(request:)`` +/// - ``statusGetXSpeakeasyErrors(request:server:)`` +/// +public protocol ErrorsAPI { + func connectionErrorGet(server: ErrorsServers.ConnectionErrorGet?) async throws -> Response - /// Defines the raw URL strings for each server option. - /// - /// > Note: You do not need to use these values directly. - /// + func statusGetError(request: Operations.StatusGetErrorRequest) async throws -> Response + + func statusGetXSpeakeasyErrors(request: Operations.StatusGetXSpeakeasyErrorsRequest, server: ErrorsServers.StatusGetXSpeakeasyErrors?) async throws -> Response +} + +// MARK: - UnionsAPI + +/// Endpoints for testing union types. +/// +/// ## Topics +/// +/// ### API calls +/// +/// - ``flattenedTypedObjectPost(request:)`` +/// - ``mixedTypeOneOfPost(request:)`` +/// - ``nullableOneOfRefInObjectPost(request:)`` +/// - ``nullableOneOfSchemaPost(request:)`` +/// - ``nullableOneOfTypeInObjectPost(request:)`` +/// - ``nullableTypedObjectPost(request:)`` +/// - ``primitiveTypeOneOfPost(request:)`` +/// - ``stronglyTypedOneOfPost(request:)`` +/// - ``typedObjectNullableOneOfPost(request:)`` +/// - ``typedObjectOneOfPost(request:)`` +/// - ``unionBigIntDecimal(request:)`` +/// - ``unionDateNull(request:)`` +/// - ``unionDateTimeBigInt(request:)`` +/// - ``unionDateTimeNull(request:)`` +/// - ``weaklyTypedOneOfPost(request:)`` +/// +public protocol UnionsAPI { + func flattenedTypedObjectPost(request: Shared.FlattenedTypedObject1) async throws -> Response + + func mixedTypeOneOfPost(request: Operations.MixedTypeOneOfPostRequestBody) async throws -> Response + + func nullableOneOfRefInObjectPost(request: Shared.NullableOneOfRefInObject) async throws -> Response + + func nullableOneOfSchemaPost(request: Operations.NullableOneOfSchemaPostRequestBody) async throws -> Response + + func nullableOneOfTypeInObjectPost(request: Shared.NullableOneOfTypeInObject) async throws -> Response + + func nullableTypedObjectPost(request: Shared.TypedObject1) async throws -> Response + + func primitiveTypeOneOfPost(request: Operations.PrimitiveTypeOneOfPostRequestBody) async throws -> Response + + func stronglyTypedOneOfPost(request: Shared.StronglyTypedOneOfObject) async throws -> Response + + func typedObjectNullableOneOfPost(request: Shared.TypedObjectNullableOneOf) async throws -> Response + + func typedObjectOneOfPost(request: Shared.TypedObjectOneOf) async throws -> Response + + func unionBigIntDecimal(request: Operations.UnionBigIntDecimalRequestBody) async throws -> Response + + func unionDateNull(request: Date) async throws -> Response + + func unionDateTimeBigInt(request: Operations.UnionDateTimeBigIntRequestBody) async throws -> Response + + func unionDateTimeNull(request: Date) async throws -> Response + + func weaklyTypedOneOfPost(request: Shared.WeaklyTypedOneOfObject) async throws -> Response +} + +// MARK: - FlatteningAPI + +/// Endpoints for testing flattening through request body and parameter combinations. +/// +/// ## Topics +/// +/// ### API calls +/// +/// - ``componentBodyAndParamConflict(request:)`` +/// - ``componentBodyAndParamNoConflict(request:)`` +/// - ``conflictingParams(request:)`` +/// - ``inlineBodyAndParamConflict(request:)`` +/// - ``inlineBodyAndParamNoConflict(request:)`` +/// +public protocol FlatteningAPI { + func componentBodyAndParamConflict(request: Operations.ComponentBodyAndParamConflictRequest) async throws -> Response + + func componentBodyAndParamNoConflict(request: Operations.ComponentBodyAndParamNoConflictRequest) async throws -> Response + + func conflictingParams(request: Operations.ConflictingParamsRequest) async throws -> Response + + func inlineBodyAndParamConflict(request: Operations.InlineBodyAndParamConflictRequest) async throws -> Response + + func inlineBodyAndParamNoConflict(request: Operations.InlineBodyAndParamNoConflictRequest) async throws -> Response +} + +// MARK: - GlobalsAPI + +/// Endpoints for testing global parameters. +/// +/// ## Topics +/// +/// ### API calls +/// +/// - ``globalPathParameterGet(request:)`` +/// - ``globalsQueryParameterGet(request:)`` +/// +public protocol GlobalsAPI { + func globalPathParameterGet(request: Operations.GlobalPathParameterGetRequest) async throws -> Response + + func globalsQueryParameterGet(request: Operations.GlobalsQueryParameterGetRequest) async throws -> Response +} + +// MARK: - ParametersAPI + +/// Endpoints for testing parameters. +/// +/// ## Topics +/// +/// ### API calls +/// +/// - ``deepObjectQueryParamsMap(request:)`` +/// - ``deepObjectQueryParamsObject(request:)`` +/// - ``duplicateParam(request:)`` +/// - ``formQueryParamsArray(request:)`` +/// - ``formQueryParamsCamelObject(request:)`` +/// - ``formQueryParamsMap(request:)`` +/// - ``formQueryParamsObject(request:)`` +/// - ``formQueryParamsPrimitive(request:)`` +/// - ``formQueryParamsRefParamObject(request:)`` +/// - ``headerParamsArray(request:)`` +/// - ``headerParamsMap(request:)`` +/// - ``headerParamsObject(request:)`` +/// - ``headerParamsPrimitive(request:)`` +/// - ``jsonQueryParamsObject(request:)`` +/// - ``mixedParametersCamelCase(request:)`` +/// - ``mixedParametersPrimitives(request:)`` +/// - ``mixedQueryParams(request:)`` +/// - ``pathParameterJson(request:)`` +/// - ``pipeDelimitedQueryParamsArray(request:)`` +/// - ``simplePathParameterArrays(request:)`` +/// - ``simplePathParameterMaps(request:)`` +/// - ``simplePathParameterObjects(request:)`` +/// - ``simplePathParameterPrimitives(request:)`` +/// +public protocol ParametersAPI { + func deepObjectQueryParamsMap(request: Operations.DeepObjectQueryParamsMapRequest) async throws -> Response + + func deepObjectQueryParamsObject(request: Operations.DeepObjectQueryParamsObjectRequest) async throws -> Response + + func duplicateParam(request: Operations.DuplicateParamRequest) async throws -> Response + + func formQueryParamsArray(request: Operations.FormQueryParamsArrayRequest) async throws -> Response + + func formQueryParamsCamelObject(request: Operations.FormQueryParamsCamelObjectRequest) async throws -> Response + + func formQueryParamsMap(request: Operations.FormQueryParamsMapRequest) async throws -> Response + + func formQueryParamsObject(request: Operations.FormQueryParamsObjectRequest) async throws -> Response + + func formQueryParamsPrimitive(request: Operations.FormQueryParamsPrimitiveRequest) async throws -> Response + + func formQueryParamsRefParamObject(request: Operations.FormQueryParamsRefParamObjectRequest) async throws -> Response + + func headerParamsArray(request: Operations.HeaderParamsArrayRequest) async throws -> Response + + func headerParamsMap(request: Operations.HeaderParamsMapRequest) async throws -> Response + + func headerParamsObject(request: Operations.HeaderParamsObjectRequest) async throws -> Response + + func headerParamsPrimitive(request: Operations.HeaderParamsPrimitiveRequest) async throws -> Response + + func jsonQueryParamsObject(request: Operations.JsonQueryParamsObjectRequest) async throws -> Response + + func mixedParametersCamelCase(request: Operations.MixedParametersCamelCaseRequest) async throws -> Response + + func mixedParametersPrimitives(request: Operations.MixedParametersPrimitivesRequest) async throws -> Response + + func mixedQueryParams(request: Operations.MixedQueryParamsRequest) async throws -> Response + + func pathParameterJson(request: Operations.PathParameterJsonRequest) async throws -> Response + + func pipeDelimitedQueryParamsArray(request: Operations.PipeDelimitedQueryParamsArrayRequest) async throws -> Response + + func simplePathParameterArrays(request: Operations.SimplePathParameterArraysRequest) async throws -> Response + + func simplePathParameterMaps(request: Operations.SimplePathParameterMapsRequest) async throws -> Response + + func simplePathParameterObjects(request: Operations.SimplePathParameterObjectsRequest) async throws -> Response + + func simplePathParameterPrimitives(request: Operations.SimplePathParameterPrimitivesRequest) async throws -> Response +} + +// MARK: - NestFirstAPI +/// ## Topics +/// +/// ### API calls +/// +/// - ``nestFirstGet()`` +/// +public protocol NestFirstAPI { + func nestFirstGet() async throws -> Response +} + +// MARK: - NestedAPI +/// ## Topics +/// +/// ### API calls +/// +/// - ``nestedGet()`` +/// +public protocol NestedAPI { + func nestedGet() async throws -> Response +} + +// MARK: - NestedFirstAPI +/// ## Topics +/// +/// ### API calls +/// +/// - ``nestedFirstGet()`` +/// +public protocol NestedFirstAPI { + func nestedFirstGet() async throws -> Response +} + +// MARK: - NestedSecondAPI +/// ## Topics +/// +/// ### API calls +/// +/// - ``nestedSecondGet()`` +/// +public protocol NestedSecondAPI { + func nestedSecondGet() async throws -> Response +} + +// MARK: - RequestBodiesAPI +public enum RequestBodiesServers { + +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArray' requests. +/// +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArray(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonArray: Servers, ServerConvertible { + /// Supported server value. + /// + /// Corresponds to `http://localhost:35456` + case server1 + + /// Defines the raw URL strings for each server option. + /// + /// > Note: You do not need to use these values directly. + /// /// The available URL strings are defined as: /// ```swift /// public static let urlStrings = [ @@ -288,7 +516,7 @@ public enum AuthNewServers { ] static func `default`() throws -> Server { - return try AuthNewServers.MultipleMixedSchemeAuth.server1.server() + return try RequestBodiesServers.RequestBodyPostApplicationJsonArray.server1.server() } func server() throws -> Server { @@ -299,10 +527,10 @@ public enum AuthNewServers { } } -/// Describes the available servers that can be used when making 'multipleOptionsWithMixedSchemesAuth' requests. +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayCamelCase' requests. /// -/// Use this type when making calls to ``AuthNewAPI/multipleOptionsWithMixedSchemesAuth(request:security:server:)`` to customize the server which is used. - public enum MultipleOptionsWithMixedSchemesAuth: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayCamelCase(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonArrayCamelCase: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -323,7 +551,7 @@ public enum AuthNewServers { ] static func `default`() throws -> Server { - return try AuthNewServers.MultipleOptionsWithMixedSchemesAuth.server1.server() + return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayCamelCase.server1.server() } func server() throws -> Server { @@ -334,10 +562,10 @@ public enum AuthNewServers { } } -/// Describes the available servers that can be used when making 'multipleOptionsWithSimpleSchemesAuth' requests. +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfArray' requests. /// -/// Use this type when making calls to ``AuthNewAPI/multipleOptionsWithSimpleSchemesAuth(request:security:server:)`` to customize the server which is used. - public enum MultipleOptionsWithSimpleSchemesAuth: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfArray(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonArrayOfArray: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -358,7 +586,7 @@ public enum AuthNewServers { ] static func `default`() throws -> Server { - return try AuthNewServers.MultipleOptionsWithSimpleSchemesAuth.server1.server() + return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArray.server1.server() } func server() throws -> Server { @@ -369,10 +597,10 @@ public enum AuthNewServers { } } -/// Describes the available servers that can be used when making 'multipleSimpleOptionsAuth' requests. +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfArrayCamelCase' requests. /// -/// Use this type when making calls to ``AuthNewAPI/multipleSimpleOptionsAuth(request:security:server:)`` to customize the server which is used. - public enum MultipleSimpleOptionsAuth: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfArrayCamelCase(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonArrayOfArrayCamelCase: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -393,7 +621,7 @@ public enum AuthNewServers { ] static func `default`() throws -> Server { - return try AuthNewServers.MultipleSimpleOptionsAuth.server1.server() + return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArrayCamelCase.server1.server() } func server() throws -> Server { @@ -404,10 +632,10 @@ public enum AuthNewServers { } } -/// Describes the available servers that can be used when making 'multipleSimpleSchemeAuth' requests. +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfArrayOfPrimitive' requests. /// -/// Use this type when making calls to ``AuthNewAPI/multipleSimpleSchemeAuth(request:security:server:)`` to customize the server which is used. - public enum MultipleSimpleSchemeAuth: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfArrayOfPrimitive(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonArrayOfArrayOfPrimitive: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -428,7 +656,7 @@ public enum AuthNewServers { ] static func `default`() throws -> Server { - return try AuthNewServers.MultipleSimpleSchemeAuth.server1.server() + return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArrayOfPrimitive.server1.server() } func server() throws -> Server { @@ -439,10 +667,10 @@ public enum AuthNewServers { } } -/// Describes the available servers that can be used when making 'oauth2AuthNew' requests. +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfMap' requests. /// -/// Use this type when making calls to ``AuthNewAPI/oauth2AuthNew(request:security:server:)`` to customize the server which is used. - public enum Oauth2AuthNew: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfMap(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonArrayOfMap: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -463,7 +691,7 @@ public enum AuthNewServers { ] static func `default`() throws -> Server { - return try AuthNewServers.Oauth2AuthNew.server1.server() + return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfMap.server1.server() } func server() throws -> Server { @@ -474,10 +702,10 @@ public enum AuthNewServers { } } -/// Describes the available servers that can be used when making 'openIdConnectAuthNew' requests. +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfMapCamelCase' requests. /// -/// Use this type when making calls to ``AuthNewAPI/openIdConnectAuthNew(request:security:server:)`` to customize the server which is used. - public enum OpenIdConnectAuthNew: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfMapCamelCase(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonArrayOfMapCamelCase: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -498,7 +726,7 @@ public enum AuthNewServers { ] static func `default`() throws -> Server { - return try AuthNewServers.OpenIdConnectAuthNew.server1.server() + return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfMapCamelCase.server1.server() } func server() throws -> Server { @@ -508,79 +736,119 @@ public enum AuthNewServers { } } } -} -/// Endpoints for testing authentication. -/// -/// ## Topics -/// -/// ### API calls -/// -/// - ``apiKeyAuthGlobalNew(request:server:)`` -/// - ``authGlobal(request:server:)`` -/// - ``basicAuthNew(request:security:server:)`` -/// - ``multipleMixedOptionsAuth(request:security:server:)`` -/// - ``multipleMixedSchemeAuth(request:security:server:)`` -/// - ``multipleOptionsWithMixedSchemesAuth(request:security:server:)`` -/// - ``multipleOptionsWithSimpleSchemesAuth(request:security:server:)`` -/// - ``multipleSimpleOptionsAuth(request:security:server:)`` -/// - ``multipleSimpleSchemeAuth(request:security:server:)`` -/// - ``oauth2AuthNew(request:security:server:)`` -/// - ``openIdConnectAuthNew(request:security:server:)`` +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfPrimitive' requests. /// -public protocol AuthNewAPI { - func apiKeyAuthGlobalNew(request: Shared.AuthServiceRequestBody, server: AuthNewServers.ApiKeyAuthGlobalNew?) async throws -> Response - - func authGlobal(request: Shared.AuthServiceRequestBody, server: AuthNewServers.AuthGlobal?) async throws -> Response - - func basicAuthNew(request: Shared.AuthServiceRequestBody, security: Operations.BasicAuthNewSecurity, server: AuthNewServers.BasicAuthNew?) async throws -> Response +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfPrimitive(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonArrayOfPrimitive: Servers, ServerConvertible { + /// Supported server value. + /// + /// Corresponds to `http://localhost:35456` + case server1 - func multipleMixedOptionsAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleMixedOptionsAuthSecurity, server: AuthNewServers.MultipleMixedOptionsAuth?) async throws -> Response + /// Defines the raw URL strings for each server option. + /// + /// > Note: You do not need to use these values directly. + /// + /// The available URL strings are defined as: + /// ```swift + /// public static let urlStrings = [ + /// "http://localhost:35456" + /// ] + /// ``` + public static let urlStrings = [ + "http://localhost:35456" + ] - func multipleMixedSchemeAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleMixedSchemeAuthSecurity, server: AuthNewServers.MultipleMixedSchemeAuth?) async throws -> Response + static func `default`() throws -> Server { + return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfPrimitive.server1.server() + } - func multipleOptionsWithMixedSchemesAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleOptionsWithMixedSchemesAuthSecurity, server: AuthNewServers.MultipleOptionsWithMixedSchemesAuth?) async throws -> Response + func server() throws -> Server { + switch self { + case .server1: + return try type(of: self).server(at: 0, substituting: nil) + } + } + } - func multipleOptionsWithSimpleSchemesAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleOptionsWithSimpleSchemesAuthSecurity, server: AuthNewServers.MultipleOptionsWithSimpleSchemesAuth?) async throws -> Response +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMap' requests. +/// +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMap(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonMap: Servers, ServerConvertible { + /// Supported server value. + /// + /// Corresponds to `http://localhost:35456` + case server1 - func multipleSimpleOptionsAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleSimpleOptionsAuthSecurity, server: AuthNewServers.MultipleSimpleOptionsAuth?) async throws -> Response + /// Defines the raw URL strings for each server option. + /// + /// > Note: You do not need to use these values directly. + /// + /// The available URL strings are defined as: + /// ```swift + /// public static let urlStrings = [ + /// "http://localhost:35456" + /// ] + /// ``` + public static let urlStrings = [ + "http://localhost:35456" + ] - func multipleSimpleSchemeAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleSimpleSchemeAuthSecurity, server: AuthNewServers.MultipleSimpleSchemeAuth?) async throws -> Response + static func `default`() throws -> Server { + return try RequestBodiesServers.RequestBodyPostApplicationJsonMap.server1.server() + } - func oauth2AuthNew(request: Shared.AuthServiceRequestBody, security: Operations.Oauth2AuthNewSecurity, server: AuthNewServers.Oauth2AuthNew?) async throws -> Response + func server() throws -> Server { + switch self { + case .server1: + return try type(of: self).server(at: 0, substituting: nil) + } + } + } - func openIdConnectAuthNew(request: Shared.AuthServiceRequestBody, security: Operations.OpenIdConnectAuthNewSecurity, server: AuthNewServers.OpenIdConnectAuthNew?) async throws -> Response -} +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapCamelCase' requests. +/// +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapCamelCase(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonMapCamelCase: Servers, ServerConvertible { + /// Supported server value. + /// + /// Corresponds to `http://localhost:35456` + case server1 -// MARK: - DocumentationAPI + /// Defines the raw URL strings for each server option. + /// + /// > Note: You do not need to use these values directly. + /// + /// The available URL strings are defined as: + /// ```swift + /// public static let urlStrings = [ + /// "http://localhost:35456" + /// ] + /// ``` + public static let urlStrings = [ + "http://localhost:35456" + ] -/// Testing for documentation extensions and tooling. -/// -/// ## Topics -/// -/// ### API calls -/// -/// - ``getDocumentationPerLanguage(request:)`` -/// -public protocol DocumentationAPI { - /// Gets documentation for some language, I guess. - /// - /// - Parameter request: A ``Operations/GetDocumentationPerLanguageRequest`` object describing the input to the API operation - /// - Returns: A ``Operations/GetDocumentationPerLanguageResponse`` object describing the result of the API operation - /// - Throws: An error of type ``OpenAPIError`` - func getDocumentationPerLanguage(request: Operations.GetDocumentationPerLanguageRequest) async throws -> Response -} + static func `default`() throws -> Server { + return try RequestBodiesServers.RequestBodyPostApplicationJsonMapCamelCase.server1.server() + } -// MARK: - ErrorsAPI -public enum ErrorsServers { + func server() throws -> Server { + switch self { + case .server1: + return try type(of: self).server(at: 0, substituting: nil) + } + } + } -/// Describes the available servers that can be used when making 'connectionErrorGet' requests. +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfArray' requests. /// -/// Use this type when making calls to ``ErrorsAPI/connectionErrorGet(server:)`` to customize the server which is used. - public enum ConnectionErrorGet: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfArray(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonMapOfArray: Servers, ServerConvertible { /// Supported server value. /// - /// Corresponds to `http://somebrokenapi.broken` + /// Corresponds to `http://localhost:35456` case server1 /// Defines the raw URL strings for each server option. @@ -590,15 +858,15 @@ public enum ErrorsServers { /// The available URL strings are defined as: /// ```swift /// public static let urlStrings = [ - /// "http://somebrokenapi.broken" + /// "http://localhost:35456" /// ] /// ``` public static let urlStrings = [ - "http://somebrokenapi.broken" + "http://localhost:35456" ] static func `default`() throws -> Server { - return try ErrorsServers.ConnectionErrorGet.server1.server() + return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfArray.server1.server() } func server() throws -> Server { @@ -609,10 +877,10 @@ public enum ErrorsServers { } } -/// Describes the available servers that can be used when making 'statusGetXSpeakeasyErrors' requests. +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfArrayCamelCase' requests. /// -/// Use this type when making calls to ``ErrorsAPI/statusGetXSpeakeasyErrors(request:server:)`` to customize the server which is used. - public enum StatusGetXSpeakeasyErrors: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfArrayCamelCase(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonMapOfArrayCamelCase: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -633,7 +901,7 @@ public enum ErrorsServers { ] static func `default`() throws -> Server { - return try ErrorsServers.StatusGetXSpeakeasyErrors.server1.server() + return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfArrayCamelCase.server1.server() } func server() throws -> Server { @@ -643,219 +911,81 @@ public enum ErrorsServers { } } } -} -/// Endpoints for testing error responses. -/// -/// ## Topics -/// -/// ### API calls -/// -/// - ``connectionErrorGet(server:)`` -/// - ``statusGetError(request:)`` -/// - ``statusGetXSpeakeasyErrors(request:server:)`` +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfMap' requests. /// -public protocol ErrorsAPI { - func connectionErrorGet(server: ErrorsServers.ConnectionErrorGet?) async throws -> Response +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfMap(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonMapOfMap: Servers, ServerConvertible { + /// Supported server value. + /// + /// Corresponds to `http://localhost:35456` + case server1 - func statusGetError(request: Operations.StatusGetErrorRequest) async throws -> Response + /// Defines the raw URL strings for each server option. + /// + /// > Note: You do not need to use these values directly. + /// + /// The available URL strings are defined as: + /// ```swift + /// public static let urlStrings = [ + /// "http://localhost:35456" + /// ] + /// ``` + public static let urlStrings = [ + "http://localhost:35456" + ] - func statusGetXSpeakeasyErrors(request: Operations.StatusGetXSpeakeasyErrorsRequest, server: ErrorsServers.StatusGetXSpeakeasyErrors?) async throws -> Response -} + static func `default`() throws -> Server { + return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMap.server1.server() + } -// MARK: - FirstAPI -/// ## Topics -/// -/// ### API calls + func server() throws -> Server { + switch self { + case .server1: + return try type(of: self).server(at: 0, substituting: nil) + } + } + } + +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfMapCamelCase' requests. /// -/// - ``groupFirstGet()`` -/// -public protocol FirstAPI { - func groupFirstGet() async throws -> Response -} - -// MARK: - FlatteningAPI - -/// Endpoints for testing flattening through request body and parameter combinations. -/// -/// ## Topics -/// -/// ### API calls -/// -/// - ``componentBodyAndParamConflict(request:)`` -/// - ``componentBodyAndParamNoConflict(request:)`` -/// - ``conflictingParams(request:)`` -/// - ``inlineBodyAndParamConflict(request:)`` -/// - ``inlineBodyAndParamNoConflict(request:)`` -/// -public protocol FlatteningAPI { - func componentBodyAndParamConflict(request: Operations.ComponentBodyAndParamConflictRequest) async throws -> Response - - func componentBodyAndParamNoConflict(request: Operations.ComponentBodyAndParamNoConflictRequest) async throws -> Response - - func conflictingParams(request: Operations.ConflictingParamsRequest) async throws -> Response - - func inlineBodyAndParamConflict(request: Operations.InlineBodyAndParamConflictRequest) async throws -> Response - - func inlineBodyAndParamNoConflict(request: Operations.InlineBodyAndParamNoConflictRequest) async throws -> Response -} - -// MARK: - GenerationAPI - -/// Endpoints for purely testing valid generation behavior. -/// -/// ## Topics -/// -/// ### API calls -/// -/// - ``anchorTypesGet()`` -/// - ``arrayCircularReferenceGet()`` -/// - ``circularReferenceGet()`` -/// - ``dateParamWithDefault(request:)`` -/// - ``dateTimeParamWithDefault(request:)`` -/// - ``decimalParamWithDefault(request:)`` -/// - ``deprecatedFieldInSchemaPost(request:)`` -/// - ``deprecatedObjectInSchemaGet()`` -/// - ``deprecatedOperationNoCommentsGet(request:)`` -/// - ``deprecatedOperationWithCommentsGet(request:)`` -/// - ``emptyObjectGet(request:)`` -/// - ``emptyResponseObjectWithCommentGet()`` -/// - ``getGlobalNameOverride()`` -/// - ``ignoredGenerationGet()`` -/// - ``ignoresPost(request:)`` -/// - ``nameOverrideGet(request:)`` -/// - ``objectCircularReferenceGet()`` -/// - ``oneOfCircularReferenceGet()`` -/// - ``typedParameterGenerationGet(request:)`` -/// - ``usageExamplePost(request:security:)`` -/// -public protocol GenerationAPI { - func anchorTypesGet() async throws -> Response - - func arrayCircularReferenceGet() async throws -> Response - - func circularReferenceGet() async throws -> Response - - func dateParamWithDefault(request: Operations.DateParamWithDefaultRequest) async throws -> Response - - func dateTimeParamWithDefault(request: Operations.DateTimeParamWithDefaultRequest) async throws -> Response - - func decimalParamWithDefault(request: Operations.DecimalParamWithDefaultRequest) async throws -> Response - - func deprecatedFieldInSchemaPost(request: Shared.DeprecatedFieldInObject) async throws -> Response - - func deprecatedObjectInSchemaGet() async throws -> Response - - /// - /// - Parameter request: A ``Operations/DeprecatedOperationNoCommentsGetRequest`` object describing the input to the API operation - /// - Returns: A ``Operations/DeprecatedOperationNoCommentsGetResponse`` object describing the result of the API operation - /// - Throws: An error of type ``OpenAPIError`` - @available(*, deprecated, message: "This will be removed in a future release, please migrate away from it as soon as possible") - func deprecatedOperationNoCommentsGet(request: Operations.DeprecatedOperationNoCommentsGetRequest) async throws -> Response - - /// This is an endpoint setup to test deprecation with comments - /// - /// - Parameter request: A ``Operations/DeprecatedOperationWithCommentsGetRequest`` object describing the input to the API operation - /// - Returns: A ``Operations/DeprecatedOperationWithCommentsGetResponse`` object describing the result of the API operation - /// - Throws: An error of type ``OpenAPIError`` - @available(*, deprecated, renamed: "simplePathParameterObjects", message: "This operation is deprecated") - func deprecatedOperationWithCommentsGet(request: Operations.DeprecatedOperationWithCommentsGetRequest) async throws -> Response - - func emptyObjectGet(request: Operations.EmptyObjectGetRequest) async throws -> Response - - func emptyResponseObjectWithCommentGet() async throws -> Response - - func getGlobalNameOverride() async throws -> Response - - func ignoredGenerationGet() async throws -> Response - - func ignoresPost(request: Operations.IgnoresPostRequest) async throws -> Response - - func nameOverrideGet(request: Operations.NameOverrideGetRequest) async throws -> Response - - func objectCircularReferenceGet() async throws -> Response - - func oneOfCircularReferenceGet() async throws -> Response - - func typedParameterGenerationGet(request: Operations.TypedParameterGenerationGetRequest) async throws -> Response - - /// An operation used for testing usage examples that includes a large array of parameters and input types to ensure that all are handled correctly - /// - /// - Parameter request: A ``Operations/UsageExamplePostRequest`` object describing the input to the API operation - /// - Parameter security: An authentication object used to authenticate this request - /// - Returns: A ``Operations/UsageExamplePostResponse`` object describing the result of the API operation - /// - Throws: An error of type ``OpenAPIError`` - func usageExamplePost(request: Operations.UsageExamplePostRequest, security: Operations.UsageExamplePostSecurity) async throws -> Response -} - -// MARK: - GlobalsAPI - -/// Endpoints for testing global parameters. -/// -/// ## Topics -/// -/// ### API calls -/// -/// - ``globalPathParameterGet(request:)`` -/// - ``globalsQueryParameterGet(request:)`` -/// -public protocol GlobalsAPI { - func globalPathParameterGet(request: Operations.GlobalPathParameterGetRequest) async throws -> Response - - func globalsQueryParameterGet(request: Operations.GlobalsQueryParameterGetRequest) async throws -> Response -} - -// MARK: - NestFirstAPI -/// ## Topics -/// -/// ### API calls -/// -/// - ``nestFirstGet()`` -/// -public protocol NestFirstAPI { - func nestFirstGet() async throws -> Response -} - -// MARK: - NestedAPI -/// ## Topics -/// -/// ### API calls -/// -/// - ``nestedGet()`` -/// -public protocol NestedAPI { - func nestedGet() async throws -> Response -} +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfMapCamelCase(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonMapOfMapCamelCase: Servers, ServerConvertible { + /// Supported server value. + /// + /// Corresponds to `http://localhost:35456` + case server1 -// MARK: - NestedFirstAPI -/// ## Topics -/// -/// ### API calls -/// -/// - ``nestedFirstGet()`` -/// -public protocol NestedFirstAPI { - func nestedFirstGet() async throws -> Response -} + /// Defines the raw URL strings for each server option. + /// + /// > Note: You do not need to use these values directly. + /// + /// The available URL strings are defined as: + /// ```swift + /// public static let urlStrings = [ + /// "http://localhost:35456" + /// ] + /// ``` + public static let urlStrings = [ + "http://localhost:35456" + ] -// MARK: - NestedSecondAPI -/// ## Topics -/// -/// ### API calls -/// -/// - ``nestedSecondGet()`` -/// -public protocol NestedSecondAPI { - func nestedSecondGet() async throws -> Response -} + static func `default`() throws -> Server { + return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMapCamelCase.server1.server() + } -// MARK: - PaginationAPI -public enum PaginationServers { + func server() throws -> Server { + switch self { + case .server1: + return try type(of: self).server(at: 0, substituting: nil) + } + } + } -/// Describes the available servers that can be used when making 'paginationCursorBody' requests. +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfMapOfPrimitive' requests. /// -/// Use this type when making calls to ``PaginationAPI/paginationCursorBody(request:server:)`` to customize the server which is used. - public enum PaginationCursorBody: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfMapOfPrimitive(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonMapOfMapOfPrimitive: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -876,7 +1006,7 @@ public enum PaginationServers { ] static func `default`() throws -> Server { - return try PaginationServers.PaginationCursorBody.server1.server() + return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMapOfPrimitive.server1.server() } func server() throws -> Server { @@ -887,10 +1017,10 @@ public enum PaginationServers { } } -/// Describes the available servers that can be used when making 'paginationCursorParams' requests. +/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfPrimitive' requests. /// -/// Use this type when making calls to ``PaginationAPI/paginationCursorParams(request:server:)`` to customize the server which is used. - public enum PaginationCursorParams: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfPrimitive(request:server:)`` to customize the server which is used. + public enum RequestBodyPostApplicationJsonMapOfPrimitive: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -911,7 +1041,7 @@ public enum PaginationServers { ] static func `default`() throws -> Server { - return try PaginationServers.PaginationCursorParams.server1.server() + return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfPrimitive.server1.server() } func server() throws -> Server { @@ -922,10 +1052,10 @@ public enum PaginationServers { } } -/// Describes the available servers that can be used when making 'paginationLimitOffsetOffsetBody' requests. +/// Describes the available servers that can be used when making 'requestBodyReadAndWrite' requests. /// -/// Use this type when making calls to ``PaginationAPI/paginationLimitOffsetOffsetBody(request:server:)`` to customize the server which is used. - public enum PaginationLimitOffsetOffsetBody: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyReadAndWrite(request:server:)`` to customize the server which is used. + public enum RequestBodyReadAndWrite: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -946,7 +1076,7 @@ public enum PaginationServers { ] static func `default`() throws -> Server { - return try PaginationServers.PaginationLimitOffsetOffsetBody.server1.server() + return try RequestBodiesServers.RequestBodyReadAndWrite.server1.server() } func server() throws -> Server { @@ -957,10 +1087,10 @@ public enum PaginationServers { } } -/// Describes the available servers that can be used when making 'paginationLimitOffsetOffsetParams' requests. +/// Describes the available servers that can be used when making 'requestBodyReadOnlyInput' requests. /// -/// Use this type when making calls to ``PaginationAPI/paginationLimitOffsetOffsetParams(request:server:)`` to customize the server which is used. - public enum PaginationLimitOffsetOffsetParams: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyReadOnlyInput(request:server:)`` to customize the server which is used. + public enum RequestBodyReadOnlyInput: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -981,7 +1111,7 @@ public enum PaginationServers { ] static func `default`() throws -> Server { - return try PaginationServers.PaginationLimitOffsetOffsetParams.server1.server() + return try RequestBodiesServers.RequestBodyReadOnlyInput.server1.server() } func server() throws -> Server { @@ -992,10 +1122,10 @@ public enum PaginationServers { } } -/// Describes the available servers that can be used when making 'paginationLimitOffsetPageBody' requests. +/// Describes the available servers that can be used when making 'requestBodyReadOnlyUnion' requests. /// -/// Use this type when making calls to ``PaginationAPI/paginationLimitOffsetPageBody(request:server:)`` to customize the server which is used. - public enum PaginationLimitOffsetPageBody: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyReadOnlyUnion(request:server:)`` to customize the server which is used. + public enum RequestBodyReadOnlyUnion: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1016,7 +1146,7 @@ public enum PaginationServers { ] static func `default`() throws -> Server { - return try PaginationServers.PaginationLimitOffsetPageBody.server1.server() + return try RequestBodiesServers.RequestBodyReadOnlyUnion.server1.server() } func server() throws -> Server { @@ -1027,10 +1157,10 @@ public enum PaginationServers { } } -/// Describes the available servers that can be used when making 'paginationLimitOffsetPageParams' requests. +/// Describes the available servers that can be used when making 'requestBodyReadWriteOnlyUnion' requests. /// -/// Use this type when making calls to ``PaginationAPI/paginationLimitOffsetPageParams(request:server:)`` to customize the server which is used. - public enum PaginationLimitOffsetPageParams: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyReadWriteOnlyUnion(request:server:)`` to customize the server which is used. + public enum RequestBodyReadWriteOnlyUnion: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1051,7 +1181,7 @@ public enum PaginationServers { ] static func `default`() throws -> Server { - return try PaginationServers.PaginationLimitOffsetPageParams.server1.server() + return try RequestBodiesServers.RequestBodyReadWriteOnlyUnion.server1.server() } func server() throws -> Server { @@ -1061,122 +1191,11 @@ public enum PaginationServers { } } } -} - -/// Endpoints for testing the pagination extension -/// -/// ## Topics -/// -/// ### API calls -/// -/// - ``paginationCursorBody(request:server:)`` -/// - ``paginationCursorParams(request:server:)`` -/// - ``paginationLimitOffsetOffsetBody(request:server:)`` -/// - ``paginationLimitOffsetOffsetParams(request:server:)`` -/// - ``paginationLimitOffsetPageBody(request:server:)`` -/// - ``paginationLimitOffsetPageParams(request:server:)`` -/// -public protocol PaginationAPI { - func paginationCursorBody(request: Operations.PaginationCursorBodyRequestBody, server: PaginationServers.PaginationCursorBody?) async throws -> Response - - func paginationCursorParams(request: Operations.PaginationCursorParamsRequest, server: PaginationServers.PaginationCursorParams?) async throws -> Response - - func paginationLimitOffsetOffsetBody(request: Shared.LimitOffsetConfig, server: PaginationServers.PaginationLimitOffsetOffsetBody?) async throws -> Response - - func paginationLimitOffsetOffsetParams(request: Operations.PaginationLimitOffsetOffsetParamsRequest, server: PaginationServers.PaginationLimitOffsetOffsetParams?) async throws -> Response - - func paginationLimitOffsetPageBody(request: Shared.LimitOffsetConfig, server: PaginationServers.PaginationLimitOffsetPageBody?) async throws -> Response - - func paginationLimitOffsetPageParams(request: Operations.PaginationLimitOffsetPageParamsRequest, server: PaginationServers.PaginationLimitOffsetPageParams?) async throws -> Response -} - -// MARK: - ParametersAPI - -/// Endpoints for testing parameters. -/// -/// ## Topics -/// -/// ### API calls -/// -/// - ``deepObjectQueryParamsMap(request:)`` -/// - ``deepObjectQueryParamsObject(request:)`` -/// - ``duplicateParam(request:)`` -/// - ``formQueryParamsArray(request:)`` -/// - ``formQueryParamsCamelObject(request:)`` -/// - ``formQueryParamsMap(request:)`` -/// - ``formQueryParamsObject(request:)`` -/// - ``formQueryParamsPrimitive(request:)`` -/// - ``formQueryParamsRefParamObject(request:)`` -/// - ``headerParamsArray(request:)`` -/// - ``headerParamsMap(request:)`` -/// - ``headerParamsObject(request:)`` -/// - ``headerParamsPrimitive(request:)`` -/// - ``jsonQueryParamsObject(request:)`` -/// - ``mixedParametersCamelCase(request:)`` -/// - ``mixedParametersPrimitives(request:)`` -/// - ``mixedQueryParams(request:)`` -/// - ``pathParameterJson(request:)`` -/// - ``pipeDelimitedQueryParamsArray(request:)`` -/// - ``simplePathParameterArrays(request:)`` -/// - ``simplePathParameterMaps(request:)`` -/// - ``simplePathParameterObjects(request:)`` -/// - ``simplePathParameterPrimitives(request:)`` -/// -public protocol ParametersAPI { - func deepObjectQueryParamsMap(request: Operations.DeepObjectQueryParamsMapRequest) async throws -> Response - - func deepObjectQueryParamsObject(request: Operations.DeepObjectQueryParamsObjectRequest) async throws -> Response - - func duplicateParam(request: Operations.DuplicateParamRequest) async throws -> Response - - func formQueryParamsArray(request: Operations.FormQueryParamsArrayRequest) async throws -> Response - - func formQueryParamsCamelObject(request: Operations.FormQueryParamsCamelObjectRequest) async throws -> Response - - func formQueryParamsMap(request: Operations.FormQueryParamsMapRequest) async throws -> Response - - func formQueryParamsObject(request: Operations.FormQueryParamsObjectRequest) async throws -> Response - - func formQueryParamsPrimitive(request: Operations.FormQueryParamsPrimitiveRequest) async throws -> Response - - func formQueryParamsRefParamObject(request: Operations.FormQueryParamsRefParamObjectRequest) async throws -> Response - - func headerParamsArray(request: Operations.HeaderParamsArrayRequest) async throws -> Response - - func headerParamsMap(request: Operations.HeaderParamsMapRequest) async throws -> Response - - func headerParamsObject(request: Operations.HeaderParamsObjectRequest) async throws -> Response - - func headerParamsPrimitive(request: Operations.HeaderParamsPrimitiveRequest) async throws -> Response - - func jsonQueryParamsObject(request: Operations.JsonQueryParamsObjectRequest) async throws -> Response - - func mixedParametersCamelCase(request: Operations.MixedParametersCamelCaseRequest) async throws -> Response - - func mixedParametersPrimitives(request: Operations.MixedParametersPrimitivesRequest) async throws -> Response - - func mixedQueryParams(request: Operations.MixedQueryParamsRequest) async throws -> Response - - func pathParameterJson(request: Operations.PathParameterJsonRequest) async throws -> Response - - func pipeDelimitedQueryParamsArray(request: Operations.PipeDelimitedQueryParamsArrayRequest) async throws -> Response - - func simplePathParameterArrays(request: Operations.SimplePathParameterArraysRequest) async throws -> Response - - func simplePathParameterMaps(request: Operations.SimplePathParameterMapsRequest) async throws -> Response - - func simplePathParameterObjects(request: Operations.SimplePathParameterObjectsRequest) async throws -> Response - - func simplePathParameterPrimitives(request: Operations.SimplePathParameterPrimitivesRequest) async throws -> Response -} -// MARK: - RequestBodiesAPI -public enum RequestBodiesServers { - -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArray' requests. +/// Describes the available servers that can be used when making 'requestBodyWriteOnly' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArray(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonArray: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyWriteOnly(request:server:)`` to customize the server which is used. + public enum RequestBodyWriteOnly: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1197,7 +1216,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonArray.server1.server() + return try RequestBodiesServers.RequestBodyWriteOnly.server1.server() } func server() throws -> Server { @@ -1208,10 +1227,10 @@ public enum RequestBodiesServers { } } -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayCamelCase' requests. +/// Describes the available servers that can be used when making 'requestBodyWriteOnlyOutput' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayCamelCase(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonArrayCamelCase: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyWriteOnlyOutput(request:server:)`` to customize the server which is used. + public enum RequestBodyWriteOnlyOutput: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1232,7 +1251,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayCamelCase.server1.server() + return try RequestBodiesServers.RequestBodyWriteOnlyOutput.server1.server() } func server() throws -> Server { @@ -1243,10 +1262,10 @@ public enum RequestBodiesServers { } } -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfArray' requests. +/// Describes the available servers that can be used when making 'requestBodyWriteOnlyUnion' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfArray(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonArrayOfArray: Servers, ServerConvertible { +/// Use this type when making calls to ``RequestBodiesAPI/requestBodyWriteOnlyUnion(request:server:)`` to customize the server which is used. + public enum RequestBodyWriteOnlyUnion: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1267,7 +1286,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArray.server1.server() + return try RequestBodiesServers.RequestBodyWriteOnlyUnion.server1.server() } func server() throws -> Server { @@ -1277,46 +1296,267 @@ public enum RequestBodiesServers { } } } +} -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfArrayCamelCase' requests. +/// Endpoints for testing request bodies. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfArrayCamelCase(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonArrayOfArrayCamelCase: Servers, ServerConvertible { - /// Supported server value. - /// - /// Corresponds to `http://localhost:35456` - case server1 +/// ## Topics +/// +/// ### API calls +/// +/// - ``nullableObjectPost(request:)`` +/// - ``nullableRequiredEmptyObjectPost(request:)`` +/// - ``nullableRequiredPropertyPost(request:)`` +/// - ``nullableRequiredSharedObjectPost(request:)`` +/// - ``requestBodyPostApplicationJsonArray(request:server:)`` +/// - ``requestBodyPostApplicationJsonArrayCamelCase(request:server:)`` +/// - ``requestBodyPostApplicationJsonArrayObj(request:)`` +/// - ``requestBodyPostApplicationJsonArrayObjCamelCase(request:)`` +/// - ``requestBodyPostApplicationJsonArrayOfArray(request:server:)`` +/// - ``requestBodyPostApplicationJsonArrayOfArrayCamelCase(request:server:)`` +/// - ``requestBodyPostApplicationJsonArrayOfArrayOfPrimitive(request:server:)`` +/// - ``requestBodyPostApplicationJsonArrayOfMap(request:server:)`` +/// - ``requestBodyPostApplicationJsonArrayOfMapCamelCase(request:server:)`` +/// - ``requestBodyPostApplicationJsonArrayOfPrimitive(request:server:)`` +/// - ``requestBodyPostApplicationJsonDeep(request:)`` +/// - ``requestBodyPostApplicationJsonDeepCamelCase(request:)`` +/// - ``requestBodyPostApplicationJsonMap(request:server:)`` +/// - ``requestBodyPostApplicationJsonMapCamelCase(request:server:)`` +/// - ``requestBodyPostApplicationJsonMapObj(request:)`` +/// - ``requestBodyPostApplicationJsonMapObjCamelCase(request:)`` +/// - ``requestBodyPostApplicationJsonMapOfArray(request:server:)`` +/// - ``requestBodyPostApplicationJsonMapOfArrayCamelCase(request:server:)`` +/// - ``requestBodyPostApplicationJsonMapOfMap(request:server:)`` +/// - ``requestBodyPostApplicationJsonMapOfMapCamelCase(request:server:)`` +/// - ``requestBodyPostApplicationJsonMapOfMapOfPrimitive(request:server:)`` +/// - ``requestBodyPostApplicationJsonMapOfPrimitive(request:server:)`` +/// - ``requestBodyPostApplicationJsonMultipleJsonFiltered(request:)`` +/// - ``requestBodyPostApplicationJsonSimple(request:)`` +/// - ``requestBodyPostApplicationJsonSimpleCamelCase(request:)`` +/// - ``requestBodyPostComplexNumberTypes(request:)`` +/// - ``requestBodyPostDefaultsAndConsts(request:)`` +/// - ``requestBodyPostEmptyObject(request:)`` +/// - ``requestBodyPostFormDeep(request:)`` +/// - ``requestBodyPostFormMapPrimitive(request:)`` +/// - ``requestBodyPostFormSimple(request:)`` +/// - ``requestBodyPostJsonDataTypesArrayBigInt(request:)`` +/// - ``requestBodyPostJsonDataTypesArrayDate(request:)`` +/// - ``requestBodyPostJsonDataTypesArrayDecimalStr(request:)`` +/// - ``requestBodyPostJsonDataTypesBigInt(request:)`` +/// - ``requestBodyPostJsonDataTypesBigIntStr(request:)`` +/// - ``requestBodyPostJsonDataTypesBoolean(request:)`` +/// - ``requestBodyPostJsonDataTypesDate(request:)`` +/// - ``requestBodyPostJsonDataTypesDateTime(request:)`` +/// - ``requestBodyPostJsonDataTypesDecimal(request:)`` +/// - ``requestBodyPostJsonDataTypesDecimalStr(request:)`` +/// - ``requestBodyPostJsonDataTypesFloat32(request:)`` +/// - ``requestBodyPostJsonDataTypesInt32(request:)`` +/// - ``requestBodyPostJsonDataTypesInteger(request:)`` +/// - ``requestBodyPostJsonDataTypesMapBigIntStr(request:)`` +/// - ``requestBodyPostJsonDataTypesMapDateTime(request:)`` +/// - ``requestBodyPostJsonDataTypesMapDecimal(request:)`` +/// - ``requestBodyPostJsonDataTypesNumber(request:)`` +/// - ``requestBodyPostJsonDataTypesString(request:)`` +/// - ``requestBodyPostMultipleContentTypesComponentFiltered(request:)`` +/// - ``requestBodyPostMultipleContentTypesInlineFiltered(request:)`` +/// - ``requestBodyPostMultipleContentTypesSplitParamForm(request:)`` +/// - ``requestBodyPostMultipleContentTypesSplitParamJson(request:)`` +/// - ``requestBodyPostMultipleContentTypesSplitParamMultipart(request:)`` +/// - ``requestBodyPostMultipleContentTypesSplitForm(request:)`` +/// - ``requestBodyPostMultipleContentTypesSplitJson(request:)`` +/// - ``requestBodyPostMultipleContentTypesSplitMultipart(request:)`` +/// - ``requestBodyPostNotNullableNotRequiredStringBody(request:)`` +/// - ``requestBodyPostNullArray(request:)`` +/// - ``requestBodyPostNullDictionary(request:)`` +/// - ``requestBodyPostNullableNotRequiredStringBody(request:)`` +/// - ``requestBodyPostNullableRequiredStringBody(request:)`` +/// - ``requestBodyPutBytes(request:)`` +/// - ``requestBodyPutBytesWithParams(request:)`` +/// - ``requestBodyPutMultipartDeep(request:)`` +/// - ``requestBodyPutMultipartDifferentFileName(request:)`` +/// - ``requestBodyPutMultipartFile(request:)`` +/// - ``requestBodyPutMultipartSimple(request:)`` +/// - ``requestBodyPutString(request:)`` +/// - ``requestBodyPutStringWithParams(request:)`` +/// - ``requestBodyReadAndWrite(request:server:)`` +/// - ``requestBodyReadOnlyInput(request:server:)`` +/// - ``requestBodyReadOnlyUnion(request:server:)`` +/// - ``requestBodyReadWriteOnlyUnion(request:server:)`` +/// - ``requestBodyWriteOnly(request:server:)`` +/// - ``requestBodyWriteOnlyOutput(request:server:)`` +/// - ``requestBodyWriteOnlyUnion(request:server:)`` +/// +public protocol RequestBodiesAPI { + func nullableObjectPost(request: Shared.NullableObject) async throws -> Response - /// Defines the raw URL strings for each server option. - /// - /// > Note: You do not need to use these values directly. - /// - /// The available URL strings are defined as: - /// ```swift - /// public static let urlStrings = [ - /// "http://localhost:35456" - /// ] - /// ``` - public static let urlStrings = [ - "http://localhost:35456" - ] + func nullableRequiredEmptyObjectPost(request: Operations.NullableRequiredEmptyObjectPostRequestBody) async throws -> Response - static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArrayCamelCase.server1.server() - } + func nullableRequiredPropertyPost(request: Operations.NullableRequiredPropertyPostRequestBody) async throws -> Response - func server() throws -> Server { - switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) - } - } - } + func nullableRequiredSharedObjectPost(request: Operations.NullableRequiredSharedObjectPostRequestBody) async throws -> Response -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfArrayOfPrimitive' requests. + func requestBodyPostApplicationJsonArray(request: [Shared.SimpleObject], server: RequestBodiesServers.RequestBodyPostApplicationJsonArray?) async throws -> Response + + func requestBodyPostApplicationJsonArrayCamelCase(request: [Shared.SimpleObjectCamelCase], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayCamelCase?) async throws -> Response + + func requestBodyPostApplicationJsonArrayObj(request: [Shared.SimpleObject]) async throws -> Response + + func requestBodyPostApplicationJsonArrayObjCamelCase(request: [Shared.SimpleObjectCamelCase]) async throws -> Response + + func requestBodyPostApplicationJsonArrayOfArray(request: [[Shared.SimpleObject]], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArray?) async throws -> Response + + func requestBodyPostApplicationJsonArrayOfArrayCamelCase(request: [[Shared.SimpleObjectCamelCase]], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArrayCamelCase?) async throws -> Response + + func requestBodyPostApplicationJsonArrayOfArrayOfPrimitive(request: [[String]], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArrayOfPrimitive?) async throws -> Response + + func requestBodyPostApplicationJsonArrayOfMap(request: [[String: Shared.SimpleObject]], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfMap?) async throws -> Response + + func requestBodyPostApplicationJsonArrayOfMapCamelCase(request: [[String: Shared.SimpleObjectCamelCase]], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfMapCamelCase?) async throws -> Response + + func requestBodyPostApplicationJsonArrayOfPrimitive(request: [String], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfPrimitive?) async throws -> Response + + func requestBodyPostApplicationJsonDeep(request: Shared.DeepObject) async throws -> Response + + func requestBodyPostApplicationJsonDeepCamelCase(request: Shared.DeepObjectCamelCase) async throws -> Response + + func requestBodyPostApplicationJsonMap(request: [String: Shared.SimpleObject], server: RequestBodiesServers.RequestBodyPostApplicationJsonMap?) async throws -> Response + + func requestBodyPostApplicationJsonMapCamelCase(request: [String: Shared.SimpleObjectCamelCase], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapCamelCase?) async throws -> Response + + func requestBodyPostApplicationJsonMapObj(request: [String: Shared.SimpleObject]) async throws -> Response + + func requestBodyPostApplicationJsonMapObjCamelCase(request: [String: Shared.SimpleObjectCamelCase]) async throws -> Response + + func requestBodyPostApplicationJsonMapOfArray(request: [String: [Shared.SimpleObject]], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfArray?) async throws -> Response + + func requestBodyPostApplicationJsonMapOfArrayCamelCase(request: [String: [Shared.SimpleObjectCamelCase]], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfArrayCamelCase?) async throws -> Response + + func requestBodyPostApplicationJsonMapOfMap(request: [String: [String: Shared.SimpleObject]], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMap?) async throws -> Response + + func requestBodyPostApplicationJsonMapOfMapCamelCase(request: [String: [String: Shared.SimpleObjectCamelCase]], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMapCamelCase?) async throws -> Response + + func requestBodyPostApplicationJsonMapOfMapOfPrimitive(request: [String: [String: String]], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMapOfPrimitive?) async throws -> Response + + func requestBodyPostApplicationJsonMapOfPrimitive(request: [String: String], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfPrimitive?) async throws -> Response + + func requestBodyPostApplicationJsonMultipleJsonFiltered(request: Shared.SimpleObject) async throws -> Response + + func requestBodyPostApplicationJsonSimple(request: Shared.SimpleObject) async throws -> Response + + func requestBodyPostApplicationJsonSimpleCamelCase(request: Shared.SimpleObjectCamelCase) async throws -> Response + + func requestBodyPostComplexNumberTypes(request: Operations.RequestBodyPostComplexNumberTypesRequest) async throws -> Response + + func requestBodyPostDefaultsAndConsts(request: Shared.DefaultsAndConsts) async throws -> Response + + func requestBodyPostEmptyObject(request: Operations.RequestBodyPostEmptyObjectRequestBody) async throws -> Response + + func requestBodyPostFormDeep(request: Shared.DeepObject) async throws -> Response + + func requestBodyPostFormMapPrimitive(request: [String: String]) async throws -> Response + + func requestBodyPostFormSimple(request: Shared.SimpleObject) async throws -> Response + + func requestBodyPostJsonDataTypesArrayBigInt(request: [Int]) async throws -> Response + + func requestBodyPostJsonDataTypesArrayDate(request: [Date]) async throws -> Response + + func requestBodyPostJsonDataTypesArrayDecimalStr(request: [String]) async throws -> Response + + func requestBodyPostJsonDataTypesBigInt(request: Int) async throws -> Response + + func requestBodyPostJsonDataTypesBigIntStr(request: String) async throws -> Response + + func requestBodyPostJsonDataTypesBoolean(request: Bool) async throws -> Response + + func requestBodyPostJsonDataTypesDate(request: Date) async throws -> Response + + func requestBodyPostJsonDataTypesDateTime(request: Date) async throws -> Response + + func requestBodyPostJsonDataTypesDecimal(request: Double) async throws -> Response + + func requestBodyPostJsonDataTypesDecimalStr(request: String) async throws -> Response + + func requestBodyPostJsonDataTypesFloat32(request: Double) async throws -> Response + + func requestBodyPostJsonDataTypesInt32(request: Int) async throws -> Response + + func requestBodyPostJsonDataTypesInteger(request: Int) async throws -> Response + + func requestBodyPostJsonDataTypesMapBigIntStr(request: [String: String]) async throws -> Response + + func requestBodyPostJsonDataTypesMapDateTime(request: [String: Date]) async throws -> Response + + func requestBodyPostJsonDataTypesMapDecimal(request: [String: Double]) async throws -> Response + + func requestBodyPostJsonDataTypesNumber(request: Double) async throws -> Response + + func requestBodyPostJsonDataTypesString(request: String) async throws -> Response + + func requestBodyPostMultipleContentTypesComponentFiltered(request: Shared.SimpleObject) async throws -> Response + + func requestBodyPostMultipleContentTypesInlineFiltered(request: Operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody) async throws -> Response + + func requestBodyPostMultipleContentTypesSplitParamForm(request: Operations.RequestBodyPostMultipleContentTypesSplitParamFormRequest) async throws -> Response + + func requestBodyPostMultipleContentTypesSplitParamJson(request: Operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequest) async throws -> Response + + func requestBodyPostMultipleContentTypesSplitParamMultipart(request: Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequest) async throws -> Response + + func requestBodyPostMultipleContentTypesSplitForm(request: Operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody) async throws -> Response + + func requestBodyPostMultipleContentTypesSplitJson(request: Operations.RequestBodyPostMultipleContentTypesSplitJsonRequestBody) async throws -> Response + + func requestBodyPostMultipleContentTypesSplitMultipart(request: Operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody) async throws -> Response + + func requestBodyPostNotNullableNotRequiredStringBody(request: String) async throws -> Response + + func requestBodyPostNullArray(request: [String]) async throws -> Response + + func requestBodyPostNullDictionary(request: [String: String]) async throws -> Response + + func requestBodyPostNullableNotRequiredStringBody(request: String) async throws -> Response + + func requestBodyPostNullableRequiredStringBody(request: String) async throws -> Response + + func requestBodyPutBytes(request: Data) async throws -> Response + + func requestBodyPutBytesWithParams(request: Operations.RequestBodyPutBytesWithParamsRequest) async throws -> Response + + func requestBodyPutMultipartDeep(request: Shared.DeepObject) async throws -> Response + + func requestBodyPutMultipartDifferentFileName(request: Operations.RequestBodyPutMultipartDifferentFileNameRequestBody) async throws -> Response + + func requestBodyPutMultipartFile(request: Operations.RequestBodyPutMultipartFileRequestBody) async throws -> Response + + func requestBodyPutMultipartSimple(request: Shared.SimpleObject) async throws -> Response + + func requestBodyPutString(request: String) async throws -> Response + + func requestBodyPutStringWithParams(request: Operations.RequestBodyPutStringWithParamsRequest) async throws -> Response + + func requestBodyReadAndWrite(request: Shared.ReadWriteObject, server: RequestBodiesServers.RequestBodyReadAndWrite?) async throws -> Response + + func requestBodyReadOnlyInput(request: Shared.ReadOnlyObjectInput, server: RequestBodiesServers.RequestBodyReadOnlyInput?) async throws -> Response + + func requestBodyReadOnlyUnion(request: Shared.WeaklyTypedOneOfReadOnlyObjectInput, server: RequestBodiesServers.RequestBodyReadOnlyUnion?) async throws -> Response + + func requestBodyReadWriteOnlyUnion(request: Shared.WeaklyTypedOneOfReadWriteObject, server: RequestBodiesServers.RequestBodyReadWriteOnlyUnion?) async throws -> Response + + func requestBodyWriteOnly(request: Shared.WriteOnlyObject, server: RequestBodiesServers.RequestBodyWriteOnly?) async throws -> Response + + func requestBodyWriteOnlyOutput(request: Shared.WriteOnlyObject, server: RequestBodiesServers.RequestBodyWriteOnlyOutput?) async throws -> Response + + func requestBodyWriteOnlyUnion(request: Shared.WeaklyTypedOneOfWriteOnlyObject, server: RequestBodiesServers.RequestBodyWriteOnlyUnion?) async throws -> Response +} + +// MARK: - ResponseBodiesAPI +public enum ResponseBodiesServers { + +/// Describes the available servers that can be used when making 'responseBodyOptionalGet' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfArrayOfPrimitive(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonArrayOfArrayOfPrimitive: Servers, ServerConvertible { +/// Use this type when making calls to ``ResponseBodiesAPI/responseBodyOptionalGet(server:)`` to customize the server which is used. + public enum ResponseBodyOptionalGet: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1337,7 +1577,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArrayOfPrimitive.server1.server() + return try ResponseBodiesServers.ResponseBodyOptionalGet.server1.server() } func server() throws -> Server { @@ -1348,10 +1588,10 @@ public enum RequestBodiesServers { } } -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfMap' requests. +/// Describes the available servers that can be used when making 'responseBodyReadOnly' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfMap(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonArrayOfMap: Servers, ServerConvertible { +/// Use this type when making calls to ``ResponseBodiesAPI/responseBodyReadOnly(server:)`` to customize the server which is used. + public enum ResponseBodyReadOnly: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1372,7 +1612,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfMap.server1.server() + return try ResponseBodiesServers.ResponseBodyReadOnly.server1.server() } func server() throws -> Server { @@ -1382,15 +1622,65 @@ public enum RequestBodiesServers { } } } +} -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfMapCamelCase' requests. +/// Endpoints for testing response bodies. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfMapCamelCase(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonArrayOfMapCamelCase: Servers, ServerConvertible { +/// ## Topics +/// +/// ### API calls +/// +/// - ``responseBodyAdditionalPropertiesComplexNumbersPost(request:)`` +/// - ``responseBodyAdditionalPropertiesDatePost(request:)`` +/// - ``responseBodyAdditionalPropertiesObjectPost(request:)`` +/// - ``responseBodyAdditionalPropertiesPost(request:)`` +/// - ``responseBodyBytesGet()`` +/// - ``responseBodyEmptyWithHeaders(request:)`` +/// - ``responseBodyOptionalGet(server:)`` +/// - ``responseBodyReadOnly(server:)`` +/// - ``responseBodyStringGet()`` +/// - ``responseBodyXmlGet()`` +/// - ``responseBodyZeroValueComplexTypePtrsPost(request:)`` +/// +public protocol ResponseBodiesAPI { + func responseBodyAdditionalPropertiesComplexNumbersPost(request: [String: String]) async throws -> Response + + func responseBodyAdditionalPropertiesDatePost(request: [String: Date]) async throws -> Response + + func responseBodyAdditionalPropertiesObjectPost(request: [String: Shared.SimpleObject]) async throws -> Response + + func responseBodyAdditionalPropertiesPost(request: [String: String]) async throws -> Response + + func responseBodyBytesGet() async throws -> Response + + func responseBodyEmptyWithHeaders(request: Operations.ResponseBodyEmptyWithHeadersRequest) async throws -> ResponseWithHeaders + + func responseBodyOptionalGet(server: ResponseBodiesServers.ResponseBodyOptionalGet?) async throws -> Response + + func responseBodyReadOnly(server: ResponseBodiesServers.ResponseBodyReadOnly?) async throws -> Response + + func responseBodyStringGet() async throws -> Response + + func responseBodyXmlGet() async throws -> Response + + func responseBodyZeroValueComplexTypePtrsPost(request: Shared.ObjWithZeroValueComplexTypePtrs) async throws -> Response +} + +// MARK: - ServersAPI +public enum ServersServers { + +/// Describes the available servers that can be used when making 'selectServerWithID' requests. +/// +/// Use this type when making calls to ``ServersAPI/selectServerWithID(server:)`` to customize the server which is used. + public enum SelectServerWithID: Servers, ServerConvertible { /// Supported server value. /// - /// Corresponds to `http://localhost:35456` - case server1 + /// Corresponds to `http://localhost:35123` + case valid + /// Supported server value. + /// + /// Corresponds to `http://broken` + case broken /// Defines the raw URL strings for each server option. /// @@ -1399,33 +1689,37 @@ public enum RequestBodiesServers { /// The available URL strings are defined as: /// ```swift /// public static let urlStrings = [ - /// "http://localhost:35456" + /// "http://localhost:35123", + /// "http://broken" /// ] /// ``` public static let urlStrings = [ - "http://localhost:35456" + "http://localhost:35123", + "http://broken" ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfMapCamelCase.server1.server() + return try ServersServers.SelectServerWithID.valid.server() } func server() throws -> Server { switch self { - case .server1: + case .valid: return try type(of: self).server(at: 0, substituting: nil) + case .broken: + return try type(of: self).server(at: 1, substituting: nil) } } } -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonArrayOfPrimitive' requests. +/// Describes the available servers that can be used when making 'serverWithProtocolTemplate' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonArrayOfPrimitive(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonArrayOfPrimitive: Servers, ServerConvertible { - /// Supported server value. +/// Use this type when making calls to ``ServersAPI/serverWithProtocolTemplate(server:)`` to customize the server which is used. + public enum ServerWithProtocolTemplate: Servers, ServerConvertible { + /// Supported server value with substituted variables /// - /// Corresponds to `http://localhost:35456` - case server1 + /// Corresponds to `{protocol}://{hostname}:{port}` + case main(hostname: String = "localhost", port: String = "35123", `protocol`: String = "http") /// Defines the raw URL strings for each server option. /// @@ -1434,33 +1728,33 @@ public enum RequestBodiesServers { /// The available URL strings are defined as: /// ```swift /// public static let urlStrings = [ - /// "http://localhost:35456" + /// "{protocol}://{hostname}:{port}" /// ] /// ``` public static let urlStrings = [ - "http://localhost:35456" + "{protocol}://{hostname}:{port}" ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfPrimitive.server1.server() + return try ServersServers.ServerWithProtocolTemplate.main().server() } func server() throws -> Server { switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) + case .main(let hostname, let port, let `protocol`): + return try type(of: self).server(at: 0, substituting: ["hostname": hostname, "port": port, "protocol": `protocol`]) } } } -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMap' requests. +/// Describes the available servers that can be used when making 'serverWithTemplates' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMap(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonMap: Servers, ServerConvertible { - /// Supported server value. +/// Use this type when making calls to ``ServersAPI/serverWithTemplates(server:)`` to customize the server which is used. + public enum ServerWithTemplates: Servers, ServerConvertible { + /// Supported server value with substituted variables /// - /// Corresponds to `http://localhost:35456` - case server1 + /// Corresponds to `http://{hostname}:{port}` + case server1(hostname: String = "localhost", port: String = "35123") /// Defines the raw URL strings for each server option. /// @@ -1469,33 +1763,33 @@ public enum RequestBodiesServers { /// The available URL strings are defined as: /// ```swift /// public static let urlStrings = [ - /// "http://localhost:35456" + /// "http://{hostname}:{port}" /// ] /// ``` public static let urlStrings = [ - "http://localhost:35456" + "http://{hostname}:{port}" ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonMap.server1.server() + return try ServersServers.ServerWithTemplates.server1().server() } func server() throws -> Server { switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) + case .server1(let hostname, let port): + return try type(of: self).server(at: 0, substituting: ["hostname": hostname, "port": port]) } } } -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapCamelCase' requests. +/// Describes the available servers that can be used when making 'serversByIDWithTemplates' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapCamelCase(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonMapCamelCase: Servers, ServerConvertible { - /// Supported server value. +/// Use this type when making calls to ``ServersAPI/serversByIDWithTemplates(server:)`` to customize the server which is used. + public enum ServersByIDWithTemplates: Servers, ServerConvertible { + /// Supported server value with substituted variables /// - /// Corresponds to `http://localhost:35456` - case server1 + /// Corresponds to `http://{hostname}:{port}` + case main(hostname: String = "localhost", port: String = "35123") /// Defines the raw URL strings for each server option. /// @@ -1504,134 +1798,82 @@ public enum RequestBodiesServers { /// The available URL strings are defined as: /// ```swift /// public static let urlStrings = [ - /// "http://localhost:35456" + /// "http://{hostname}:{port}" /// ] /// ``` public static let urlStrings = [ - "http://localhost:35456" + "http://{hostname}:{port}" ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonMapCamelCase.server1.server() + return try ServersServers.ServersByIDWithTemplates.main().server() } func server() throws -> Server { switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) + case .main(let hostname, let port): + return try type(of: self).server(at: 0, substituting: ["hostname": hostname, "port": port]) } } } +} -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfArray' requests. +/// Endpoints for testing servers. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfArray(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonMapOfArray: Servers, ServerConvertible { - /// Supported server value. - /// - /// Corresponds to `http://localhost:35456` - case server1 - - /// Defines the raw URL strings for each server option. - /// - /// > Note: You do not need to use these values directly. - /// - /// The available URL strings are defined as: - /// ```swift - /// public static let urlStrings = [ - /// "http://localhost:35456" - /// ] - /// ``` - public static let urlStrings = [ - "http://localhost:35456" - ] +/// ## Topics +/// +/// ### API calls +/// +/// - ``selectGlobalServer()`` +/// - ``selectServerWithID(server:)`` +/// - ``serverWithProtocolTemplate(server:)`` +/// - ``serverWithTemplates(server:)`` +/// - ``serverWithTemplatesGlobal()`` +/// - ``serversByIDWithTemplates(server:)`` +/// +public protocol ServersAPI { + func selectGlobalServer() async throws -> ResponseWithHeaders - static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfArray.server1.server() - } + /// Select a server by ID. + /// + /// - Parameter server: An optional server override to use for this operation + /// - Returns: A ``Operations/SelectServerWithIDResponse`` object describing the result of the API operation + /// - Throws: An error of type ``OpenAPIError`` + func selectServerWithID(server: ServersServers.SelectServerWithID?) async throws -> Response - func server() throws -> Server { - switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) - } - } - } + func serverWithProtocolTemplate(server: ServersServers.ServerWithProtocolTemplate?) async throws -> Response -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfArrayCamelCase' requests. -/// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfArrayCamelCase(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonMapOfArrayCamelCase: Servers, ServerConvertible { - /// Supported server value. - /// - /// Corresponds to `http://localhost:35456` - case server1 + func serverWithTemplates(server: ServersServers.ServerWithTemplates?) async throws -> Response - /// Defines the raw URL strings for each server option. - /// - /// > Note: You do not need to use these values directly. - /// - /// The available URL strings are defined as: - /// ```swift - /// public static let urlStrings = [ - /// "http://localhost:35456" - /// ] - /// ``` - public static let urlStrings = [ - "http://localhost:35456" - ] + func serverWithTemplatesGlobal() async throws -> Response - static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfArrayCamelCase.server1.server() - } + func serversByIDWithTemplates(server: ServersServers.ServersByIDWithTemplates?) async throws -> Response +} - func server() throws -> Server { - switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) - } - } - } +// MARK: - TelemetryAPI -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfMap' requests. +/// Endpoints for testing telemetry. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfMap(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonMapOfMap: Servers, ServerConvertible { - /// Supported server value. - /// - /// Corresponds to `http://localhost:35456` - case server1 - - /// Defines the raw URL strings for each server option. - /// - /// > Note: You do not need to use these values directly. - /// - /// The available URL strings are defined as: - /// ```swift - /// public static let urlStrings = [ - /// "http://localhost:35456" - /// ] - /// ``` - public static let urlStrings = [ - "http://localhost:35456" - ] +/// ## Topics +/// +/// ### API calls +/// +/// - ``telemetrySpeakeasyUserAgentGet(request:)`` +/// - ``telemetryUserAgentGet()`` +/// +public protocol TelemetryAPI { + func telemetrySpeakeasyUserAgentGet(request: Operations.TelemetrySpeakeasyUserAgentGetRequest) async throws -> Response - static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMap.server1.server() - } + func telemetryUserAgentGet() async throws -> Response +} - func server() throws -> Server { - switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) - } - } - } +// MARK: - AuthNewAPI +public enum AuthNewServers { -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfMapCamelCase' requests. +/// Describes the available servers that can be used when making 'apiKeyAuthGlobalNew' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfMapCamelCase(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonMapOfMapCamelCase: Servers, ServerConvertible { +/// Use this type when making calls to ``AuthNewAPI/apiKeyAuthGlobalNew(request:server:)`` to customize the server which is used. + public enum ApiKeyAuthGlobalNew: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1652,7 +1894,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMapCamelCase.server1.server() + return try AuthNewServers.ApiKeyAuthGlobalNew.server1.server() } func server() throws -> Server { @@ -1663,10 +1905,10 @@ public enum RequestBodiesServers { } } -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfMapOfPrimitive' requests. +/// Describes the available servers that can be used when making 'authGlobal' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfMapOfPrimitive(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonMapOfMapOfPrimitive: Servers, ServerConvertible { +/// Use this type when making calls to ``AuthNewAPI/authGlobal(request:server:)`` to customize the server which is used. + public enum AuthGlobal: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1687,7 +1929,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMapOfPrimitive.server1.server() + return try AuthNewServers.AuthGlobal.server1.server() } func server() throws -> Server { @@ -1698,10 +1940,10 @@ public enum RequestBodiesServers { } } -/// Describes the available servers that can be used when making 'requestBodyPostApplicationJsonMapOfPrimitive' requests. +/// Describes the available servers that can be used when making 'basicAuthNew' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyPostApplicationJsonMapOfPrimitive(request:server:)`` to customize the server which is used. - public enum RequestBodyPostApplicationJsonMapOfPrimitive: Servers, ServerConvertible { +/// Use this type when making calls to ``AuthNewAPI/basicAuthNew(request:security:server:)`` to customize the server which is used. + public enum BasicAuthNew: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1722,7 +1964,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyPostApplicationJsonMapOfPrimitive.server1.server() + return try AuthNewServers.BasicAuthNew.server1.server() } func server() throws -> Server { @@ -1733,10 +1975,10 @@ public enum RequestBodiesServers { } } -/// Describes the available servers that can be used when making 'requestBodyReadAndWrite' requests. +/// Describes the available servers that can be used when making 'multipleMixedOptionsAuth' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyReadAndWrite(request:server:)`` to customize the server which is used. - public enum RequestBodyReadAndWrite: Servers, ServerConvertible { +/// Use this type when making calls to ``AuthNewAPI/multipleMixedOptionsAuth(request:security:server:)`` to customize the server which is used. + public enum MultipleMixedOptionsAuth: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1757,7 +1999,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyReadAndWrite.server1.server() + return try AuthNewServers.MultipleMixedOptionsAuth.server1.server() } func server() throws -> Server { @@ -1768,10 +2010,10 @@ public enum RequestBodiesServers { } } -/// Describes the available servers that can be used when making 'requestBodyReadOnlyInput' requests. +/// Describes the available servers that can be used when making 'multipleMixedSchemeAuth' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyReadOnlyInput(request:server:)`` to customize the server which is used. - public enum RequestBodyReadOnlyInput: Servers, ServerConvertible { +/// Use this type when making calls to ``AuthNewAPI/multipleMixedSchemeAuth(request:security:server:)`` to customize the server which is used. + public enum MultipleMixedSchemeAuth: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1792,7 +2034,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyReadOnlyInput.server1.server() + return try AuthNewServers.MultipleMixedSchemeAuth.server1.server() } func server() throws -> Server { @@ -1803,10 +2045,10 @@ public enum RequestBodiesServers { } } -/// Describes the available servers that can be used when making 'requestBodyReadOnlyUnion' requests. +/// Describes the available servers that can be used when making 'multipleOptionsWithMixedSchemesAuth' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyReadOnlyUnion(request:server:)`` to customize the server which is used. - public enum RequestBodyReadOnlyUnion: Servers, ServerConvertible { +/// Use this type when making calls to ``AuthNewAPI/multipleOptionsWithMixedSchemesAuth(request:security:server:)`` to customize the server which is used. + public enum MultipleOptionsWithMixedSchemesAuth: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1827,7 +2069,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyReadOnlyUnion.server1.server() + return try AuthNewServers.MultipleOptionsWithMixedSchemesAuth.server1.server() } func server() throws -> Server { @@ -1838,10 +2080,10 @@ public enum RequestBodiesServers { } } -/// Describes the available servers that can be used when making 'requestBodyReadWriteOnlyUnion' requests. +/// Describes the available servers that can be used when making 'multipleOptionsWithSimpleSchemesAuth' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyReadWriteOnlyUnion(request:server:)`` to customize the server which is used. - public enum RequestBodyReadWriteOnlyUnion: Servers, ServerConvertible { +/// Use this type when making calls to ``AuthNewAPI/multipleOptionsWithSimpleSchemesAuth(request:security:server:)`` to customize the server which is used. + public enum MultipleOptionsWithSimpleSchemesAuth: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1862,7 +2104,7 @@ public enum RequestBodiesServers { ] static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyReadWriteOnlyUnion.server1.server() + return try AuthNewServers.MultipleOptionsWithSimpleSchemesAuth.server1.server() } func server() throws -> Server { @@ -1873,10 +2115,10 @@ public enum RequestBodiesServers { } } -/// Describes the available servers that can be used when making 'requestBodyWriteOnly' requests. +/// Describes the available servers that can be used when making 'multipleSimpleOptionsAuth' requests. /// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyWriteOnly(request:server:)`` to customize the server which is used. - public enum RequestBodyWriteOnly: Servers, ServerConvertible { +/// Use this type when making calls to ``AuthNewAPI/multipleSimpleOptionsAuth(request:security:server:)`` to customize the server which is used. + public enum MultipleSimpleOptionsAuth: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -1892,375 +2134,61 @@ public enum RequestBodiesServers { /// "http://localhost:35456" /// ] /// ``` - public static let urlStrings = [ - "http://localhost:35456" - ] - - static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyWriteOnly.server1.server() - } - - func server() throws -> Server { - switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) - } - } - } - -/// Describes the available servers that can be used when making 'requestBodyWriteOnlyOutput' requests. -/// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyWriteOnlyOutput(request:server:)`` to customize the server which is used. - public enum RequestBodyWriteOnlyOutput: Servers, ServerConvertible { - /// Supported server value. - /// - /// Corresponds to `http://localhost:35456` - case server1 - - /// Defines the raw URL strings for each server option. - /// - /// > Note: You do not need to use these values directly. - /// - /// The available URL strings are defined as: - /// ```swift - /// public static let urlStrings = [ - /// "http://localhost:35456" - /// ] - /// ``` - public static let urlStrings = [ - "http://localhost:35456" - ] - - static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyWriteOnlyOutput.server1.server() - } - - func server() throws -> Server { - switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) - } - } - } - -/// Describes the available servers that can be used when making 'requestBodyWriteOnlyUnion' requests. -/// -/// Use this type when making calls to ``RequestBodiesAPI/requestBodyWriteOnlyUnion(request:server:)`` to customize the server which is used. - public enum RequestBodyWriteOnlyUnion: Servers, ServerConvertible { - /// Supported server value. - /// - /// Corresponds to `http://localhost:35456` - case server1 - - /// Defines the raw URL strings for each server option. - /// - /// > Note: You do not need to use these values directly. - /// - /// The available URL strings are defined as: - /// ```swift - /// public static let urlStrings = [ - /// "http://localhost:35456" - /// ] - /// ``` - public static let urlStrings = [ - "http://localhost:35456" - ] - - static func `default`() throws -> Server { - return try RequestBodiesServers.RequestBodyWriteOnlyUnion.server1.server() - } - - func server() throws -> Server { - switch self { - case .server1: - return try type(of: self).server(at: 0, substituting: nil) - } - } - } -} - -/// Endpoints for testing request bodies. -/// -/// ## Topics -/// -/// ### API calls -/// -/// - ``nullableObjectPost(request:)`` -/// - ``nullableRequiredEmptyObjectPost(request:)`` -/// - ``nullableRequiredPropertyPost(request:)`` -/// - ``nullableRequiredSharedObjectPost(request:)`` -/// - ``requestBodyPostApplicationJsonArray(request:server:)`` -/// - ``requestBodyPostApplicationJsonArrayCamelCase(request:server:)`` -/// - ``requestBodyPostApplicationJsonArrayObj(request:)`` -/// - ``requestBodyPostApplicationJsonArrayObjCamelCase(request:)`` -/// - ``requestBodyPostApplicationJsonArrayOfArray(request:server:)`` -/// - ``requestBodyPostApplicationJsonArrayOfArrayCamelCase(request:server:)`` -/// - ``requestBodyPostApplicationJsonArrayOfArrayOfPrimitive(request:server:)`` -/// - ``requestBodyPostApplicationJsonArrayOfMap(request:server:)`` -/// - ``requestBodyPostApplicationJsonArrayOfMapCamelCase(request:server:)`` -/// - ``requestBodyPostApplicationJsonArrayOfPrimitive(request:server:)`` -/// - ``requestBodyPostApplicationJsonDeep(request:)`` -/// - ``requestBodyPostApplicationJsonDeepCamelCase(request:)`` -/// - ``requestBodyPostApplicationJsonMap(request:server:)`` -/// - ``requestBodyPostApplicationJsonMapCamelCase(request:server:)`` -/// - ``requestBodyPostApplicationJsonMapObj(request:)`` -/// - ``requestBodyPostApplicationJsonMapObjCamelCase(request:)`` -/// - ``requestBodyPostApplicationJsonMapOfArray(request:server:)`` -/// - ``requestBodyPostApplicationJsonMapOfArrayCamelCase(request:server:)`` -/// - ``requestBodyPostApplicationJsonMapOfMap(request:server:)`` -/// - ``requestBodyPostApplicationJsonMapOfMapCamelCase(request:server:)`` -/// - ``requestBodyPostApplicationJsonMapOfMapOfPrimitive(request:server:)`` -/// - ``requestBodyPostApplicationJsonMapOfPrimitive(request:server:)`` -/// - ``requestBodyPostApplicationJsonMultipleJsonFiltered(request:)`` -/// - ``requestBodyPostApplicationJsonSimple(request:)`` -/// - ``requestBodyPostApplicationJsonSimpleCamelCase(request:)`` -/// - ``requestBodyPostComplexNumberTypes(request:)`` -/// - ``requestBodyPostDefaultsAndConsts(request:)`` -/// - ``requestBodyPostEmptyObject(request:)`` -/// - ``requestBodyPostFormDeep(request:)`` -/// - ``requestBodyPostFormMapPrimitive(request:)`` -/// - ``requestBodyPostFormSimple(request:)`` -/// - ``requestBodyPostJsonDataTypesArrayBigInt(request:)`` -/// - ``requestBodyPostJsonDataTypesArrayDate(request:)`` -/// - ``requestBodyPostJsonDataTypesArrayDecimalStr(request:)`` -/// - ``requestBodyPostJsonDataTypesBigInt(request:)`` -/// - ``requestBodyPostJsonDataTypesBigIntStr(request:)`` -/// - ``requestBodyPostJsonDataTypesBoolean(request:)`` -/// - ``requestBodyPostJsonDataTypesDate(request:)`` -/// - ``requestBodyPostJsonDataTypesDateTime(request:)`` -/// - ``requestBodyPostJsonDataTypesDecimal(request:)`` -/// - ``requestBodyPostJsonDataTypesDecimalStr(request:)`` -/// - ``requestBodyPostJsonDataTypesFloat32(request:)`` -/// - ``requestBodyPostJsonDataTypesInt32(request:)`` -/// - ``requestBodyPostJsonDataTypesInteger(request:)`` -/// - ``requestBodyPostJsonDataTypesMapBigIntStr(request:)`` -/// - ``requestBodyPostJsonDataTypesMapDateTime(request:)`` -/// - ``requestBodyPostJsonDataTypesMapDecimal(request:)`` -/// - ``requestBodyPostJsonDataTypesNumber(request:)`` -/// - ``requestBodyPostJsonDataTypesString(request:)`` -/// - ``requestBodyPostMultipleContentTypesComponentFiltered(request:)`` -/// - ``requestBodyPostMultipleContentTypesInlineFiltered(request:)`` -/// - ``requestBodyPostMultipleContentTypesSplitParamForm(request:)`` -/// - ``requestBodyPostMultipleContentTypesSplitParamJson(request:)`` -/// - ``requestBodyPostMultipleContentTypesSplitParamMultipart(request:)`` -/// - ``requestBodyPostMultipleContentTypesSplitForm(request:)`` -/// - ``requestBodyPostMultipleContentTypesSplitJson(request:)`` -/// - ``requestBodyPostMultipleContentTypesSplitMultipart(request:)`` -/// - ``requestBodyPostNotNullableNotRequiredStringBody(request:)`` -/// - ``requestBodyPostNullArray(request:)`` -/// - ``requestBodyPostNullDictionary(request:)`` -/// - ``requestBodyPostNullableNotRequiredStringBody(request:)`` -/// - ``requestBodyPostNullableRequiredStringBody(request:)`` -/// - ``requestBodyPutBytes(request:)`` -/// - ``requestBodyPutBytesWithParams(request:)`` -/// - ``requestBodyPutMultipartDeep(request:)`` -/// - ``requestBodyPutMultipartDifferentFileName(request:)`` -/// - ``requestBodyPutMultipartFile(request:)`` -/// - ``requestBodyPutMultipartSimple(request:)`` -/// - ``requestBodyPutString(request:)`` -/// - ``requestBodyPutStringWithParams(request:)`` -/// - ``requestBodyReadAndWrite(request:server:)`` -/// - ``requestBodyReadOnlyInput(request:server:)`` -/// - ``requestBodyReadOnlyUnion(request:server:)`` -/// - ``requestBodyReadWriteOnlyUnion(request:server:)`` -/// - ``requestBodyWriteOnly(request:server:)`` -/// - ``requestBodyWriteOnlyOutput(request:server:)`` -/// - ``requestBodyWriteOnlyUnion(request:server:)`` -/// -public protocol RequestBodiesAPI { - func nullableObjectPost(request: Shared.NullableObject) async throws -> Response - - func nullableRequiredEmptyObjectPost(request: Operations.NullableRequiredEmptyObjectPostRequestBody) async throws -> Response - - func nullableRequiredPropertyPost(request: Operations.NullableRequiredPropertyPostRequestBody) async throws -> Response - - func nullableRequiredSharedObjectPost(request: Operations.NullableRequiredSharedObjectPostRequestBody) async throws -> Response - - func requestBodyPostApplicationJsonArray(request: [Shared.SimpleObject], server: RequestBodiesServers.RequestBodyPostApplicationJsonArray?) async throws -> Response - - func requestBodyPostApplicationJsonArrayCamelCase(request: [Shared.SimpleObjectCamelCase], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayCamelCase?) async throws -> Response - - func requestBodyPostApplicationJsonArrayObj(request: [Shared.SimpleObject]) async throws -> Response - - func requestBodyPostApplicationJsonArrayObjCamelCase(request: [Shared.SimpleObjectCamelCase]) async throws -> Response - - func requestBodyPostApplicationJsonArrayOfArray(request: [[Shared.SimpleObject]], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArray?) async throws -> Response - - func requestBodyPostApplicationJsonArrayOfArrayCamelCase(request: [[Shared.SimpleObjectCamelCase]], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArrayCamelCase?) async throws -> Response - - func requestBodyPostApplicationJsonArrayOfArrayOfPrimitive(request: [[String]], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfArrayOfPrimitive?) async throws -> Response - - func requestBodyPostApplicationJsonArrayOfMap(request: [[String: Shared.SimpleObject]], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfMap?) async throws -> Response - - func requestBodyPostApplicationJsonArrayOfMapCamelCase(request: [[String: Shared.SimpleObjectCamelCase]], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfMapCamelCase?) async throws -> Response - - func requestBodyPostApplicationJsonArrayOfPrimitive(request: [String], server: RequestBodiesServers.RequestBodyPostApplicationJsonArrayOfPrimitive?) async throws -> Response - - func requestBodyPostApplicationJsonDeep(request: Shared.DeepObject) async throws -> Response - - func requestBodyPostApplicationJsonDeepCamelCase(request: Shared.DeepObjectCamelCase) async throws -> Response - - func requestBodyPostApplicationJsonMap(request: [String: Shared.SimpleObject], server: RequestBodiesServers.RequestBodyPostApplicationJsonMap?) async throws -> Response - - func requestBodyPostApplicationJsonMapCamelCase(request: [String: Shared.SimpleObjectCamelCase], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapCamelCase?) async throws -> Response - - func requestBodyPostApplicationJsonMapObj(request: [String: Shared.SimpleObject]) async throws -> Response - - func requestBodyPostApplicationJsonMapObjCamelCase(request: [String: Shared.SimpleObjectCamelCase]) async throws -> Response - - func requestBodyPostApplicationJsonMapOfArray(request: [String: [Shared.SimpleObject]], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfArray?) async throws -> Response - - func requestBodyPostApplicationJsonMapOfArrayCamelCase(request: [String: [Shared.SimpleObjectCamelCase]], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfArrayCamelCase?) async throws -> Response - - func requestBodyPostApplicationJsonMapOfMap(request: [String: [String: Shared.SimpleObject]], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMap?) async throws -> Response - - func requestBodyPostApplicationJsonMapOfMapCamelCase(request: [String: [String: Shared.SimpleObjectCamelCase]], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMapCamelCase?) async throws -> Response - - func requestBodyPostApplicationJsonMapOfMapOfPrimitive(request: [String: [String: String]], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfMapOfPrimitive?) async throws -> Response - - func requestBodyPostApplicationJsonMapOfPrimitive(request: [String: String], server: RequestBodiesServers.RequestBodyPostApplicationJsonMapOfPrimitive?) async throws -> Response - - func requestBodyPostApplicationJsonMultipleJsonFiltered(request: Shared.SimpleObject) async throws -> Response - - func requestBodyPostApplicationJsonSimple(request: Shared.SimpleObject) async throws -> Response - - func requestBodyPostApplicationJsonSimpleCamelCase(request: Shared.SimpleObjectCamelCase) async throws -> Response - - func requestBodyPostComplexNumberTypes(request: Operations.RequestBodyPostComplexNumberTypesRequest) async throws -> Response - - func requestBodyPostDefaultsAndConsts(request: Shared.DefaultsAndConsts) async throws -> Response - - func requestBodyPostEmptyObject(request: Operations.RequestBodyPostEmptyObjectRequestBody) async throws -> Response - - func requestBodyPostFormDeep(request: Shared.DeepObject) async throws -> Response - - func requestBodyPostFormMapPrimitive(request: [String: String]) async throws -> Response - - func requestBodyPostFormSimple(request: Shared.SimpleObject) async throws -> Response - - func requestBodyPostJsonDataTypesArrayBigInt(request: [Int]) async throws -> Response - - func requestBodyPostJsonDataTypesArrayDate(request: [Date]) async throws -> Response - - func requestBodyPostJsonDataTypesArrayDecimalStr(request: [String]) async throws -> Response - - func requestBodyPostJsonDataTypesBigInt(request: Int) async throws -> Response - - func requestBodyPostJsonDataTypesBigIntStr(request: String) async throws -> Response - - func requestBodyPostJsonDataTypesBoolean(request: Bool) async throws -> Response - - func requestBodyPostJsonDataTypesDate(request: Date) async throws -> Response - - func requestBodyPostJsonDataTypesDateTime(request: Date) async throws -> Response - - func requestBodyPostJsonDataTypesDecimal(request: Double) async throws -> Response - - func requestBodyPostJsonDataTypesDecimalStr(request: String) async throws -> Response - - func requestBodyPostJsonDataTypesFloat32(request: Double) async throws -> Response - - func requestBodyPostJsonDataTypesInt32(request: Int) async throws -> Response - - func requestBodyPostJsonDataTypesInteger(request: Int) async throws -> Response - - func requestBodyPostJsonDataTypesMapBigIntStr(request: [String: String]) async throws -> Response - - func requestBodyPostJsonDataTypesMapDateTime(request: [String: Date]) async throws -> Response - - func requestBodyPostJsonDataTypesMapDecimal(request: [String: Double]) async throws -> Response - - func requestBodyPostJsonDataTypesNumber(request: Double) async throws -> Response - - func requestBodyPostJsonDataTypesString(request: String) async throws -> Response - - func requestBodyPostMultipleContentTypesComponentFiltered(request: Shared.SimpleObject) async throws -> Response - - func requestBodyPostMultipleContentTypesInlineFiltered(request: Operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON) async throws -> Response - - func requestBodyPostMultipleContentTypesSplitParamForm(request: Operations.RequestBodyPostMultipleContentTypesSplitParamFormRequest) async throws -> Response - - func requestBodyPostMultipleContentTypesSplitParamJson(request: Operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequest) async throws -> Response - - func requestBodyPostMultipleContentTypesSplitParamMultipart(request: Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequest) async throws -> Response - - func requestBodyPostMultipleContentTypesSplitForm(request: Operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded) async throws -> Response - - func requestBodyPostMultipleContentTypesSplitJson(request: Operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON) async throws -> Response - - func requestBodyPostMultipleContentTypesSplitMultipart(request: Operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData) async throws -> Response - - func requestBodyPostNotNullableNotRequiredStringBody(request: String) async throws -> Response - - func requestBodyPostNullArray(request: [String]) async throws -> Response - - func requestBodyPostNullDictionary(request: [String: String]) async throws -> Response - - func requestBodyPostNullableNotRequiredStringBody(request: String) async throws -> Response - - func requestBodyPostNullableRequiredStringBody(request: String) async throws -> Response - - func requestBodyPutBytes(request: Data) async throws -> Response - - func requestBodyPutBytesWithParams(request: Operations.RequestBodyPutBytesWithParamsRequest) async throws -> Response - - func requestBodyPutMultipartDeep(request: Shared.DeepObject) async throws -> Response - - func requestBodyPutMultipartDifferentFileName(request: Operations.RequestBodyPutMultipartDifferentFileNameRequestBody) async throws -> Response - - func requestBodyPutMultipartFile(request: Operations.RequestBodyPutMultipartFileRequestBody) async throws -> Response - - func requestBodyPutMultipartSimple(request: Shared.SimpleObject) async throws -> Response - - func requestBodyPutString(request: String) async throws -> Response - - func requestBodyPutStringWithParams(request: Operations.RequestBodyPutStringWithParamsRequest) async throws -> Response - - func requestBodyReadAndWrite(request: Shared.ReadWriteObjectInput, server: RequestBodiesServers.RequestBodyReadAndWrite?) async throws -> Response - - func requestBodyReadOnlyInput(request: Shared.ReadOnlyObjectInput, server: RequestBodiesServers.RequestBodyReadOnlyInput?) async throws -> Response - - func requestBodyReadOnlyUnion(request: Shared.WeaklyTypedOneOfReadOnlyObjectInput, server: RequestBodiesServers.RequestBodyReadOnlyUnion?) async throws -> Response - - func requestBodyReadWriteOnlyUnion(request: Shared.WeaklyTypedOneOfReadWriteObjectInput, server: RequestBodiesServers.RequestBodyReadWriteOnlyUnion?) async throws -> Response - - func requestBodyWriteOnly(request: Shared.WriteOnlyObject, server: RequestBodiesServers.RequestBodyWriteOnly?) async throws -> Response - - func requestBodyWriteOnlyOutput(request: Shared.WriteOnlyObject, server: RequestBodiesServers.RequestBodyWriteOnlyOutput?) async throws -> Response - - func requestBodyWriteOnlyUnion(request: Shared.WeaklyTypedOneOfWriteOnlyObject, server: RequestBodiesServers.RequestBodyWriteOnlyUnion?) async throws -> Response -} - -// MARK: - ResourceAPI -/// ## Topics -/// -/// ### API calls -/// -/// - ``createFile(request:)`` -/// - ``createResource(request:)`` -/// - ``deleteResource(request:)`` -/// - ``getResource(request:)`` -/// - ``updateResource(request:)`` -/// -public protocol ResourceAPI { - func createFile(request: Operations.CreateFileRequestBody) async throws -> Response + public static let urlStrings = [ + "http://localhost:35456" + ] - func createResource(request: Shared.ExampleResource) async throws -> Response + static func `default`() throws -> Server { + return try AuthNewServers.MultipleSimpleOptionsAuth.server1.server() + } - func deleteResource(request: Operations.DeleteResourceRequest) async throws -> Response + func server() throws -> Server { + switch self { + case .server1: + return try type(of: self).server(at: 0, substituting: nil) + } + } + } - func getResource(request: Operations.GetResourceRequest) async throws -> Response +/// Describes the available servers that can be used when making 'multipleSimpleSchemeAuth' requests. +/// +/// Use this type when making calls to ``AuthNewAPI/multipleSimpleSchemeAuth(request:security:server:)`` to customize the server which is used. + public enum MultipleSimpleSchemeAuth: Servers, ServerConvertible { + /// Supported server value. + /// + /// Corresponds to `http://localhost:35456` + case server1 - func updateResource(request: Operations.UpdateResourceRequest) async throws -> Response -} + /// Defines the raw URL strings for each server option. + /// + /// > Note: You do not need to use these values directly. + /// + /// The available URL strings are defined as: + /// ```swift + /// public static let urlStrings = [ + /// "http://localhost:35456" + /// ] + /// ``` + public static let urlStrings = [ + "http://localhost:35456" + ] -// MARK: - ResponseBodiesAPI -public enum ResponseBodiesServers { + static func `default`() throws -> Server { + return try AuthNewServers.MultipleSimpleSchemeAuth.server1.server() + } -/// Describes the available servers that can be used when making 'responseBodyOptionalGet' requests. + func server() throws -> Server { + switch self { + case .server1: + return try type(of: self).server(at: 0, substituting: nil) + } + } + } + +/// Describes the available servers that can be used when making 'oauth2AuthNew' requests. /// -/// Use this type when making calls to ``ResponseBodiesAPI/responseBodyOptionalGet(server:)`` to customize the server which is used. - public enum ResponseBodyOptionalGet: Servers, ServerConvertible { +/// Use this type when making calls to ``AuthNewAPI/oauth2AuthNew(request:security:server:)`` to customize the server which is used. + public enum Oauth2AuthNew: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -2281,7 +2209,7 @@ public enum ResponseBodiesServers { ] static func `default`() throws -> Server { - return try ResponseBodiesServers.ResponseBodyOptionalGet.server1.server() + return try AuthNewServers.Oauth2AuthNew.server1.server() } func server() throws -> Server { @@ -2292,10 +2220,10 @@ public enum ResponseBodiesServers { } } -/// Describes the available servers that can be used when making 'responseBodyReadOnly' requests. +/// Describes the available servers that can be used when making 'openIdConnectAuthNew' requests. /// -/// Use this type when making calls to ``ResponseBodiesAPI/responseBodyReadOnly(server:)`` to customize the server which is used. - public enum ResponseBodyReadOnly: Servers, ServerConvertible { +/// Use this type when making calls to ``AuthNewAPI/openIdConnectAuthNew(request:security:server:)`` to customize the server which is used. + public enum OpenIdConnectAuthNew: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -2316,7 +2244,7 @@ public enum ResponseBodiesServers { ] static func `default`() throws -> Server { - return try ResponseBodiesServers.ResponseBodyReadOnly.server1.server() + return try AuthNewServers.OpenIdConnectAuthNew.server1.server() } func server() throws -> Server { @@ -2328,55 +2256,189 @@ public enum ResponseBodiesServers { } } -/// Endpoints for testing response bodies. +/// Endpoints for testing authentication. /// /// ## Topics /// /// ### API calls /// -/// - ``responseBodyAdditionalPropertiesComplexNumbersPost(request:)`` -/// - ``responseBodyAdditionalPropertiesDatePost(request:)`` -/// - ``responseBodyAdditionalPropertiesObjectPost(request:)`` -/// - ``responseBodyAdditionalPropertiesPost(request:)`` -/// - ``responseBodyBytesGet()`` -/// - ``responseBodyEmptyWithHeaders(request:)`` -/// - ``responseBodyOptionalGet(server:)`` -/// - ``responseBodyReadOnly(server:)`` -/// - ``responseBodyStringGet()`` -/// - ``responseBodyXmlGet()`` -/// - ``responseBodyZeroValueComplexTypePtrsPost(request:)`` +/// - ``apiKeyAuthGlobalNew(request:server:)`` +/// - ``authGlobal(request:server:)`` +/// - ``basicAuthNew(request:security:server:)`` +/// - ``multipleMixedOptionsAuth(request:security:server:)`` +/// - ``multipleMixedSchemeAuth(request:security:server:)`` +/// - ``multipleOptionsWithMixedSchemesAuth(request:security:server:)`` +/// - ``multipleOptionsWithSimpleSchemesAuth(request:security:server:)`` +/// - ``multipleSimpleOptionsAuth(request:security:server:)`` +/// - ``multipleSimpleSchemeAuth(request:security:server:)`` +/// - ``oauth2AuthNew(request:security:server:)`` +/// - ``openIdConnectAuthNew(request:security:server:)`` /// -public protocol ResponseBodiesAPI { - func responseBodyAdditionalPropertiesComplexNumbersPost(request: [String: String]) async throws -> Response +public protocol AuthNewAPI { + func apiKeyAuthGlobalNew(request: Shared.AuthServiceRequestBody, server: AuthNewServers.ApiKeyAuthGlobalNew?) async throws -> Response - func responseBodyAdditionalPropertiesDatePost(request: [String: Date]) async throws -> Response + func authGlobal(request: Shared.AuthServiceRequestBody, server: AuthNewServers.AuthGlobal?) async throws -> Response - func responseBodyAdditionalPropertiesObjectPost(request: [String: Shared.SimpleObject]) async throws -> Response + func basicAuthNew(request: Shared.AuthServiceRequestBody, security: Operations.BasicAuthNewSecurity, server: AuthNewServers.BasicAuthNew?) async throws -> Response - func responseBodyAdditionalPropertiesPost(request: [String: String]) async throws -> Response + func multipleMixedOptionsAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleMixedOptionsAuthSecurity, server: AuthNewServers.MultipleMixedOptionsAuth?) async throws -> Response - func responseBodyBytesGet() async throws -> Response + func multipleMixedSchemeAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleMixedSchemeAuthSecurity, server: AuthNewServers.MultipleMixedSchemeAuth?) async throws -> Response - func responseBodyEmptyWithHeaders(request: Operations.ResponseBodyEmptyWithHeadersRequest) async throws -> ResponseWithHeaders + func multipleOptionsWithMixedSchemesAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleOptionsWithMixedSchemesAuthSecurity, server: AuthNewServers.MultipleOptionsWithMixedSchemesAuth?) async throws -> Response - func responseBodyOptionalGet(server: ResponseBodiesServers.ResponseBodyOptionalGet?) async throws -> Response + func multipleOptionsWithSimpleSchemesAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleOptionsWithSimpleSchemesAuthSecurity, server: AuthNewServers.MultipleOptionsWithSimpleSchemesAuth?) async throws -> Response - func responseBodyReadOnly(server: ResponseBodiesServers.ResponseBodyReadOnly?) async throws -> Response + func multipleSimpleOptionsAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleSimpleOptionsAuthSecurity, server: AuthNewServers.MultipleSimpleOptionsAuth?) async throws -> Response - func responseBodyStringGet() async throws -> Response + func multipleSimpleSchemeAuth(request: Shared.AuthServiceRequestBody, security: Operations.MultipleSimpleSchemeAuthSecurity, server: AuthNewServers.MultipleSimpleSchemeAuth?) async throws -> Response - func responseBodyXmlGet() async throws -> Response + func oauth2AuthNew(request: Shared.AuthServiceRequestBody, security: Operations.Oauth2AuthNewSecurity, server: AuthNewServers.Oauth2AuthNew?) async throws -> Response - func responseBodyZeroValueComplexTypePtrsPost(request: Shared.ObjWithZeroValueComplexTypePtrs) async throws -> Response + func openIdConnectAuthNew(request: Shared.AuthServiceRequestBody, security: Operations.OpenIdConnectAuthNewSecurity, server: AuthNewServers.OpenIdConnectAuthNew?) async throws -> Response } -// MARK: - RetriesAPI -public enum RetriesServers { +// MARK: - AuthAPI -/// Describes the available servers that can be used when making 'retriesGet' requests. +/// Endpoints for testing authentication. +/// +/// ## Topics +/// +/// ### API calls +/// +/// - ``apiKeyAuth(security:)`` +/// - ``apiKeyAuthGlobal()`` +/// - ``basicAuth(request:security:)`` +/// - ``bearerAuth(security:)`` +/// - ``globalBearerAuth()`` +/// - ``oauth2Auth(security:)`` +/// - ``oauth2Override(request:security:)`` +/// - ``openIdConnectAuth(security:)`` +/// +public protocol AuthAPI { + func apiKeyAuth(security: Operations.ApiKeyAuthSecurity) async throws -> Response + + func apiKeyAuthGlobal() async throws -> Response + + func basicAuth(request: Operations.BasicAuthRequest, security: Operations.BasicAuthSecurity) async throws -> Response + + func bearerAuth(security: Operations.BearerAuthSecurity) async throws -> Response + + func globalBearerAuth() async throws -> Response + + func oauth2Auth(security: Operations.Oauth2AuthSecurity) async throws -> Response + + func oauth2Override(request: Operations.Oauth2OverrideRequest, security: Operations.Oauth2OverrideSecurity) async throws -> Response + + func openIdConnectAuth(security: Operations.OpenIdConnectAuthSecurity) async throws -> Response +} + +// MARK: - DocumentationAPI + +/// Testing for documentation extensions and tooling. +/// +/// ## Topics +/// +/// ### API calls +/// +/// - ``getDocumentationPerLanguage(request:)`` +/// +public protocol DocumentationAPI { + /// Gets documentation for some language, I guess. + /// + /// - Parameter request: A ``Operations/GetDocumentationPerLanguageRequest`` object describing the input to the API operation + /// - Returns: A ``Operations/GetDocumentationPerLanguageResponse`` object describing the result of the API operation + /// - Throws: An error of type ``OpenAPIError`` + func getDocumentationPerLanguage(request: Operations.GetDocumentationPerLanguageRequest) async throws -> Response +} + +// MARK: - ResourceAPI +/// ## Topics +/// +/// ### API calls +/// +/// - ``createFile(request:)`` +/// - ``createResource(request:)`` +/// - ``deleteResource(request:)`` +/// - ``getResource(request:)`` +/// - ``updateResource(request:)`` +/// +public protocol ResourceAPI { + func createFile(request: Operations.CreateFileRequestBody) async throws -> Response + + func createResource(request: Shared.ExampleResource) async throws -> Response + + func deleteResource(request: Operations.DeleteResourceRequest) async throws -> Response + + func getResource(request: Operations.GetResourceRequest) async throws -> Response + + func updateResource(request: Operations.UpdateResourceRequest) async throws -> Response +} + +// MARK: - FirstAPI +/// ## Topics +/// +/// ### API calls +/// +/// - ``groupFirstGet()`` +/// +public protocol FirstAPI { + func groupFirstGet() async throws -> Response +} + +// MARK: - SecondAPI +/// ## Topics +/// +/// ### API calls +/// +/// - ``groupSecondGet()`` +/// +public protocol SecondAPI { + func groupSecondGet() async throws -> Response +} + +// MARK: - PaginationAPI +public enum PaginationServers { + +/// Describes the available servers that can be used when making 'paginationCursorBody' requests. +/// +/// Use this type when making calls to ``PaginationAPI/paginationCursorBody(request:server:)`` to customize the server which is used. + public enum PaginationCursorBody: Servers, ServerConvertible { + /// Supported server value. + /// + /// Corresponds to `http://localhost:35456` + case server1 + + /// Defines the raw URL strings for each server option. + /// + /// > Note: You do not need to use these values directly. + /// + /// The available URL strings are defined as: + /// ```swift + /// public static let urlStrings = [ + /// "http://localhost:35456" + /// ] + /// ``` + public static let urlStrings = [ + "http://localhost:35456" + ] + + static func `default`() throws -> Server { + return try PaginationServers.PaginationCursorBody.server1.server() + } + + func server() throws -> Server { + switch self { + case .server1: + return try type(of: self).server(at: 0, substituting: nil) + } + } + } + +/// Describes the available servers that can be used when making 'paginationCursorParams' requests. /// -/// Use this type when making calls to ``RetriesAPI/retriesGet(request:server:)`` to customize the server which is used. - public enum RetriesGet: Servers, ServerConvertible { +/// Use this type when making calls to ``PaginationAPI/paginationCursorParams(request:server:)`` to customize the server which is used. + public enum PaginationCursorParams: Servers, ServerConvertible { /// Supported server value. /// /// Corresponds to `http://localhost:35456` @@ -2397,7 +2459,7 @@ public enum RetriesServers { ] static func `default`() throws -> Server { - return try RetriesServers.RetriesGet.server1.server() + return try PaginationServers.PaginationCursorParams.server1.server() } func server() throws -> Server { @@ -2407,46 +2469,15 @@ public enum RetriesServers { } } } -} - -/// Endpoints for testing retries. -/// -/// ## Topics -/// -/// ### API calls -/// -/// - ``retriesGet(request:server:)`` -/// -public protocol RetriesAPI { - func retriesGet(request: Operations.RetriesGetRequest, server: RetriesServers.RetriesGet?) async throws -> Response -} - -// MARK: - SecondAPI -/// ## Topics -/// -/// ### API calls -/// -/// - ``groupSecondGet()`` -/// -public protocol SecondAPI { - func groupSecondGet() async throws -> Response -} - -// MARK: - ServersAPI -public enum ServersServers { -/// Describes the available servers that can be used when making 'selectServerWithID' requests. +/// Describes the available servers that can be used when making 'paginationLimitOffsetOffsetBody' requests. /// -/// Use this type when making calls to ``ServersAPI/selectServerWithID(server:)`` to customize the server which is used. - public enum SelectServerWithID: Servers, ServerConvertible { - /// Supported server value. - /// - /// Corresponds to `http://localhost:35123` - case valid +/// Use this type when making calls to ``PaginationAPI/paginationLimitOffsetOffsetBody(request:server:)`` to customize the server which is used. + public enum PaginationLimitOffsetOffsetBody: Servers, ServerConvertible { /// Supported server value. /// - /// Corresponds to `http://broken` - case broken + /// Corresponds to `http://localhost:35456` + case server1 /// Defines the raw URL strings for each server option. /// @@ -2455,37 +2486,33 @@ public enum ServersServers { /// The available URL strings are defined as: /// ```swift /// public static let urlStrings = [ - /// "http://localhost:35123", - /// "http://broken" + /// "http://localhost:35456" /// ] /// ``` public static let urlStrings = [ - "http://localhost:35123", - "http://broken" + "http://localhost:35456" ] static func `default`() throws -> Server { - return try ServersServers.SelectServerWithID.valid.server() + return try PaginationServers.PaginationLimitOffsetOffsetBody.server1.server() } func server() throws -> Server { switch self { - case .valid: + case .server1: return try type(of: self).server(at: 0, substituting: nil) - case .broken: - return try type(of: self).server(at: 1, substituting: nil) } } } -/// Describes the available servers that can be used when making 'serverWithProtocolTemplate' requests. +/// Describes the available servers that can be used when making 'paginationLimitOffsetOffsetParams' requests. /// -/// Use this type when making calls to ``ServersAPI/serverWithProtocolTemplate(server:)`` to customize the server which is used. - public enum ServerWithProtocolTemplate: Servers, ServerConvertible { - /// Supported server value with substituted variables +/// Use this type when making calls to ``PaginationAPI/paginationLimitOffsetOffsetParams(request:server:)`` to customize the server which is used. + public enum PaginationLimitOffsetOffsetParams: Servers, ServerConvertible { + /// Supported server value. /// - /// Corresponds to `{protocol}://{hostname}:{port}` - case main(hostname: String = "localhost", port: String = "35123", `protocol`: String = "http") + /// Corresponds to `http://localhost:35456` + case server1 /// Defines the raw URL strings for each server option. /// @@ -2494,33 +2521,33 @@ public enum ServersServers { /// The available URL strings are defined as: /// ```swift /// public static let urlStrings = [ - /// "{protocol}://{hostname}:{port}" + /// "http://localhost:35456" /// ] /// ``` public static let urlStrings = [ - "{protocol}://{hostname}:{port}" + "http://localhost:35456" ] static func `default`() throws -> Server { - return try ServersServers.ServerWithProtocolTemplate.main().server() + return try PaginationServers.PaginationLimitOffsetOffsetParams.server1.server() } func server() throws -> Server { switch self { - case .main(let hostname, let port, let `protocol`): - return try type(of: self).server(at: 0, substituting: ["hostname": hostname, "port": port, "protocol": `protocol`]) + case .server1: + return try type(of: self).server(at: 0, substituting: nil) } } } -/// Describes the available servers that can be used when making 'serverWithTemplates' requests. +/// Describes the available servers that can be used when making 'paginationLimitOffsetPageBody' requests. /// -/// Use this type when making calls to ``ServersAPI/serverWithTemplates(server:)`` to customize the server which is used. - public enum ServerWithTemplates: Servers, ServerConvertible { - /// Supported server value with substituted variables +/// Use this type when making calls to ``PaginationAPI/paginationLimitOffsetPageBody(request:server:)`` to customize the server which is used. + public enum PaginationLimitOffsetPageBody: Servers, ServerConvertible { + /// Supported server value. /// - /// Corresponds to `http://{hostname}:{port}` - case server1(hostname: String = "localhost", port: String = "35123") + /// Corresponds to `http://localhost:35456` + case server1 /// Defines the raw URL strings for each server option. /// @@ -2529,33 +2556,33 @@ public enum ServersServers { /// The available URL strings are defined as: /// ```swift /// public static let urlStrings = [ - /// "http://{hostname}:{port}" + /// "http://localhost:35456" /// ] /// ``` public static let urlStrings = [ - "http://{hostname}:{port}" + "http://localhost:35456" ] static func `default`() throws -> Server { - return try ServersServers.ServerWithTemplates.server1().server() + return try PaginationServers.PaginationLimitOffsetPageBody.server1.server() } func server() throws -> Server { switch self { - case .server1(let hostname, let port): - return try type(of: self).server(at: 0, substituting: ["hostname": hostname, "port": port]) + case .server1: + return try type(of: self).server(at: 0, substituting: nil) } } } -/// Describes the available servers that can be used when making 'serversByIDWithTemplates' requests. +/// Describes the available servers that can be used when making 'paginationLimitOffsetPageParams' requests. /// -/// Use this type when making calls to ``ServersAPI/serversByIDWithTemplates(server:)`` to customize the server which is used. - public enum ServersByIDWithTemplates: Servers, ServerConvertible { - /// Supported server value with substituted variables +/// Use this type when making calls to ``PaginationAPI/paginationLimitOffsetPageParams(request:server:)`` to customize the server which is used. + public enum PaginationLimitOffsetPageParams: Servers, ServerConvertible { + /// Supported server value. /// - /// Corresponds to `http://{hostname}:{port}` - case main(hostname: String = "localhost", port: String = "35123") + /// Corresponds to `http://localhost:35456` + case server1 /// Defines the raw URL strings for each server option. /// @@ -2564,127 +2591,100 @@ public enum ServersServers { /// The available URL strings are defined as: /// ```swift /// public static let urlStrings = [ - /// "http://{hostname}:{port}" + /// "http://localhost:35456" /// ] /// ``` public static let urlStrings = [ - "http://{hostname}:{port}" + "http://localhost:35456" ] static func `default`() throws -> Server { - return try ServersServers.ServersByIDWithTemplates.main().server() + return try PaginationServers.PaginationLimitOffsetPageParams.server1.server() } func server() throws -> Server { switch self { - case .main(let hostname, let port): - return try type(of: self).server(at: 0, substituting: ["hostname": hostname, "port": port]) + case .server1: + return try type(of: self).server(at: 0, substituting: nil) } } } } -/// Endpoints for testing servers. +/// Endpoints for testing the pagination extension /// /// ## Topics /// /// ### API calls /// -/// - ``selectGlobalServer()`` -/// - ``selectServerWithID(server:)`` -/// - ``serverWithProtocolTemplate(server:)`` -/// - ``serverWithTemplates(server:)`` -/// - ``serverWithTemplatesGlobal()`` -/// - ``serversByIDWithTemplates(server:)`` +/// - ``paginationCursorBody(request:server:)`` +/// - ``paginationCursorParams(request:server:)`` +/// - ``paginationLimitOffsetOffsetBody(request:server:)`` +/// - ``paginationLimitOffsetOffsetParams(request:server:)`` +/// - ``paginationLimitOffsetPageBody(request:server:)`` +/// - ``paginationLimitOffsetPageParams(request:server:)`` /// -public protocol ServersAPI { - func selectGlobalServer() async throws -> ResponseWithHeaders +public protocol PaginationAPI { + func paginationCursorBody(request: Operations.PaginationCursorBodyRequestBody, server: PaginationServers.PaginationCursorBody?) async throws -> Response - /// Select a server by ID. - /// - /// - Parameter server: An optional server override to use for this operation - /// - Returns: A ``Operations/SelectServerWithIDResponse`` object describing the result of the API operation - /// - Throws: An error of type ``OpenAPIError`` - func selectServerWithID(server: ServersServers.SelectServerWithID?) async throws -> Response + func paginationCursorParams(request: Operations.PaginationCursorParamsRequest, server: PaginationServers.PaginationCursorParams?) async throws -> Response - func serverWithProtocolTemplate(server: ServersServers.ServerWithProtocolTemplate?) async throws -> Response + func paginationLimitOffsetOffsetBody(request: Shared.LimitOffsetConfig, server: PaginationServers.PaginationLimitOffsetOffsetBody?) async throws -> Response - func serverWithTemplates(server: ServersServers.ServerWithTemplates?) async throws -> Response + func paginationLimitOffsetOffsetParams(request: Operations.PaginationLimitOffsetOffsetParamsRequest, server: PaginationServers.PaginationLimitOffsetOffsetParams?) async throws -> Response - func serverWithTemplatesGlobal() async throws -> Response + func paginationLimitOffsetPageBody(request: Shared.LimitOffsetConfig, server: PaginationServers.PaginationLimitOffsetPageBody?) async throws -> Response - func serversByIDWithTemplates(server: ServersServers.ServersByIDWithTemplates?) async throws -> Response + func paginationLimitOffsetPageParams(request: Operations.PaginationLimitOffsetPageParamsRequest, server: PaginationServers.PaginationLimitOffsetPageParams?) async throws -> Response } -// MARK: - TelemetryAPI +// MARK: - RetriesAPI +public enum RetriesServers { -/// Endpoints for testing telemetry. -/// -/// ## Topics -/// -/// ### API calls -/// -/// - ``telemetrySpeakeasyUserAgentGet(request:)`` -/// - ``telemetryUserAgentGet()`` +/// Describes the available servers that can be used when making 'retriesGet' requests. /// -public protocol TelemetryAPI { - func telemetrySpeakeasyUserAgentGet(request: Operations.TelemetrySpeakeasyUserAgentGetRequest) async throws -> Response +/// Use this type when making calls to ``RetriesAPI/retriesGet(request:server:)`` to customize the server which is used. + public enum RetriesGet: Servers, ServerConvertible { + /// Supported server value. + /// + /// Corresponds to `http://localhost:35456` + case server1 - func telemetryUserAgentGet() async throws -> Response -} + /// Defines the raw URL strings for each server option. + /// + /// > Note: You do not need to use these values directly. + /// + /// The available URL strings are defined as: + /// ```swift + /// public static let urlStrings = [ + /// "http://localhost:35456" + /// ] + /// ``` + public static let urlStrings = [ + "http://localhost:35456" + ] -// MARK: - UnionsAPI + static func `default`() throws -> Server { + return try RetriesServers.RetriesGet.server1.server() + } -/// Endpoints for testing union types. + func server() throws -> Server { + switch self { + case .server1: + return try type(of: self).server(at: 0, substituting: nil) + } + } + } +} + +/// Endpoints for testing retries. /// /// ## Topics /// /// ### API calls /// -/// - ``flattenedTypedObjectPost(request:)`` -/// - ``mixedTypeOneOfPost(request:)`` -/// - ``nullableOneOfRefInObjectPost(request:)`` -/// - ``nullableOneOfSchemaPost(request:)`` -/// - ``nullableOneOfTypeInObjectPost(request:)`` -/// - ``nullableTypedObjectPost(request:)`` -/// - ``primitiveTypeOneOfPost(request:)`` -/// - ``stronglyTypedOneOfPost(request:)`` -/// - ``typedObjectNullableOneOfPost(request:)`` -/// - ``typedObjectOneOfPost(request:)`` -/// - ``unionBigIntDecimal(request:)`` -/// - ``unionDateNull(request:)`` -/// - ``unionDateTimeBigInt(request:)`` -/// - ``unionDateTimeNull(request:)`` -/// - ``weaklyTypedOneOfPost(request:)`` +/// - ``retriesGet(request:server:)`` /// -public protocol UnionsAPI { - func flattenedTypedObjectPost(request: Shared.FlattenedTypedObject1) async throws -> Response - - func mixedTypeOneOfPost(request: Operations.MixedTypeOneOfPostRequestBody) async throws -> Response - - func nullableOneOfRefInObjectPost(request: Shared.NullableOneOfRefInObject) async throws -> Response - - func nullableOneOfSchemaPost(request: Operations.NullableOneOfSchemaPostRequestBody) async throws -> Response - - func nullableOneOfTypeInObjectPost(request: Shared.NullableOneOfTypeInObject) async throws -> Response - - func nullableTypedObjectPost(request: Shared.TypedObject1) async throws -> Response - - func primitiveTypeOneOfPost(request: Operations.PrimitiveTypeOneOfPostRequestBody) async throws -> Response - - func stronglyTypedOneOfPost(request: Shared.StronglyTypedOneOfObject) async throws -> Response - - func typedObjectNullableOneOfPost(request: Shared.TypedObjectNullableOneOf) async throws -> Response - - func typedObjectOneOfPost(request: Shared.TypedObjectOneOf) async throws -> Response - - func unionBigIntDecimal(request: Operations.UnionBigIntDecimalRequestBody) async throws -> Response - - func unionDateNull(request: Date) async throws -> Response - - func unionDateTimeBigInt(request: Operations.UnionDateTimeBigIntRequestBody) async throws -> Response - - func unionDateTimeNull(request: Date) async throws -> Response - - func weaklyTypedOneOfPost(request: Shared.WeaklyTypedOneOfObject) async throws -> Response +public protocol RetriesAPI { + func retriesGet(request: Operations.RetriesGetRequest, server: RetriesServers.RetriesGet?) async throws -> Response } diff --git a/swift-client-sdk/Sources/OpenAPI/internal/api/Client+OpenAPI.swift b/swift-client-sdk/Sources/OpenAPI/internal/api/Client+OpenAPI.swift index 4c6352a88..cea069432 100755 --- a/swift-client-sdk/Sources/OpenAPI/internal/api/Client+OpenAPI.swift +++ b/swift-client-sdk/Sources/OpenAPI/internal/api/Client+OpenAPI.swift @@ -25,38 +25,30 @@ extension Client: OpenAPI { // MARK: - Scoped API operations - public var auth: AuthAPI { - return _AuthAPI(client: self) - } - - public var authNew: AuthNewAPI { - return _AuthNewAPI(client: self) - } - - public var documentation: DocumentationAPI { - return _DocumentationAPI(client: self) + public var generation: GenerationAPI { + return _GenerationAPI(client: self) } public var errors: ErrorsAPI { return _ErrorsAPI(client: self) } - public var first: FirstAPI { - return _FirstAPI(client: self) + public var unions: UnionsAPI { + return _UnionsAPI(client: self) } public var flattening: FlatteningAPI { return _FlatteningAPI(client: self) } - public var generation: GenerationAPI { - return _GenerationAPI(client: self) - } - public var globals: GlobalsAPI { return _GlobalsAPI(client: self) } + public var parameters: ParametersAPI { + return _ParametersAPI(client: self) + } + public var nestFirst: NestFirstAPI { return _NestFirstAPI(client: self) } @@ -73,44 +65,52 @@ extension Client: OpenAPI { return _NestedSecondAPI(client: self) } - public var pagination: PaginationAPI { - return _PaginationAPI(client: self) + public var requestBodies: RequestBodiesAPI { + return _RequestBodiesAPI(client: self) } - public var parameters: ParametersAPI { - return _ParametersAPI(client: self) + public var responseBodies: ResponseBodiesAPI { + return _ResponseBodiesAPI(client: self) } - public var requestBodies: RequestBodiesAPI { - return _RequestBodiesAPI(client: self) + public var servers: ServersAPI { + return _ServersAPI(client: self) } - public var resource: ResourceAPI { - return _ResourceAPI(client: self) + public var telemetry: TelemetryAPI { + return _TelemetryAPI(client: self) } - public var responseBodies: ResponseBodiesAPI { - return _ResponseBodiesAPI(client: self) + public var authNew: AuthNewAPI { + return _AuthNewAPI(client: self) } - public var retries: RetriesAPI { - return _RetriesAPI(client: self) + public var auth: AuthAPI { + return _AuthAPI(client: self) } - public var second: SecondAPI { - return _SecondAPI(client: self) + public var documentation: DocumentationAPI { + return _DocumentationAPI(client: self) } - public var servers: ServersAPI { - return _ServersAPI(client: self) + public var resource: ResourceAPI { + return _ResourceAPI(client: self) } - public var telemetry: TelemetryAPI { - return _TelemetryAPI(client: self) + public var first: FirstAPI { + return _FirstAPI(client: self) } - public var unions: UnionsAPI { - return _UnionsAPI(client: self) + public var second: SecondAPI { + return _SecondAPI(client: self) + } + + public var pagination: PaginationAPI { + return _PaginationAPI(client: self) + } + + public var retries: RetriesAPI { + return _RetriesAPI(client: self) } } @@ -141,7 +141,7 @@ private func handlePutAnythingIgnoredGenerationResponse(response: Client.APIResp if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .putAnythingIgnoredGeneration200ApplicationJSONObject(try JSONDecoder().decode(Operations.PutAnythingIgnoredGeneration200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.PutAnythingIgnoredGenerationResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } diff --git a/swift-client-sdk/Sources/OpenAPI/internal/api/_ErrorsAPI.swift b/swift-client-sdk/Sources/OpenAPI/internal/api/_ErrorsAPI.swift index a8bc0c5ed..6bd970801 100755 --- a/swift-client-sdk/Sources/OpenAPI/internal/api/_ErrorsAPI.swift +++ b/swift-client-sdk/Sources/OpenAPI/internal/api/_ErrorsAPI.swift @@ -101,7 +101,7 @@ private func handleStatusGetXSpeakeasyErrorsResponse(response: Client.APIRespons } else if httpResponse.statusCode == 501 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .statusGetXSpeakeasyErrors501ApplicationJSONObject(try JSONDecoder().decode(Operations.StatusGetXSpeakeasyErrors501ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.StatusGetXSpeakeasyErrorsResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } diff --git a/swift-client-sdk/Sources/OpenAPI/internal/api/_GenerationAPI.swift b/swift-client-sdk/Sources/OpenAPI/internal/api/_GenerationAPI.swift index a5e04020b..9dbf04c4f 100755 --- a/swift-client-sdk/Sources/OpenAPI/internal/api/_GenerationAPI.swift +++ b/swift-client-sdk/Sources/OpenAPI/internal/api/_GenerationAPI.swift @@ -345,7 +345,7 @@ private func handleAnchorTypesGetResponse(response: Client.APIResponse) throws - if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .typeFromAnchor(try JSONDecoder().decode(Operations.TypeFromAnchor.self, from: data)) + return .typeFromAnchor(try JSONDecoder().decode(Operations.AnchorTypesGetTypeFromAnchor.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -433,7 +433,7 @@ private func handleDeprecatedObjectInSchemaGetResponse(response: Client.APIRespo if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .deprecatedObjectInSchemaGet200ApplicationJSONObject(try JSONDecoder().decode(Operations.DeprecatedObjectInSchemaGet200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.DeprecatedObjectInSchemaGetResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -491,7 +491,7 @@ private func handleGetGlobalNameOverrideResponse(response: Client.APIResponse) t if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .getGlobalNameOverride200ApplicationJSONObject(try JSONDecoder().decode(Operations.GetGlobalNameOverride200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.GetGlobalNameOverrideResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -507,7 +507,7 @@ private func handleIgnoredGenerationGetResponse(response: Client.APIResponse) th if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .ignoredGenerationGet200ApplicationJSONObject(try JSONDecoder().decode(Operations.IgnoredGenerationGet200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.IgnoredGenerationGetResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -539,7 +539,7 @@ private func handleNameOverrideGetResponse(response: Client.APIResponse) throws if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .overriddenResponse(try JSONDecoder().decode(Operations.OverriddenResponse.self, from: data)) + return .overriddenResponse(try JSONDecoder().decode(Operations.NameOverrideGetOverriddenResponse.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -597,7 +597,7 @@ private func handleUsageExamplePostResponse(response: Client.APIResponse) throws if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .usageExamplePost200ApplicationJSONObject(try JSONDecoder().decode(Operations.UsageExamplePost200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.UsageExamplePostResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } diff --git a/swift-client-sdk/Sources/OpenAPI/internal/api/_RequestBodiesAPI.swift b/swift-client-sdk/Sources/OpenAPI/internal/api/_RequestBodiesAPI.swift index ea3a97c49..526d594ac 100755 --- a/swift-client-sdk/Sources/OpenAPI/internal/api/_RequestBodiesAPI.swift +++ b/swift-client-sdk/Sources/OpenAPI/internal/api/_RequestBodiesAPI.swift @@ -512,7 +512,7 @@ class _RequestBodiesAPI: RequestBodiesAPI { ) } - public func requestBodyPostMultipleContentTypesInlineFiltered(request: Operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON) async throws -> Response { + public func requestBodyPostMultipleContentTypesInlineFiltered(request: Operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody) async throws -> Response { return try await client.makeRequest( configureRequest: { configuration in try configureRequestBodyPostMultipleContentTypesInlineFilteredRequest(with: configuration, request: request) @@ -548,7 +548,7 @@ class _RequestBodiesAPI: RequestBodiesAPI { ) } - public func requestBodyPostMultipleContentTypesSplitForm(request: Operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded) async throws -> Response { + public func requestBodyPostMultipleContentTypesSplitForm(request: Operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody) async throws -> Response { return try await client.makeRequest( configureRequest: { configuration in try configureRequestBodyPostMultipleContentTypesSplitFormRequest(with: configuration, request: request) @@ -557,7 +557,7 @@ class _RequestBodiesAPI: RequestBodiesAPI { ) } - public func requestBodyPostMultipleContentTypesSplitJson(request: Operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON) async throws -> Response { + public func requestBodyPostMultipleContentTypesSplitJson(request: Operations.RequestBodyPostMultipleContentTypesSplitJsonRequestBody) async throws -> Response { return try await client.makeRequest( configureRequest: { configuration in try configureRequestBodyPostMultipleContentTypesSplitJsonRequest(with: configuration, request: request) @@ -566,7 +566,7 @@ class _RequestBodiesAPI: RequestBodiesAPI { ) } - public func requestBodyPostMultipleContentTypesSplitMultipart(request: Operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData) async throws -> Response { + public func requestBodyPostMultipleContentTypesSplitMultipart(request: Operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody) async throws -> Response { return try await client.makeRequest( configureRequest: { configuration in try configureRequestBodyPostMultipleContentTypesSplitMultipartRequest(with: configuration, request: request) @@ -692,7 +692,7 @@ class _RequestBodiesAPI: RequestBodiesAPI { ) } - public func requestBodyReadAndWrite(request: Shared.ReadWriteObjectInput, server: RequestBodiesServers.RequestBodyReadAndWrite?) async throws -> Response { + public func requestBodyReadAndWrite(request: Shared.ReadWriteObject, server: RequestBodiesServers.RequestBodyReadAndWrite?) async throws -> Response { return try await client.makeRequest( with: try server?.server() ?? RequestBodiesServers.RequestBodyReadAndWrite.default(), configureRequest: { configuration in @@ -722,7 +722,7 @@ class _RequestBodiesAPI: RequestBodiesAPI { ) } - public func requestBodyReadWriteOnlyUnion(request: Shared.WeaklyTypedOneOfReadWriteObjectInput, server: RequestBodiesServers.RequestBodyReadWriteOnlyUnion?) async throws -> Response { + public func requestBodyReadWriteOnlyUnion(request: Shared.WeaklyTypedOneOfReadWriteObject, server: RequestBodiesServers.RequestBodyReadWriteOnlyUnion?) async throws -> Response { return try await client.makeRequest( with: try server?.server() ?? RequestBodiesServers.RequestBodyReadWriteOnlyUnion.default(), configureRequest: { configuration in @@ -1362,7 +1362,7 @@ private func configureRequestBodyPostMultipleContentTypesComponentFilteredReques configuration.telemetryHeader = .speakeasyUserAgent } -private func configureRequestBodyPostMultipleContentTypesInlineFilteredRequest(with configuration: URLRequestConfiguration, request: Operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON) throws { +private func configureRequestBodyPostMultipleContentTypesInlineFilteredRequest(with configuration: URLRequestConfiguration, request: Operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody) throws { configuration.path = "/anything/requestBodies/post/multiple/contentTypes/inline/filtered" configuration.method = .post configuration.contentType = "application/json" @@ -1410,7 +1410,7 @@ private func configureRequestBodyPostMultipleContentTypesSplitParamMultipartRequ configuration.telemetryHeader = .speakeasyUserAgent } -private func configureRequestBodyPostMultipleContentTypesSplitFormRequest(with configuration: URLRequestConfiguration, request: Operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded) throws { +private func configureRequestBodyPostMultipleContentTypesSplitFormRequest(with configuration: URLRequestConfiguration, request: Operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody) throws { configuration.path = "/anything/requestBodies/post/multiple/contentTypes/split" configuration.method = .post configuration.contentType = "application/x-www-form-urlencoded" @@ -1421,7 +1421,7 @@ private func configureRequestBodyPostMultipleContentTypesSplitFormRequest(with c configuration.telemetryHeader = .speakeasyUserAgent } -private func configureRequestBodyPostMultipleContentTypesSplitJsonRequest(with configuration: URLRequestConfiguration, request: Operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON) throws { +private func configureRequestBodyPostMultipleContentTypesSplitJsonRequest(with configuration: URLRequestConfiguration, request: Operations.RequestBodyPostMultipleContentTypesSplitJsonRequestBody) throws { configuration.path = "/anything/requestBodies/post/multiple/contentTypes/split" configuration.method = .post configuration.contentType = "application/json" @@ -1432,7 +1432,7 @@ private func configureRequestBodyPostMultipleContentTypesSplitJsonRequest(with c configuration.telemetryHeader = .speakeasyUserAgent } -private func configureRequestBodyPostMultipleContentTypesSplitMultipartRequest(with configuration: URLRequestConfiguration, request: Operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData) throws { +private func configureRequestBodyPostMultipleContentTypesSplitMultipartRequest(with configuration: URLRequestConfiguration, request: Operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody) throws { configuration.path = "/anything/requestBodies/post/multiple/contentTypes/split" configuration.method = .post let (boundary, formData) = try serializeMultipartFormData(with: request) @@ -1587,7 +1587,7 @@ private func configureRequestBodyPutStringWithParamsRequest(with configuration: configuration.telemetryHeader = .speakeasyUserAgent } -private func configureRequestBodyReadAndWriteRequest(with configuration: URLRequestConfiguration, request: Shared.ReadWriteObjectInput) throws { +private func configureRequestBodyReadAndWriteRequest(with configuration: URLRequestConfiguration, request: Shared.ReadWriteObject) throws { configuration.path = "/readonlyandwriteonly" configuration.method = .post configuration.contentType = "application/json" @@ -1620,7 +1620,7 @@ private func configureRequestBodyReadOnlyUnionRequest(with configuration: URLReq configuration.telemetryHeader = .speakeasyUserAgent } -private func configureRequestBodyReadWriteOnlyUnionRequest(with configuration: URLRequestConfiguration, request: Shared.WeaklyTypedOneOfReadWriteObjectInput) throws { +private func configureRequestBodyReadWriteOnlyUnionRequest(with configuration: URLRequestConfiguration, request: Shared.WeaklyTypedOneOfReadWriteObject) throws { configuration.path = "/readonlyandwriteonly#readWriteOnlyUnion" configuration.method = .post configuration.contentType = "application/json" @@ -1690,7 +1690,7 @@ private func handleNullableRequiredEmptyObjectPostResponse(response: Client.APIR guard let string = String(data: data, encoding: .utf8) else { throw ResponseHandlerError.failedToDecodeResponse } - return .nullableRequiredEmptyObjectPost200ApplicationJSONString(string) + return .res(string) } } @@ -1705,7 +1705,7 @@ private func handleNullableRequiredPropertyPostResponse(response: Client.APIResp guard let string = String(data: data, encoding: .utf8) else { throw ResponseHandlerError.failedToDecodeResponse } - return .nullableRequiredPropertyPost200ApplicationJSONString(string) + return .res(string) } } @@ -1720,7 +1720,7 @@ private func handleNullableRequiredSharedObjectPostResponse(response: Client.API guard let string = String(data: data, encoding: .utf8) else { throw ResponseHandlerError.failedToDecodeResponse } - return .nullableRequiredSharedObjectPost200ApplicationJSONString(string) + return .res(string) } } @@ -1733,7 +1733,7 @@ private func handleRequestBodyPostApplicationJsonArrayResponse(response: Client. if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .simpleObjects(try JSONDecoder().decode([Shared.SimpleObject].self, from: data)) + return .res(try JSONDecoder().decode([Shared.SimpleObject].self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -1749,7 +1749,7 @@ private func handleRequestBodyPostApplicationJsonArrayCamelCaseResponse(response if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .simpleObjectCamelCases(try JSONDecoder().decode([Shared.SimpleObjectCamelCase].self, from: data)) + return .res(try JSONDecoder().decode([Shared.SimpleObjectCamelCase].self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -1797,7 +1797,7 @@ private func handleRequestBodyPostApplicationJsonArrayOfArrayResponse(response: if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .arrs(try JSONDecoder().decode([[Shared.SimpleObject]].self, from: data)) + return .res(try JSONDecoder().decode([[Shared.SimpleObject]].self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -1813,7 +1813,7 @@ private func handleRequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse(r if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .arrs(try JSONDecoder().decode([[Shared.SimpleObjectCamelCase]].self, from: data)) + return .res(try JSONDecoder().decode([[Shared.SimpleObjectCamelCase]].self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -1829,7 +1829,7 @@ private func handleRequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .arrs(try JSONDecoder().decode([[String]].self, from: data)) + return .res(try JSONDecoder().decode([[String]].self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -1845,7 +1845,7 @@ private func handleRequestBodyPostApplicationJsonArrayOfMapResponse(response: Cl if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .maps(try JSONDecoder().decode([[String: Shared.SimpleObject]].self, from: data)) + return .res(try JSONDecoder().decode([[String: Shared.SimpleObject]].self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -1861,7 +1861,7 @@ private func handleRequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse(res if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .maps(try JSONDecoder().decode([[String: Shared.SimpleObjectCamelCase]].self, from: data)) + return .res(try JSONDecoder().decode([[String: Shared.SimpleObjectCamelCase]].self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -1877,7 +1877,7 @@ private func handleRequestBodyPostApplicationJsonArrayOfPrimitiveResponse(respon if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .strings(try JSONDecoder().decode([String].self, from: data)) + return .res(try JSONDecoder().decode([String].self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2133,7 +2133,7 @@ private func handleRequestBodyPostComplexNumberTypesResponse(response: Client.AP if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostComplexNumberTypes200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostComplexNumberTypes200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostComplexNumberTypesResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2149,7 +2149,7 @@ private func handleRequestBodyPostDefaultsAndConstsResponse(response: Client.API if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostDefaultsAndConsts200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostDefaultsAndConsts200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostDefaultsAndConstsResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2165,7 +2165,7 @@ private func handleRequestBodyPostEmptyObjectResponse(response: Client.APIRespon if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostEmptyObject200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostEmptyObject200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostEmptyObjectResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2229,7 +2229,7 @@ private func handleRequestBodyPostJsonDataTypesArrayBigIntResponse(response: Cli if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesArrayBigIntResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2245,7 +2245,7 @@ private func handleRequestBodyPostJsonDataTypesArrayDateResponse(response: Clien if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesArrayDateResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2261,7 +2261,7 @@ private func handleRequestBodyPostJsonDataTypesArrayDecimalStrResponse(response: if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2277,7 +2277,7 @@ private func handleRequestBodyPostJsonDataTypesBigIntResponse(response: Client.A if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesBigIntResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2293,7 +2293,7 @@ private func handleRequestBodyPostJsonDataTypesBigIntStrResponse(response: Clien if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesBigIntStrResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2309,7 +2309,7 @@ private func handleRequestBodyPostJsonDataTypesBooleanResponse(response: Client. if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesBooleanResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2325,7 +2325,7 @@ private func handleRequestBodyPostJsonDataTypesDateResponse(response: Client.API if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesDate200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesDate200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesDateResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2341,7 +2341,7 @@ private func handleRequestBodyPostJsonDataTypesDateTimeResponse(response: Client if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesDateTimeResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2357,7 +2357,7 @@ private func handleRequestBodyPostJsonDataTypesDecimalResponse(response: Client. if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesDecimalResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2373,7 +2373,7 @@ private func handleRequestBodyPostJsonDataTypesDecimalStrResponse(response: Clie if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesDecimalStrResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2389,7 +2389,7 @@ private func handleRequestBodyPostJsonDataTypesFloat32Response(response: Client. if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesFloat32ResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2405,7 +2405,7 @@ private func handleRequestBodyPostJsonDataTypesInt32Response(response: Client.AP if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesInt32200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesInt32200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesInt32ResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2421,7 +2421,7 @@ private func handleRequestBodyPostJsonDataTypesIntegerResponse(response: Client. if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesInteger200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesInteger200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesIntegerResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2437,7 +2437,7 @@ private func handleRequestBodyPostJsonDataTypesMapBigIntStrResponse(response: Cl if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2453,7 +2453,7 @@ private func handleRequestBodyPostJsonDataTypesMapDateTimeResponse(response: Cli if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesMapDateTimeResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2469,7 +2469,7 @@ private func handleRequestBodyPostJsonDataTypesMapDecimalResponse(response: Clie if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesMapDecimalResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2485,7 +2485,7 @@ private func handleRequestBodyPostJsonDataTypesNumberResponse(response: Client.A if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesNumber200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesNumber200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesNumberResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2501,7 +2501,7 @@ private func handleRequestBodyPostJsonDataTypesStringResponse(response: Client.A if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostJSONDataTypesString200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostJSONDataTypesString200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostJsonDataTypesStringResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2645,7 +2645,7 @@ private func handleRequestBodyPostNotNullableNotRequiredStringBodyResponse(respo if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2661,7 +2661,7 @@ private func handleRequestBodyPostNullArrayResponse(response: Client.APIResponse if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostNullArray200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostNullArray200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostNullArrayResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2677,7 +2677,7 @@ private func handleRequestBodyPostNullDictionaryResponse(response: Client.APIRes if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostNullDictionary200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostNullDictionary200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostNullDictionaryResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2693,7 +2693,7 @@ private func handleRequestBodyPostNullableNotRequiredStringBodyResponse(response if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -2709,7 +2709,7 @@ private func handleRequestBodyPostNullableRequiredStringBodyResponse(response: C if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .requestBodyPostNullableRequiredStringBody200ApplicationJSONObject(try JSONDecoder().decode(Operations.RequestBodyPostNullableRequiredStringBody200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.RequestBodyPostNullableRequiredStringBodyResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } diff --git a/swift-client-sdk/Sources/OpenAPI/internal/api/_ResponseBodiesAPI.swift b/swift-client-sdk/Sources/OpenAPI/internal/api/_ResponseBodiesAPI.swift index 5443287fb..033220f2d 100755 --- a/swift-client-sdk/Sources/OpenAPI/internal/api/_ResponseBodiesAPI.swift +++ b/swift-client-sdk/Sources/OpenAPI/internal/api/_ResponseBodiesAPI.swift @@ -215,7 +215,7 @@ private func handleResponseBodyAdditionalPropertiesComplexNumbersPostResponse(re if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject(try JSONDecoder().decode(Operations.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -231,7 +231,7 @@ private func handleResponseBodyAdditionalPropertiesDatePostResponse(response: Cl if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject(try JSONDecoder().decode(Operations.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.ResponseBodyAdditionalPropertiesDatePostResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -247,7 +247,7 @@ private func handleResponseBodyAdditionalPropertiesObjectPostResponse(response: if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject(try JSONDecoder().decode(Operations.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -263,7 +263,7 @@ private func handleResponseBodyAdditionalPropertiesPostResponse(response: Client if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .responseBodyAdditionalPropertiesPost200ApplicationJSONObject(try JSONDecoder().decode(Operations.ResponseBodyAdditionalPropertiesPost200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.ResponseBodyAdditionalPropertiesPostResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } @@ -310,7 +310,7 @@ private func handleResponseBodyOptionalGetResponse(response: Client.APIResponse) guard let string = String(data: data, encoding: .utf8) else { throw ResponseHandlerError.failedToDecodeResponse } - return .responseBodyOptionalGet200TextPlainString(string) + return .res(string) } } @@ -369,7 +369,7 @@ private func handleResponseBodyZeroValueComplexTypePtrsPostResponse(response: Cl if httpResponse.statusCode == 200 { if httpResponse.contentType.matchContentType(pattern: "application/json"), let data = response.data { do { - return .responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject(try JSONDecoder().decode(Operations.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.self, from: data)) + return .object(try JSONDecoder().decode(Operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody.self, from: data)) } catch { throw ResponseHandlerError.failedToDecodeJSON(error) } diff --git a/swift-client-sdk/Sources/OpenAPI/internal/client/URLRequestBuilder.swift b/swift-client-sdk/Sources/OpenAPI/internal/client/URLRequestBuilder.swift index dc4211442..366b92877 100755 --- a/swift-client-sdk/Sources/OpenAPI/internal/client/URLRequestBuilder.swift +++ b/swift-client-sdk/Sources/OpenAPI/internal/client/URLRequestBuilder.swift @@ -62,7 +62,7 @@ final class URLRequestBuilder: URLRequestConfiguration { urlRequest.setValue(contentType, forHTTPHeaderField: "Content-Type") } - urlRequest.setValue("speakeasy-sdk/swift 0.1.2 2.173.0 0.1.0 OpenAPI", forHTTPHeaderField: telemetryHeader.headerName) + urlRequest.setValue("speakeasy-sdk/swift 0.2.0 2.181.1 0.1.0 OpenAPI", forHTTPHeaderField: telemetryHeader.headerName) addSecurityParameters(to: &urlRequest) diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/Any+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/Any+Serialization.swift new file mode 100755 index 000000000..263213514 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/Any+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.`Any`: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/AnyVal+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/AnyVal+Serialization.swift new file mode 100755 index 000000000..72e67e157 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/AnyVal+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.AnyVal: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/Child+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/Child+Serialization.swift new file mode 100755 index 000000000..60bc7dec7 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/Child+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.Child: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/ConstEnumInt+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/ConstEnumInt+Serialization.swift new file mode 100755 index 000000000..982278d2e --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/ConstEnumInt+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.ConstEnumInt: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/ConstEnumStr+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/ConstEnumStr+Serialization.swift new file mode 100755 index 000000000..a085d4ba0 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/ConstEnumStr+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.ConstEnumStr: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/CreateFileFile+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/CreateFileFile+Serialization.swift new file mode 100755 index 000000000..43ff0e418 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/CreateFileFile+Serialization.swift @@ -0,0 +1,25 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.CreateFileFile: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + switch format { + case .multipart: + // Deep, non-JSON encoded multipart serialization is not supported. + throw SerializationError.invalidSerializationParameter(type: "Operations.CreateFileFile", format: format.formatDescription) + case .path, .query, .header, .form: + throw SerializationError.invalidSerializationParameter(type: "Operations.CreateFileFile", format: format.formatDescription) + } + } +} + +extension Operations.CreateFileFile: MultipartFormBodySerializable { + func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { + return [ + .value(name: "content", serialized: try content.serialize(with: .multipart)), + .value(name: "file", serialized: try fileName.serialize(with: .multipart)) + ] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/CreateFileRequestBody+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/CreateFileRequestBody+Serialization.swift index 8c87930fd..d01fb9bfa 100755 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/CreateFileRequestBody+Serialization.swift +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/CreateFileRequestBody+Serialization.swift @@ -18,7 +18,7 @@ extension Operations.CreateFileRequestBody: Serializable { extension Operations.CreateFileRequestBody: MultipartFormBodySerializable { func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { return [ - .file(name: "file", filename: file?.file, data: file?.content) + .file(name: "file", filename: file?.fileName, data: file?.content) ] } } diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/CreateFileRequestBodyFile+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/CreateFileRequestBodyFile+Serialization.swift deleted file mode 100755 index e8b2de2b8..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/CreateFileRequestBodyFile+Serialization.swift +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.CreateFileRequestBodyFile: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - switch format { - case .multipart: - // Deep, non-JSON encoded multipart serialization is not supported. - throw SerializationError.invalidSerializationParameter(type: "Operations.CreateFileRequestBodyFile", format: format.formatDescription) - case .path, .query, .header, .form: - throw SerializationError.invalidSerializationParameter(type: "Operations.CreateFileRequestBodyFile", format: format.formatDescription) - } - } -} - -extension Operations.CreateFileRequestBodyFile: MultipartFormBodySerializable { - func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { - return [ - .value(name: "content", serialized: try content.serialize(with: .multipart)), - .value(name: "file", serialized: try file.serialize(with: .multipart)) - ] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectAny+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectAny+Serialization.swift deleted file mode 100755 index 0c011c8bf..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectAny+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.DeepObjectAny: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectCamelCaseAnyVal+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectCamelCaseAnyVal+Serialization.swift deleted file mode 100755 index 2efe16df6..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectCamelCaseAnyVal+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.DeepObjectCamelCaseAnyVal: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectQueryParamsMapArgs+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectQueryParamsMapArgs+Serialization.swift new file mode 100755 index 000000000..377ba4ba9 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectQueryParamsMapArgs+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.DeepObjectQueryParamsMapArgs: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectQueryParamsMapResArgs+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectQueryParamsMapResArgs+Serialization.swift deleted file mode 100755 index bad6c8c92..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectQueryParamsMapResArgs+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.DeepObjectQueryParamsMapResArgs: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectQueryParamsObjectObjArrParam+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectQueryParamsObjectObjArrParam+Serialization.swift deleted file mode 100755 index 06c0d975c..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/DeepObjectQueryParamsObjectObjArrParam+Serialization.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.DeepObjectQueryParamsObjectObjArrParam: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - switch format { - case .query: - return try serializeQueryParameterSerializable(self, with: format) - case .path, .header, .multipart, .form: - throw SerializationError.invalidSerializationParameter(type: "Operations.DeepObjectQueryParamsObjectObjArrParam", format: format.formatDescription) - } - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return try serializedQueryParameters(with: nil, formatOverride: format) - } -} - -extension Operations.DeepObjectQueryParamsObjectObjArrParam: QueryParameterSerializable { - func serializedQueryParameters(with parameterDefaults: ParameterDefaults?, formatOverride: SerializableFormat?) throws -> [QueryParameter] { - let builder = QueryParameterBuilder() - try builder.addQueryParameters(from: arr, named: "arr", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) - return builder.build() - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultEnumInt+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultEnumInt+Serialization.swift new file mode 100755 index 000000000..dca1f2503 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultEnumInt+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.DefaultEnumInt: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultEnumStr+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultEnumStr+Serialization.swift new file mode 100755 index 000000000..9361f0a26 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultEnumStr+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.DefaultEnumStr: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsConstEnumInt+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsConstEnumInt+Serialization.swift deleted file mode 100755 index 82e4881f6..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsConstEnumInt+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.DefaultsAndConstsConstEnumInt: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsConstEnumStr+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsConstEnumStr+Serialization.swift deleted file mode 100755 index 3392dfcb8..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsConstEnumStr+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.DefaultsAndConstsConstEnumStr: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsDefaultEnumInt+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsDefaultEnumInt+Serialization.swift deleted file mode 100755 index 8ee9171c8..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsDefaultEnumInt+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.DefaultsAndConstsDefaultEnumInt: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsDefaultEnumStr+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsDefaultEnumStr+Serialization.swift deleted file mode 100755 index 1b3524b21..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/DefaultsAndConstsDefaultEnumStr+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.DefaultsAndConstsDefaultEnumStr: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DeprecatedEnum+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DeprecatedEnum+Serialization.swift new file mode 100755 index 000000000..54b232ce4 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/DeprecatedEnum+Serialization.swift @@ -0,0 +1,15 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +@available(*, deprecated) +extension Shared.DeprecatedEnum: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DeprecatedFieldInObjectDeprecatedEnum+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DeprecatedFieldInObjectDeprecatedEnum+Serialization.swift deleted file mode 100755 index 6f4e5541e..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/DeprecatedFieldInObjectDeprecatedEnum+Serialization.swift +++ /dev/null @@ -1,15 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -@available(*, deprecated) -extension Shared.DeprecatedFieldInObjectDeprecatedEnum: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/DifferentFileName+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/DifferentFileName+Serialization.swift new file mode 100755 index 000000000..f033dd9c2 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/DifferentFileName+Serialization.swift @@ -0,0 +1,25 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.DifferentFileName: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + switch format { + case .multipart: + // Deep, non-JSON encoded multipart serialization is not supported. + throw SerializationError.invalidSerializationParameter(type: "Operations.DifferentFileName", format: format.formatDescription) + case .path, .query, .header, .form: + throw SerializationError.invalidSerializationParameter(type: "Operations.DifferentFileName", format: format.formatDescription) + } + } +} + +extension Operations.DifferentFileName: MultipartFormBodySerializable { + func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { + return [ + .value(name: "content", serialized: try content.serialize(with: .multipart)), + .value(name: "differentFileName", serialized: try fileName.serialize(with: .multipart)) + ] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/Empty+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/Empty+Serialization.swift new file mode 100755 index 000000000..587660c5a --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/Empty+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.Empty: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyRespWithEmptyProperies+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyRespWithEmptyProperies+Serialization.swift new file mode 100755 index 000000000..506fc5a4d --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyRespWithEmptyProperies+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.EmptyRespWithEmptyProperies: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyResponseObjectWithCommentGet200ApplicationOctetStream+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyResponseObjectWithCommentGet200ApplicationOctetStream+Serialization.swift deleted file mode 100755 index 80a84e84a..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyResponseObjectWithCommentGet200ApplicationOctetStream+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.EmptyResponseObjectWithCommentGet200ApplicationOctetStream: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyResponseObjectWithCommentGetResponseBody+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyResponseObjectWithCommentGetResponseBody+Serialization.swift new file mode 100755 index 000000000..ea66f0efb --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyResponseObjectWithCommentGetResponseBody+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.EmptyResponseObjectWithCommentGetResponseBody: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyWithEmptyProperties+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyWithEmptyProperties+Serialization.swift new file mode 100755 index 000000000..eed499e86 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/EmptyWithEmptyProperties+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.EmptyWithEmptyProperties: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/EnumNameOverride+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/EnumNameOverride+Serialization.swift new file mode 100755 index 000000000..7b69e6d58 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/EnumNameOverride+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.EnumNameOverride: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/EnumNumber+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/EnumNumber+Serialization.swift new file mode 100755 index 000000000..4d4ce84a4 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/EnumNumber+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.EnumNumber: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/EnumParameter+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/EnumParameter+Serialization.swift new file mode 100755 index 000000000..b1b1dc1f7 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/EnumParameter+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.EnumParameter: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/EnumStr+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/EnumStr+Serialization.swift new file mode 100755 index 000000000..581bf5f26 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/EnumStr+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.EnumStr: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/ExampleBoatType+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/ExampleBoatType+Serialization.swift deleted file mode 100755 index e040e7358..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/ExampleBoatType+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.ExampleBoatType: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/ExampleResourceEnumNumber+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/ExampleResourceEnumNumber+Serialization.swift deleted file mode 100755 index e5e1fde55..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/ExampleResourceEnumNumber+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.ExampleResourceEnumNumber: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/ExampleResourceEnumStr+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/ExampleResourceEnumStr+Serialization.swift deleted file mode 100755 index 8a924ae80..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/ExampleResourceEnumStr+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.ExampleResourceEnumStr: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/File+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/File+Serialization.swift new file mode 100755 index 000000000..dc54a9716 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/File+Serialization.swift @@ -0,0 +1,25 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.File: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + switch format { + case .multipart: + // Deep, non-JSON encoded multipart serialization is not supported. + throw SerializationError.invalidSerializationParameter(type: "Operations.File", format: format.formatDescription) + case .path, .query, .header, .form: + throw SerializationError.invalidSerializationParameter(type: "Operations.File", format: format.formatDescription) + } + } +} + +extension Operations.File: MultipartFormBodySerializable { + func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { + return [ + .value(name: "content", serialized: try content.serialize(with: .multipart)), + .value(name: "file", serialized: try fileName.serialize(with: .multipart)) + ] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/FormQueryParamsCamelObjectObjParam+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/FormQueryParamsCamelObjectObjParam+Serialization.swift deleted file mode 100755 index f7dd6f10b..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/FormQueryParamsCamelObjectObjParam+Serialization.swift +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.FormQueryParamsCamelObjectObjParam: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - switch format { - case .query: - return try serializeQueryParameterSerializable(self, with: format) - case .path, .header, .multipart, .form: - throw SerializationError.invalidSerializationParameter(type: "Operations.FormQueryParamsCamelObjectObjParam", format: format.formatDescription) - } - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return try serializedQueryParameters(with: nil, formatOverride: format) - } -} - -extension Operations.FormQueryParamsCamelObjectObjParam: QueryParameterSerializable { - func serializedQueryParameters(with parameterDefaults: ParameterDefaults?, formatOverride: SerializableFormat?) throws -> [QueryParameter] { - let builder = QueryParameterBuilder() - try builder.addQueryParameters(from: encodedCount, named: "encoded_count", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) - try builder.addQueryParameters(from: encodedTerm, named: "encoded_term", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) - return builder.build() - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/FormQueryParamsCamelObjectObjParamExploded+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/FormQueryParamsCamelObjectObjParamExploded+Serialization.swift deleted file mode 100755 index 9d72d62d8..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/FormQueryParamsCamelObjectObjParamExploded+Serialization.swift +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.FormQueryParamsCamelObjectObjParamExploded: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - switch format { - case .query: - return try serializeQueryParameterSerializable(self, with: format) - case .path, .header, .multipart, .form: - throw SerializationError.invalidSerializationParameter(type: "Operations.FormQueryParamsCamelObjectObjParamExploded", format: format.formatDescription) - } - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return try serializedQueryParameters(with: nil, formatOverride: format) - } -} - -extension Operations.FormQueryParamsCamelObjectObjParamExploded: QueryParameterSerializable { - func serializedQueryParameters(with parameterDefaults: ParameterDefaults?, formatOverride: SerializableFormat?) throws -> [QueryParameter] { - let builder = QueryParameterBuilder() - try builder.addQueryParameters(from: itemCount, named: "item_count", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) - try builder.addQueryParameters(from: searchTerm, named: "search_term", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) - return builder.build() - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/Int32Enum+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/Int32Enum+Serialization.swift new file mode 100755 index 000000000..32a25f14e --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/Int32Enum+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.Int32Enum: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/Int32EnumVal+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/Int32EnumVal+Serialization.swift new file mode 100755 index 000000000..2f4062ee0 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/Int32EnumVal+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.Int32EnumVal: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/IntEnum+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/IntEnum+Serialization.swift new file mode 100755 index 000000000..a43fabf1e --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/IntEnum+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.IntEnum: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/IntEnumVal+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/IntEnumVal+Serialization.swift new file mode 100755 index 000000000..c26547e74 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/IntEnumVal+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.IntEnumVal: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/MixedTypeOneOfPostJson+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/MixedTypeOneOfPostJson+Serialization.swift new file mode 100755 index 000000000..bb5ce15d7 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/MixedTypeOneOfPostJson+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.MixedTypeOneOfPostJson: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/MixedTypeOneOfPostResJson+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/MixedTypeOneOfPostResJson+Serialization.swift deleted file mode 100755 index 42d4ecd3d..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/MixedTypeOneOfPostResJson+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.MixedTypeOneOfPostResJson: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/NameOverrideGetEnumNameOverride+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/NameOverrideGetEnumNameOverride+Serialization.swift deleted file mode 100755 index 0e7857f4f..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/NameOverrideGetEnumNameOverride+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.NameOverrideGetEnumNameOverride: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/NullableOptionalObj+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/NullableOptionalObj+Serialization.swift new file mode 100755 index 000000000..23079a6cd --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/NullableOptionalObj+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.NullableOptionalObj: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj+Serialization.swift deleted file mode 100755 index b75f68c7f..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj+Serialization.swift deleted file mode 100755 index 0fdd60ebb..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyRequiredObj+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyRequiredObj+Serialization.swift deleted file mode 100755 index 32401f5ef..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyRequiredObj+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.NullableRequiredEmptyObjectPostRequestBodyRequiredObj: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEnum+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEnum+Serialization.swift new file mode 100755 index 000000000..2a7c8589d --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredEnum+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.NullableRequiredEnum: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredObj+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredObj+Serialization.swift new file mode 100755 index 000000000..372d51904 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredObj+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.NullableRequiredObj: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum+Serialization.swift deleted file mode 100755 index fafed34e6..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.NullableRequiredPropertyPostRequestBodyNullableRequiredEnum: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/Obj+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/Obj+Serialization.swift new file mode 100755 index 000000000..2c2928a86 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/Obj+Serialization.swift @@ -0,0 +1,29 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.Obj: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + switch format { + case .query: + return try serializeQueryParameterSerializable(self, with: format) + case .path, .header, .multipart, .form: + throw SerializationError.invalidSerializationParameter(type: "Operations.Obj", format: format.formatDescription) + } + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return try serializedQueryParameters(with: nil, formatOverride: format) + } +} + +extension Operations.Obj: QueryParameterSerializable { + func serializedQueryParameters(with parameterDefaults: ParameterDefaults?, formatOverride: SerializableFormat?) throws -> [QueryParameter] { + let builder = QueryParameterBuilder() + try builder.addQueryParameters(from: bool, named: "bool", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) + try builder.addQueryParameters(from: numWrapper, named: "num", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) + try builder.addQueryParameters(from: str, named: "str", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) + return builder.build() + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/ObjArrParam+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/ObjArrParam+Serialization.swift new file mode 100755 index 000000000..72aeb3fe4 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/ObjArrParam+Serialization.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.ObjArrParam: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + switch format { + case .query: + return try serializeQueryParameterSerializable(self, with: format) + case .path, .header, .multipart, .form: + throw SerializationError.invalidSerializationParameter(type: "Operations.ObjArrParam", format: format.formatDescription) + } + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return try serializedQueryParameters(with: nil, formatOverride: format) + } +} + +extension Operations.ObjArrParam: QueryParameterSerializable { + func serializedQueryParameters(with parameterDefaults: ParameterDefaults?, formatOverride: SerializableFormat?) throws -> [QueryParameter] { + let builder = QueryParameterBuilder() + try builder.addQueryParameters(from: arr, named: "arr", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) + return builder.build() + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/ObjParam+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/ObjParam+Serialization.swift new file mode 100755 index 000000000..60963d64f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/ObjParam+Serialization.swift @@ -0,0 +1,28 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.ObjParam: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + switch format { + case .query: + return try serializeQueryParameterSerializable(self, with: format) + case .path, .header, .multipart, .form: + throw SerializationError.invalidSerializationParameter(type: "Operations.ObjParam", format: format.formatDescription) + } + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return try serializedQueryParameters(with: nil, formatOverride: format) + } +} + +extension Operations.ObjParam: QueryParameterSerializable { + func serializedQueryParameters(with parameterDefaults: ParameterDefaults?, formatOverride: SerializableFormat?) throws -> [QueryParameter] { + let builder = QueryParameterBuilder() + try builder.addQueryParameters(from: encodedCount, named: "encoded_count", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) + try builder.addQueryParameters(from: encodedTerm, named: "encoded_term", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) + return builder.build() + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/ObjParamExploded+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/ObjParamExploded+Serialization.swift new file mode 100755 index 000000000..e6176f2b4 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/ObjParamExploded+Serialization.swift @@ -0,0 +1,28 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.ObjParamExploded: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + switch format { + case .query: + return try serializeQueryParameterSerializable(self, with: format) + case .path, .header, .multipart, .form: + throw SerializationError.invalidSerializationParameter(type: "Operations.ObjParamExploded", format: format.formatDescription) + } + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return try serializedQueryParameters(with: nil, formatOverride: format) + } +} + +extension Operations.ObjParamExploded: QueryParameterSerializable { + func serializedQueryParameters(with parameterDefaults: ParameterDefaults?, formatOverride: SerializableFormat?) throws -> [QueryParameter] { + let builder = QueryParameterBuilder() + try builder.addQueryParameters(from: itemCount, named: "item_count", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) + try builder.addQueryParameters(from: searchTerm, named: "search_term", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) + return builder.build() + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfCircularReferenceObjectChild+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfCircularReferenceObjectChild+Serialization.swift deleted file mode 100755 index 58515140f..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfCircularReferenceObjectChild+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.OneOfCircularReferenceObjectChild: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfFromArrayOfTypes+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfFromArrayOfTypes+Serialization.swift new file mode 100755 index 000000000..bcfafb448 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfFromArrayOfTypes+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.OneOfFromArrayOfTypes: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfFromArrayOfTypes+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfFromArrayOfTypes+Serialization.swift deleted file mode 100755 index ef1b2b8b2..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfFromArrayOfTypes+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.OneOfGenerationStressTestOneOfFromArrayOfTypes: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfSameType+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfSameType+Serialization.swift deleted file mode 100755 index 1ae8846a1..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfSameType+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.OneOfGenerationStressTestOneOfSameType: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfSameType2+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfSameType2+Serialization.swift deleted file mode 100755 index 32bbfb027..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfSameType2+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.OneOfGenerationStressTestOneOfSameType2: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfSameType+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfSameType+Serialization.swift new file mode 100755 index 000000000..14a652d6c --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/OneOfSameType+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.OneOfSameType: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/OptEnumParameter+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/OptEnumParameter+Serialization.swift new file mode 100755 index 000000000..4a81c859f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/OptEnumParameter+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.OptEnumParameter: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/PrimitiveTypeOneOfPostJson+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/PrimitiveTypeOneOfPostJson+Serialization.swift new file mode 100755 index 000000000..9ac545fe9 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/PrimitiveTypeOneOfPostJson+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.PrimitiveTypeOneOfPostJson: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/PrimitiveTypeOneOfPostResJson+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/PrimitiveTypeOneOfPostResJson+Serialization.swift deleted file mode 100755 index 03a7b859f..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/PrimitiveTypeOneOfPostResJson+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.PrimitiveTypeOneOfPostResJson: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObject200ApplicationJSONEmpty+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObject200ApplicationJSONEmpty+Serialization.swift deleted file mode 100755 index f4506fa77..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObject200ApplicationJSONEmpty+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.RequestBodyPostEmptyObject200ApplicationJSONEmpty: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies+Serialization.swift deleted file mode 100755 index f267fbfb2..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectEmpty+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectEmpty+Serialization.swift new file mode 100755 index 000000000..a4a5120b0 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectEmpty+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.RequestBodyPostEmptyObjectEmpty: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectRequestBodyEmpty+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectRequestBodyEmpty+Serialization.swift deleted file mode 100755 index 52aaf6cda..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectRequestBodyEmpty+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.RequestBodyPostEmptyObjectRequestBodyEmpty: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties+Serialization.swift deleted file mode 100755 index b3197e83b..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded+Serialization.swift deleted file mode 100755 index 34bd91042..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded+Serialization.swift +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - switch format { - case .form: - return serializeModel(with: try serializedFormParameters(formatOverride: format), format: format) - case .path, .query, .header, .multipart: - throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded", format: format.formatDescription) - } - } -} - -extension Operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded: FormBodySerializable { - func serializedFormParameters(formatOverride: SerializableFormat?) throws -> [SerializedParameter] { - return [ - SerializedParameter(name: "bool3", serialized: try bool3.serialize(with: .form(explode: true))), - SerializedParameter(name: "num3", serialized: try num3Wrapper.serialize(with: .form(explode: true))), - SerializedParameter(name: "str3", serialized: try str3.serialize(with: .form(explode: true))) - ] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitFormRequestBody+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitFormRequestBody+Serialization.swift new file mode 100755 index 000000000..699301680 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitFormRequestBody+Serialization.swift @@ -0,0 +1,25 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + switch format { + case .form: + return serializeModel(with: try serializedFormParameters(formatOverride: format), format: format) + case .path, .query, .header, .multipart: + throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody", format: format.formatDescription) + } + } +} + +extension Operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody: FormBodySerializable { + func serializedFormParameters(formatOverride: SerializableFormat?) throws -> [SerializedParameter] { + return [ + SerializedParameter(name: "bool3", serialized: try bool3.serialize(with: .form(explode: true))), + SerializedParameter(name: "num3", serialized: try num3Wrapper.serialize(with: .form(explode: true))), + SerializedParameter(name: "str3", serialized: try str3.serialize(with: .form(explode: true))) + ] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitMultipartFormData+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitMultipartFormData+Serialization.swift deleted file mode 100755 index 30796a78c..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitMultipartFormData+Serialization.swift +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - switch format { - case .multipart: - // Deep, non-JSON encoded multipart serialization is not supported. - throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData", format: format.formatDescription) - case .path, .query, .header, .form: - throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData", format: format.formatDescription) - } - } -} - -extension Operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData: MultipartFormBodySerializable { - func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { - return [ - .value(name: "bool2", serialized: try bool2.serialize(with: .multipart)), - .value(name: "num2", serialized: try num2Wrapper.serialize(with: .multipart)), - .value(name: "str2", serialized: try str2.serialize(with: .multipart)) - ] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody+Serialization.swift new file mode 100755 index 000000000..9dc1aa372 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody+Serialization.swift @@ -0,0 +1,26 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + switch format { + case .multipart: + // Deep, non-JSON encoded multipart serialization is not supported. + throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody", format: format.formatDescription) + case .path, .query, .header, .form: + throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody", format: format.formatDescription) + } + } +} + +extension Operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody: MultipartFormBodySerializable { + func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { + return [ + .value(name: "bool2", serialized: try bool2.serialize(with: .multipart)), + .value(name: "num2", serialized: try num2Wrapper.serialize(with: .multipart)), + .value(name: "str2", serialized: try str2.serialize(with: .multipart)) + ] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded+Serialization.swift deleted file mode 100755 index 7539c8b70..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded+Serialization.swift +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - switch format { - case .form: - return serializeModel(with: try serializedFormParameters(formatOverride: format), format: format) - case .path, .query, .header, .multipart: - throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded", format: format.formatDescription) - } - } -} - -extension Operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded: FormBodySerializable { - func serializedFormParameters(formatOverride: SerializableFormat?) throws -> [SerializedParameter] { - return [ - SerializedParameter(name: "bool3", serialized: try bool3.serialize(with: .form(explode: true))), - SerializedParameter(name: "num3", serialized: try num3Wrapper.serialize(with: .form(explode: true))), - SerializedParameter(name: "str3", serialized: try str3.serialize(with: .form(explode: true))) - ] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody+Serialization.swift new file mode 100755 index 000000000..8e10c98c1 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody+Serialization.swift @@ -0,0 +1,25 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + switch format { + case .form: + return serializeModel(with: try serializedFormParameters(formatOverride: format), format: format) + case .path, .query, .header, .multipart: + throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody", format: format.formatDescription) + } + } +} + +extension Operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody: FormBodySerializable { + func serializedFormParameters(formatOverride: SerializableFormat?) throws -> [SerializedParameter] { + return [ + SerializedParameter(name: "bool3", serialized: try bool3.serialize(with: .form(explode: true))), + SerializedParameter(name: "num3", serialized: try num3Wrapper.serialize(with: .form(explode: true))), + SerializedParameter(name: "str3", serialized: try str3.serialize(with: .form(explode: true))) + ] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData+Serialization.swift deleted file mode 100755 index 4db0cebed..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData+Serialization.swift +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - switch format { - case .multipart: - // Deep, non-JSON encoded multipart serialization is not supported. - throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData", format: format.formatDescription) - case .path, .query, .header, .form: - throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData", format: format.formatDescription) - } - } -} - -extension Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData: MultipartFormBodySerializable { - func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { - return [ - .value(name: "bool2", serialized: try bool2.serialize(with: .multipart)), - .value(name: "num2", serialized: try num2Wrapper.serialize(with: .multipart)), - .value(name: "str2", serialized: try str2.serialize(with: .multipart)) - ] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody+Serialization.swift new file mode 100755 index 000000000..2ad96d6f6 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody+Serialization.swift @@ -0,0 +1,26 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + switch format { + case .multipart: + // Deep, non-JSON encoded multipart serialization is not supported. + throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody", format: format.formatDescription) + case .path, .query, .header, .form: + throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody", format: format.formatDescription) + } + } +} + +extension Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody: MultipartFormBodySerializable { + func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { + return [ + .value(name: "bool2", serialized: try bool2.serialize(with: .multipart)), + .value(name: "num2", serialized: try num2Wrapper.serialize(with: .multipart)), + .value(name: "str2", serialized: try str2.serialize(with: .multipart)) + ] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartDifferentFileNameRequestBody+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartDifferentFileNameRequestBody+Serialization.swift index 53d35d60a..7846ab12a 100755 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartDifferentFileNameRequestBody+Serialization.swift +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartDifferentFileNameRequestBody+Serialization.swift @@ -18,7 +18,7 @@ extension Operations.RequestBodyPutMultipartDifferentFileNameRequestBody: Serial extension Operations.RequestBodyPutMultipartDifferentFileNameRequestBody: MultipartFormBodySerializable { func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { return [ - .file(name: "differentFileName", filename: differentFileName?.differentFileName, data: differentFileName?.content) + .file(name: "differentFileName", filename: differentFileName?.fileName, data: differentFileName?.content) ] } } diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName+Serialization.swift deleted file mode 100755 index 7d6b8fcd9..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName+Serialization.swift +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - switch format { - case .multipart: - // Deep, non-JSON encoded multipart serialization is not supported. - throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName", format: format.formatDescription) - case .path, .query, .header, .form: - throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName", format: format.formatDescription) - } - } -} - -extension Operations.RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName: MultipartFormBodySerializable { - func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { - return [ - .value(name: "content", serialized: try content.serialize(with: .multipart)), - .value(name: "differentFileName", serialized: try differentFileName.serialize(with: .multipart)) - ] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartFileRequestBody+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartFileRequestBody+Serialization.swift index fceaeb5c1..19f4c9b56 100755 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartFileRequestBody+Serialization.swift +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartFileRequestBody+Serialization.swift @@ -18,7 +18,7 @@ extension Operations.RequestBodyPutMultipartFileRequestBody: Serializable { extension Operations.RequestBodyPutMultipartFileRequestBody: MultipartFormBodySerializable { func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { return [ - .file(name: "file", filename: file?.file, data: file?.content) + .file(name: "file", filename: file?.fileName, data: file?.content) ] } } diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartFileRequestBodyFile+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartFileRequestBodyFile+Serialization.swift deleted file mode 100755 index 7cc4af709..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/RequestBodyPutMultipartFileRequestBodyFile+Serialization.swift +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.RequestBodyPutMultipartFileRequestBodyFile: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - switch format { - case .multipart: - // Deep, non-JSON encoded multipart serialization is not supported. - throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPutMultipartFileRequestBodyFile", format: format.formatDescription) - case .path, .query, .header, .form: - throw SerializationError.invalidSerializationParameter(type: "Operations.RequestBodyPutMultipartFileRequestBodyFile", format: format.formatDescription) - } - } -} - -extension Operations.RequestBodyPutMultipartFileRequestBodyFile: MultipartFormBodySerializable { - func serializedMultipartFormParameters(formatOverride: SerializableFormat?) throws -> [MultipartFormParameter] { - return [ - .value(name: "content", serialized: try content.serialize(with: .multipart)), - .value(name: "file", serialized: try file.serialize(with: .multipart)) - ] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/RequiredObj+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/RequiredObj+Serialization.swift new file mode 100755 index 000000000..a0e7099e6 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/RequiredObj+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.RequiredObj: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectCamelCaseInt32EnumVal+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectCamelCaseInt32EnumVal+Serialization.swift deleted file mode 100755 index f73ac54fc..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectCamelCaseInt32EnumVal+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.SimpleObjectCamelCaseInt32EnumVal: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectCamelCaseIntEnumVal+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectCamelCaseIntEnumVal+Serialization.swift deleted file mode 100755 index ba1ad3925..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectCamelCaseIntEnumVal+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.SimpleObjectCamelCaseIntEnumVal: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectInt32Enum+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectInt32Enum+Serialization.swift deleted file mode 100755 index 77425407b..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectInt32Enum+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.SimpleObjectInt32Enum: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectIntEnum+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectIntEnum+Serialization.swift deleted file mode 100755 index 592b1bace..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/SimpleObjectIntEnum+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.SimpleObjectIntEnum: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/Two+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/Two+Serialization.swift new file mode 100755 index 000000000..8293361f3 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/Two+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.Two: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/TypeModel+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/TypeModel+Serialization.swift new file mode 100755 index 000000000..b6a755614 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/TypeModel+Serialization.swift @@ -0,0 +1,14 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.TypeModel: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return try rawValue.serialize(with: format) + } + + func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { + return [QueryParameter(key: [], serialized: try serialize(with: format))] + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/TypedParameterGenerationGetObj+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/TypedParameterGenerationGetObj+Serialization.swift deleted file mode 100755 index 467751663..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/TypedParameterGenerationGetObj+Serialization.swift +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.TypedParameterGenerationGetObj: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - switch format { - case .query: - return try serializeQueryParameterSerializable(self, with: format) - case .path, .header, .multipart, .form: - throw SerializationError.invalidSerializationParameter(type: "Operations.TypedParameterGenerationGetObj", format: format.formatDescription) - } - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return try serializedQueryParameters(with: nil, formatOverride: format) - } -} - -extension Operations.TypedParameterGenerationGetObj: QueryParameterSerializable { - func serializedQueryParameters(with parameterDefaults: ParameterDefaults?, formatOverride: SerializableFormat?) throws -> [QueryParameter] { - let builder = QueryParameterBuilder() - try builder.addQueryParameters(from: bool, named: "bool", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) - try builder.addQueryParameters(from: numWrapper, named: "num", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) - try builder.addQueryParameters(from: str, named: "str", format: formatOverride ?? .query(style: .form, explode: false), parameterDefaults: parameterDefaults) - return builder.build() - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/UnionBigIntDecimalJson+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/UnionBigIntDecimalJson+Serialization.swift new file mode 100755 index 000000000..fa1773c44 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/UnionBigIntDecimalJson+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.UnionBigIntDecimalJson: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/UnionBigIntDecimalResJson+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/UnionBigIntDecimalResJson+Serialization.swift deleted file mode 100755 index 4e2423991..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/UnionBigIntDecimalResJson+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.UnionBigIntDecimalResJson: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/UnionDateTimeBigIntJson+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/UnionDateTimeBigIntJson+Serialization.swift new file mode 100755 index 000000000..6b2beb45f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/UnionDateTimeBigIntJson+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Operations.UnionDateTimeBigIntJson: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/UnionDateTimeBigIntResJson+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/UnionDateTimeBigIntResJson+Serialization.swift deleted file mode 100755 index c41d83674..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/UnionDateTimeBigIntResJson+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.UnionDateTimeBigIntResJson: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/UsageExamplePostEnumParameter+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/UsageExamplePostEnumParameter+Serialization.swift deleted file mode 100755 index ec22d4953..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/UsageExamplePostEnumParameter+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.UsageExamplePostEnumParameter: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/UsageExamplePostOptEnumParameter+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/UsageExamplePostOptEnumParameter+Serialization.swift deleted file mode 100755 index bcf8dc147..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/UsageExamplePostOptEnumParameter+Serialization.swift +++ /dev/null @@ -1,14 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Operations.UsageExamplePostOptEnumParameter: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return try rawValue.serialize(with: format) - } - - func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] { - return [QueryParameter(key: [], serialized: try serialize(with: format))] - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/WeaklyTypedOneOfReadWriteObject+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/WeaklyTypedOneOfReadWriteObject+Serialization.swift new file mode 100755 index 000000000..8102fe70c --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/internal/models/WeaklyTypedOneOfReadWriteObject+Serialization.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + + +import Foundation + +extension Shared.WeaklyTypedOneOfReadWriteObject: Serializable { + func serialize(with format: SerializableFormat) throws -> String { + return "" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/internal/models/WeaklyTypedOneOfReadWriteObjectInput+Serialization.swift b/swift-client-sdk/Sources/OpenAPI/internal/models/WeaklyTypedOneOfReadWriteObjectInput+Serialization.swift deleted file mode 100755 index 874a0efc7..000000000 --- a/swift-client-sdk/Sources/OpenAPI/internal/models/WeaklyTypedOneOfReadWriteObjectInput+Serialization.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - - -import Foundation - -extension Shared.WeaklyTypedOneOfReadWriteObjectInput: Serializable { - func serialize(with format: SerializableFormat) throws -> String { - return "" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/AnchorTypesGetResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/AnchorTypesGetResponse.swift index 4e6bc129a..aacf515aa 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/AnchorTypesGetResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/AnchorTypesGetResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum AnchorTypesGetResponse { case empty - case typeFromAnchor(Operations.TypeFromAnchor) + case typeFromAnchor(Operations.AnchorTypesGetTypeFromAnchor) var isEmpty: Bool { if case .empty = self { @@ -16,7 +16,7 @@ extension Operations { } } - public func typeFromAnchor() throws -> Operations.TypeFromAnchor { + public func typeFromAnchor() throws -> Operations.AnchorTypesGetTypeFromAnchor { guard case .typeFromAnchor(let value) = self else { throw OpenAPIError.missingResponseData } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/AnchorTypesGetTypeFromAnchor.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/AnchorTypesGetTypeFromAnchor.swift new file mode 100755 index 000000000..7535b5af4 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/AnchorTypesGetTypeFromAnchor.swift @@ -0,0 +1,26 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A successful response that contains the simpleObject sent in the request body + public struct AnchorTypesGetTypeFromAnchor { + /// A simple object that uses all our supported primitive types and enums and has optional properties. + public let json: Shared.SimpleObject? + + /// Creates an object with the specified parameters + /// + /// - Parameter json: A simple object that uses all our supported primitive types and enums and has optional properties. + /// + public init(json: Shared.SimpleObject? = nil) { + self.json = json + } + } +} + +extension Operations.AnchorTypesGetTypeFromAnchor: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/Args.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/Args.swift new file mode 100755 index 000000000..e81219558 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/Args.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct Args { + public let globalQueryParam: String + + /// Creates an object with the specified parameters + /// + /// + public init(globalQueryParam: String) { + self.globalQueryParam = globalQueryParam + } + } +} + +extension Operations.Args: Codable { + enum CodingKeys: String, CodingKey { + case globalQueryParam + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/BasicAuthRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/BasicAuthRequest.swift index d1597e8e1..853198f09 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/BasicAuthRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/BasicAuthRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct BasicAuthRequest: APIValue { public let passwd: String public let user: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(passwd: String, user: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ComponentBodyAndParamConflictRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ComponentBodyAndParamConflictRequest.swift index 5443196b0..437550efb 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ComponentBodyAndParamConflictRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ComponentBodyAndParamConflictRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct ComponentBodyAndParamConflictRequest: APIValue { public let simpleObject: Shared.SimpleObject public let str: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(simpleObject: Shared.SimpleObject, str: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ComponentBodyAndParamNoConflictRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ComponentBodyAndParamNoConflictRequest.swift index 402578aea..183ae373e 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ComponentBodyAndParamNoConflictRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ComponentBodyAndParamNoConflictRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct ComponentBodyAndParamNoConflictRequest: APIValue { public let paramStr: String public let simpleObject: Shared.SimpleObject - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(paramStr: String, simpleObject: Shared.SimpleObject) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ConflictingParamsRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ConflictingParamsRequest.swift index 05faa5b27..ac6b63415 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ConflictingParamsRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ConflictingParamsRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct ConflictingParamsRequest: APIValue { public let strPathParameter: String public let strQueryParameter: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(strPathParameter: String, strQueryParameter: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/CreateFileFile.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/CreateFileFile.swift new file mode 100755 index 000000000..8fde41e18 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/CreateFileFile.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct CreateFileFile: APIValue { + public let content: Data + public let fileName: String + + /// Creates an object with the specified parameters + /// + /// + public init(content: Data, fileName: String) { + self.content = content + self.fileName = fileName + } + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/CreateFileRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/CreateFileRequestBody.swift index 835f47f50..a030ca58d 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/CreateFileRequestBody.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/CreateFileRequestBody.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// A model object public struct CreateFileRequestBody: APIValue { - public let file: Operations.CreateFileRequestBodyFile? + public let file: Operations.CreateFileFile? /// Creates an object with the specified parameters /// /// - public init(file: Operations.CreateFileRequestBodyFile? = nil) { + public init(file: Operations.CreateFileFile? = nil) { self.file = file } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/CreateFileRequestBodyFile.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/CreateFileRequestBodyFile.swift deleted file mode 100755 index 567713380..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/CreateFileRequestBodyFile.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct CreateFileRequestBodyFile: APIValue { - public let content: Data - public let file: String - - /// Creates an object with the specified parameters - /// - /// - public init(content: Data, file: String) { - self.content = content - self.file = file - } - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DateParamWithDefaultRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DateParamWithDefaultRequest.swift index d265cca77..c2dbd5785 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DateParamWithDefaultRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DateParamWithDefaultRequest.swift @@ -3,13 +3,13 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct DateParamWithDefaultRequest: APIValue { /// A date parameter with a default value @DateOnly public private(set) var dateInput: Date - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter dateInput: A date parameter with a default value /// diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DateTimeParamWithDefaultRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DateTimeParamWithDefaultRequest.swift index 798d95534..7c66abcdf 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DateTimeParamWithDefaultRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DateTimeParamWithDefaultRequest.swift @@ -3,13 +3,13 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct DateTimeParamWithDefaultRequest: APIValue { /// A date time parameter with a default value @DateTime public private(set) var dateTimeInput: Date - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter dateTimeInput: A date time parameter with a default value /// diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DecimalParamWithDefaultRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DecimalParamWithDefaultRequest.swift index f7530d189..dab45a747 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DecimalParamWithDefaultRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DecimalParamWithDefaultRequest.swift @@ -3,13 +3,13 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct DecimalParamWithDefaultRequest: APIValue { /// A decimal parameter with a default value @DecimalSerialized public private(set) var decimalInput: Double - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter decimalInput: A decimal parameter with a default value /// diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapArgs.swift new file mode 100755 index 000000000..f658f663f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapArgs.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public enum DeepObjectQueryParamsMapArgs { + case string(String) + case array([String]) + } +} + +extension Operations.DeepObjectQueryParamsMapArgs: Codable { + public init(from decoder: Decoder) throws { + if let value = try? String(from: decoder) { + self = .string(value) + } else if let value = try? [String](from: decoder) { + self = .array(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .string(let value): + try value.encode(to: encoder) + case .array(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapRequest.swift index e9dfa07ab..4f90f0a01 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct DeepObjectQueryParamsMapRequest: APIValue { public let mapParam: [String: String] public let mapArrParam: [String: [String]]? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(mapParam: [String: String], mapArrParam: [String: [String]]? = nil) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapRes.swift index a3cb088d5..8326bbc72 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct DeepObjectQueryParamsMapRes { - public let args: [String: Operations.DeepObjectQueryParamsMapResArgs] + public let args: [String: Operations.DeepObjectQueryParamsMapArgs] public let url: String /// Creates an object with the specified parameters /// /// - public init(args: [String: Operations.DeepObjectQueryParamsMapResArgs], url: String) { + public init(args: [String: Operations.DeepObjectQueryParamsMapArgs], url: String) { self.args = args self.url = url } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapResArgs.swift deleted file mode 100755 index 02e913b69..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapResArgs.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public enum DeepObjectQueryParamsMapResArgs { - case string(String) - case array([String]) - } -} - -extension Operations.DeepObjectQueryParamsMapResArgs: Codable { - public init(from decoder: Decoder) throws { - if let value = try? String(from: decoder) { - self = .string(value) - } else if let value = try? [String](from: decoder) { - self = .array(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .string(let value): - try value.encode(to: encoder) - case .array(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectArgs.swift new file mode 100755 index 000000000..32516e908 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectArgs.swift @@ -0,0 +1,78 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct DeepObjectQueryParamsObjectArgs { + public let objArrParamArr: [String] + public let objParamAny: String + public let objParamBool: String + public let objParamBoolOpt: String + public let objParamDate: String + public let objParamDateTime: String + public let objParamEnum: String + public let objParamFloat32: String + public let objParamInt: String + public let objParamInt32: String + public let objParamInt32Enum: String + public let objParamIntEnum: String + public let objParamNum: String + public let objParamStr: String + public let objParamStrOpt: String + public let objParamBigint: String? + public let objParamBigintStr: String? + public let objParamDecimal: String? + public let objParamDecimalStr: String? + + /// Creates an object with the specified parameters + /// + /// + public init(objArrParamArr: [String], objParamAny: String, objParamBool: String, objParamBoolOpt: String, objParamDate: String, objParamDateTime: String, objParamEnum: String, objParamFloat32: String, objParamInt: String, objParamInt32: String, objParamInt32Enum: String, objParamIntEnum: String, objParamNum: String, objParamStr: String, objParamStrOpt: String, objParamBigint: String? = nil, objParamBigintStr: String? = nil, objParamDecimal: String? = nil, objParamDecimalStr: String? = nil) { + self.objArrParamArr = objArrParamArr + self.objParamAny = objParamAny + self.objParamBool = objParamBool + self.objParamBoolOpt = objParamBoolOpt + self.objParamDate = objParamDate + self.objParamDateTime = objParamDateTime + self.objParamEnum = objParamEnum + self.objParamFloat32 = objParamFloat32 + self.objParamInt = objParamInt + self.objParamInt32 = objParamInt32 + self.objParamInt32Enum = objParamInt32Enum + self.objParamIntEnum = objParamIntEnum + self.objParamNum = objParamNum + self.objParamStr = objParamStr + self.objParamStrOpt = objParamStrOpt + self.objParamBigint = objParamBigint + self.objParamBigintStr = objParamBigintStr + self.objParamDecimal = objParamDecimal + self.objParamDecimalStr = objParamDecimalStr + } + } +} + +extension Operations.DeepObjectQueryParamsObjectArgs: Codable { + enum CodingKeys: String, CodingKey { + case objArrParamArr = "objArrParam[arr]" + case objParamAny = "objParam[any]" + case objParamBool = "objParam[bool]" + case objParamBoolOpt = "objParam[boolOpt]" + case objParamDate = "objParam[date]" + case objParamDateTime = "objParam[dateTime]" + case objParamEnum = "objParam[enum]" + case objParamFloat32 = "objParam[float32]" + case objParamInt = "objParam[int]" + case objParamInt32 = "objParam[int32]" + case objParamInt32Enum = "objParam[int32Enum]" + case objParamIntEnum = "objParam[intEnum]" + case objParamNum = "objParam[num]" + case objParamStr = "objParam[str]" + case objParamStrOpt = "objParam[strOpt]" + case objParamBigint = "objParam[bigint]" + case objParamBigintStr = "objParam[bigintStr]" + case objParamDecimal = "objParam[decimal]" + case objParamDecimalStr = "objParam[decimalStr]" + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectObjArrParam.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectObjArrParam.swift deleted file mode 100755 index 8aaf8c954..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectObjArrParam.swift +++ /dev/null @@ -1,17 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - - public struct DeepObjectQueryParamsObjectObjArrParam: APIValue { - public let arr: [String]? - - /// Creates an object with the specified parameters - /// - /// - public init(arr: [String]? = nil) { - self.arr = arr - } - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectRequest.swift index 02f45e1ba..888a9ed80 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectRequest.swift @@ -3,17 +3,17 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct DeepObjectQueryParamsObjectRequest: APIValue { /// A simple object that uses all our supported primitive types and enums and has optional properties. public let objParam: Shared.SimpleObject - public let objArrParam: Operations.DeepObjectQueryParamsObjectObjArrParam? + public let objArrParam: Operations.ObjArrParam? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter objParam: A simple object that uses all our supported primitive types and enums and has optional properties. /// - public init(objParam: Shared.SimpleObject, objArrParam: Operations.DeepObjectQueryParamsObjectObjArrParam? = nil) { + public init(objParam: Shared.SimpleObject, objArrParam: Operations.ObjArrParam? = nil) { self.objParam = objParam self.objArrParam = objArrParam } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectRes.swift index 53b88f932..61319bd94 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct DeepObjectQueryParamsObjectRes { - public let args: Operations.DeepObjectQueryParamsObjectResArgs + public let args: Operations.DeepObjectQueryParamsObjectArgs public let url: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.DeepObjectQueryParamsObjectResArgs, url: String) { + public init(args: Operations.DeepObjectQueryParamsObjectArgs, url: String) { self.args = args self.url = url } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectResArgs.swift deleted file mode 100755 index 37081e9b8..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectResArgs.swift +++ /dev/null @@ -1,78 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct DeepObjectQueryParamsObjectResArgs { - public let objArrParamArr: [String] - public let objParamAny: String - public let objParamBool: String - public let objParamBoolOpt: String - public let objParamDate: String - public let objParamDateTime: String - public let objParamEnum: String - public let objParamFloat32: String - public let objParamInt: String - public let objParamInt32: String - public let objParamInt32Enum: String - public let objParamIntEnum: String - public let objParamNum: String - public let objParamStr: String - public let objParamStrOpt: String - public let objParamBigint: String? - public let objParamBigintStr: String? - public let objParamDecimal: String? - public let objParamDecimalStr: String? - - /// Creates an object with the specified parameters - /// - /// - public init(objArrParamArr: [String], objParamAny: String, objParamBool: String, objParamBoolOpt: String, objParamDate: String, objParamDateTime: String, objParamEnum: String, objParamFloat32: String, objParamInt: String, objParamInt32: String, objParamInt32Enum: String, objParamIntEnum: String, objParamNum: String, objParamStr: String, objParamStrOpt: String, objParamBigint: String? = nil, objParamBigintStr: String? = nil, objParamDecimal: String? = nil, objParamDecimalStr: String? = nil) { - self.objArrParamArr = objArrParamArr - self.objParamAny = objParamAny - self.objParamBool = objParamBool - self.objParamBoolOpt = objParamBoolOpt - self.objParamDate = objParamDate - self.objParamDateTime = objParamDateTime - self.objParamEnum = objParamEnum - self.objParamFloat32 = objParamFloat32 - self.objParamInt = objParamInt - self.objParamInt32 = objParamInt32 - self.objParamInt32Enum = objParamInt32Enum - self.objParamIntEnum = objParamIntEnum - self.objParamNum = objParamNum - self.objParamStr = objParamStr - self.objParamStrOpt = objParamStrOpt - self.objParamBigint = objParamBigint - self.objParamBigintStr = objParamBigintStr - self.objParamDecimal = objParamDecimal - self.objParamDecimalStr = objParamDecimalStr - } - } -} - -extension Operations.DeepObjectQueryParamsObjectResArgs: Codable { - enum CodingKeys: String, CodingKey { - case objArrParamArr = "objArrParam[arr]" - case objParamAny = "objParam[any]" - case objParamBool = "objParam[bool]" - case objParamBoolOpt = "objParam[boolOpt]" - case objParamDate = "objParam[date]" - case objParamDateTime = "objParam[dateTime]" - case objParamEnum = "objParam[enum]" - case objParamFloat32 = "objParam[float32]" - case objParamInt = "objParam[int]" - case objParamInt32 = "objParam[int32]" - case objParamInt32Enum = "objParam[int32Enum]" - case objParamIntEnum = "objParam[intEnum]" - case objParamNum = "objParam[num]" - case objParamStr = "objParam[str]" - case objParamStrOpt = "objParam[strOpt]" - case objParamBigint = "objParam[bigint]" - case objParamBigintStr = "objParam[bigintStr]" - case objParamDecimal = "objParam[decimal]" - case objParamDecimalStr = "objParam[decimalStr]" - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeleteResourceRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeleteResourceRequest.swift index 6eb37e7d4..d91f8a8c9 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeleteResourceRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DeleteResourceRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct DeleteResourceRequest: APIValue { public let resourceId: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(resourceId: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.swift deleted file mode 100755 index 2761eec30..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.swift +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A successful response that contains a deprecatedObject sent in the request body - public struct DeprecatedObjectInSchemaGet200ApplicationJSON { - - @available(*, deprecated, message: "This object is deprecated") - public let json: Shared.DeprecatedObject? - - /// Creates an object with the specified parameters - /// - /// - Parameter json: - /// - @available(*, deprecated, message: "This initializer uses deprecated fields and will be removed in a future version.") - public init(json: Shared.DeprecatedObject? = nil) { - self.json = json - } - } -} - -extension Operations.DeprecatedObjectInSchemaGet200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGetResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGetResponse.swift index 59e64eb9f..273ad6040 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGetResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGetResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum DeprecatedObjectInSchemaGetResponse { case empty - case deprecatedObjectInSchemaGet200ApplicationJSONObject(Operations.DeprecatedObjectInSchemaGet200ApplicationJSON) + case object(Operations.DeprecatedObjectInSchemaGetResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func deprecatedObjectInSchemaGet200ApplicationJSONObject() throws -> Operations.DeprecatedObjectInSchemaGet200ApplicationJSON { - guard case .deprecatedObjectInSchemaGet200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.DeprecatedObjectInSchemaGetResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGetResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGetResponseBody.swift new file mode 100755 index 000000000..c0a151a7d --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGetResponseBody.swift @@ -0,0 +1,28 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A successful response that contains a deprecatedObject sent in the request body + public struct DeprecatedObjectInSchemaGetResponseBody { + + @available(*, deprecated, message: "This object is deprecated") + public let json: Shared.DeprecatedObject? + + /// Creates an object with the specified parameters + /// + /// - Parameter json: + /// + @available(*, deprecated, message: "This initializer uses deprecated fields and will be removed in a future version.") + public init(json: Shared.DeprecatedObject? = nil) { + self.json = json + } + } +} + +extension Operations.DeprecatedObjectInSchemaGetResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedOperationNoCommentsGetRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedOperationNoCommentsGetRequest.swift index d69c308b3..6cb730649 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedOperationNoCommentsGetRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedOperationNoCommentsGetRequest.swift @@ -3,13 +3,13 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct DeprecatedOperationNoCommentsGetRequest: APIValue { @available(*, deprecated, message: "This will be removed in a future release, please migrate away from it as soon as possible") public let deprecatedParameter: String? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter deprecatedParameter: /// diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedOperationWithCommentsGetRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedOperationWithCommentsGetRequest.swift index 9b5b866af..ad5519145 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedOperationWithCommentsGetRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DeprecatedOperationWithCommentsGetRequest.swift @@ -3,7 +3,7 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct DeprecatedOperationWithCommentsGetRequest: APIValue { /// This is a string parameter @available(*, deprecated, renamed: "newParameter", message: "This parameter is deprecated") @@ -11,7 +11,7 @@ extension Operations { /// This is a string parameter public let newParameter: String? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter deprecatedParameter: This is a string parameter /// - Parameter newParameter: This is a string parameter diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DifferentFileName.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DifferentFileName.swift new file mode 100755 index 000000000..1d52a696a --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DifferentFileName.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct DifferentFileName: APIValue { + public let content: Data + public let fileName: String + + /// Creates an object with the specified parameters + /// + /// + public init(content: Data, fileName: String) { + self.content = content + self.fileName = fileName + } + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/DuplicateParamRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/DuplicateParamRequest.swift index ce6f3baf5..4a18e67e4 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/DuplicateParamRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/DuplicateParamRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct DuplicateParamRequest: APIValue { public let duplicateParamRequest: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(duplicateParamRequest: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/Empty.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/Empty.swift new file mode 100755 index 000000000..136b64c25 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/Empty.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct Empty { + + /// Creates an object + /// + /// + public init() { + } + } +} + +extension Operations.Empty: Codable { +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyObjectGetRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyObjectGetRequest.swift index 7977720da..5733164eb 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyObjectGetRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyObjectGetRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct EmptyObjectGetRequest: APIValue { public let emptyObject: Shared.EmptyObjectParam - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(emptyObject: Shared.EmptyObjectParam) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyRespWithEmptyProperies.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyRespWithEmptyProperies.swift new file mode 100755 index 000000000..0419b5d8f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyRespWithEmptyProperies.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct EmptyRespWithEmptyProperies { + + /// Creates an object + /// + /// + public init() { + } + } +} + +extension Operations.EmptyRespWithEmptyProperies: Codable { +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.swift deleted file mode 100755 index c0aac8e2b..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct EmptyResponseObjectWithCommentGet200ApplicationOctetStream { - - /// Creates an object - /// - /// - public init() { - } - } -} - -extension Operations.EmptyResponseObjectWithCommentGet200ApplicationOctetStream: Codable { -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyResponseObjectWithCommentGetResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyResponseObjectWithCommentGetResponseBody.swift new file mode 100755 index 000000000..d68999715 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyResponseObjectWithCommentGetResponseBody.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct EmptyResponseObjectWithCommentGetResponseBody { + + /// Creates an object + /// + /// + public init() { + } + } +} + +extension Operations.EmptyResponseObjectWithCommentGetResponseBody: Codable { +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyWithEmptyProperties.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyWithEmptyProperties.swift new file mode 100755 index 000000000..8399de86e --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/EmptyWithEmptyProperties.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct EmptyWithEmptyProperties { + + /// Creates an object + /// + /// + public init() { + } + } +} + +extension Operations.EmptyWithEmptyProperties: Codable { +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/EnumNameOverride.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/EnumNameOverride.swift new file mode 100755 index 000000000..01a160d21 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/EnumNameOverride.swift @@ -0,0 +1,12 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// An enum type + public enum EnumNameOverride: String, Codable, APIValue { + case value1 = "value1" + case value2 = "value2" + case value3 = "value3" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/EnumParameter.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/EnumParameter.swift new file mode 100755 index 000000000..d6601c555 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/EnumParameter.swift @@ -0,0 +1,12 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// An enum type + public enum EnumParameter: String, Codable, APIValue { + case value1 = "value1" + case value2 = "value2" + case value3 = "value3" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/File.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/File.swift new file mode 100755 index 000000000..8fb5a9c4a --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/File.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct File: APIValue { + public let content: Data + public let fileName: String + + /// Creates an object with the specified parameters + /// + /// + public init(content: Data, fileName: String) { + self.content = content + self.fileName = fileName + } + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayArgs.swift new file mode 100755 index 000000000..3632b8660 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayArgs.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct FormQueryParamsArrayArgs { + public let arrParam: String + public let arrParamExploded: [String] + + /// Creates an object with the specified parameters + /// + /// + public init(arrParam: String, arrParamExploded: [String]) { + self.arrParam = arrParam + self.arrParamExploded = arrParamExploded + } + } +} + +extension Operations.FormQueryParamsArrayArgs: Codable { + enum CodingKeys: String, CodingKey { + case arrParam + case arrParamExploded + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayRequest.swift index 26639dcfb..9374cc98a 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct FormQueryParamsArrayRequest: APIValue { public let arrParam: [String]? public let arrParamExploded: [Int]? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(arrParam: [String]? = nil, arrParamExploded: [Int]? = nil) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayRes.swift index 408d09f9a..2698cafcb 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct FormQueryParamsArrayRes { - public let args: Operations.FormQueryParamsArrayResArgs + public let args: Operations.FormQueryParamsArrayArgs public let url: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.FormQueryParamsArrayResArgs, url: String) { + public init(args: Operations.FormQueryParamsArrayArgs, url: String) { self.args = args self.url = url } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayResArgs.swift deleted file mode 100755 index 2fc80e9ce..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsArrayResArgs.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct FormQueryParamsArrayResArgs { - public let arrParam: String - public let arrParamExploded: [String] - - /// Creates an object with the specified parameters - /// - /// - public init(arrParam: String, arrParamExploded: [String]) { - self.arrParam = arrParam - self.arrParamExploded = arrParamExploded - } - } -} - -extension Operations.FormQueryParamsArrayResArgs: Codable { - enum CodingKeys: String, CodingKey { - case arrParam - case arrParamExploded - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectArgs.swift new file mode 100755 index 000000000..f403e39f0 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectArgs.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct FormQueryParamsCamelObjectArgs { + public let itemCount: String + public let searchTerm: String + + /// Creates an object with the specified parameters + /// + /// + public init(itemCount: String, searchTerm: String) { + self.itemCount = itemCount + self.searchTerm = searchTerm + } + } +} + +extension Operations.FormQueryParamsCamelObjectArgs: Codable { + enum CodingKeys: String, CodingKey { + case itemCount = "item_count" + case searchTerm = "search_term" + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectObjParam.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectObjParam.swift deleted file mode 100755 index d05e0f320..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectObjParam.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - - public struct FormQueryParamsCamelObjectObjParam: APIValue { - public let encodedCount: String? - public let encodedTerm: String? - - /// Creates an object with the specified parameters - /// - /// - public init(encodedCount: String? = nil, encodedTerm: String? = nil) { - self.encodedCount = encodedCount - self.encodedTerm = encodedTerm - } - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectObjParamExploded.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectObjParamExploded.swift deleted file mode 100755 index 7ae7984d8..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectObjParamExploded.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - - public struct FormQueryParamsCamelObjectObjParamExploded: APIValue { - public let itemCount: String? - public let searchTerm: String? - - /// Creates an object with the specified parameters - /// - /// - public init(itemCount: String? = nil, searchTerm: String? = nil) { - self.itemCount = itemCount - self.searchTerm = searchTerm - } - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectRequest.swift index 91a8c7650..edd3e67eb 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectRequest.swift @@ -3,15 +3,15 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct FormQueryParamsCamelObjectRequest: APIValue { - public let objParamExploded: Operations.FormQueryParamsCamelObjectObjParamExploded - public let objParam: Operations.FormQueryParamsCamelObjectObjParam? + public let objParamExploded: Operations.ObjParamExploded + public let objParam: Operations.ObjParam? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - public init(objParamExploded: Operations.FormQueryParamsCamelObjectObjParamExploded, objParam: Operations.FormQueryParamsCamelObjectObjParam? = nil) { + public init(objParamExploded: Operations.ObjParamExploded, objParam: Operations.ObjParam? = nil) { self.objParamExploded = objParamExploded self.objParam = objParam } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectRes.swift index de9b326e9..60e1574b4 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct FormQueryParamsCamelObjectRes { - public let args: Operations.FormQueryParamsCamelObjectResArgs + public let args: Operations.FormQueryParamsCamelObjectArgs public let url: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.FormQueryParamsCamelObjectResArgs, url: String) { + public init(args: Operations.FormQueryParamsCamelObjectArgs, url: String) { self.args = args self.url = url } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectResArgs.swift deleted file mode 100755 index 2854e607f..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectResArgs.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct FormQueryParamsCamelObjectResArgs { - public let itemCount: String - public let searchTerm: String - - /// Creates an object with the specified parameters - /// - /// - public init(itemCount: String, searchTerm: String) { - self.itemCount = itemCount - self.searchTerm = searchTerm - } - } -} - -extension Operations.FormQueryParamsCamelObjectResArgs: Codable { - enum CodingKeys: String, CodingKey { - case itemCount = "item_count" - case searchTerm = "search_term" - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsMapRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsMapRequest.swift index a023b29c9..02afc01d6 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsMapRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsMapRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct FormQueryParamsMapRequest: APIValue { public let mapParam: [String: String]? public let mapParamExploded: [String: Int]? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(mapParam: [String: String]? = nil, mapParamExploded: [String: Int]? = nil) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectArgs.swift new file mode 100755 index 000000000..e4ef0e092 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectArgs.swift @@ -0,0 +1,84 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct FormQueryParamsObjectArgs { + public let any: String + public let bool: String + public let date: String + public let dateTime: String + public let `enum`: String + public let float32: String + public let int: String + public let int32: String + public let int32Enum: String + public let intEnum: String + public let num: String + public let objParam: String + public let str: String + public let bigint: String? + public let bigintStr: String? + public let boolOpt: String? + public let decimal: String? + public let decimalStr: String? + public let intOptNull: String? + public let numOptNull: String? + public let strOpt: String? + + /// Creates an object with the specified parameters + /// + /// + public init(any: String, bool: String, date: String, dateTime: String, `enum`: String, float32: String, int: String, int32: String, int32Enum: String, intEnum: String, num: String, objParam: String, str: String, bigint: String? = nil, bigintStr: String? = nil, boolOpt: String? = nil, decimal: String? = nil, decimalStr: String? = nil, intOptNull: String? = nil, numOptNull: String? = nil, strOpt: String? = nil) { + self.any = any + self.bool = bool + self.date = date + self.dateTime = dateTime + self.`enum` = `enum` + self.float32 = float32 + self.int = int + self.int32 = int32 + self.int32Enum = int32Enum + self.intEnum = intEnum + self.num = num + self.objParam = objParam + self.str = str + self.bigint = bigint + self.bigintStr = bigintStr + self.boolOpt = boolOpt + self.decimal = decimal + self.decimalStr = decimalStr + self.intOptNull = intOptNull + self.numOptNull = numOptNull + self.strOpt = strOpt + } + } +} + +extension Operations.FormQueryParamsObjectArgs: Codable { + enum CodingKeys: String, CodingKey { + case any + case bool + case date + case dateTime + case `enum` = "enum" + case float32 + case int + case int32 + case int32Enum + case intEnum + case num + case objParam + case str + case bigint + case bigintStr + case boolOpt + case decimal + case decimalStr + case intOptNull + case numOptNull + case strOpt + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectRequest.swift index 714b8afc3..f03f5dc54 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectRequest.swift @@ -3,14 +3,14 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct FormQueryParamsObjectRequest: APIValue { /// A simple object that uses all our supported primitive types and enums and has optional properties. public let objParamExploded: Shared.SimpleObject /// A simple object that uses all our supported primitive types and enums and has optional properties. public let objParam: Shared.SimpleObject? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter objParamExploded: A simple object that uses all our supported primitive types and enums and has optional properties. /// - Parameter objParam: A simple object that uses all our supported primitive types and enums and has optional properties. diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectRes.swift index 7a2b89fef..02c5ae4ed 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct FormQueryParamsObjectRes { - public let args: Operations.FormQueryParamsObjectResArgs + public let args: Operations.FormQueryParamsObjectArgs public let url: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.FormQueryParamsObjectResArgs, url: String) { + public init(args: Operations.FormQueryParamsObjectArgs, url: String) { self.args = args self.url = url } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectResArgs.swift deleted file mode 100755 index dbed7f6fc..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsObjectResArgs.swift +++ /dev/null @@ -1,84 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct FormQueryParamsObjectResArgs { - public let any: String - public let bool: String - public let date: String - public let dateTime: String - public let `enum`: String - public let float32: String - public let int: String - public let int32: String - public let int32Enum: String - public let intEnum: String - public let num: String - public let objParam: String - public let str: String - public let bigint: String? - public let bigintStr: String? - public let boolOpt: String? - public let decimal: String? - public let decimalStr: String? - public let intOptNull: String? - public let numOptNull: String? - public let strOpt: String? - - /// Creates an object with the specified parameters - /// - /// - public init(any: String, bool: String, date: String, dateTime: String, `enum`: String, float32: String, int: String, int32: String, int32Enum: String, intEnum: String, num: String, objParam: String, str: String, bigint: String? = nil, bigintStr: String? = nil, boolOpt: String? = nil, decimal: String? = nil, decimalStr: String? = nil, intOptNull: String? = nil, numOptNull: String? = nil, strOpt: String? = nil) { - self.any = any - self.bool = bool - self.date = date - self.dateTime = dateTime - self.`enum` = `enum` - self.float32 = float32 - self.int = int - self.int32 = int32 - self.int32Enum = int32Enum - self.intEnum = intEnum - self.num = num - self.objParam = objParam - self.str = str - self.bigint = bigint - self.bigintStr = bigintStr - self.boolOpt = boolOpt - self.decimal = decimal - self.decimalStr = decimalStr - self.intOptNull = intOptNull - self.numOptNull = numOptNull - self.strOpt = strOpt - } - } -} - -extension Operations.FormQueryParamsObjectResArgs: Codable { - enum CodingKeys: String, CodingKey { - case any - case bool - case date - case dateTime - case `enum` = "enum" - case float32 - case int - case int32 - case int32Enum - case intEnum - case num - case objParam - case str - case bigint - case bigintStr - case boolOpt - case decimal - case decimalStr - case intOptNull - case numOptNull - case strOpt - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveArgs.swift new file mode 100755 index 000000000..a364b13ff --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveArgs.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct FormQueryParamsPrimitiveArgs { + public let boolParam: String + public let intParam: String + public let numParam: String + public let strParam: String + + /// Creates an object with the specified parameters + /// + /// + public init(boolParam: String, intParam: String, numParam: String, strParam: String) { + self.boolParam = boolParam + self.intParam = intParam + self.numParam = numParam + self.strParam = strParam + } + } +} + +extension Operations.FormQueryParamsPrimitiveArgs: Codable { + enum CodingKeys: String, CodingKey { + case boolParam + case intParam + case numParam + case strParam + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveRequest.swift index 6d8d28284..81c4a06d1 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveRequest.swift @@ -3,7 +3,7 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct FormQueryParamsPrimitiveRequest: APIValue { public let boolParam: Bool public let intParam: Int @@ -11,7 +11,7 @@ extension Operations { public private(set) var numParam: Double public let strParam: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(boolParam: Bool, intParam: Int, numParam: Double, strParam: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveRes.swift index df6238c3f..305116262 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct FormQueryParamsPrimitiveRes { - public let args: Operations.FormQueryParamsPrimitiveResArgs + public let args: Operations.FormQueryParamsPrimitiveArgs public let url: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.FormQueryParamsPrimitiveResArgs, url: String) { + public init(args: Operations.FormQueryParamsPrimitiveArgs, url: String) { self.args = args self.url = url } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveResArgs.swift deleted file mode 100755 index b91e0d0dc..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveResArgs.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct FormQueryParamsPrimitiveResArgs { - public let boolParam: String - public let intParam: String - public let numParam: String - public let strParam: String - - /// Creates an object with the specified parameters - /// - /// - public init(boolParam: String, intParam: String, numParam: String, strParam: String) { - self.boolParam = boolParam - self.intParam = intParam - self.numParam = numParam - self.strParam = strParam - } - } -} - -extension Operations.FormQueryParamsPrimitiveResArgs: Codable { - enum CodingKeys: String, CodingKey { - case boolParam - case intParam - case numParam - case strParam - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectArgs.swift new file mode 100755 index 000000000..6e63e21b5 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectArgs.swift @@ -0,0 +1,36 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct FormQueryParamsRefParamObjectArgs { + public let bool: String + public let int: String + public let num: String + public let refObjParam: String + public let str: String + + /// Creates an object with the specified parameters + /// + /// + public init(bool: String, int: String, num: String, refObjParam: String, str: String) { + self.bool = bool + self.int = int + self.num = num + self.refObjParam = refObjParam + self.str = str + } + } +} + +extension Operations.FormQueryParamsRefParamObjectArgs: Codable { + enum CodingKeys: String, CodingKey { + case bool + case int + case num + case refObjParam + case str + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectRequest.swift index ccece8bfe..6d2ca3f65 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct FormQueryParamsRefParamObjectRequest: APIValue { public let refObjParam: Shared.RefQueryParamObj? public let refObjParamExploded: Shared.RefQueryParamObjExploded? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(refObjParam: Shared.RefQueryParamObj? = nil, refObjParamExploded: Shared.RefQueryParamObjExploded? = nil) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectRes.swift index 5df405708..6b9be432e 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct FormQueryParamsRefParamObjectRes { - public let args: Operations.FormQueryParamsRefParamObjectResArgs + public let args: Operations.FormQueryParamsRefParamObjectArgs public let url: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.FormQueryParamsRefParamObjectResArgs, url: String) { + public init(args: Operations.FormQueryParamsRefParamObjectArgs, url: String) { self.args = args self.url = url } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectResArgs.swift deleted file mode 100755 index c07b32f62..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectResArgs.swift +++ /dev/null @@ -1,36 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct FormQueryParamsRefParamObjectResArgs { - public let bool: String - public let int: String - public let num: String - public let refObjParam: String - public let str: String - - /// Creates an object with the specified parameters - /// - /// - public init(bool: String, int: String, num: String, refObjParam: String, str: String) { - self.bool = bool - self.int = int - self.num = num - self.refObjParam = refObjParam - self.str = str - } - } -} - -extension Operations.FormQueryParamsRefParamObjectResArgs: Codable { - enum CodingKeys: String, CodingKey { - case bool - case int - case num - case refObjParam - case str - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/GetDocumentationPerLanguageRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/GetDocumentationPerLanguageRequest.swift index 15a0343b8..c5484924a 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/GetDocumentationPerLanguageRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/GetDocumentationPerLanguageRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct GetDocumentationPerLanguageRequest: APIValue { /// The language parameter for this endpoint. public let language: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter language: The language parameter for this endpoint. /// diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/GetGlobalNameOverride200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/GetGlobalNameOverride200ApplicationJSON.swift deleted file mode 100755 index 7ce4ca4a0..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/GetGlobalNameOverride200ApplicationJSON.swift +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A successful response that contains the simpleObject sent in the request body - public struct GetGlobalNameOverride200ApplicationJSON { - /// A simple object that uses all our supported primitive types and enums and has optional properties. - public let json: Shared.SimpleObject? - - /// Creates an object with the specified parameters - /// - /// - Parameter json: A simple object that uses all our supported primitive types and enums and has optional properties. - /// - public init(json: Shared.SimpleObject? = nil) { - self.json = json - } - } -} - -extension Operations.GetGlobalNameOverride200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/GetGlobalNameOverrideResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/GetGlobalNameOverrideResponse.swift index 1ad8fbdb8..cdab890e3 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/GetGlobalNameOverrideResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/GetGlobalNameOverrideResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum GetGlobalNameOverrideResponse { case empty - case getGlobalNameOverride200ApplicationJSONObject(Operations.GetGlobalNameOverride200ApplicationJSON) + case object(Operations.GetGlobalNameOverrideResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func getGlobalNameOverride200ApplicationJSONObject() throws -> Operations.GetGlobalNameOverride200ApplicationJSON { - guard case .getGlobalNameOverride200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.GetGlobalNameOverrideResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/GetGlobalNameOverrideResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/GetGlobalNameOverrideResponseBody.swift new file mode 100755 index 000000000..5cf30377d --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/GetGlobalNameOverrideResponseBody.swift @@ -0,0 +1,26 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A successful response that contains the simpleObject sent in the request body + public struct GetGlobalNameOverrideResponseBody { + /// A simple object that uses all our supported primitive types and enums and has optional properties. + public let json: Shared.SimpleObject? + + /// Creates an object with the specified parameters + /// + /// - Parameter json: A simple object that uses all our supported primitive types and enums and has optional properties. + /// + public init(json: Shared.SimpleObject? = nil) { + self.json = json + } + } +} + +extension Operations.GetGlobalNameOverrideResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/GetResourceRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/GetResourceRequest.swift index ec6ae4b01..a19947557 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/GetResourceRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/GetResourceRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct GetResourceRequest: APIValue { public let resourceId: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(resourceId: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalPathParameterGetRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalPathParameterGetRequest.swift index cfad0161b..5728020fd 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalPathParameterGetRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalPathParameterGetRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct GlobalPathParameterGetRequest: APIValue { public let globalPathParam: Int? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(globalPathParam: Int? = nil) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalsQueryParameterGetRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalsQueryParameterGetRequest.swift index 6e0078a3b..4f523c869 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalsQueryParameterGetRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalsQueryParameterGetRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct GlobalsQueryParameterGetRequest: APIValue { public let globalQueryParam: String? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(globalQueryParam: String? = nil) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalsQueryParameterGetRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalsQueryParameterGetRes.swift index a1796b95f..384152581 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalsQueryParameterGetRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalsQueryParameterGetRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct GlobalsQueryParameterGetRes { - public let args: Operations.GlobalsQueryParameterGetResArgs + public let args: Operations.Args /// Creates an object with the specified parameters /// /// - public init(args: Operations.GlobalsQueryParameterGetResArgs) { + public init(args: Operations.Args) { self.args = args } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalsQueryParameterGetResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalsQueryParameterGetResArgs.swift deleted file mode 100755 index f8d07ce4e..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/GlobalsQueryParameterGetResArgs.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct GlobalsQueryParameterGetResArgs { - public let globalQueryParam: String - - /// Creates an object with the specified parameters - /// - /// - public init(globalQueryParam: String) { - self.globalQueryParam = globalQueryParam - } - } -} - -extension Operations.GlobalsQueryParameterGetResArgs: Codable { - enum CodingKeys: String, CodingKey { - case globalQueryParam - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsArrayRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsArrayRequest.swift index 855107fc3..59cbae4e6 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsArrayRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsArrayRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct HeaderParamsArrayRequest: APIValue { public let xHeaderArray: [String] - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(xHeaderArray: [String]) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsArrayRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsArrayRes.swift index 8394ed2e9..22604b4f4 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsArrayRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsArrayRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct HeaderParamsArrayRes { - public let headers: Operations.HeaderParamsArrayResHeaders + public let headers: Operations.Headers /// Creates an object with the specified parameters /// /// - public init(headers: Operations.HeaderParamsArrayResHeaders) { + public init(headers: Operations.Headers) { self.headers = headers } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsArrayResHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsArrayResHeaders.swift deleted file mode 100755 index 09ace8515..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsArrayResHeaders.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct HeaderParamsArrayResHeaders { - public let xHeaderArray: String - - /// Creates an object with the specified parameters - /// - /// - public init(xHeaderArray: String) { - self.xHeaderArray = xHeaderArray - } - } -} - -extension Operations.HeaderParamsArrayResHeaders: Codable { - enum CodingKeys: String, CodingKey { - case xHeaderArray = "X-Header-Array" - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapHeaders.swift new file mode 100755 index 000000000..9e25914cc --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapHeaders.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct HeaderParamsMapHeaders { + public let xHeaderMap: String + public let xHeaderMapExplode: String + + /// Creates an object with the specified parameters + /// + /// + public init(xHeaderMap: String, xHeaderMapExplode: String) { + self.xHeaderMap = xHeaderMap + self.xHeaderMapExplode = xHeaderMapExplode + } + } +} + +extension Operations.HeaderParamsMapHeaders: Codable { + enum CodingKeys: String, CodingKey { + case xHeaderMap = "X-Header-Map" + case xHeaderMapExplode = "X-Header-Map-Explode" + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapRequest.swift index 25e63b4b0..af48e43ee 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct HeaderParamsMapRequest: APIValue { public let xHeaderMap: [String: String] public let xHeaderMapExplode: [String: String] - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(xHeaderMap: [String: String], xHeaderMapExplode: [String: String]) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapRes.swift index 9fbe45d3a..d979cebd5 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct HeaderParamsMapRes { - public let headers: Operations.HeaderParamsMapResHeaders + public let headers: Operations.HeaderParamsMapHeaders /// Creates an object with the specified parameters /// /// - public init(headers: Operations.HeaderParamsMapResHeaders) { + public init(headers: Operations.HeaderParamsMapHeaders) { self.headers = headers } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapResHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapResHeaders.swift deleted file mode 100755 index bcbdf40c5..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsMapResHeaders.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct HeaderParamsMapResHeaders { - public let xHeaderMap: String - public let xHeaderMapExplode: String - - /// Creates an object with the specified parameters - /// - /// - public init(xHeaderMap: String, xHeaderMapExplode: String) { - self.xHeaderMap = xHeaderMap - self.xHeaderMapExplode = xHeaderMapExplode - } - } -} - -extension Operations.HeaderParamsMapResHeaders: Codable { - enum CodingKeys: String, CodingKey { - case xHeaderMap = "X-Header-Map" - case xHeaderMapExplode = "X-Header-Map-Explode" - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectHeaders.swift new file mode 100755 index 000000000..93545ad5c --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectHeaders.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct HeaderParamsObjectHeaders { + public let xHeaderObj: String + public let xHeaderObjExplode: String + + /// Creates an object with the specified parameters + /// + /// + public init(xHeaderObj: String, xHeaderObjExplode: String) { + self.xHeaderObj = xHeaderObj + self.xHeaderObjExplode = xHeaderObjExplode + } + } +} + +extension Operations.HeaderParamsObjectHeaders: Codable { + enum CodingKeys: String, CodingKey { + case xHeaderObj = "X-Header-Obj" + case xHeaderObjExplode = "X-Header-Obj-Explode" + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectRequest.swift index 44218707a..3f60385ad 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectRequest.swift @@ -3,14 +3,14 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct HeaderParamsObjectRequest: APIValue { /// A simple object that uses all our supported primitive types and enums and has optional properties. public let xHeaderObj: Shared.SimpleObject /// A simple object that uses all our supported primitive types and enums and has optional properties. public let xHeaderObjExplode: Shared.SimpleObject - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter xHeaderObj: A simple object that uses all our supported primitive types and enums and has optional properties. /// - Parameter xHeaderObjExplode: A simple object that uses all our supported primitive types and enums and has optional properties. diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectRes.swift index 2f67e20dc..ee7707969 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct HeaderParamsObjectRes { - public let headers: Operations.HeaderParamsObjectResHeaders + public let headers: Operations.HeaderParamsObjectHeaders /// Creates an object with the specified parameters /// /// - public init(headers: Operations.HeaderParamsObjectResHeaders) { + public init(headers: Operations.HeaderParamsObjectHeaders) { self.headers = headers } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectResHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectResHeaders.swift deleted file mode 100755 index a5bd00001..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsObjectResHeaders.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct HeaderParamsObjectResHeaders { - public let xHeaderObj: String - public let xHeaderObjExplode: String - - /// Creates an object with the specified parameters - /// - /// - public init(xHeaderObj: String, xHeaderObjExplode: String) { - self.xHeaderObj = xHeaderObj - self.xHeaderObjExplode = xHeaderObjExplode - } - } -} - -extension Operations.HeaderParamsObjectResHeaders: Codable { - enum CodingKeys: String, CodingKey { - case xHeaderObj = "X-Header-Obj" - case xHeaderObjExplode = "X-Header-Obj-Explode" - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveHeaders.swift new file mode 100755 index 000000000..41bac55f5 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveHeaders.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct HeaderParamsPrimitiveHeaders { + public let xHeaderBoolean: String + public let xHeaderInteger: String + public let xHeaderNumber: String + public let xHeaderString: String + + /// Creates an object with the specified parameters + /// + /// + public init(xHeaderBoolean: String, xHeaderInteger: String, xHeaderNumber: String, xHeaderString: String) { + self.xHeaderBoolean = xHeaderBoolean + self.xHeaderInteger = xHeaderInteger + self.xHeaderNumber = xHeaderNumber + self.xHeaderString = xHeaderString + } + } +} + +extension Operations.HeaderParamsPrimitiveHeaders: Codable { + enum CodingKeys: String, CodingKey { + case xHeaderBoolean = "X-Header-Boolean" + case xHeaderInteger = "X-Header-Integer" + case xHeaderNumber = "X-Header-Number" + case xHeaderString = "X-Header-String" + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveRequest.swift index ba5bd9ed9..fe208d157 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveRequest.swift @@ -3,7 +3,7 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct HeaderParamsPrimitiveRequest: APIValue { public let xHeaderBoolean: Bool public let xHeaderInteger: Int @@ -11,7 +11,7 @@ extension Operations { public private(set) var xHeaderNumber: Double public let xHeaderString: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(xHeaderBoolean: Bool, xHeaderInteger: Int, xHeaderNumber: Double, xHeaderString: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveRes.swift index 9b635a157..f5f04f243 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct HeaderParamsPrimitiveRes { - public let headers: Operations.HeaderParamsPrimitiveResHeaders + public let headers: Operations.HeaderParamsPrimitiveHeaders /// Creates an object with the specified parameters /// /// - public init(headers: Operations.HeaderParamsPrimitiveResHeaders) { + public init(headers: Operations.HeaderParamsPrimitiveHeaders) { self.headers = headers } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveResHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveResHeaders.swift deleted file mode 100755 index fc8488c2a..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/HeaderParamsPrimitiveResHeaders.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct HeaderParamsPrimitiveResHeaders { - public let xHeaderBoolean: String - public let xHeaderInteger: String - public let xHeaderNumber: String - public let xHeaderString: String - - /// Creates an object with the specified parameters - /// - /// - public init(xHeaderBoolean: String, xHeaderInteger: String, xHeaderNumber: String, xHeaderString: String) { - self.xHeaderBoolean = xHeaderBoolean - self.xHeaderInteger = xHeaderInteger - self.xHeaderNumber = xHeaderNumber - self.xHeaderString = xHeaderString - } - } -} - -extension Operations.HeaderParamsPrimitiveResHeaders: Codable { - enum CodingKeys: String, CodingKey { - case xHeaderBoolean = "X-Header-Boolean" - case xHeaderInteger = "X-Header-Integer" - case xHeaderNumber = "X-Header-Number" - case xHeaderString = "X-Header-String" - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/Headers.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/Headers.swift new file mode 100755 index 000000000..1aca3ceed --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/Headers.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct Headers { + public let xHeaderArray: String + + /// Creates an object with the specified parameters + /// + /// + public init(xHeaderArray: String) { + self.xHeaderArray = xHeaderArray + } + } +} + +extension Operations.Headers: Codable { + enum CodingKeys: String, CodingKey { + case xHeaderArray = "X-Header-Array" + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoredGenerationGet200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoredGenerationGet200ApplicationJSON.swift deleted file mode 100755 index e93ae3393..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoredGenerationGet200ApplicationJSON.swift +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A successful response that contains the simpleObject sent in the request body - public struct IgnoredGenerationGet200ApplicationJSON { - /// A simple object that uses all our supported primitive types and enums and has optional properties. - public let json: Shared.SimpleObject? - - /// Creates an object with the specified parameters - /// - /// - Parameter json: A simple object that uses all our supported primitive types and enums and has optional properties. - /// - public init(json: Shared.SimpleObject? = nil) { - self.json = json - } - } -} - -extension Operations.IgnoredGenerationGet200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoredGenerationGetResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoredGenerationGetResponse.swift index 75d636d18..9112517be 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoredGenerationGetResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoredGenerationGetResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum IgnoredGenerationGetResponse { case empty - case ignoredGenerationGet200ApplicationJSONObject(Operations.IgnoredGenerationGet200ApplicationJSON) + case object(Operations.IgnoredGenerationGetResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func ignoredGenerationGet200ApplicationJSONObject() throws -> Operations.IgnoredGenerationGet200ApplicationJSON { - guard case .ignoredGenerationGet200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.IgnoredGenerationGetResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoredGenerationGetResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoredGenerationGetResponseBody.swift new file mode 100755 index 000000000..f61b8f884 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoredGenerationGetResponseBody.swift @@ -0,0 +1,26 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A successful response that contains the simpleObject sent in the request body + public struct IgnoredGenerationGetResponseBody { + /// A simple object that uses all our supported primitive types and enums and has optional properties. + public let json: Shared.SimpleObject? + + /// Creates an object with the specified parameters + /// + /// - Parameter json: A simple object that uses all our supported primitive types and enums and has optional properties. + /// + public init(json: Shared.SimpleObject? = nil) { + self.json = json + } + } +} + +extension Operations.IgnoredGenerationGetResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoresPostApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoresPostApplicationJSON.swift deleted file mode 100755 index be0b66634..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoresPostApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct IgnoresPostApplicationJSON { - public let callbackUrl: String? - public let testProp: String? - - /// Creates an object with the specified parameters - /// - /// - public init(callbackUrl: String? = nil, testProp: String? = nil) { - self.callbackUrl = callbackUrl - self.testProp = testProp - } - } -} - -extension Operations.IgnoresPostApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case callbackUrl - case testProp - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoresPostRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoresPostRequest.swift index af987968e..84ac9e271 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoresPostRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoresPostRequest.swift @@ -3,15 +3,15 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct IgnoresPostRequest: APIValue { - public let requestBody: Operations.IgnoresPostApplicationJSON + public let requestBody: Operations.IgnoresPostRequestBody public let testParam: String? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - public init(requestBody: Operations.IgnoresPostApplicationJSON, testParam: String? = nil) { + public init(requestBody: Operations.IgnoresPostRequestBody, testParam: String? = nil) { self.requestBody = requestBody self.testParam = testParam } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoresPostRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoresPostRequestBody.swift new file mode 100755 index 000000000..c8fe92796 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/IgnoresPostRequestBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct IgnoresPostRequestBody { + public let callbackUrl: String? + public let testProp: String? + + /// Creates an object with the specified parameters + /// + /// + public init(callbackUrl: String? = nil, testProp: String? = nil) { + self.callbackUrl = callbackUrl + self.testProp = testProp + } + } +} + +extension Operations.IgnoresPostRequestBody: Codable { + enum CodingKeys: String, CodingKey { + case callbackUrl + case testProp + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamConflictRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamConflictRequest.swift index d5021580e..5d46ef094 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamConflictRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamConflictRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct InlineBodyAndParamConflictRequest: APIValue { public let requestBody: Operations.InlineBodyAndParamConflictRequestBody public let str: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(requestBody: Operations.InlineBodyAndParamConflictRequestBody, str: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamConflictRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamConflictRes.swift index 5382e881f..1afb27198 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamConflictRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamConflictRes.swift @@ -6,12 +6,12 @@ extension Operations { /// OK public struct InlineBodyAndParamConflictRes { public let args: [String: String] - public let json: Operations.InlineBodyAndParamConflictResJson + public let json: Operations.Json /// Creates an object with the specified parameters /// /// - public init(args: [String: String], json: Operations.InlineBodyAndParamConflictResJson) { + public init(args: [String: String], json: Operations.Json) { self.args = args self.json = json } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamConflictResJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamConflictResJson.swift deleted file mode 100755 index 546b88533..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamConflictResJson.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct InlineBodyAndParamConflictResJson { - public let str: String - - /// Creates an object with the specified parameters - /// - /// - public init(str: String) { - self.str = str - } - } -} - -extension Operations.InlineBodyAndParamConflictResJson: Codable { - enum CodingKeys: String, CodingKey { - case str - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictJson.swift new file mode 100755 index 000000000..cce9e81b6 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictJson.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct InlineBodyAndParamNoConflictJson { + public let bodyStr: String + + /// Creates an object with the specified parameters + /// + /// + public init(bodyStr: String) { + self.bodyStr = bodyStr + } + } +} + +extension Operations.InlineBodyAndParamNoConflictJson: Codable { + enum CodingKeys: String, CodingKey { + case bodyStr + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictRequest.swift index c43c9df4a..29cdbd12b 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct InlineBodyAndParamNoConflictRequest: APIValue { public let paramStr: String public let requestBody: Operations.InlineBodyAndParamNoConflictRequestBody - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(paramStr: String, requestBody: Operations.InlineBodyAndParamNoConflictRequestBody) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictRes.swift index 461fff539..62d7c6ee1 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictRes.swift @@ -6,12 +6,12 @@ extension Operations { /// OK public struct InlineBodyAndParamNoConflictRes { public let args: [String: String] - public let json: Operations.InlineBodyAndParamNoConflictResJson + public let json: Operations.InlineBodyAndParamNoConflictJson /// Creates an object with the specified parameters /// /// - public init(args: [String: String], json: Operations.InlineBodyAndParamNoConflictResJson) { + public init(args: [String: String], json: Operations.InlineBodyAndParamNoConflictJson) { self.args = args self.json = json } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictResJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictResJson.swift deleted file mode 100755 index 859f4daa8..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictResJson.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct InlineBodyAndParamNoConflictResJson { - public let bodyStr: String - - /// Creates an object with the specified parameters - /// - /// - public init(bodyStr: String) { - self.bodyStr = bodyStr - } - } -} - -extension Operations.InlineBodyAndParamNoConflictResJson: Codable { - enum CodingKeys: String, CodingKey { - case bodyStr - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectArgs.swift new file mode 100755 index 000000000..9a4ce00d4 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectArgs.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct JsonQueryParamsObjectArgs { + public let deepObjParam: String + public let simpleObjParam: String + + /// Creates an object with the specified parameters + /// + /// + public init(deepObjParam: String, simpleObjParam: String) { + self.deepObjParam = deepObjParam + self.simpleObjParam = simpleObjParam + } + } +} + +extension Operations.JsonQueryParamsObjectArgs: Codable { + enum CodingKeys: String, CodingKey { + case deepObjParam + case simpleObjParam + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectRequest.swift index 35057548a..5cfc897d9 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectRequest.swift @@ -3,13 +3,13 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct JsonQueryParamsObjectRequest: APIValue { public let deepObjParam: Shared.DeepObject /// A simple object that uses all our supported primitive types and enums and has optional properties. public let simpleObjParam: Shared.SimpleObject - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter simpleObjParam: A simple object that uses all our supported primitive types and enums and has optional properties. /// diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectRes.swift index b2b24d914..803bc8a6f 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct JsonQueryParamsObjectRes { - public let args: Operations.JsonQueryParamsObjectResArgs + public let args: Operations.JsonQueryParamsObjectArgs public let url: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.JsonQueryParamsObjectResArgs, url: String) { + public init(args: Operations.JsonQueryParamsObjectArgs, url: String) { self.args = args self.url = url } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectResArgs.swift deleted file mode 100755 index d710f8075..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/JsonQueryParamsObjectResArgs.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct JsonQueryParamsObjectResArgs { - public let deepObjParam: String - public let simpleObjParam: String - - /// Creates an object with the specified parameters - /// - /// - public init(deepObjParam: String, simpleObjParam: String) { - self.deepObjParam = deepObjParam - self.simpleObjParam = simpleObjParam - } - } -} - -extension Operations.JsonQueryParamsObjectResArgs: Codable { - enum CodingKeys: String, CodingKey { - case deepObjParam - case simpleObjParam - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseArgs.swift new file mode 100755 index 000000000..dcd8647c7 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseArgs.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct MixedParametersCamelCaseArgs { + public let queryStringParam: String + + /// Creates an object with the specified parameters + /// + /// + public init(queryStringParam: String) { + self.queryStringParam = queryStringParam + } + } +} + +extension Operations.MixedParametersCamelCaseArgs: Codable { + enum CodingKeys: String, CodingKey { + case queryStringParam = "query_string_param" + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseHeaders.swift new file mode 100755 index 000000000..9655e8df3 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseHeaders.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct MixedParametersCamelCaseHeaders { + public let headerParam: String + + /// Creates an object with the specified parameters + /// + /// + public init(headerParam: String) { + self.headerParam = headerParam + } + } +} + +extension Operations.MixedParametersCamelCaseHeaders: Codable { + enum CodingKeys: String, CodingKey { + case headerParam = "Header-Param" + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseRequest.swift index cadbd1aad..6132069de 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseRequest.swift @@ -3,13 +3,13 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct MixedParametersCamelCaseRequest: APIValue { public let headerParam: String public let pathParam: String public let queryStringParam: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(headerParam: String, pathParam: String, queryStringParam: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseRes.swift index 9ba15b60e..d0924768b 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseRes.swift @@ -5,14 +5,14 @@ import Foundation extension Operations { /// OK public struct MixedParametersCamelCaseRes { - public let args: Operations.MixedParametersCamelCaseResArgs - public let headers: Operations.MixedParametersCamelCaseResHeaders + public let args: Operations.MixedParametersCamelCaseArgs + public let headers: Operations.MixedParametersCamelCaseHeaders public let url: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.MixedParametersCamelCaseResArgs, headers: Operations.MixedParametersCamelCaseResHeaders, url: String) { + public init(args: Operations.MixedParametersCamelCaseArgs, headers: Operations.MixedParametersCamelCaseHeaders, url: String) { self.args = args self.headers = headers self.url = url diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseResArgs.swift deleted file mode 100755 index a285c3437..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseResArgs.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct MixedParametersCamelCaseResArgs { - public let queryStringParam: String - - /// Creates an object with the specified parameters - /// - /// - public init(queryStringParam: String) { - self.queryStringParam = queryStringParam - } - } -} - -extension Operations.MixedParametersCamelCaseResArgs: Codable { - enum CodingKeys: String, CodingKey { - case queryStringParam = "query_string_param" - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseResHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseResHeaders.swift deleted file mode 100755 index a570adfe7..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersCamelCaseResHeaders.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct MixedParametersCamelCaseResHeaders { - public let headerParam: String - - /// Creates an object with the specified parameters - /// - /// - public init(headerParam: String) { - self.headerParam = headerParam - } - } -} - -extension Operations.MixedParametersCamelCaseResHeaders: Codable { - enum CodingKeys: String, CodingKey { - case headerParam = "Header-Param" - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesArgs.swift new file mode 100755 index 000000000..0ffaf7c8e --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesArgs.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct MixedParametersPrimitivesArgs { + public let queryStringParam: String + + /// Creates an object with the specified parameters + /// + /// + public init(queryStringParam: String) { + self.queryStringParam = queryStringParam + } + } +} + +extension Operations.MixedParametersPrimitivesArgs: Codable { + enum CodingKeys: String, CodingKey { + case queryStringParam + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesHeaders.swift new file mode 100755 index 000000000..012025d34 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesHeaders.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct MixedParametersPrimitivesHeaders { + public let headerparam: String + + /// Creates an object with the specified parameters + /// + /// + public init(headerparam: String) { + self.headerparam = headerparam + } + } +} + +extension Operations.MixedParametersPrimitivesHeaders: Codable { + enum CodingKeys: String, CodingKey { + case headerparam = "Headerparam" + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesRequest.swift index 799075035..11123a496 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesRequest.swift @@ -3,13 +3,13 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct MixedParametersPrimitivesRequest: APIValue { public let headerParam: String public let pathParam: String public let queryStringParam: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(headerParam: String, pathParam: String, queryStringParam: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesRes.swift index 9acc57bd3..0d669e180 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesRes.swift @@ -5,14 +5,14 @@ import Foundation extension Operations { /// OK public struct MixedParametersPrimitivesRes { - public let args: Operations.MixedParametersPrimitivesResArgs - public let headers: Operations.MixedParametersPrimitivesResHeaders + public let args: Operations.MixedParametersPrimitivesArgs + public let headers: Operations.MixedParametersPrimitivesHeaders public let url: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.MixedParametersPrimitivesResArgs, headers: Operations.MixedParametersPrimitivesResHeaders, url: String) { + public init(args: Operations.MixedParametersPrimitivesArgs, headers: Operations.MixedParametersPrimitivesHeaders, url: String) { self.args = args self.headers = headers self.url = url diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesResArgs.swift deleted file mode 100755 index c8555da12..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesResArgs.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct MixedParametersPrimitivesResArgs { - public let queryStringParam: String - - /// Creates an object with the specified parameters - /// - /// - public init(queryStringParam: String) { - self.queryStringParam = queryStringParam - } - } -} - -extension Operations.MixedParametersPrimitivesResArgs: Codable { - enum CodingKeys: String, CodingKey { - case queryStringParam - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesResHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesResHeaders.swift deleted file mode 100755 index 8c69e3793..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedParametersPrimitivesResHeaders.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct MixedParametersPrimitivesResHeaders { - public let headerparam: String - - /// Creates an object with the specified parameters - /// - /// - public init(headerparam: String) { - self.headerparam = headerparam - } - } -} - -extension Operations.MixedParametersPrimitivesResHeaders: Codable { - enum CodingKeys: String, CodingKey { - case headerparam = "Headerparam" - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedQueryParamsRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedQueryParamsRequest.swift index cdfefdf18..93fb96b37 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedQueryParamsRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedQueryParamsRequest.swift @@ -3,7 +3,7 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct MixedQueryParamsRequest: APIValue { /// A simple object that uses all our supported primitive types and enums and has optional properties. public let deepObjectParam: Shared.SimpleObject @@ -12,7 +12,7 @@ extension Operations { /// A simple object that uses all our supported primitive types and enums and has optional properties. public let jsonParam: Shared.SimpleObject - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter deepObjectParam: A simple object that uses all our supported primitive types and enums and has optional properties. /// - Parameter formParam: A simple object that uses all our supported primitive types and enums and has optional properties. diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedTypeOneOfPostJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedTypeOneOfPostJson.swift new file mode 100755 index 000000000..159843fb3 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedTypeOneOfPostJson.swift @@ -0,0 +1,38 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public enum MixedTypeOneOfPostJson { + case string(String) + case integer(Int) + case simpleObject(Shared.SimpleObject) + } +} + +extension Operations.MixedTypeOneOfPostJson: Codable { + public init(from decoder: Decoder) throws { + if let value = try? String(from: decoder) { + self = .string(value) + } else if let value = try? Int(from: decoder) { + self = .integer(value) + } else if let value = try? Shared.SimpleObject(from: decoder) { + self = .simpleObject(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .string(let value): + try value.encode(to: encoder) + case .integer(let value): + try value.encode(to: encoder) + case .simpleObject(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedTypeOneOfPostRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedTypeOneOfPostRes.swift index 00b47032c..24061a83b 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedTypeOneOfPostRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedTypeOneOfPostRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct MixedTypeOneOfPostRes { - public let json: Operations.MixedTypeOneOfPostResJson + public let json: Operations.MixedTypeOneOfPostJson /// Creates an object with the specified parameters /// /// - public init(json: Operations.MixedTypeOneOfPostResJson) { + public init(json: Operations.MixedTypeOneOfPostJson) { self.json = json } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedTypeOneOfPostResJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/MixedTypeOneOfPostResJson.swift deleted file mode 100755 index 64045a1b3..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/MixedTypeOneOfPostResJson.swift +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public enum MixedTypeOneOfPostResJson { - case string(String) - case integer(Int) - case simpleObject(Shared.SimpleObject) - } -} - -extension Operations.MixedTypeOneOfPostResJson: Codable { - public init(from decoder: Decoder) throws { - if let value = try? String(from: decoder) { - self = .string(value) - } else if let value = try? Int(from: decoder) { - self = .integer(value) - } else if let value = try? Shared.SimpleObject(from: decoder) { - self = .simpleObject(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .string(let value): - try value.encode(to: encoder) - case .integer(let value): - try value.encode(to: encoder) - case .simpleObject(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetEnumNameOverride.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetEnumNameOverride.swift deleted file mode 100755 index 1c7675945..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetEnumNameOverride.swift +++ /dev/null @@ -1,12 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// An enum type - public enum NameOverrideGetEnumNameOverride: String, Codable, APIValue { - case value1 = "value1" - case value2 = "value2" - case value3 = "value3" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetOverriddenResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetOverriddenResponse.swift new file mode 100755 index 000000000..d72d139a1 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetOverriddenResponse.swift @@ -0,0 +1,26 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A successful response that contains the simpleObject sent in the request body + public struct NameOverrideGetOverriddenResponse { + /// A simple object that uses all our supported primitive types and enums and has optional properties. + public let json: Shared.SimpleObject? + + /// Creates an object with the specified parameters + /// + /// - Parameter json: A simple object that uses all our supported primitive types and enums and has optional properties. + /// + public init(json: Shared.SimpleObject? = nil) { + self.json = json + } + } +} + +extension Operations.NameOverrideGetOverriddenResponse: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetRequest.swift index 159f85340..b56e739ae 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetRequest.swift @@ -3,17 +3,17 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct NameOverrideGetRequest: APIValue { /// An enum type - public let testEnumQueryParam: Operations.NameOverrideGetEnumNameOverride + public let testEnumQueryParam: Operations.EnumNameOverride public let testQueryParam: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter testEnumQueryParam: An enum type /// - public init(testEnumQueryParam: Operations.NameOverrideGetEnumNameOverride, testQueryParam: String) { + public init(testEnumQueryParam: Operations.EnumNameOverride, testQueryParam: String) { self.testEnumQueryParam = testEnumQueryParam self.testQueryParam = testQueryParam } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetResponse.swift index 9753ce988..134b416a5 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NameOverrideGetResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum NameOverrideGetResponse { case empty - case overriddenResponse(Operations.OverriddenResponse) + case overriddenResponse(Operations.NameOverrideGetOverriddenResponse) var isEmpty: Bool { if case .empty = self { @@ -16,7 +16,7 @@ extension Operations { } } - public func overriddenResponse() throws -> Operations.OverriddenResponse { + public func overriddenResponse() throws -> Operations.NameOverrideGetOverriddenResponse { guard case .overriddenResponse(let value) = self else { throw OpenAPIError.missingResponseData } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOneOfSchemaPostJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOneOfSchemaPostJson.swift new file mode 100755 index 000000000..c6adc2e4a --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOneOfSchemaPostJson.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public enum NullableOneOfSchemaPostJson { + case typedObject1(Shared.TypedObject1) + case typedObject2(Shared.TypedObject2) + } +} + +extension Operations.NullableOneOfSchemaPostJson: Codable { + public init(from decoder: Decoder) throws { + if let value = try? Shared.TypedObject1(from: decoder) { + self = .typedObject1(value) + } else if let value = try? Shared.TypedObject2(from: decoder) { + self = .typedObject2(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .typedObject1(let value): + try value.encode(to: encoder) + case .typedObject2(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOneOfSchemaPostRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOneOfSchemaPostRes.swift index 609fe7d30..745a7b236 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOneOfSchemaPostRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOneOfSchemaPostRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct NullableOneOfSchemaPostRes { - public let json: Operations.NullableOneOfSchemaPostResJson + public let json: Operations.NullableOneOfSchemaPostJson /// Creates an object with the specified parameters /// /// - public init(json: Operations.NullableOneOfSchemaPostResJson) { + public init(json: Operations.NullableOneOfSchemaPostJson) { self.json = json } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOneOfSchemaPostResJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOneOfSchemaPostResJson.swift deleted file mode 100755 index f43af29bd..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOneOfSchemaPostResJson.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public enum NullableOneOfSchemaPostResJson { - case typedObject1(Shared.TypedObject1) - case typedObject2(Shared.TypedObject2) - } -} - -extension Operations.NullableOneOfSchemaPostResJson: Codable { - public init(from decoder: Decoder) throws { - if let value = try? Shared.TypedObject1(from: decoder) { - self = .typedObject1(value) - } else if let value = try? Shared.TypedObject2(from: decoder) { - self = .typedObject2(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .typedObject1(let value): - try value.encode(to: encoder) - case .typedObject2(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOptionalObj.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOptionalObj.swift new file mode 100755 index 000000000..899e5a236 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableOptionalObj.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct NullableOptionalObj { + + /// Creates an object + /// + /// + public init() { + } + } +} + +extension Operations.NullableOptionalObj: Codable { +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBody.swift index 3f824d75e..0f01c8ee6 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBody.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBody.swift @@ -5,14 +5,14 @@ import Foundation extension Operations { /// A model object public struct NullableRequiredEmptyObjectPostRequestBody { - public let nullableRequiredObj: Operations.NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj - public let requiredObj: Operations.NullableRequiredEmptyObjectPostRequestBodyRequiredObj - public let nullableOptionalObj: Operations.NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj? + public let nullableRequiredObj: Operations.NullableRequiredObj + public let requiredObj: Operations.RequiredObj + public let nullableOptionalObj: Operations.NullableOptionalObj? /// Creates an object with the specified parameters /// /// - public init(nullableRequiredObj: Operations.NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj, requiredObj: Operations.NullableRequiredEmptyObjectPostRequestBodyRequiredObj, nullableOptionalObj: Operations.NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj? = nil) { + public init(nullableRequiredObj: Operations.NullableRequiredObj, requiredObj: Operations.RequiredObj, nullableOptionalObj: Operations.NullableOptionalObj? = nil) { self.nullableRequiredObj = nullableRequiredObj self.requiredObj = requiredObj self.nullableOptionalObj = nullableOptionalObj diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.swift deleted file mode 100755 index 0ea72fe58..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj { - - /// Creates an object - /// - /// - public init() { - } - } -} - -extension Operations.NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj: Codable { -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.swift deleted file mode 100755 index 19245a118..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj { - - /// Creates an object - /// - /// - public init() { - } - } -} - -extension Operations.NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj: Codable { -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.swift deleted file mode 100755 index 9c7d24702..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct NullableRequiredEmptyObjectPostRequestBodyRequiredObj { - - /// Creates an object - /// - /// - public init() { - } - } -} - -extension Operations.NullableRequiredEmptyObjectPostRequestBodyRequiredObj: Codable { -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostResponse.swift index e796d8cbe..ee7e379c2 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum NullableRequiredEmptyObjectPostResponse { case empty - case nullableRequiredEmptyObjectPost200ApplicationJSONString(String) + case res(String) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func nullableRequiredEmptyObjectPost200ApplicationJSONString() throws -> String { - guard case .nullableRequiredEmptyObjectPost200ApplicationJSONString(let value) = self else { + public func res() throws -> String { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEnum.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEnum.swift new file mode 100755 index 000000000..26b8a1738 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredEnum.swift @@ -0,0 +1,10 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + public enum NullableRequiredEnum: String, Codable, APIValue { + case first = "first" + case second = "second" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredObj.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredObj.swift new file mode 100755 index 000000000..33ad89a79 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredObj.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct NullableRequiredObj { + + /// Creates an object + /// + /// + public init() { + } + } +} + +extension Operations.NullableRequiredObj: Codable { +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredPropertyPostRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredPropertyPostRequestBody.swift index 1cbca3198..ace6079ef 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredPropertyPostRequestBody.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredPropertyPostRequestBody.swift @@ -6,14 +6,14 @@ extension Operations { /// A model object public struct NullableRequiredPropertyPostRequestBody { public let nullableRequiredArray: [Double] - public let nullableRequiredEnum: Operations.NullableRequiredPropertyPostRequestBodyNullableRequiredEnum + public let nullableRequiredEnum: Operations.NullableRequiredEnum public let nullableRequiredInt: Int public let nullableOptionalInt: Int? /// Creates an object with the specified parameters /// /// - public init(nullableRequiredArray: [Double], nullableRequiredEnum: Operations.NullableRequiredPropertyPostRequestBodyNullableRequiredEnum, nullableRequiredInt: Int, nullableOptionalInt: Int? = nil) { + public init(nullableRequiredArray: [Double], nullableRequiredEnum: Operations.NullableRequiredEnum, nullableRequiredInt: Int, nullableOptionalInt: Int? = nil) { self.nullableRequiredArray = nullableRequiredArray self.nullableRequiredEnum = nullableRequiredEnum self.nullableRequiredInt = nullableRequiredInt diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.swift deleted file mode 100755 index 6cafb4b25..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.swift +++ /dev/null @@ -1,10 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - public enum NullableRequiredPropertyPostRequestBodyNullableRequiredEnum: String, Codable, APIValue { - case first = "first" - case second = "second" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredPropertyPostResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredPropertyPostResponse.swift index 219882d63..8e2c57374 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredPropertyPostResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredPropertyPostResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum NullableRequiredPropertyPostResponse { case empty - case nullableRequiredPropertyPost200ApplicationJSONString(String) + case res(String) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func nullableRequiredPropertyPost200ApplicationJSONString() throws -> String { - guard case .nullableRequiredPropertyPost200ApplicationJSONString(let value) = self else { + public func res() throws -> String { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredSharedObjectPostResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredSharedObjectPostResponse.swift index 05ad3e9ed..30a625968 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredSharedObjectPostResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/NullableRequiredSharedObjectPostResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum NullableRequiredSharedObjectPostResponse { case empty - case nullableRequiredSharedObjectPost200ApplicationJSONString(String) + case res(String) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func nullableRequiredSharedObjectPost200ApplicationJSONString() throws -> String { - guard case .nullableRequiredSharedObjectPost200ApplicationJSONString(let value) = self else { + public func res() throws -> String { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/Oauth2OverrideRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/Oauth2OverrideRequest.swift index 2524a4454..630917b00 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/Oauth2OverrideRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/Oauth2OverrideRequest.swift @@ -3,10 +3,10 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct Oauth2OverrideRequest { - /// Creates a request model + /// Creates an object /// /// public init() { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/Obj.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/Obj.swift new file mode 100755 index 000000000..ddf9c2911 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/Obj.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + + public struct Obj: APIValue { + public let bool: Bool + @DecimalSerialized + public private(set) var num: Double + public let str: String + + /// Creates an object with the specified parameters + /// + /// + public init(bool: Bool, num: Double, str: String) { + self.bool = bool + self._num = DecimalSerialized(wrappedValue: num) + self.str = str + } + } +} +extension Operations.Obj { + var numWrapper: DecimalSerialized { + return _num + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ObjArrParam.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ObjArrParam.swift new file mode 100755 index 000000000..381d8f580 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ObjArrParam.swift @@ -0,0 +1,17 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + + public struct ObjArrParam: APIValue { + public let arr: [String]? + + /// Creates an object with the specified parameters + /// + /// + public init(arr: [String]? = nil) { + self.arr = arr + } + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ObjParam.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ObjParam.swift new file mode 100755 index 000000000..02108a3b8 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ObjParam.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + + public struct ObjParam: APIValue { + public let encodedCount: String? + public let encodedTerm: String? + + /// Creates an object with the specified parameters + /// + /// + public init(encodedCount: String? = nil, encodedTerm: String? = nil) { + self.encodedCount = encodedCount + self.encodedTerm = encodedTerm + } + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ObjParamExploded.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ObjParamExploded.swift new file mode 100755 index 000000000..86a51db3e --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ObjParamExploded.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + + public struct ObjParamExploded: APIValue { + public let itemCount: String? + public let searchTerm: String? + + /// Creates an object with the specified parameters + /// + /// + public init(itemCount: String? = nil, searchTerm: String? = nil) { + self.itemCount = itemCount + self.searchTerm = searchTerm + } + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/Operations.Form.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/Operations.Form.swift new file mode 100755 index 000000000..5ed3a5041 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/Operations.Form.swift @@ -0,0 +1,42 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct Form { + public let arr: String + public let bool: String + public let int: String + public let map: String + public let num: String + public let obj: String + public let str: String + + /// Creates an object with the specified parameters + /// + /// + public init(arr: String, bool: String, int: String, map: String, num: String, obj: String, str: String) { + self.arr = arr + self.bool = bool + self.int = int + self.map = map + self.num = num + self.obj = obj + self.str = str + } + } +} + +extension Operations.Form: Codable { + enum CodingKeys: String, CodingKey { + case arr + case bool + case int + case map + case num + case obj + case str + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/Operations.Json.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/Operations.Json.swift new file mode 100755 index 000000000..a3702a243 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/Operations.Json.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct Json { + public let str: String + + /// Creates an object with the specified parameters + /// + /// + public init(str: String) { + self.str = str + } + } +} + +extension Operations.Json: Codable { + enum CodingKeys: String, CodingKey { + case str + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/OptEnumParameter.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/OptEnumParameter.swift new file mode 100755 index 000000000..fb710fb8f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/OptEnumParameter.swift @@ -0,0 +1,12 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// An enum type + public enum OptEnumParameter: String, Codable, APIValue { + case value1 = "value1" + case value2 = "value2" + case value3 = "value3" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/OverriddenResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/OverriddenResponse.swift deleted file mode 100755 index ff5c77c37..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/OverriddenResponse.swift +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A successful response that contains the simpleObject sent in the request body - public struct OverriddenResponse { - /// A simple object that uses all our supported primitive types and enums and has optional properties. - public let json: Shared.SimpleObject? - - /// Creates an object with the specified parameters - /// - /// - Parameter json: A simple object that uses all our supported primitive types and enums and has optional properties. - /// - public init(json: Shared.SimpleObject? = nil) { - self.json = json - } - } -} - -extension Operations.OverriddenResponse: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationCursorParamsRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationCursorParamsRequest.swift index 0d0bdddaf..2d3b53e11 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationCursorParamsRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationCursorParamsRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct PaginationCursorParamsRequest: APIValue { public let cursor: Int - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(cursor: Int) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationLimitOffsetOffsetParamsRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationLimitOffsetOffsetParamsRequest.swift index 2ef7c9e22..62ccb207b 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationLimitOffsetOffsetParamsRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationLimitOffsetOffsetParamsRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct PaginationLimitOffsetOffsetParamsRequest: APIValue { public let limit: Int? public let offset: Int? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(limit: Int? = nil, offset: Int? = nil) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationLimitOffsetPageParamsRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationLimitOffsetPageParamsRequest.swift index ec16daced..ee2d5a646 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationLimitOffsetPageParamsRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/PaginationLimitOffsetPageParamsRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct PaginationLimitOffsetPageParamsRequest: APIValue { public let page: Int - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(page: Int) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PathParameterJsonRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PathParameterJsonRequest.swift index c8b616806..f7724ed70 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/PathParameterJsonRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/PathParameterJsonRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct PathParameterJsonRequest: APIValue { /// A simple object that uses all our supported primitive types and enums and has optional properties. public let jsonObj: Shared.SimpleObject - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter jsonObj: A simple object that uses all our supported primitive types and enums and has optional properties. /// diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayArgs.swift new file mode 100755 index 000000000..9bb7b9350 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayArgs.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct PipeDelimitedQueryParamsArrayArgs { + public let arrParam: String + public let arrParamExploded: [String] + + /// Creates an object with the specified parameters + /// + /// + public init(arrParam: String, arrParamExploded: [String]) { + self.arrParam = arrParam + self.arrParamExploded = arrParamExploded + } + } +} + +extension Operations.PipeDelimitedQueryParamsArrayArgs: Codable { + enum CodingKeys: String, CodingKey { + case arrParam + case arrParamExploded + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayRequest.swift index dc7ba7181..0c208ae36 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayRequest.swift @@ -3,7 +3,7 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct PipeDelimitedQueryParamsArrayRequest: APIValue { public let arrParam: [String]? public let arrParamExploded: [Int]? @@ -11,7 +11,7 @@ extension Operations { /// A simple object that uses all our supported primitive types and enums and has optional properties. public let objParam: Shared.SimpleObject? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter objParam: A simple object that uses all our supported primitive types and enums and has optional properties. /// diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayRes.swift index ced054e05..899f88016 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct PipeDelimitedQueryParamsArrayRes { - public let args: Operations.PipeDelimitedQueryParamsArrayResArgs + public let args: Operations.PipeDelimitedQueryParamsArrayArgs public let url: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.PipeDelimitedQueryParamsArrayResArgs, url: String) { + public init(args: Operations.PipeDelimitedQueryParamsArrayArgs, url: String) { self.args = args self.url = url } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayResArgs.swift deleted file mode 100755 index 5097e8991..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayResArgs.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct PipeDelimitedQueryParamsArrayResArgs { - public let arrParam: String - public let arrParamExploded: [String] - - /// Creates an object with the specified parameters - /// - /// - public init(arrParam: String, arrParamExploded: [String]) { - self.arrParam = arrParam - self.arrParamExploded = arrParamExploded - } - } -} - -extension Operations.PipeDelimitedQueryParamsArrayResArgs: Codable { - enum CodingKeys: String, CodingKey { - case arrParam - case arrParamExploded - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostJson.swift new file mode 100755 index 000000000..a57e2bae7 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostJson.swift @@ -0,0 +1,43 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public enum PrimitiveTypeOneOfPostJson { + case string(String) + case integer(Int) + case number(Double) + case bool(Bool) + } +} + +extension Operations.PrimitiveTypeOneOfPostJson: Codable { + public init(from decoder: Decoder) throws { + if let value = try? String(from: decoder) { + self = .string(value) + } else if let value = try? Int(from: decoder) { + self = .integer(value) + } else if let value = try? Double(from: decoder) { + self = .number(value) + } else if let value = try? Bool(from: decoder) { + self = .bool(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .string(let value): + try value.encode(to: encoder) + case .integer(let value): + try value.encode(to: encoder) + case .number(let value): + try value.encode(to: encoder) + case .bool(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostRes.swift index 57337c063..2c0d3b3aa 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct PrimitiveTypeOneOfPostRes { - public let json: Operations.PrimitiveTypeOneOfPostResJson + public let json: Operations.PrimitiveTypeOneOfPostJson /// Creates an object with the specified parameters /// /// - public init(json: Operations.PrimitiveTypeOneOfPostResJson) { + public init(json: Operations.PrimitiveTypeOneOfPostJson) { self.json = json } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostResJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostResJson.swift deleted file mode 100755 index 8bab242aa..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostResJson.swift +++ /dev/null @@ -1,43 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public enum PrimitiveTypeOneOfPostResJson { - case string(String) - case integer(Int) - case number(Double) - case bool(Bool) - } -} - -extension Operations.PrimitiveTypeOneOfPostResJson: Codable { - public init(from decoder: Decoder) throws { - if let value = try? String(from: decoder) { - self = .string(value) - } else if let value = try? Int(from: decoder) { - self = .integer(value) - } else if let value = try? Double(from: decoder) { - self = .number(value) - } else if let value = try? Bool(from: decoder) { - self = .bool(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .string(let value): - try value.encode(to: encoder) - case .integer(let value): - try value.encode(to: encoder) - case .number(let value): - try value.encode(to: encoder) - case .bool(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.swift deleted file mode 100755 index 2aa94973a..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct PutAnythingIgnoredGeneration200ApplicationJSON { - public let json: String? - - /// Creates an object with the specified parameters - /// - /// - public init(json: String? = nil) { - self.json = json - } - } -} - -extension Operations.PutAnythingIgnoredGeneration200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PutAnythingIgnoredGenerationResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PutAnythingIgnoredGenerationResponse.swift index 2017e206f..4b1dc918e 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/PutAnythingIgnoredGenerationResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/PutAnythingIgnoredGenerationResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum PutAnythingIgnoredGenerationResponse { case empty - case putAnythingIgnoredGeneration200ApplicationJSONObject(Operations.PutAnythingIgnoredGeneration200ApplicationJSON) + case object(Operations.PutAnythingIgnoredGenerationResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func putAnythingIgnoredGeneration200ApplicationJSONObject() throws -> Operations.PutAnythingIgnoredGeneration200ApplicationJSON { - guard case .putAnythingIgnoredGeneration200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.PutAnythingIgnoredGenerationResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/PutAnythingIgnoredGenerationResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/PutAnythingIgnoredGenerationResponseBody.swift new file mode 100755 index 000000000..721798b4f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/PutAnythingIgnoredGenerationResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct PutAnythingIgnoredGenerationResponseBody { + public let json: String? + + /// Creates an object with the specified parameters + /// + /// + public init(json: String? = nil) { + self.json = json + } + } +} + +extension Operations.PutAnythingIgnoredGenerationResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.swift index ecb629dec..2ce60fea8 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostApplicationJsonArrayCamelCaseResponse { case empty - case simpleObjectCamelCases([Shared.SimpleObjectCamelCase]) + case res([Shared.SimpleObjectCamelCase]) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func simpleObjectCamelCases() throws -> [Shared.SimpleObjectCamelCase] { - guard case .simpleObjectCamelCases(let value) = self else { + public func res() throws -> [Shared.SimpleObjectCamelCase] { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.swift index 51175eb3a..b494c8110 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse { case empty - case arrs([[Shared.SimpleObjectCamelCase]]) + case res([[Shared.SimpleObjectCamelCase]]) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func arrs() throws -> [[Shared.SimpleObjectCamelCase]] { - guard case .arrs(let value) = self else { + public func res() throws -> [[Shared.SimpleObjectCamelCase]] { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.swift index 024beeca9..e4f6f082c 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse { case empty - case arrs([[String]]) + case res([[String]]) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func arrs() throws -> [[String]] { - guard case .arrs(let value) = self else { + public func res() throws -> [[String]] { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.swift index ceaa662c3..34ed0b3a1 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostApplicationJsonArrayOfArrayResponse { case empty - case arrs([[Shared.SimpleObject]]) + case res([[Shared.SimpleObject]]) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func arrs() throws -> [[Shared.SimpleObject]] { - guard case .arrs(let value) = self else { + public func res() throws -> [[Shared.SimpleObject]] { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.swift index 719ac338c..2f77bdf08 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse { case empty - case maps([[String: Shared.SimpleObjectCamelCase]]) + case res([[String: Shared.SimpleObjectCamelCase]]) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func maps() throws -> [[String: Shared.SimpleObjectCamelCase]] { - guard case .maps(let value) = self else { + public func res() throws -> [[String: Shared.SimpleObjectCamelCase]] { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.swift index 01f366558..cd723393a 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfMapResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostApplicationJsonArrayOfMapResponse { case empty - case maps([[String: Shared.SimpleObject]]) + case res([[String: Shared.SimpleObject]]) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func maps() throws -> [[String: Shared.SimpleObject]] { - guard case .maps(let value) = self else { + public func res() throws -> [[String: Shared.SimpleObject]] { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.swift index aa188dd22..9be428b12 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostApplicationJsonArrayOfPrimitiveResponse { case empty - case strings([String]) + case res([String]) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func strings() throws -> [String] { - guard case .strings(let value) = self else { + public func res() throws -> [String] { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayResponse.swift index 4ff5dfaea..b3ce61269 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostApplicationJsonArrayResponse { case empty - case simpleObjects([Shared.SimpleObject]) + case res([Shared.SimpleObject]) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func simpleObjects() throws -> [Shared.SimpleObject] { - guard case .simpleObjects(let value) = self else { + public func res() throws -> [Shared.SimpleObject] { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.swift deleted file mode 100755 index 10e7b9d84..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostComplexNumberTypes200ApplicationJSON { - public let json: Shared.ComplexNumberTypes - public let url: String - - /// Creates an object with the specified parameters - /// - /// - public init(json: Shared.ComplexNumberTypes, url: String) { - self.json = json - self.url = url - } - } -} - -extension Operations.RequestBodyPostComplexNumberTypes200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - case url - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesRequest.swift index 4ea414f9d..2e4a042b3 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesRequest.swift @@ -3,7 +3,7 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct RequestBodyPostComplexNumberTypesRequest: APIValue { public let complexNumberTypes: Shared.ComplexNumberTypes public let pathBigInt: Int @@ -17,7 +17,7 @@ extension Operations { public private(set) var queryDecimal: Double public let queryDecimalStr: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(complexNumberTypes: Shared.ComplexNumberTypes, pathBigInt: Int, pathBigIntStr: String, pathDecimal: Double, pathDecimalStr: String, queryBigInt: Int, queryBigIntStr: String, queryDecimal: Double, queryDecimalStr: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesResponse.swift index 9f73064e8..94dd1441c 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostComplexNumberTypesResponse { case empty - case requestBodyPostComplexNumberTypes200ApplicationJSONObject(Operations.RequestBodyPostComplexNumberTypes200ApplicationJSON) + case object(Operations.RequestBodyPostComplexNumberTypesResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostComplexNumberTypes200ApplicationJSONObject() throws -> Operations.RequestBodyPostComplexNumberTypes200ApplicationJSON { - guard case .requestBodyPostComplexNumberTypes200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostComplexNumberTypesResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesResponseBody.swift new file mode 100755 index 000000000..0971c4d8f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesResponseBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostComplexNumberTypesResponseBody { + public let json: Shared.ComplexNumberTypes + public let url: String + + /// Creates an object with the specified parameters + /// + /// + public init(json: Shared.ComplexNumberTypes, url: String) { + self.json = json + self.url = url + } + } +} + +extension Operations.RequestBodyPostComplexNumberTypesResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + case url + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.swift deleted file mode 100755 index 888397785..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostDefaultsAndConsts200ApplicationJSON { - public let json: Shared.DefaultsAndConstsOutput - - /// Creates an object with the specified parameters - /// - /// - public init(json: Shared.DefaultsAndConstsOutput) { - self.json = json - } - } -} - -extension Operations.RequestBodyPostDefaultsAndConsts200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConstsResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConstsResponse.swift index 334f55b70..823a078cd 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConstsResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConstsResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostDefaultsAndConstsResponse { case empty - case requestBodyPostDefaultsAndConsts200ApplicationJSONObject(Operations.RequestBodyPostDefaultsAndConsts200ApplicationJSON) + case object(Operations.RequestBodyPostDefaultsAndConstsResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostDefaultsAndConsts200ApplicationJSONObject() throws -> Operations.RequestBodyPostDefaultsAndConsts200ApplicationJSON { - guard case .requestBodyPostDefaultsAndConsts200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostDefaultsAndConstsResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.swift new file mode 100755 index 000000000..98fcff3f0 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostDefaultsAndConstsResponseBody { + public let json: Shared.DefaultsAndConstsOutput + + /// Creates an object with the specified parameters + /// + /// + public init(json: Shared.DefaultsAndConstsOutput) { + self.json = json + } + } +} + +extension Operations.RequestBodyPostDefaultsAndConstsResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.swift deleted file mode 100755 index 3df9c7007..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostEmptyObject200ApplicationJSON { - public let empty: Operations.RequestBodyPostEmptyObject200ApplicationJSONEmpty? - public let emptyRespWithEmptyProperies: Operations.RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies? - - /// Creates an object with the specified parameters - /// - /// - public init(empty: Operations.RequestBodyPostEmptyObject200ApplicationJSONEmpty? = nil, emptyRespWithEmptyProperies: Operations.RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies? = nil) { - self.empty = empty - self.emptyRespWithEmptyProperies = emptyRespWithEmptyProperies - } - } -} - -extension Operations.RequestBodyPostEmptyObject200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case empty - case emptyRespWithEmptyProperies - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.swift deleted file mode 100755 index 61ca9ddbf..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostEmptyObject200ApplicationJSONEmpty { - - /// Creates an object - /// - /// - public init() { - } - } -} - -extension Operations.RequestBodyPostEmptyObject200ApplicationJSONEmpty: Codable { -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.swift deleted file mode 100755 index 0d0813009..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies { - - /// Creates an object - /// - /// - public init() { - } - } -} - -extension Operations.RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies: Codable { -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectEmpty.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectEmpty.swift new file mode 100755 index 000000000..836fc7069 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectEmpty.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPostEmptyObjectEmpty { + + /// Creates an object + /// + /// + public init() { + } + } +} + +extension Operations.RequestBodyPostEmptyObjectEmpty: Codable { +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBody.swift index d1feb6f8e..13fb6e052 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBody.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBody.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// A model object public struct RequestBodyPostEmptyObjectRequestBody { - public let empty: Operations.RequestBodyPostEmptyObjectRequestBodyEmpty? - public let emptyWithEmptyProperties: Operations.RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties? + public let empty: Operations.Empty? + public let emptyWithEmptyProperties: Operations.EmptyWithEmptyProperties? /// Creates an object with the specified parameters /// /// - public init(empty: Operations.RequestBodyPostEmptyObjectRequestBodyEmpty? = nil, emptyWithEmptyProperties: Operations.RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties? = nil) { + public init(empty: Operations.Empty? = nil, emptyWithEmptyProperties: Operations.EmptyWithEmptyProperties? = nil) { self.empty = empty self.emptyWithEmptyProperties = emptyWithEmptyProperties } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.swift deleted file mode 100755 index af9080c6c..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostEmptyObjectRequestBodyEmpty { - - /// Creates an object - /// - /// - public init() { - } - } -} - -extension Operations.RequestBodyPostEmptyObjectRequestBodyEmpty: Codable { -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.swift deleted file mode 100755 index 6eaa4c38e..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties { - - /// Creates an object - /// - /// - public init() { - } - } -} - -extension Operations.RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties: Codable { -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectResponse.swift index a2f5d0aa3..02c2280ba 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostEmptyObjectResponse { case empty - case requestBodyPostEmptyObject200ApplicationJSONObject(Operations.RequestBodyPostEmptyObject200ApplicationJSON) + case object(Operations.RequestBodyPostEmptyObjectResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostEmptyObject200ApplicationJSONObject() throws -> Operations.RequestBodyPostEmptyObject200ApplicationJSON { - guard case .requestBodyPostEmptyObject200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostEmptyObjectResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectResponseBody.swift new file mode 100755 index 000000000..59efe2729 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectResponseBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostEmptyObjectResponseBody { + public let empty: Operations.RequestBodyPostEmptyObjectEmpty? + public let emptyRespWithEmptyProperies: Operations.EmptyRespWithEmptyProperies? + + /// Creates an object with the specified parameters + /// + /// + public init(empty: Operations.RequestBodyPostEmptyObjectEmpty? = nil, emptyRespWithEmptyProperies: Operations.EmptyRespWithEmptyProperies? = nil) { + self.empty = empty + self.emptyRespWithEmptyProperies = emptyRespWithEmptyProperies + } + } +} + +extension Operations.RequestBodyPostEmptyObjectResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case empty + case emptyRespWithEmptyProperies + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormDeepRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormDeepRes.swift index 003c5a06b..1fe6f8aeb 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormDeepRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormDeepRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct RequestBodyPostFormDeepRes { - public let form: Operations.RequestBodyPostFormDeepResForm + public let form: Operations.Form /// Creates an object with the specified parameters /// /// - public init(form: Operations.RequestBodyPostFormDeepResForm) { + public init(form: Operations.Form) { self.form = form } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormDeepResForm.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormDeepResForm.swift deleted file mode 100755 index bce9324ea..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormDeepResForm.swift +++ /dev/null @@ -1,42 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostFormDeepResForm { - public let arr: String - public let bool: String - public let int: String - public let map: String - public let num: String - public let obj: String - public let str: String - - /// Creates an object with the specified parameters - /// - /// - public init(arr: String, bool: String, int: String, map: String, num: String, obj: String, str: String) { - self.arr = arr - self.bool = bool - self.int = int - self.map = map - self.num = num - self.obj = obj - self.str = str - } - } -} - -extension Operations.RequestBodyPostFormDeepResForm: Codable { - enum CodingKeys: String, CodingKey { - case arr - case bool - case int - case map - case num - case obj - case str - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleForm.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleForm.swift new file mode 100755 index 000000000..bacd9a8c0 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleForm.swift @@ -0,0 +1,63 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPostFormSimpleForm { + public let any: String + public let bool: String + public let date: String + public let dateTime: String + public let `enum`: String + public let float32: String + public let int: String + public let int32: String + public let num: String + public let str: String + public let boolOpt: String? + public let intOptNull: String? + public let numOptNull: String? + public let strOpt: String? + + /// Creates an object with the specified parameters + /// + /// + public init(any: String, bool: String, date: String, dateTime: String, `enum`: String, float32: String, int: String, int32: String, num: String, str: String, boolOpt: String? = nil, intOptNull: String? = nil, numOptNull: String? = nil, strOpt: String? = nil) { + self.any = any + self.bool = bool + self.date = date + self.dateTime = dateTime + self.`enum` = `enum` + self.float32 = float32 + self.int = int + self.int32 = int32 + self.num = num + self.str = str + self.boolOpt = boolOpt + self.intOptNull = intOptNull + self.numOptNull = numOptNull + self.strOpt = strOpt + } + } +} + +extension Operations.RequestBodyPostFormSimpleForm: Codable { + enum CodingKeys: String, CodingKey { + case any + case bool + case date + case dateTime + case `enum` = "enum" + case float32 + case int + case int32 + case num + case str + case boolOpt + case intOptNull + case numOptNull + case strOpt + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleHeaders.swift new file mode 100755 index 000000000..206388783 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleHeaders.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPostFormSimpleHeaders { + public let contentType: String + + /// Creates an object with the specified parameters + /// + /// + public init(contentType: String) { + self.contentType = contentType + } + } +} + +extension Operations.RequestBodyPostFormSimpleHeaders: Codable { + enum CodingKeys: String, CodingKey { + case contentType = "Content-Type" + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleRes.swift index 97fd34fbe..7cb7a6bec 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct RequestBodyPostFormSimpleRes { - public let form: Operations.RequestBodyPostFormSimpleResForm - public let headers: Operations.RequestBodyPostFormSimpleResHeaders + public let form: Operations.RequestBodyPostFormSimpleForm + public let headers: Operations.RequestBodyPostFormSimpleHeaders /// Creates an object with the specified parameters /// /// - public init(form: Operations.RequestBodyPostFormSimpleResForm, headers: Operations.RequestBodyPostFormSimpleResHeaders) { + public init(form: Operations.RequestBodyPostFormSimpleForm, headers: Operations.RequestBodyPostFormSimpleHeaders) { self.form = form self.headers = headers } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleResForm.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleResForm.swift deleted file mode 100755 index 500a71c63..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleResForm.swift +++ /dev/null @@ -1,63 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostFormSimpleResForm { - public let any: String - public let bool: String - public let date: String - public let dateTime: String - public let `enum`: String - public let float32: String - public let int: String - public let int32: String - public let num: String - public let str: String - public let boolOpt: String? - public let intOptNull: String? - public let numOptNull: String? - public let strOpt: String? - - /// Creates an object with the specified parameters - /// - /// - public init(any: String, bool: String, date: String, dateTime: String, `enum`: String, float32: String, int: String, int32: String, num: String, str: String, boolOpt: String? = nil, intOptNull: String? = nil, numOptNull: String? = nil, strOpt: String? = nil) { - self.any = any - self.bool = bool - self.date = date - self.dateTime = dateTime - self.`enum` = `enum` - self.float32 = float32 - self.int = int - self.int32 = int32 - self.num = num - self.str = str - self.boolOpt = boolOpt - self.intOptNull = intOptNull - self.numOptNull = numOptNull - self.strOpt = strOpt - } - } -} - -extension Operations.RequestBodyPostFormSimpleResForm: Codable { - enum CodingKeys: String, CodingKey { - case any - case bool - case date - case dateTime - case `enum` = "enum" - case float32 - case int - case int32 - case num - case str - case boolOpt - case intOptNull - case numOptNull - case strOpt - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleResHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleResHeaders.swift deleted file mode 100755 index 0013c72b5..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleResHeaders.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostFormSimpleResHeaders { - public let contentType: String - - /// Creates an object with the specified parameters - /// - /// - public init(contentType: String) { - self.contentType = contentType - } - } -} - -extension Operations.RequestBodyPostFormSimpleResHeaders: Codable { - enum CodingKeys: String, CodingKey { - case contentType = "Content-Type" - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.swift deleted file mode 100755 index f1d741681..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON { - public let data: String - public let json: [Int] - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: [Int]) { - self.data = data - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.swift deleted file mode 100755 index 3d31bc6ff..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON { - public let data: String - public let json: [Date] - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: [Date]) { - self.data = data - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.swift deleted file mode 100755 index 9f457ca34..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON { - public let data: String - public let json: [String] - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: [String]) { - self.data = data - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.swift deleted file mode 100755 index 7ee973894..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesBigInt200ApplicationJSON { - public let data: String - public let json: Int - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: Int) { - self.data = data - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesBigInt200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.swift deleted file mode 100755 index e43ad2c18..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON { - public let data: String - public let json: String - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: String) { - self.data = data - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.swift deleted file mode 100755 index b1681c333..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesBoolean200ApplicationJSON { - public let json: Bool - - /// Creates an object with the specified parameters - /// - /// - public init(json: Bool) { - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesBoolean200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.swift deleted file mode 100755 index 84ab84d7c..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.swift +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesDate200ApplicationJSON { - public let data: String - @DateOnly - public private(set) var json: Date - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: Date) { - self.data = data - self._json = DateOnly(wrappedValue: json) - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesDate200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } - - public init(from decoder: Decoder) throws { - let container = try decoder.container(keyedBy: CodingKeys.self) - self.data = try container.decode(String.self, forKey: .data) - self._json = try container.decode(DateOnly.self, forKey: .json) - } - - public func encode(to encoder: Encoder) throws { - var container = encoder.container(keyedBy: CodingKeys.self) - try container.encode(self.data, forKey: .data) - try container.encode(self._json, forKey: .json) - } -} - -extension Operations.RequestBodyPostJSONDataTypesDate200ApplicationJSON { - var jsonWrapper: DateOnly { - return _json - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.swift deleted file mode 100755 index 70f884320..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.swift +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesDateTime200ApplicationJSON { - public let data: String - @DateTime - public private(set) var json: Date - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: Date) { - self.data = data - self._json = DateTime(wrappedValue: json) - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesDateTime200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } - - public init(from decoder: Decoder) throws { - let container = try decoder.container(keyedBy: CodingKeys.self) - self.data = try container.decode(String.self, forKey: .data) - self._json = try container.decode(DateTime.self, forKey: .json) - } - - public func encode(to encoder: Encoder) throws { - var container = encoder.container(keyedBy: CodingKeys.self) - try container.encode(self.data, forKey: .data) - try container.encode(self._json, forKey: .json) - } -} - -extension Operations.RequestBodyPostJSONDataTypesDateTime200ApplicationJSON { - var jsonWrapper: DateTime { - return _json - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.swift deleted file mode 100755 index b90fa42df..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.swift +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesDecimal200ApplicationJSON { - public let data: String - @DecimalSerialized - public private(set) var json: Double - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: Double) { - self.data = data - self._json = DecimalSerialized(wrappedValue: json) - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesDecimal200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } - - public init(from decoder: Decoder) throws { - let container = try decoder.container(keyedBy: CodingKeys.self) - self.data = try container.decode(String.self, forKey: .data) - self._json = try container.decode(DecimalSerialized.self, forKey: .json) - } - - public func encode(to encoder: Encoder) throws { - var container = encoder.container(keyedBy: CodingKeys.self) - try container.encode(self.data, forKey: .data) - try container.encode(self._json, forKey: .json) - } -} - -extension Operations.RequestBodyPostJSONDataTypesDecimal200ApplicationJSON { - var jsonWrapper: DecimalSerialized { - return _json - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.swift deleted file mode 100755 index dc7104300..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON { - public let data: String - public let json: String - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: String) { - self.data = data - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.swift deleted file mode 100755 index 21b968522..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.swift +++ /dev/null @@ -1,40 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesFloat32200ApplicationJSON { - @DecimalSerialized - public private(set) var json: Double - - /// Creates an object with the specified parameters - /// - /// - public init(json: Double) { - self._json = DecimalSerialized(wrappedValue: json) - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesFloat32200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } - - public init(from decoder: Decoder) throws { - let container = try decoder.container(keyedBy: CodingKeys.self) - self._json = try container.decode(DecimalSerialized.self, forKey: .json) - } - - public func encode(to encoder: Encoder) throws { - var container = encoder.container(keyedBy: CodingKeys.self) - try container.encode(self._json, forKey: .json) - } -} - -extension Operations.RequestBodyPostJSONDataTypesFloat32200ApplicationJSON { - var jsonWrapper: DecimalSerialized { - return _json - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.swift deleted file mode 100755 index 9490edc34..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesInt32200ApplicationJSON { - public let json: Int - - /// Creates an object with the specified parameters - /// - /// - public init(json: Int) { - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesInt32200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.swift deleted file mode 100755 index f0200039b..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesInteger200ApplicationJSON { - public let json: Int - - /// Creates an object with the specified parameters - /// - /// - public init(json: Int) { - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesInteger200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.swift deleted file mode 100755 index f2042a9c5..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON { - public let data: String - public let json: [String: String] - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: [String: String]) { - self.data = data - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.swift deleted file mode 100755 index cae09a69f..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON { - public let data: String - public let json: [String: Date] - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: [String: Date]) { - self.data = data - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.swift deleted file mode 100755 index 470946956..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON { - public let data: String - public let json: [String: Double] - - /// Creates an object with the specified parameters - /// - /// - public init(data: String, json: [String: Double]) { - self.data = data - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.swift deleted file mode 100755 index 3e94a350a..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.swift +++ /dev/null @@ -1,40 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesNumber200ApplicationJSON { - @DecimalSerialized - public private(set) var json: Double - - /// Creates an object with the specified parameters - /// - /// - public init(json: Double) { - self._json = DecimalSerialized(wrappedValue: json) - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesNumber200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } - - public init(from decoder: Decoder) throws { - let container = try decoder.container(keyedBy: CodingKeys.self) - self._json = try container.decode(DecimalSerialized.self, forKey: .json) - } - - public func encode(to encoder: Encoder) throws { - var container = encoder.container(keyedBy: CodingKeys.self) - try container.encode(self._json, forKey: .json) - } -} - -extension Operations.RequestBodyPostJSONDataTypesNumber200ApplicationJSON { - var jsonWrapper: DecimalSerialized { - return _json - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.swift deleted file mode 100755 index 768babe50..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostJSONDataTypesString200ApplicationJSON { - public let json: String - - /// Creates an object with the specified parameters - /// - /// - public init(json: String) { - self.json = json - } - } -} - -extension Operations.RequestBodyPostJSONDataTypesString200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.swift index 9d16fa503..a9a244d77 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesArrayBigIntResponse { case empty - case requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesArrayBigIntResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesArrayBigIntResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.swift new file mode 100755 index 000000000..199bff37b --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesArrayBigIntResponseBody { + public let data: String + public let json: [Int] + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: [Int]) { + self.data = data + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesArrayBigIntResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.swift index b51fd3148..9c1d8f313 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesArrayDateResponse { case empty - case requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesArrayDateResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesArrayDateResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.swift new file mode 100755 index 000000000..185ca775d --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesArrayDateResponseBody { + public let data: String + public let json: [Date] + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: [Date]) { + self.data = data + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesArrayDateResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.swift index ff11f8717..9ac3d0064 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesArrayDecimalStrResponse { case empty - case requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.swift new file mode 100755 index 000000000..8329b07c4 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody { + public let data: String + public let json: [String] + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: [String]) { + self.data = data + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.swift index 784621200..d7012667f 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesBigIntResponse { case empty - case requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesBigInt200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesBigIntResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesBigInt200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesBigIntResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.swift new file mode 100755 index 000000000..363e0dd37 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesBigIntResponseBody { + public let data: String + public let json: Int + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: Int) { + self.data = data + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesBigIntResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.swift index b07b92d1b..e90d348e7 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesBigIntStrResponse { case empty - case requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesBigIntStrResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesBigIntStrResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.swift new file mode 100755 index 000000000..6e223f6e8 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesBigIntStrResponseBody { + public let data: String + public let json: String + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: String) { + self.data = data + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesBigIntStrResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.swift index 75fb58e25..40bd6abe5 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesBooleanResponse { case empty - case requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesBoolean200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesBooleanResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesBoolean200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesBooleanResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.swift new file mode 100755 index 000000000..336c33a5f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesBooleanResponseBody { + public let json: Bool + + /// Creates an object with the specified parameters + /// + /// + public init(json: Bool) { + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesBooleanResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateResponse.swift index d560ff4e5..17b45877b 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesDateResponse { case empty - case requestBodyPostJSONDataTypesDate200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesDate200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesDateResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesDate200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesDate200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesDate200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesDateResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.swift new file mode 100755 index 000000000..df1a33761 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.swift @@ -0,0 +1,45 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesDateResponseBody { + public let data: String + @DateOnly + public private(set) var json: Date + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: Date) { + self.data = data + self._json = DateOnly(wrappedValue: json) + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesDateResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } + + public init(from decoder: Decoder) throws { + let container = try decoder.container(keyedBy: CodingKeys.self) + self.data = try container.decode(String.self, forKey: .data) + self._json = try container.decode(DateOnly.self, forKey: .json) + } + + public func encode(to encoder: Encoder) throws { + var container = encoder.container(keyedBy: CodingKeys.self) + try container.encode(self.data, forKey: .data) + try container.encode(self._json, forKey: .json) + } +} + +extension Operations.RequestBodyPostJsonDataTypesDateResponseBody { + var jsonWrapper: DateOnly { + return _json + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.swift index 91d597b51..b6b44ed24 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesDateTimeResponse { case empty - case requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesDateTime200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesDateTimeResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesDateTime200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesDateTimeResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.swift new file mode 100755 index 000000000..10fd50b86 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.swift @@ -0,0 +1,45 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesDateTimeResponseBody { + public let data: String + @DateTime + public private(set) var json: Date + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: Date) { + self.data = data + self._json = DateTime(wrappedValue: json) + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesDateTimeResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } + + public init(from decoder: Decoder) throws { + let container = try decoder.container(keyedBy: CodingKeys.self) + self.data = try container.decode(String.self, forKey: .data) + self._json = try container.decode(DateTime.self, forKey: .json) + } + + public func encode(to encoder: Encoder) throws { + var container = encoder.container(keyedBy: CodingKeys.self) + try container.encode(self.data, forKey: .data) + try container.encode(self._json, forKey: .json) + } +} + +extension Operations.RequestBodyPostJsonDataTypesDateTimeResponseBody { + var jsonWrapper: DateTime { + return _json + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.swift index 5156041c2..5ec9294a9 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesDecimalResponse { case empty - case requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesDecimal200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesDecimalResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesDecimal200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesDecimalResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.swift new file mode 100755 index 000000000..d3efdf136 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.swift @@ -0,0 +1,45 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesDecimalResponseBody { + public let data: String + @DecimalSerialized + public private(set) var json: Double + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: Double) { + self.data = data + self._json = DecimalSerialized(wrappedValue: json) + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesDecimalResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } + + public init(from decoder: Decoder) throws { + let container = try decoder.container(keyedBy: CodingKeys.self) + self.data = try container.decode(String.self, forKey: .data) + self._json = try container.decode(DecimalSerialized.self, forKey: .json) + } + + public func encode(to encoder: Encoder) throws { + var container = encoder.container(keyedBy: CodingKeys.self) + try container.encode(self.data, forKey: .data) + try container.encode(self._json, forKey: .json) + } +} + +extension Operations.RequestBodyPostJsonDataTypesDecimalResponseBody { + var jsonWrapper: DecimalSerialized { + return _json + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.swift index 57cc82ed1..0d3260264 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesDecimalStrResponse { case empty - case requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesDecimalStrResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesDecimalStrResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.swift new file mode 100755 index 000000000..7c25958c7 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesDecimalStrResponseBody { + public let data: String + public let json: String + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: String) { + self.data = data + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesDecimalStrResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesFloat32Response.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesFloat32Response.swift index 83492c984..53e4617be 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesFloat32Response.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesFloat32Response.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesFloat32Response { case empty - case requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesFloat32200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesFloat32ResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesFloat32200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesFloat32ResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.swift new file mode 100755 index 000000000..3ef2b420a --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.swift @@ -0,0 +1,40 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesFloat32ResponseBody { + @DecimalSerialized + public private(set) var json: Double + + /// Creates an object with the specified parameters + /// + /// + public init(json: Double) { + self._json = DecimalSerialized(wrappedValue: json) + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesFloat32ResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } + + public init(from decoder: Decoder) throws { + let container = try decoder.container(keyedBy: CodingKeys.self) + self._json = try container.decode(DecimalSerialized.self, forKey: .json) + } + + public func encode(to encoder: Encoder) throws { + var container = encoder.container(keyedBy: CodingKeys.self) + try container.encode(self._json, forKey: .json) + } +} + +extension Operations.RequestBodyPostJsonDataTypesFloat32ResponseBody { + var jsonWrapper: DecimalSerialized { + return _json + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesInt32Response.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesInt32Response.swift index 16379564a..4d950caaf 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesInt32Response.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesInt32Response.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesInt32Response { case empty - case requestBodyPostJSONDataTypesInt32200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesInt32200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesInt32ResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesInt32200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesInt32200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesInt32200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesInt32ResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.swift new file mode 100755 index 000000000..4f7362528 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesInt32ResponseBody { + public let json: Int + + /// Creates an object with the specified parameters + /// + /// + public init(json: Int) { + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesInt32ResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.swift index 8ebcb1a50..49911f09e 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesIntegerResponse { case empty - case requestBodyPostJSONDataTypesInteger200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesInteger200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesIntegerResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesInteger200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesInteger200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesInteger200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesIntegerResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.swift new file mode 100755 index 000000000..174929f1f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesIntegerResponseBody { + public let json: Int + + /// Creates an object with the specified parameters + /// + /// + public init(json: Int) { + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesIntegerResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.swift index 4c65a5c6f..344a968cd 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesMapBigIntStrResponse { case empty - case requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesMapBigIntStrResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesMapBigIntStrResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.swift new file mode 100755 index 000000000..82e9952d4 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesMapBigIntStrResponseBody { + public let data: String + public let json: [String: String] + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: [String: String]) { + self.data = data + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesMapBigIntStrResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.swift index 18f372223..6f0ada303 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesMapDateTimeResponse { case empty - case requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesMapDateTimeResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesMapDateTimeResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.swift new file mode 100755 index 000000000..89807ad26 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesMapDateTimeResponseBody { + public let data: String + public let json: [String: Date] + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: [String: Date]) { + self.data = data + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesMapDateTimeResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.swift index cf327d93b..e7a0e43b5 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesMapDecimalResponse { case empty - case requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesMapDecimalResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesMapDecimalResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.swift new file mode 100755 index 000000000..2bab421fd --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesMapDecimalResponseBody { + public let data: String + public let json: [String: Double] + + /// Creates an object with the specified parameters + /// + /// + public init(data: String, json: [String: Double]) { + self.data = data + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesMapDecimalResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesNumberResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesNumberResponse.swift index abba61152..f90b906ba 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesNumberResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesNumberResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesNumberResponse { case empty - case requestBodyPostJSONDataTypesNumber200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesNumber200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesNumberResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesNumber200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesNumber200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesNumber200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesNumberResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.swift new file mode 100755 index 000000000..e4786acc9 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.swift @@ -0,0 +1,40 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesNumberResponseBody { + @DecimalSerialized + public private(set) var json: Double + + /// Creates an object with the specified parameters + /// + /// + public init(json: Double) { + self._json = DecimalSerialized(wrappedValue: json) + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesNumberResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } + + public init(from decoder: Decoder) throws { + let container = try decoder.container(keyedBy: CodingKeys.self) + self._json = try container.decode(DecimalSerialized.self, forKey: .json) + } + + public func encode(to encoder: Encoder) throws { + var container = encoder.container(keyedBy: CodingKeys.self) + try container.encode(self._json, forKey: .json) + } +} + +extension Operations.RequestBodyPostJsonDataTypesNumberResponseBody { + var jsonWrapper: DecimalSerialized { + return _json + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesStringResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesStringResponse.swift index 62dfb02ed..0108d44ba 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesStringResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesStringResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostJsonDataTypesStringResponse { case empty - case requestBodyPostJSONDataTypesString200ApplicationJSONObject(Operations.RequestBodyPostJSONDataTypesString200ApplicationJSON) + case object(Operations.RequestBodyPostJsonDataTypesStringResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostJSONDataTypesString200ApplicationJSONObject() throws -> Operations.RequestBodyPostJSONDataTypesString200ApplicationJSON { - guard case .requestBodyPostJSONDataTypesString200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostJsonDataTypesStringResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.swift new file mode 100755 index 000000000..d4c034268 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostJsonDataTypesStringResponseBody { + public let json: String + + /// Creates an object with the specified parameters + /// + /// + public init(json: String) { + self.json = json + } + } +} + +extension Operations.RequestBodyPostJsonDataTypesStringResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.swift deleted file mode 100755 index c7c3d045e..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.swift +++ /dev/null @@ -1,50 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON { - public let bool: Bool - @DecimalSerialized - public private(set) var num: Double - public let str: String - - /// Creates an object with the specified parameters - /// - /// - public init(bool: Bool, num: Double, str: String) { - self.bool = bool - self._num = DecimalSerialized(wrappedValue: num) - self.str = str - } - } -} - -extension Operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case bool - case num - case str - } - - public init(from decoder: Decoder) throws { - let container = try decoder.container(keyedBy: CodingKeys.self) - self.bool = try container.decode(Bool.self, forKey: .bool) - self._num = try container.decode(DecimalSerialized.self, forKey: .num) - self.str = try container.decode(String.self, forKey: .str) - } - - public func encode(to encoder: Encoder) throws { - var container = encoder.container(keyedBy: CodingKeys.self) - try container.encode(self.bool, forKey: .bool) - try container.encode(self._num, forKey: .num) - try container.encode(self.str, forKey: .str) - } -} - -extension Operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON { - var numWrapper: DecimalSerialized { - return _num - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.swift new file mode 100755 index 000000000..5589bb880 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.swift @@ -0,0 +1,50 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPostMultipleContentTypesInlineFilteredRequestBody { + public let bool: Bool + @DecimalSerialized + public private(set) var num: Double + public let str: String + + /// Creates an object with the specified parameters + /// + /// + public init(bool: Bool, num: Double, str: String) { + self.bool = bool + self._num = DecimalSerialized(wrappedValue: num) + self.str = str + } + } +} + +extension Operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody: Codable { + enum CodingKeys: String, CodingKey { + case bool + case num + case str + } + + public init(from decoder: Decoder) throws { + let container = try decoder.container(keyedBy: CodingKeys.self) + self.bool = try container.decode(Bool.self, forKey: .bool) + self._num = try container.decode(DecimalSerialized.self, forKey: .num) + self.str = try container.decode(String.self, forKey: .str) + } + + public func encode(to encoder: Encoder) throws { + var container = encoder.container(keyedBy: CodingKeys.self) + try container.encode(self.bool, forKey: .bool) + try container.encode(self._num, forKey: .num) + try container.encode(self.str, forKey: .str) + } +} + +extension Operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody { + var numWrapper: DecimalSerialized { + return _num + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.swift deleted file mode 100755 index e6b39c1bb..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.swift +++ /dev/null @@ -1,50 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostMultipleContentTypesSplitApplicationJSON { - public let bool: Bool - @DecimalSerialized - public private(set) var num: Double - public let str: String - - /// Creates an object with the specified parameters - /// - /// - public init(bool: Bool, num: Double, str: String) { - self.bool = bool - self._num = DecimalSerialized(wrappedValue: num) - self.str = str - } - } -} - -extension Operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case bool - case num - case str - } - - public init(from decoder: Decoder) throws { - let container = try decoder.container(keyedBy: CodingKeys.self) - self.bool = try container.decode(Bool.self, forKey: .bool) - self._num = try container.decode(DecimalSerialized.self, forKey: .num) - self.str = try container.decode(String.self, forKey: .str) - } - - public func encode(to encoder: Encoder) throws { - var container = encoder.container(keyedBy: CodingKeys.self) - try container.encode(self.bool, forKey: .bool) - try container.encode(self._num, forKey: .num) - try container.encode(self.str, forKey: .str) - } -} - -extension Operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON { - var numWrapper: DecimalSerialized { - return _num - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.swift deleted file mode 100755 index 06da28136..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded: APIValue { - public let bool3: Bool - @DecimalSerialized - public private(set) var num3: Double - public let str3: String - - /// Creates an object with the specified parameters - /// - /// - public init(bool3: Bool, num3: Double, str3: String) { - self.bool3 = bool3 - self._num3 = DecimalSerialized(wrappedValue: num3) - self.str3 = str3 - } - } -} -extension Operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded { - var num3Wrapper: DecimalSerialized { - return _num3 - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.swift new file mode 100755 index 000000000..702c8b89e --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPostMultipleContentTypesSplitFormRequestBody: APIValue { + public let bool3: Bool + @DecimalSerialized + public private(set) var num3: Double + public let str3: String + + /// Creates an object with the specified parameters + /// + /// + public init(bool3: Bool, num3: Double, str3: String) { + self.bool3 = bool3 + self._num3 = DecimalSerialized(wrappedValue: num3) + self.str3 = str3 + } + } +} +extension Operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody { + var num3Wrapper: DecimalSerialized { + return _num3 + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.swift new file mode 100755 index 000000000..470ab171a --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.swift @@ -0,0 +1,50 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPostMultipleContentTypesSplitJsonRequestBody { + public let bool: Bool + @DecimalSerialized + public private(set) var num: Double + public let str: String + + /// Creates an object with the specified parameters + /// + /// + public init(bool: Bool, num: Double, str: String) { + self.bool = bool + self._num = DecimalSerialized(wrappedValue: num) + self.str = str + } + } +} + +extension Operations.RequestBodyPostMultipleContentTypesSplitJsonRequestBody: Codable { + enum CodingKeys: String, CodingKey { + case bool + case num + case str + } + + public init(from decoder: Decoder) throws { + let container = try decoder.container(keyedBy: CodingKeys.self) + self.bool = try container.decode(Bool.self, forKey: .bool) + self._num = try container.decode(DecimalSerialized.self, forKey: .num) + self.str = try container.decode(String.self, forKey: .str) + } + + public func encode(to encoder: Encoder) throws { + var container = encoder.container(keyedBy: CodingKeys.self) + try container.encode(self.bool, forKey: .bool) + try container.encode(self._num, forKey: .num) + try container.encode(self.str, forKey: .str) + } +} + +extension Operations.RequestBodyPostMultipleContentTypesSplitJsonRequestBody { + var numWrapper: DecimalSerialized { + return _num + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.swift deleted file mode 100755 index 74c64575d..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostMultipleContentTypesSplitMultipartFormData: APIValue { - public let bool2: Bool - @DecimalSerialized - public private(set) var num2: Double - public let str2: String - - /// Creates an object with the specified parameters - /// - /// - public init(bool2: Bool, num2: Double, str2: String) { - self.bool2 = bool2 - self._num2 = DecimalSerialized(wrappedValue: num2) - self.str2 = str2 - } - } -} -extension Operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData { - var num2Wrapper: DecimalSerialized { - return _num2 - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.swift new file mode 100755 index 000000000..3c91b82df --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPostMultipleContentTypesSplitMultipartRequestBody: APIValue { + public let bool2: Bool + @DecimalSerialized + public private(set) var num2: Double + public let str2: String + + /// Creates an object with the specified parameters + /// + /// + public init(bool2: Bool, num2: Double, str2: String) { + self.bool2 = bool2 + self._num2 = DecimalSerialized(wrappedValue: num2) + self.str2 = str2 + } + } +} +extension Operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody { + var num2Wrapper: DecimalSerialized { + return _num2 + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.swift deleted file mode 100755 index 440597ea1..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.swift +++ /dev/null @@ -1,50 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostMultipleContentTypesSplitParamApplicationJSON { - public let bool: Bool - @DecimalSerialized - public private(set) var num: Double - public let str: String - - /// Creates an object with the specified parameters - /// - /// - public init(bool: Bool, num: Double, str: String) { - self.bool = bool - self._num = DecimalSerialized(wrappedValue: num) - self.str = str - } - } -} - -extension Operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case bool - case num - case str - } - - public init(from decoder: Decoder) throws { - let container = try decoder.container(keyedBy: CodingKeys.self) - self.bool = try container.decode(Bool.self, forKey: .bool) - self._num = try container.decode(DecimalSerialized.self, forKey: .num) - self.str = try container.decode(String.self, forKey: .str) - } - - public func encode(to encoder: Encoder) throws { - var container = encoder.container(keyedBy: CodingKeys.self) - try container.encode(self.bool, forKey: .bool) - try container.encode(self._num, forKey: .num) - try container.encode(self.str, forKey: .str) - } -} - -extension Operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON { - var numWrapper: DecimalSerialized { - return _num - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.swift deleted file mode 100755 index 690e07652..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded: APIValue { - public let bool3: Bool - @DecimalSerialized - public private(set) var num3: Double - public let str3: String - - /// Creates an object with the specified parameters - /// - /// - public init(bool3: Bool, num3: Double, str3: String) { - self.bool3 = bool3 - self._num3 = DecimalSerialized(wrappedValue: num3) - self.str3 = str3 - } - } -} -extension Operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded { - var num3Wrapper: DecimalSerialized { - return _num3 - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.swift index 8f4b86fa7..0d74297d5 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.swift @@ -3,15 +3,15 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct RequestBodyPostMultipleContentTypesSplitParamFormRequest: APIValue { public let paramStr: String - public let requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded + public let requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - public init(paramStr: String, requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded) { + public init(paramStr: String, requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody) { self.paramStr = paramStr self.requestBody = requestBody } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.swift new file mode 100755 index 000000000..ff8427afb --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPostMultipleContentTypesSplitParamFormRequestBody: APIValue { + public let bool3: Bool + @DecimalSerialized + public private(set) var num3: Double + public let str3: String + + /// Creates an object with the specified parameters + /// + /// + public init(bool3: Bool, num3: Double, str3: String) { + self.bool3 = bool3 + self._num3 = DecimalSerialized(wrappedValue: num3) + self.str3 = str3 + } + } +} +extension Operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody { + var num3Wrapper: DecimalSerialized { + return _num3 + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.swift index cde9c7bc2..a5d6d461e 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.swift @@ -3,15 +3,15 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct RequestBodyPostMultipleContentTypesSplitParamJsonRequest: APIValue { public let paramStr: String - public let requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON + public let requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - public init(paramStr: String, requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON) { + public init(paramStr: String, requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody) { self.paramStr = paramStr self.requestBody = requestBody } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.swift new file mode 100755 index 000000000..f138903db --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.swift @@ -0,0 +1,50 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody { + public let bool: Bool + @DecimalSerialized + public private(set) var num: Double + public let str: String + + /// Creates an object with the specified parameters + /// + /// + public init(bool: Bool, num: Double, str: String) { + self.bool = bool + self._num = DecimalSerialized(wrappedValue: num) + self.str = str + } + } +} + +extension Operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody: Codable { + enum CodingKeys: String, CodingKey { + case bool + case num + case str + } + + public init(from decoder: Decoder) throws { + let container = try decoder.container(keyedBy: CodingKeys.self) + self.bool = try container.decode(Bool.self, forKey: .bool) + self._num = try container.decode(DecimalSerialized.self, forKey: .num) + self.str = try container.decode(String.self, forKey: .str) + } + + public func encode(to encoder: Encoder) throws { + var container = encoder.container(keyedBy: CodingKeys.self) + try container.encode(self.bool, forKey: .bool) + try container.encode(self._num, forKey: .num) + try container.encode(self.str, forKey: .str) + } +} + +extension Operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody { + var numWrapper: DecimalSerialized { + return _num + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.swift deleted file mode 100755 index 3c8b082a4..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPostMultipleContentTypesSplitParamMultipartFormData: APIValue { - public let bool2: Bool - @DecimalSerialized - public private(set) var num2: Double - public let str2: String - - /// Creates an object with the specified parameters - /// - /// - public init(bool2: Bool, num2: Double, str2: String) { - self.bool2 = bool2 - self._num2 = DecimalSerialized(wrappedValue: num2) - self.str2 = str2 - } - } -} -extension Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData { - var num2Wrapper: DecimalSerialized { - return _num2 - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.swift index 6ae0d10e8..d58f4e2c9 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.swift @@ -3,15 +3,15 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct RequestBodyPostMultipleContentTypesSplitParamMultipartRequest: APIValue { public let paramStr: String - public let requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData + public let requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - public init(paramStr: String, requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData) { + public init(paramStr: String, requestBody: Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody) { self.paramStr = paramStr self.requestBody = requestBody } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.swift new file mode 100755 index 000000000..6ed120955 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody: APIValue { + public let bool2: Bool + @DecimalSerialized + public private(set) var num2: Double + public let str2: String + + /// Creates an object with the specified parameters + /// + /// + public init(bool2: Bool, num2: Double, str2: String) { + self.bool2 = bool2 + self._num2 = DecimalSerialized(wrappedValue: num2) + self.str2 = str2 + } + } +} +extension Operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody { + var num2Wrapper: DecimalSerialized { + return _num2 + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.swift deleted file mode 100755 index b72952179..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON { - public let data: String - - /// Creates an object with the specified parameters - /// - /// - public init(data: String) { - self.data = data - } - } -} - -extension Operations.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.swift index 283c3543b..d7968cc8f 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostNotNullableNotRequiredStringBodyResponse { case empty - case requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject(Operations.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON) + case object(Operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject() throws -> Operations.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON { - guard case .requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.swift new file mode 100755 index 000000000..51cfcd417 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostNotNullableNotRequiredStringBodyResponseBody { + public let data: String + + /// Creates an object with the specified parameters + /// + /// + public init(data: String) { + self.data = data + } + } +} + +extension Operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullArray200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullArray200ApplicationJSON.swift deleted file mode 100755 index 51ff75ce8..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullArray200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostNullArray200ApplicationJSON { - public let data: String - - /// Creates an object with the specified parameters - /// - /// - public init(data: String) { - self.data = data - } - } -} - -extension Operations.RequestBodyPostNullArray200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullArrayResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullArrayResponse.swift index 2e2648d3e..904135efb 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullArrayResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullArrayResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostNullArrayResponse { case empty - case requestBodyPostNullArray200ApplicationJSONObject(Operations.RequestBodyPostNullArray200ApplicationJSON) + case object(Operations.RequestBodyPostNullArrayResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostNullArray200ApplicationJSONObject() throws -> Operations.RequestBodyPostNullArray200ApplicationJSON { - guard case .requestBodyPostNullArray200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostNullArrayResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullArrayResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullArrayResponseBody.swift new file mode 100755 index 000000000..30da6bdb6 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullArrayResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostNullArrayResponseBody { + public let data: String + + /// Creates an object with the specified parameters + /// + /// + public init(data: String) { + self.data = data + } + } +} + +extension Operations.RequestBodyPostNullArrayResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.swift deleted file mode 100755 index 39facc45f..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostNullDictionary200ApplicationJSON { - public let data: String - - /// Creates an object with the specified parameters - /// - /// - public init(data: String) { - self.data = data - } - } -} - -extension Operations.RequestBodyPostNullDictionary200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullDictionaryResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullDictionaryResponse.swift index 7c57abf19..c43ea91d0 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullDictionaryResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullDictionaryResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostNullDictionaryResponse { case empty - case requestBodyPostNullDictionary200ApplicationJSONObject(Operations.RequestBodyPostNullDictionary200ApplicationJSON) + case object(Operations.RequestBodyPostNullDictionaryResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostNullDictionary200ApplicationJSONObject() throws -> Operations.RequestBodyPostNullDictionary200ApplicationJSON { - guard case .requestBodyPostNullDictionary200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostNullDictionaryResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullDictionaryResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullDictionaryResponseBody.swift new file mode 100755 index 000000000..9dc14d5cc --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullDictionaryResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostNullDictionaryResponseBody { + public let data: String + + /// Creates an object with the specified parameters + /// + /// + public init(data: String) { + self.data = data + } + } +} + +extension Operations.RequestBodyPostNullDictionaryResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.swift deleted file mode 100755 index a9a89e185..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON { - public let data: String - - /// Creates an object with the specified parameters - /// - /// - public init(data: String) { - self.data = data - } - } -} - -extension Operations.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.swift index f73043c4e..951d3f5a3 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostNullableNotRequiredStringBodyResponse { case empty - case requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject(Operations.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON) + case object(Operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject() throws -> Operations.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON { - guard case .requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.swift new file mode 100755 index 000000000..934559e64 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostNullableNotRequiredStringBodyResponseBody { + public let data: String + + /// Creates an object with the specified parameters + /// + /// + public init(data: String) { + self.data = data + } + } +} + +extension Operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.swift deleted file mode 100755 index 35c60484f..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct RequestBodyPostNullableRequiredStringBody200ApplicationJSON { - public let data: String - - /// Creates an object with the specified parameters - /// - /// - public init(data: String) { - self.data = data - } - } -} - -extension Operations.RequestBodyPostNullableRequiredStringBody200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case data - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.swift index 0478b672c..e6d12a4b4 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum RequestBodyPostNullableRequiredStringBodyResponse { case empty - case requestBodyPostNullableRequiredStringBody200ApplicationJSONObject(Operations.RequestBodyPostNullableRequiredStringBody200ApplicationJSON) + case object(Operations.RequestBodyPostNullableRequiredStringBodyResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func requestBodyPostNullableRequiredStringBody200ApplicationJSONObject() throws -> Operations.RequestBodyPostNullableRequiredStringBody200ApplicationJSON { - guard case .requestBodyPostNullableRequiredStringBody200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.RequestBodyPostNullableRequiredStringBodyResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.swift new file mode 100755 index 000000000..05fa23cb1 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct RequestBodyPostNullableRequiredStringBodyResponseBody { + public let data: String + + /// Creates an object with the specified parameters + /// + /// + public init(data: String) { + self.data = data + } + } +} + +extension Operations.RequestBodyPostNullableRequiredStringBodyResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case data + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsArgs.swift new file mode 100755 index 000000000..10e7e8d03 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsArgs.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPutBytesWithParamsArgs { + public let queryStringParam: String + + /// Creates an object with the specified parameters + /// + /// + public init(queryStringParam: String) { + self.queryStringParam = queryStringParam + } + } +} + +extension Operations.RequestBodyPutBytesWithParamsArgs: Codable { + enum CodingKeys: String, CodingKey { + case queryStringParam + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsRequest.swift index bfca34393..5550be895 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct RequestBodyPutBytesWithParamsRequest: APIValue { public let queryStringParam: String public let requestBody: Data - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(queryStringParam: String, requestBody: Data) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsRes.swift index a8ac772b8..6d2c60b57 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct RequestBodyPutBytesWithParamsRes { - public let args: Operations.RequestBodyPutBytesWithParamsResArgs + public let args: Operations.RequestBodyPutBytesWithParamsArgs public let data: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.RequestBodyPutBytesWithParamsResArgs, data: String) { + public init(args: Operations.RequestBodyPutBytesWithParamsArgs, data: String) { self.args = args self.data = data } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsResArgs.swift deleted file mode 100755 index f2ab8ba5f..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsResArgs.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPutBytesWithParamsResArgs { - public let queryStringParam: String - - /// Creates an object with the specified parameters - /// - /// - public init(queryStringParam: String) { - self.queryStringParam = queryStringParam - } - } -} - -extension Operations.RequestBodyPutBytesWithParamsResArgs: Codable { - enum CodingKeys: String, CodingKey { - case queryStringParam - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepForm.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepForm.swift new file mode 100755 index 000000000..77e778634 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepForm.swift @@ -0,0 +1,42 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPutMultipartDeepForm { + public let arr: String + public let bool: String + public let int: String + public let map: String + public let num: String + public let obj: String + public let str: String + + /// Creates an object with the specified parameters + /// + /// + public init(arr: String, bool: String, int: String, map: String, num: String, obj: String, str: String) { + self.arr = arr + self.bool = bool + self.int = int + self.map = map + self.num = num + self.obj = obj + self.str = str + } + } +} + +extension Operations.RequestBodyPutMultipartDeepForm: Codable { + enum CodingKeys: String, CodingKey { + case arr + case bool + case int + case map + case num + case obj + case str + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepRes.swift index 1cb4d1744..50f07eb15 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct RequestBodyPutMultipartDeepRes { - public let form: Operations.RequestBodyPutMultipartDeepResForm + public let form: Operations.RequestBodyPutMultipartDeepForm /// Creates an object with the specified parameters /// /// - public init(form: Operations.RequestBodyPutMultipartDeepResForm) { + public init(form: Operations.RequestBodyPutMultipartDeepForm) { self.form = form } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepResForm.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepResForm.swift deleted file mode 100755 index bde8f0375..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepResForm.swift +++ /dev/null @@ -1,42 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPutMultipartDeepResForm { - public let arr: String - public let bool: String - public let int: String - public let map: String - public let num: String - public let obj: String - public let str: String - - /// Creates an object with the specified parameters - /// - /// - public init(arr: String, bool: String, int: String, map: String, num: String, obj: String, str: String) { - self.arr = arr - self.bool = bool - self.int = int - self.map = map - self.num = num - self.obj = obj - self.str = str - } - } -} - -extension Operations.RequestBodyPutMultipartDeepResForm: Codable { - enum CodingKeys: String, CodingKey { - case arr - case bool - case int - case map - case num - case obj - case str - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.swift index 6f82a5217..3a5f995de 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// A model object public struct RequestBodyPutMultipartDifferentFileNameRequestBody: APIValue { - public let differentFileName: Operations.RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName? + public let differentFileName: Operations.DifferentFileName? /// Creates an object with the specified parameters /// /// - public init(differentFileName: Operations.RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName? = nil) { + public init(differentFileName: Operations.DifferentFileName? = nil) { self.differentFileName = differentFileName } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.swift deleted file mode 100755 index 2b98a1c67..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName: APIValue { - public let content: Data - public let differentFileName: String - - /// Creates an object with the specified parameters - /// - /// - public init(content: Data, differentFileName: String) { - self.content = content - self.differentFileName = differentFileName - } - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartFileRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartFileRequestBody.swift index bcda7b37d..aea573743 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartFileRequestBody.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartFileRequestBody.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// A model object public struct RequestBodyPutMultipartFileRequestBody: APIValue { - public let file: Operations.RequestBodyPutMultipartFileRequestBodyFile? + public let file: Operations.File? /// Creates an object with the specified parameters /// /// - public init(file: Operations.RequestBodyPutMultipartFileRequestBodyFile? = nil) { + public init(file: Operations.File? = nil) { self.file = file } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartFileRequestBodyFile.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartFileRequestBodyFile.swift deleted file mode 100755 index ea7e3803a..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartFileRequestBodyFile.swift +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPutMultipartFileRequestBodyFile: APIValue { - public let content: Data - public let file: String - - /// Creates an object with the specified parameters - /// - /// - public init(content: Data, file: String) { - self.content = content - self.file = file - } - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleForm.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleForm.swift new file mode 100755 index 000000000..5d545ac40 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleForm.swift @@ -0,0 +1,63 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPutMultipartSimpleForm { + public let any: String + public let bool: String + public let date: String + public let dateTime: String + public let `enum`: String + public let float32: String + public let int: String + public let int32: String + public let num: String + public let str: String + public let boolOpt: String? + public let intOptNull: String? + public let numOptNull: String? + public let strOpt: String? + + /// Creates an object with the specified parameters + /// + /// + public init(any: String, bool: String, date: String, dateTime: String, `enum`: String, float32: String, int: String, int32: String, num: String, str: String, boolOpt: String? = nil, intOptNull: String? = nil, numOptNull: String? = nil, strOpt: String? = nil) { + self.any = any + self.bool = bool + self.date = date + self.dateTime = dateTime + self.`enum` = `enum` + self.float32 = float32 + self.int = int + self.int32 = int32 + self.num = num + self.str = str + self.boolOpt = boolOpt + self.intOptNull = intOptNull + self.numOptNull = numOptNull + self.strOpt = strOpt + } + } +} + +extension Operations.RequestBodyPutMultipartSimpleForm: Codable { + enum CodingKeys: String, CodingKey { + case any + case bool + case date + case dateTime + case `enum` = "enum" + case float32 + case int + case int32 + case num + case str + case boolOpt + case intOptNull + case numOptNull + case strOpt + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleHeaders.swift new file mode 100755 index 000000000..f02dcaced --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleHeaders.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPutMultipartSimpleHeaders { + public let contentType: String + + /// Creates an object with the specified parameters + /// + /// + public init(contentType: String) { + self.contentType = contentType + } + } +} + +extension Operations.RequestBodyPutMultipartSimpleHeaders: Codable { + enum CodingKeys: String, CodingKey { + case contentType = "Content-Type" + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleRes.swift index 2015d73f0..eb91a8210 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct RequestBodyPutMultipartSimpleRes { - public let form: Operations.RequestBodyPutMultipartSimpleResForm - public let headers: Operations.RequestBodyPutMultipartSimpleResHeaders + public let form: Operations.RequestBodyPutMultipartSimpleForm + public let headers: Operations.RequestBodyPutMultipartSimpleHeaders /// Creates an object with the specified parameters /// /// - public init(form: Operations.RequestBodyPutMultipartSimpleResForm, headers: Operations.RequestBodyPutMultipartSimpleResHeaders) { + public init(form: Operations.RequestBodyPutMultipartSimpleForm, headers: Operations.RequestBodyPutMultipartSimpleHeaders) { self.form = form self.headers = headers } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleResForm.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleResForm.swift deleted file mode 100755 index 905977916..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleResForm.swift +++ /dev/null @@ -1,63 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPutMultipartSimpleResForm { - public let any: String - public let bool: String - public let date: String - public let dateTime: String - public let `enum`: String - public let float32: String - public let int: String - public let int32: String - public let num: String - public let str: String - public let boolOpt: String? - public let intOptNull: String? - public let numOptNull: String? - public let strOpt: String? - - /// Creates an object with the specified parameters - /// - /// - public init(any: String, bool: String, date: String, dateTime: String, `enum`: String, float32: String, int: String, int32: String, num: String, str: String, boolOpt: String? = nil, intOptNull: String? = nil, numOptNull: String? = nil, strOpt: String? = nil) { - self.any = any - self.bool = bool - self.date = date - self.dateTime = dateTime - self.`enum` = `enum` - self.float32 = float32 - self.int = int - self.int32 = int32 - self.num = num - self.str = str - self.boolOpt = boolOpt - self.intOptNull = intOptNull - self.numOptNull = numOptNull - self.strOpt = strOpt - } - } -} - -extension Operations.RequestBodyPutMultipartSimpleResForm: Codable { - enum CodingKeys: String, CodingKey { - case any - case bool - case date - case dateTime - case `enum` = "enum" - case float32 - case int - case int32 - case num - case str - case boolOpt - case intOptNull - case numOptNull - case strOpt - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleResHeaders.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleResHeaders.swift deleted file mode 100755 index b0ef22e68..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleResHeaders.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPutMultipartSimpleResHeaders { - public let contentType: String - - /// Creates an object with the specified parameters - /// - /// - public init(contentType: String) { - self.contentType = contentType - } - } -} - -extension Operations.RequestBodyPutMultipartSimpleResHeaders: Codable { - enum CodingKeys: String, CodingKey { - case contentType = "Content-Type" - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsArgs.swift new file mode 100755 index 000000000..bd25b778f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsArgs.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequestBodyPutStringWithParamsArgs { + public let queryStringParam: String + + /// Creates an object with the specified parameters + /// + /// + public init(queryStringParam: String) { + self.queryStringParam = queryStringParam + } + } +} + +extension Operations.RequestBodyPutStringWithParamsArgs: Codable { + enum CodingKeys: String, CodingKey { + case queryStringParam + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsRequest.swift index 4ec1dd116..ef9b28d8f 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct RequestBodyPutStringWithParamsRequest: APIValue { public let queryStringParam: String public let requestBody: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(queryStringParam: String, requestBody: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsRes.swift index 544f04ecf..837c3b644 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsRes.swift @@ -5,13 +5,13 @@ import Foundation extension Operations { /// OK public struct RequestBodyPutStringWithParamsRes { - public let args: Operations.RequestBodyPutStringWithParamsResArgs + public let args: Operations.RequestBodyPutStringWithParamsArgs public let data: String /// Creates an object with the specified parameters /// /// - public init(args: Operations.RequestBodyPutStringWithParamsResArgs, data: String) { + public init(args: Operations.RequestBodyPutStringWithParamsArgs, data: String) { self.args = args self.data = data } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsResArgs.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsResArgs.swift deleted file mode 100755 index 6a698b497..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsResArgs.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct RequestBodyPutStringWithParamsResArgs { - public let queryStringParam: String - - /// Creates an object with the specified parameters - /// - /// - public init(queryStringParam: String) { - self.queryStringParam = queryStringParam - } - } -} - -extension Operations.RequestBodyPutStringWithParamsResArgs: Codable { - enum CodingKeys: String, CodingKey { - case queryStringParam - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RequiredObj.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RequiredObj.swift new file mode 100755 index 000000000..6b747e263 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RequiredObj.swift @@ -0,0 +1,19 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct RequiredObj { + + /// Creates an object + /// + /// + public init() { + } + } +} + +extension Operations.RequiredObj: Codable { +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.swift deleted file mode 100755 index 7d21e5cbb..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON { - public let json: [String: String] - - /// Creates an object with the specified parameters - /// - /// - public init(json: [String: String]) { - self.json = json - } - } -} - -extension Operations.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.swift index 654108e1c..10534141a 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum ResponseBodyAdditionalPropertiesComplexNumbersPostResponse { case empty - case responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject(Operations.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON) + case object(Operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject() throws -> Operations.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON { - guard case .responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.swift new file mode 100755 index 000000000..ee35e843f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody { + public let json: [String: String] + + /// Creates an object with the specified parameters + /// + /// + public init(json: [String: String]) { + self.json = json + } + } +} + +extension Operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.swift deleted file mode 100755 index 4397ca503..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON { - public let json: [String: Date] - - /// Creates an object with the specified parameters - /// - /// - public init(json: [String: Date]) { - self.json = json - } - } -} - -extension Operations.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.swift index 393f63a13..7ed5a8a55 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum ResponseBodyAdditionalPropertiesDatePostResponse { case empty - case responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject(Operations.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON) + case object(Operations.ResponseBodyAdditionalPropertiesDatePostResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject() throws -> Operations.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON { - guard case .responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.ResponseBodyAdditionalPropertiesDatePostResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.swift new file mode 100755 index 000000000..20d9d5a32 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct ResponseBodyAdditionalPropertiesDatePostResponseBody { + public let json: [String: Date] + + /// Creates an object with the specified parameters + /// + /// + public init(json: [String: Date]) { + self.json = json + } + } +} + +extension Operations.ResponseBodyAdditionalPropertiesDatePostResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.swift deleted file mode 100755 index 2de219549..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON { - public let json: [String: Shared.SimpleObject] - - /// Creates an object with the specified parameters - /// - /// - public init(json: [String: Shared.SimpleObject]) { - self.json = json - } - } -} - -extension Operations.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.swift index 8869cf309..40b1b76ca 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum ResponseBodyAdditionalPropertiesObjectPostResponse { case empty - case responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject(Operations.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON) + case object(Operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject() throws -> Operations.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON { - guard case .responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.swift new file mode 100755 index 000000000..4ce3c6bfe --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct ResponseBodyAdditionalPropertiesObjectPostResponseBody { + public let json: [String: Shared.SimpleObject] + + /// Creates an object with the specified parameters + /// + /// + public init(json: [String: Shared.SimpleObject]) { + self.json = json + } + } +} + +extension Operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.swift deleted file mode 100755 index f10d3b61c..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct ResponseBodyAdditionalPropertiesPost200ApplicationJSON { - public let json: [String: String] - - /// Creates an object with the specified parameters - /// - /// - public init(json: [String: String]) { - self.json = json - } - } -} - -extension Operations.ResponseBodyAdditionalPropertiesPost200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPostResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPostResponse.swift index 1d030b86b..faa6f3dc5 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPostResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPostResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum ResponseBodyAdditionalPropertiesPostResponse { case empty - case responseBodyAdditionalPropertiesPost200ApplicationJSONObject(Operations.ResponseBodyAdditionalPropertiesPost200ApplicationJSON) + case object(Operations.ResponseBodyAdditionalPropertiesPostResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func responseBodyAdditionalPropertiesPost200ApplicationJSONObject() throws -> Operations.ResponseBodyAdditionalPropertiesPost200ApplicationJSON { - guard case .responseBodyAdditionalPropertiesPost200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.ResponseBodyAdditionalPropertiesPostResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.swift new file mode 100755 index 000000000..2379d3590 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct ResponseBodyAdditionalPropertiesPostResponseBody { + public let json: [String: String] + + /// Creates an object with the specified parameters + /// + /// + public init(json: [String: String]) { + self.json = json + } + } +} + +extension Operations.ResponseBodyAdditionalPropertiesPostResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyEmptyWithHeadersRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyEmptyWithHeadersRequest.swift index e74549aba..e1b5fb465 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyEmptyWithHeadersRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyEmptyWithHeadersRequest.swift @@ -3,13 +3,13 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct ResponseBodyEmptyWithHeadersRequest: APIValue { @DecimalSerialized public private(set) var xNumberHeader: Double public let xStringHeader: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(xNumberHeader: Double, xStringHeader: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyOptionalGetResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyOptionalGetResponse.swift index 86bb02384..ed9e5224a 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyOptionalGetResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyOptionalGetResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum ResponseBodyOptionalGetResponse { case empty - case responseBodyOptionalGet200TextPlainString(String) + case res(String) case typedObject1(Shared.TypedObject1) var isEmpty: Bool { @@ -17,8 +17,8 @@ extension Operations { } } - public func responseBodyOptionalGet200TextPlainString() throws -> String { - guard case .responseBodyOptionalGet200TextPlainString(let value) = self else { + public func res() throws -> String { + guard case .res(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.swift deleted file mode 100755 index 0cd787b43..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// OK - public struct ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON { - public let json: Shared.ObjWithZeroValueComplexTypePtrs - - /// Creates an object with the specified parameters - /// - /// - public init(json: Shared.ObjWithZeroValueComplexTypePtrs) { - self.json = json - } - } -} - -extension Operations.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.swift index 8a5c2e771..0346ae18a 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum ResponseBodyZeroValueComplexTypePtrsPostResponse { case empty - case responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject(Operations.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON) + case object(Operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject() throws -> Operations.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON { - guard case .responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.swift new file mode 100755 index 000000000..2ae1b10a5 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// OK + public struct ResponseBodyZeroValueComplexTypePtrsPostResponseBody { + public let json: Shared.ObjWithZeroValueComplexTypePtrs + + /// Creates an object with the specified parameters + /// + /// + public init(json: Shared.ObjWithZeroValueComplexTypePtrs) { + self.json = json + } + } +} + +extension Operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/RetriesGetRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/RetriesGetRequest.swift index 22b8c6bf9..9aace1108 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/RetriesGetRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/RetriesGetRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct RetriesGetRequest: APIValue { public let requestId: String public let numRetries: Int? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(requestId: String, numRetries: Int? = nil) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterArraysRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterArraysRequest.swift index 185a41ee7..df023bed2 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterArraysRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterArraysRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct SimplePathParameterArraysRequest: APIValue { public let arrParam: [String] - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(arrParam: [String]) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterMapsRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterMapsRequest.swift index 17a1a8752..a9898f751 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterMapsRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterMapsRequest.swift @@ -3,12 +3,12 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct SimplePathParameterMapsRequest: APIValue { public let mapParam: [String: String] public let mapParamExploded: [String: Int] - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(mapParam: [String: String], mapParamExploded: [String: Int]) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterObjectsRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterObjectsRequest.swift index 78b5b7a60..74917cad7 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterObjectsRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterObjectsRequest.swift @@ -3,14 +3,14 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct SimplePathParameterObjectsRequest: APIValue { /// A simple object that uses all our supported primitive types and enums and has optional properties. public let objParam: Shared.SimpleObject /// A simple object that uses all our supported primitive types and enums and has optional properties. public let objParamExploded: Shared.SimpleObject - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter objParam: A simple object that uses all our supported primitive types and enums and has optional properties. /// - Parameter objParamExploded: A simple object that uses all our supported primitive types and enums and has optional properties. diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterPrimitivesRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterPrimitivesRequest.swift index 86fa0b558..1bda572e9 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterPrimitivesRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/SimplePathParameterPrimitivesRequest.swift @@ -3,7 +3,7 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct SimplePathParameterPrimitivesRequest: APIValue { public let boolParam: Bool public let intParam: Int @@ -11,7 +11,7 @@ extension Operations { public private(set) var numParam: Double public let strParam: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(boolParam: Bool, intParam: Int, numParam: Double, strParam: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetErrorRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetErrorRequest.swift index 5e260f85c..d3accd739 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetErrorRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetErrorRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct StatusGetErrorRequest: APIValue { public let statusCode: Int - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(statusCode: Int) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.swift deleted file mode 100755 index d34fb0598..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.swift +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// Not Implemented - public struct StatusGetXSpeakeasyErrors501ApplicationJSON { - public let code: String? - public let message: String? - public let type: Shared.ErrorType? - - /// Creates an object with the specified parameters - /// - /// - public init(code: String? = nil, message: String? = nil, type: Shared.ErrorType? = nil) { - self.code = code - self.message = message - self.type = type - } - } -} - -extension Operations.StatusGetXSpeakeasyErrors501ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case code - case message - case type - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsRequest.swift index 9abb45ba4..4c8cbdc27 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct StatusGetXSpeakeasyErrorsRequest: APIValue { public let statusCode: Int - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(statusCode: Int) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsResponse.swift index afdebfd83..04feb02e4 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsResponse.swift @@ -7,7 +7,7 @@ extension Operations { public enum StatusGetXSpeakeasyErrorsResponse { case empty case error(Shared.Error) - case statusGetXSpeakeasyErrors501ApplicationJSONObject(Operations.StatusGetXSpeakeasyErrors501ApplicationJSON) + case object(Operations.StatusGetXSpeakeasyErrorsResponseBody) var isEmpty: Bool { if case .empty = self { @@ -24,8 +24,8 @@ extension Operations { return value } - public func statusGetXSpeakeasyErrors501ApplicationJSONObject() throws -> Operations.StatusGetXSpeakeasyErrors501ApplicationJSON { - guard case .statusGetXSpeakeasyErrors501ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.StatusGetXSpeakeasyErrorsResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsResponseBody.swift new file mode 100755 index 000000000..8f1ea3d8c --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsResponseBody.swift @@ -0,0 +1,30 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// Not Implemented + public struct StatusGetXSpeakeasyErrorsResponseBody { + public let code: String? + public let message: String? + public let type: Shared.ErrorType? + + /// Creates an object with the specified parameters + /// + /// + public init(code: String? = nil, message: String? = nil, type: Shared.ErrorType? = nil) { + self.code = code + self.message = message + self.type = type + } + } +} + +extension Operations.StatusGetXSpeakeasyErrorsResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case code + case message + case type + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/TelemetrySpeakeasyUserAgentGetRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/TelemetrySpeakeasyUserAgentGetRequest.swift index a9fb682f3..1f11fa7f2 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/TelemetrySpeakeasyUserAgentGetRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/TelemetrySpeakeasyUserAgentGetRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct TelemetrySpeakeasyUserAgentGetRequest: APIValue { public let userAgent: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(userAgent: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/TypeFromAnchor.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/TypeFromAnchor.swift deleted file mode 100755 index 2deb35bf9..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/TypeFromAnchor.swift +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A successful response that contains the simpleObject sent in the request body - public struct TypeFromAnchor { - /// A simple object that uses all our supported primitive types and enums and has optional properties. - public let json: Shared.SimpleObject? - - /// Creates an object with the specified parameters - /// - /// - Parameter json: A simple object that uses all our supported primitive types and enums and has optional properties. - /// - public init(json: Shared.SimpleObject? = nil) { - self.json = json - } - } -} - -extension Operations.TypeFromAnchor: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/TypedParameterGenerationGetObj.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/TypedParameterGenerationGetObj.swift deleted file mode 100755 index 8abbb488b..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/TypedParameterGenerationGetObj.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - - public struct TypedParameterGenerationGetObj: APIValue { - public let bool: Bool - @DecimalSerialized - public private(set) var num: Double - public let str: String - - /// Creates an object with the specified parameters - /// - /// - public init(bool: Bool, num: Double, str: String) { - self.bool = bool - self._num = DecimalSerialized(wrappedValue: num) - self.str = str - } - } -} -extension Operations.TypedParameterGenerationGetObj { - var numWrapper: DecimalSerialized { - return _num - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/TypedParameterGenerationGetRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/TypedParameterGenerationGetRequest.swift index 7b256e676..49d5f6e84 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/TypedParameterGenerationGetRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/TypedParameterGenerationGetRequest.swift @@ -3,19 +3,19 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct TypedParameterGenerationGetRequest: APIValue { public let bigint: Int? @DateOnly public private(set) var date: Date? @DecimalSerialized public private(set) var decimal: Double? - public let obj: Operations.TypedParameterGenerationGetObj? + public let obj: Operations.Obj? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - public init(bigint: Int? = nil, date: Date? = nil, decimal: Double? = nil, obj: Operations.TypedParameterGenerationGetObj? = nil) { + public init(bigint: Int? = nil, date: Date? = nil, decimal: Double? = nil, obj: Operations.Obj? = nil) { self.bigint = bigint self._date = DateOnly(wrappedValue: date) self._decimal = DecimalSerialized(wrappedValue: decimal) diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UnionBigIntDecimalJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UnionBigIntDecimalJson.swift new file mode 100755 index 000000000..048a70150 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/UnionBigIntDecimalJson.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public enum UnionBigIntDecimalJson { + case string(String) + case number(Double) + } +} + +extension Operations.UnionBigIntDecimalJson: Codable { + public init(from decoder: Decoder) throws { + if let value = try? String(from: decoder) { + self = .string(value) + } else if let value = try? Double(from: decoder) { + self = .number(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .string(let value): + try value.encode(to: encoder) + case .number(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UnionBigIntDecimalRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UnionBigIntDecimalRes.swift index 1bcdb98e8..c36c1c4f9 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/UnionBigIntDecimalRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/UnionBigIntDecimalRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct UnionBigIntDecimalRes { - public let json: Operations.UnionBigIntDecimalResJson + public let json: Operations.UnionBigIntDecimalJson /// Creates an object with the specified parameters /// /// - public init(json: Operations.UnionBigIntDecimalResJson) { + public init(json: Operations.UnionBigIntDecimalJson) { self.json = json } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UnionBigIntDecimalResJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UnionBigIntDecimalResJson.swift deleted file mode 100755 index 1723ad6b4..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/UnionBigIntDecimalResJson.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public enum UnionBigIntDecimalResJson { - case string(String) - case number(Double) - } -} - -extension Operations.UnionBigIntDecimalResJson: Codable { - public init(from decoder: Decoder) throws { - if let value = try? String(from: decoder) { - self = .string(value) - } else if let value = try? Double(from: decoder) { - self = .number(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .string(let value): - try value.encode(to: encoder) - case .number(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UnionDateTimeBigIntJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UnionDateTimeBigIntJson.swift new file mode 100755 index 000000000..eff2d6198 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/UnionDateTimeBigIntJson.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public enum UnionDateTimeBigIntJson { + case dateTime(Date) + case integer(Int) + } +} + +extension Operations.UnionDateTimeBigIntJson: Codable { + public init(from decoder: Decoder) throws { + if let value = try? Date(from: decoder) { + self = .dateTime(value) + } else if let value = try? Int(from: decoder) { + self = .integer(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .dateTime(let value): + try value.encode(to: encoder) + case .integer(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UnionDateTimeBigIntRes.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UnionDateTimeBigIntRes.swift index e0b5639de..2004b08f7 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/UnionDateTimeBigIntRes.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/UnionDateTimeBigIntRes.swift @@ -5,12 +5,12 @@ import Foundation extension Operations { /// OK public struct UnionDateTimeBigIntRes { - public let json: Operations.UnionDateTimeBigIntResJson + public let json: Operations.UnionDateTimeBigIntJson /// Creates an object with the specified parameters /// /// - public init(json: Operations.UnionDateTimeBigIntResJson) { + public init(json: Operations.UnionDateTimeBigIntJson) { self.json = json } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UnionDateTimeBigIntResJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UnionDateTimeBigIntResJson.swift deleted file mode 100755 index fbd368796..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/UnionDateTimeBigIntResJson.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public enum UnionDateTimeBigIntResJson { - case dateTime(Date) - case integer(Int) - } -} - -extension Operations.UnionDateTimeBigIntResJson: Codable { - public init(from decoder: Decoder) throws { - if let value = try? Date(from: decoder) { - self = .dateTime(value) - } else if let value = try? Int(from: decoder) { - self = .integer(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .dateTime(let value): - try value.encode(to: encoder) - case .integer(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UpdateResourceRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UpdateResourceRequest.swift index 8dbf43c2f..db537f0c4 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/UpdateResourceRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/UpdateResourceRequest.swift @@ -3,11 +3,11 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct UpdateResourceRequest: APIValue { public let resourceId: String - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// public init(resourceId: String) { diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePost200ApplicationJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePost200ApplicationJSON.swift deleted file mode 100755 index 6a617abe9..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePost200ApplicationJSON.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A response body that contains the simpleObject sent in the request body - public struct UsageExamplePost200ApplicationJSON { - public let json: Operations.UsageExamplePost200ApplicationJSONJSON - - /// Creates an object with the specified parameters - /// - /// - public init(json: Operations.UsageExamplePost200ApplicationJSONJSON) { - self.json = json - } - } -} - -extension Operations.UsageExamplePost200ApplicationJSON: Codable { - enum CodingKeys: String, CodingKey { - case json - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePost200ApplicationJSONJSON.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePost200ApplicationJSONJSON.swift deleted file mode 100755 index 38264f4a8..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePost200ApplicationJSONJSON.swift +++ /dev/null @@ -1,36 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// A model object - public struct UsageExamplePost200ApplicationJSONJSON { - /// A set of strings with format values that lead to relevant examples being generated for them - public let fakerFormattedStrings: Shared.FakerFormattedStrings? - /// A set of strings with fieldnames that lead to relevant examples being generated for them - public let fakerStrings: Shared.FakerStrings? - /// A simple object that uses all our supported primitive types and enums and has optional properties. - public let simpleObject: Shared.SimpleObject? - - /// Creates an object with the specified parameters - /// - /// - Parameter fakerFormattedStrings: A set of strings with format values that lead to relevant examples being generated for them - /// - Parameter fakerStrings: A set of strings with fieldnames that lead to relevant examples being generated for them - /// - Parameter simpleObject: A simple object that uses all our supported primitive types and enums and has optional properties. - /// - public init(fakerFormattedStrings: Shared.FakerFormattedStrings? = nil, fakerStrings: Shared.FakerStrings? = nil, simpleObject: Shared.SimpleObject? = nil) { - self.fakerFormattedStrings = fakerFormattedStrings - self.fakerStrings = fakerStrings - self.simpleObject = simpleObject - } - } -} - -extension Operations.UsageExamplePost200ApplicationJSONJSON: Codable { - enum CodingKeys: String, CodingKey { - case fakerFormattedStrings - case fakerStrings - case simpleObject - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostEnumParameter.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostEnumParameter.swift deleted file mode 100755 index 491486cee..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostEnumParameter.swift +++ /dev/null @@ -1,12 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// An enum type - public enum UsageExamplePostEnumParameter: String, Codable, APIValue { - case value1 = "value1" - case value2 = "value2" - case value3 = "value3" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostJson.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostJson.swift new file mode 100755 index 000000000..39ffdbe4c --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostJson.swift @@ -0,0 +1,36 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A model object + public struct UsageExamplePostJson { + /// A set of strings with format values that lead to relevant examples being generated for them + public let fakerFormattedStrings: Shared.FakerFormattedStrings? + /// A set of strings with fieldnames that lead to relevant examples being generated for them + public let fakerStrings: Shared.FakerStrings? + /// A simple object that uses all our supported primitive types and enums and has optional properties. + public let simpleObject: Shared.SimpleObject? + + /// Creates an object with the specified parameters + /// + /// - Parameter fakerFormattedStrings: A set of strings with format values that lead to relevant examples being generated for them + /// - Parameter fakerStrings: A set of strings with fieldnames that lead to relevant examples being generated for them + /// - Parameter simpleObject: A simple object that uses all our supported primitive types and enums and has optional properties. + /// + public init(fakerFormattedStrings: Shared.FakerFormattedStrings? = nil, fakerStrings: Shared.FakerStrings? = nil, simpleObject: Shared.SimpleObject? = nil) { + self.fakerFormattedStrings = fakerFormattedStrings + self.fakerStrings = fakerStrings + self.simpleObject = simpleObject + } + } +} + +extension Operations.UsageExamplePostJson: Codable { + enum CodingKeys: String, CodingKey { + case fakerFormattedStrings + case fakerStrings + case simpleObject + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostOptEnumParameter.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostOptEnumParameter.swift deleted file mode 100755 index 62b223936..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostOptEnumParameter.swift +++ /dev/null @@ -1,12 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Operations { - /// An enum type - public enum UsageExamplePostOptEnumParameter: String, Codable, APIValue { - case value1 = "value1" - case value2 = "value2" - case value3 = "value3" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostRequest.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostRequest.swift index 6bbd1fdf0..407580a21 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostRequest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostRequest.swift @@ -3,7 +3,7 @@ import Foundation extension Operations { - /// A request model + /// A model object public struct UsageExamplePostRequest: APIValue { /// An bigint parameter public let bigintParameter: Int @@ -29,7 +29,7 @@ extension Operations { @DecimalSerialized public private(set) var doubleParameter: Double /// An enum parameter - public let enumParameter: Operations.UsageExamplePostEnumParameter + public let enumParameter: Operations.EnumParameter /// A number parameter that contains a falsey example value @DecimalSerialized public private(set) var falseyNumberParameter: Double @@ -55,11 +55,11 @@ extension Operations { /// A decimal parameter public let decimalStrParameterOptional: String? /// An enum parameter - public let optEnumParameter: Operations.UsageExamplePostOptEnumParameter? + public let optEnumParameter: Operations.OptEnumParameter? /// A request body that contains fields with different formats for testing example generation public let requestBody: Operations.UsageExamplePostRequestBody? - /// Creates a request model with the specified parameters + /// Creates an object with the specified parameters /// /// - Parameter bigintParameter: An bigint parameter /// - Parameter bigintStrParameter: An bigint parameter @@ -84,7 +84,7 @@ extension Operations { /// - Parameter optEnumParameter: An enum parameter /// - Parameter requestBody: A request body that contains fields with different formats for testing example generation /// - public init(bigintParameter: Int, bigintStrParameter: String, boolParameter: Bool, dateParameter: Date, dateTimeDefaultParameter: Date, dateTimeParameter: Date, decimalParameter: Double, decimalStrParameter: String, doubleParameter: Double, enumParameter: Operations.UsageExamplePostEnumParameter, falseyNumberParameter: Double, float32Parameter: Double, floatParameter: Double, int64Parameter: Int, intParameter: Int, strParameter: String, bigintParameterOptional: Int? = nil, bigintStrParameterOptional: String? = nil, decimalParameterOptional: Double? = nil, decimalStrParameterOptional: String? = nil, optEnumParameter: Operations.UsageExamplePostOptEnumParameter? = nil, requestBody: Operations.UsageExamplePostRequestBody? = nil) { + public init(bigintParameter: Int, bigintStrParameter: String, boolParameter: Bool, dateParameter: Date, dateTimeDefaultParameter: Date, dateTimeParameter: Date, decimalParameter: Double, decimalStrParameter: String, doubleParameter: Double, enumParameter: Operations.EnumParameter, falseyNumberParameter: Double, float32Parameter: Double, floatParameter: Double, int64Parameter: Int, intParameter: Int, strParameter: String, bigintParameterOptional: Int? = nil, bigintStrParameterOptional: String? = nil, decimalParameterOptional: Double? = nil, decimalStrParameterOptional: String? = nil, optEnumParameter: Operations.OptEnumParameter? = nil, requestBody: Operations.UsageExamplePostRequestBody? = nil) { self.bigintParameter = bigintParameter self.bigintStrParameter = bigintStrParameter self.boolParameter = boolParameter diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostResponse.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostResponse.swift index 7dfb11f9c..cec9a8a1f 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostResponse.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostResponse.swift @@ -6,7 +6,7 @@ extension Operations { /// A response model public enum UsageExamplePostResponse { case empty - case usageExamplePost200ApplicationJSONObject(Operations.UsageExamplePost200ApplicationJSON) + case object(Operations.UsageExamplePostResponseBody) var isEmpty: Bool { if case .empty = self { @@ -16,8 +16,8 @@ extension Operations { } } - public func usageExamplePost200ApplicationJSONObject() throws -> Operations.UsageExamplePost200ApplicationJSON { - guard case .usageExamplePost200ApplicationJSONObject(let value) = self else { + public func object() throws -> Operations.UsageExamplePostResponseBody { + guard case .object(let value) = self else { throw OpenAPIError.missingResponseData } return value diff --git a/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostResponseBody.swift b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostResponseBody.swift new file mode 100755 index 000000000..b807ced41 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/operations/UsageExamplePostResponseBody.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Operations { + /// A response body that contains the simpleObject sent in the request body + public struct UsageExamplePostResponseBody { + public let json: Operations.UsageExamplePostJson + + /// Creates an object with the specified parameters + /// + /// + public init(json: Operations.UsageExamplePostJson) { + self.json = json + } + } +} + +extension Operations.UsageExamplePostResponseBody: Codable { + enum CodingKeys: String, CodingKey { + case json + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/Any.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/Any.swift new file mode 100755 index 000000000..326d53d27 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/Any.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public enum `Any` { + case simpleObject(Shared.SimpleObject) + case string(String) + } +} + +extension Shared.`Any`: Codable { + public init(from decoder: Decoder) throws { + if let value = try? Shared.SimpleObject(from: decoder) { + self = .simpleObject(value) + } else if let value = try? String(from: decoder) { + self = .string(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .simpleObject(let value): + try value.encode(to: encoder) + case .string(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/AnyVal.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/AnyVal.swift new file mode 100755 index 000000000..e303bde31 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/AnyVal.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public enum AnyVal { + case simpleObjectCamelCase(Shared.SimpleObjectCamelCase) + case string(String) + } +} + +extension Shared.AnyVal: Codable { + public init(from decoder: Decoder) throws { + if let value = try? Shared.SimpleObjectCamelCase(from: decoder) { + self = .simpleObjectCamelCase(value) + } else if let value = try? String(from: decoder) { + self = .string(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .simpleObjectCamelCase(let value): + try value.encode(to: encoder) + case .string(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/AuthServiceRequestBody.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/AuthServiceRequestBody.swift index ecb4849e4..2f831c65e 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/AuthServiceRequestBody.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/AuthServiceRequestBody.swift @@ -5,13 +5,13 @@ import Foundation extension Shared { /// A model object public struct AuthServiceRequestBody { - public let basicAuth: Shared.AuthServiceRequestBodyBasicAuth? - public let headerAuth: [Shared.AuthServiceRequestBodyHeaderAuth]? + public let basicAuth: Shared.BasicAuth? + public let headerAuth: [Shared.HeaderAuth]? /// Creates an object with the specified parameters /// /// - public init(basicAuth: Shared.AuthServiceRequestBodyBasicAuth? = nil, headerAuth: [Shared.AuthServiceRequestBodyHeaderAuth]? = nil) { + public init(basicAuth: Shared.BasicAuth? = nil, headerAuth: [Shared.HeaderAuth]? = nil) { self.basicAuth = basicAuth self.headerAuth = headerAuth } diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/AuthServiceRequestBodyBasicAuth.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/AuthServiceRequestBodyBasicAuth.swift deleted file mode 100755 index ef473ede3..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/AuthServiceRequestBodyBasicAuth.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public struct AuthServiceRequestBodyBasicAuth { - public let username: String - public let password: String - - /// Creates an object with the specified parameters - /// - /// - public init(username: String, password: String) { - self.username = username - self.password = password - } - } -} - -extension Shared.AuthServiceRequestBodyBasicAuth: Codable { - enum CodingKeys: String, CodingKey { - case username - case password - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/AuthServiceRequestBodyHeaderAuth.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/AuthServiceRequestBodyHeaderAuth.swift deleted file mode 100755 index bd01d7b4b..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/AuthServiceRequestBodyHeaderAuth.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public struct AuthServiceRequestBodyHeaderAuth { - public let expectedValue: String - public let headerName: String - - /// Creates an object with the specified parameters - /// - /// - public init(expectedValue: String, headerName: String) { - self.expectedValue = expectedValue - self.headerName = headerName - } - } -} - -extension Shared.AuthServiceRequestBodyHeaderAuth: Codable { - enum CodingKeys: String, CodingKey { - case expectedValue - case headerName - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/BasicAuth.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/BasicAuth.swift new file mode 100755 index 000000000..92a908910 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/BasicAuth.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public struct BasicAuth { + public let username: String + public let password: String + + /// Creates an object with the specified parameters + /// + /// + public init(username: String, password: String) { + self.username = username + self.password = password + } + } +} + +extension Shared.BasicAuth: Codable { + enum CodingKeys: String, CodingKey { + case username + case password + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/Child.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/Child.swift new file mode 100755 index 000000000..a236d121c --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/Child.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public enum Child { + case oneOfCircularReferenceObject(Shared.OneOfCircularReferenceObject) + case simpleObject(Shared.SimpleObject) + } +} + +extension Shared.Child: Codable { + public init(from decoder: Decoder) throws { + if let value = try? Shared.OneOfCircularReferenceObject(from: decoder) { + self = .oneOfCircularReferenceObject(value) + } else if let value = try? Shared.SimpleObject(from: decoder) { + self = .simpleObject(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .oneOfCircularReferenceObject(let value): + try value.encode(to: encoder) + case .simpleObject(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/Chocolates.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/Chocolates.swift new file mode 100755 index 000000000..40bf48fc7 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/Chocolates.swift @@ -0,0 +1,24 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public struct Chocolates { + public let description: String + + /// Creates an object with the specified parameters + /// + /// + public init(description: String) { + self.description = description + } + } +} + +extension Shared.Chocolates: Codable { + enum CodingKeys: String, CodingKey { + case description + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/ConstEnumInt.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/ConstEnumInt.swift new file mode 100755 index 000000000..d631c7482 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/ConstEnumInt.swift @@ -0,0 +1,11 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + public enum ConstEnumInt: Int, Codable, APIValue { + case one = 1 + case two = 2 + case three = 3 + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/ConstEnumStr.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/ConstEnumStr.swift new file mode 100755 index 000000000..e5cad72b6 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/ConstEnumStr.swift @@ -0,0 +1,11 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + public enum ConstEnumStr: String, Codable, APIValue { + case one = "one" + case two = "two" + case three = "three" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObject.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObject.swift index 3b60a5d24..892aecd32 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObject.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObject.swift @@ -5,7 +5,7 @@ import Foundation extension Shared { /// A model object public struct DeepObject: APIValue { - public let any: Shared.DeepObjectAny + public let any: Shared.`Any` public let arr: [Shared.SimpleObject] public let bool: Bool public let int: Int @@ -21,7 +21,7 @@ extension Shared { /// /// - Parameter obj: A simple object that uses all our supported primitive types and enums and has optional properties. /// - public init(any: Shared.DeepObjectAny, arr: [Shared.SimpleObject], bool: Bool, int: Int, map: [String: Shared.SimpleObject], num: Double, obj: Shared.SimpleObject, str: String, type: String? = nil) { + public init(any: Shared.`Any`, arr: [Shared.SimpleObject], bool: Bool, int: Int, map: [String: Shared.SimpleObject], num: Double, obj: Shared.SimpleObject, str: String, type: String? = nil) { self.any = any self.arr = arr self.bool = bool @@ -50,7 +50,7 @@ extension Shared.DeepObject: Codable { public init(from decoder: Decoder) throws { let container = try decoder.container(keyedBy: CodingKeys.self) - self.any = try container.decode(Shared.DeepObjectAny.self, forKey: .any) + self.any = try container.decode(Shared.`Any`.self, forKey: .any) self.arr = try container.decode([Shared.SimpleObject].self, forKey: .arr) self.bool = try container.decode(Bool.self, forKey: .bool) self.int = try container.decode(Int.self, forKey: .int) diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObjectAny.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObjectAny.swift deleted file mode 100755 index 74d49b068..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObjectAny.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public enum DeepObjectAny { - case simpleObject(Shared.SimpleObject) - case string(String) - } -} - -extension Shared.DeepObjectAny: Codable { - public init(from decoder: Decoder) throws { - if let value = try? Shared.SimpleObject(from: decoder) { - self = .simpleObject(value) - } else if let value = try? String(from: decoder) { - self = .string(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .simpleObject(let value): - try value.encode(to: encoder) - case .string(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObjectCamelCase.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObjectCamelCase.swift index 6991572d4..29c7d4a6f 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObjectCamelCase.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObjectCamelCase.swift @@ -5,7 +5,7 @@ import Foundation extension Shared { /// A model object public struct DeepObjectCamelCase { - public let anyVal: Shared.DeepObjectCamelCaseAnyVal + public let anyVal: Shared.AnyVal public let arrVal: [Shared.SimpleObjectCamelCase] public let boolVal: Bool public let intVal: Int @@ -21,7 +21,7 @@ extension Shared { /// /// - Parameter objVal: A simple object that uses all our supported primitive types and enums and has optional properties. /// - public init(anyVal: Shared.DeepObjectCamelCaseAnyVal, arrVal: [Shared.SimpleObjectCamelCase], boolVal: Bool, intVal: Int, mapVal: [String: Shared.SimpleObjectCamelCase], numVal: Double, objVal: Shared.SimpleObjectCamelCase, strVal: String, type: String? = nil) { + public init(anyVal: Shared.AnyVal, arrVal: [Shared.SimpleObjectCamelCase], boolVal: Bool, intVal: Int, mapVal: [String: Shared.SimpleObjectCamelCase], numVal: Double, objVal: Shared.SimpleObjectCamelCase, strVal: String, type: String? = nil) { self.anyVal = anyVal self.arrVal = arrVal self.boolVal = boolVal @@ -50,7 +50,7 @@ extension Shared.DeepObjectCamelCase: Codable { public init(from decoder: Decoder) throws { let container = try decoder.container(keyedBy: CodingKeys.self) - self.anyVal = try container.decode(Shared.DeepObjectCamelCaseAnyVal.self, forKey: .anyVal) + self.anyVal = try container.decode(Shared.AnyVal.self, forKey: .anyVal) self.arrVal = try container.decode([Shared.SimpleObjectCamelCase].self, forKey: .arrVal) self.boolVal = try container.decode(Bool.self, forKey: .boolVal) self.intVal = try container.decode(Int.self, forKey: .intVal) diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObjectCamelCaseAnyVal.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObjectCamelCaseAnyVal.swift deleted file mode 100755 index 7758c7690..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/DeepObjectCamelCaseAnyVal.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public enum DeepObjectCamelCaseAnyVal { - case simpleObjectCamelCase(Shared.SimpleObjectCamelCase) - case string(String) - } -} - -extension Shared.DeepObjectCamelCaseAnyVal: Codable { - public init(from decoder: Decoder) throws { - if let value = try? Shared.SimpleObjectCamelCase(from: decoder) { - self = .simpleObjectCamelCase(value) - } else if let value = try? String(from: decoder) { - self = .string(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .simpleObjectCamelCase(let value): - try value.encode(to: encoder) - case .string(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultEnumInt.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultEnumInt.swift new file mode 100755 index 000000000..e66e718a6 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultEnumInt.swift @@ -0,0 +1,11 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + public enum DefaultEnumInt: Int, Codable, APIValue { + case one = 1 + case two = 2 + case three = 3 + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultEnumStr.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultEnumStr.swift new file mode 100755 index 000000000..800079527 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultEnumStr.swift @@ -0,0 +1,11 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + public enum DefaultEnumStr: String, Codable, APIValue { + case one = "one" + case two = "two" + case three = "three" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConsts.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConsts.swift index 25a8c640b..a56e299a8 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConsts.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConsts.swift @@ -15,8 +15,8 @@ extension Shared { @DecimalSerialized public private(set) var constDecimal: Double public let constDecimalStr: String - public let constEnumInt: Shared.DefaultsAndConstsConstEnumInt - public let constEnumStr: Shared.DefaultsAndConstsConstEnumStr + public let constEnumInt: Shared.ConstEnumInt + public let constEnumStr: Shared.ConstEnumStr public let constInt: Int @DecimalSerialized public private(set) var constNum: Double @@ -33,8 +33,8 @@ extension Shared { @DecimalSerialized public private(set) var defaultDecimal: Double? public let defaultDecimalStr: String? - public let defaultEnumInt: Shared.DefaultsAndConstsDefaultEnumInt? - public let defaultEnumStr: Shared.DefaultsAndConstsDefaultEnumStr? + public let defaultEnumInt: Shared.DefaultEnumInt? + public let defaultEnumStr: Shared.DefaultEnumStr? public let defaultInt: Int? @DecimalSerialized public private(set) var defaultNum: Double? @@ -45,7 +45,7 @@ extension Shared { /// Creates an object with the specified parameters /// /// - public init(constBigInt: Int, constBigIntStr: String, constBool: Bool, constDate: Date, constDateTime: Date, constDecimal: Double, constDecimalStr: String, constEnumInt: Shared.DefaultsAndConstsConstEnumInt, constEnumStr: Shared.DefaultsAndConstsConstEnumStr, constInt: Int, constNum: Double, constStr: String, constStrNull: String, normalField: String, defaultBigInt: Int? = nil, defaultBigIntStr: String? = nil, defaultBool: Bool? = nil, defaultDate: Date? = nil, defaultDateTime: Date? = nil, defaultDecimal: Double? = nil, defaultDecimalStr: String? = nil, defaultEnumInt: Shared.DefaultsAndConstsDefaultEnumInt? = nil, defaultEnumStr: Shared.DefaultsAndConstsDefaultEnumStr? = nil, defaultInt: Int? = nil, defaultNum: Double? = nil, defaultStr: String? = nil, defaultStrNullable: String? = nil, defaultStrOptional: String? = nil) { + public init(constBigInt: Int, constBigIntStr: String, constBool: Bool, constDate: Date, constDateTime: Date, constDecimal: Double, constDecimalStr: String, constEnumInt: Shared.ConstEnumInt, constEnumStr: Shared.ConstEnumStr, constInt: Int, constNum: Double, constStr: String, constStrNull: String, normalField: String, defaultBigInt: Int? = nil, defaultBigIntStr: String? = nil, defaultBool: Bool? = nil, defaultDate: Date? = nil, defaultDateTime: Date? = nil, defaultDecimal: Double? = nil, defaultDecimalStr: String? = nil, defaultEnumInt: Shared.DefaultEnumInt? = nil, defaultEnumStr: Shared.DefaultEnumStr? = nil, defaultInt: Int? = nil, defaultNum: Double? = nil, defaultStr: String? = nil, defaultStrNullable: String? = nil, defaultStrOptional: String? = nil) { self.constBigInt = constBigInt self.constBigIntStr = constBigIntStr self.constBool = constBool @@ -119,8 +119,8 @@ extension Shared.DefaultsAndConsts: Codable { self._constDateTime = try container.decode(DateTime.self, forKey: .constDateTime) self._constDecimal = try container.decode(DecimalSerialized.self, forKey: .constDecimal) self.constDecimalStr = try container.decode(String.self, forKey: .constDecimalStr) - self.constEnumInt = try container.decode(Shared.DefaultsAndConstsConstEnumInt.self, forKey: .constEnumInt) - self.constEnumStr = try container.decode(Shared.DefaultsAndConstsConstEnumStr.self, forKey: .constEnumStr) + self.constEnumInt = try container.decode(Shared.ConstEnumInt.self, forKey: .constEnumInt) + self.constEnumStr = try container.decode(Shared.ConstEnumStr.self, forKey: .constEnumStr) self.constInt = try container.decode(Int.self, forKey: .constInt) self._constNum = try container.decode(DecimalSerialized.self, forKey: .constNum) self.constStr = try container.decode(String.self, forKey: .constStr) @@ -133,8 +133,8 @@ extension Shared.DefaultsAndConsts: Codable { self._defaultDateTime = try container.decodeIfPresent(DateTime.self, forKey: .defaultDateTime) ?? DateTime(wrappedValue: nil) self._defaultDecimal = try container.decodeIfPresent(DecimalSerialized.self, forKey: .defaultDecimal) ?? DecimalSerialized(wrappedValue: nil) self.defaultDecimalStr = try container.decodeIfPresent(String.self, forKey: .defaultDecimalStr) - self.defaultEnumInt = try container.decodeIfPresent(Shared.DefaultsAndConstsDefaultEnumInt.self, forKey: .defaultEnumInt) - self.defaultEnumStr = try container.decodeIfPresent(Shared.DefaultsAndConstsDefaultEnumStr.self, forKey: .defaultEnumStr) + self.defaultEnumInt = try container.decodeIfPresent(Shared.DefaultEnumInt.self, forKey: .defaultEnumInt) + self.defaultEnumStr = try container.decodeIfPresent(Shared.DefaultEnumStr.self, forKey: .defaultEnumStr) self.defaultInt = try container.decodeIfPresent(Int.self, forKey: .defaultInt) self._defaultNum = try container.decodeIfPresent(DecimalSerialized.self, forKey: .defaultNum) ?? DecimalSerialized(wrappedValue: nil) self.defaultStr = try container.decodeIfPresent(String.self, forKey: .defaultStr) diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsConstEnumInt.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsConstEnumInt.swift deleted file mode 100755 index 065c6454a..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsConstEnumInt.swift +++ /dev/null @@ -1,11 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - public enum DefaultsAndConstsConstEnumInt: Int, Codable, APIValue { - case one = 1 - case two = 2 - case three = 3 - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsConstEnumStr.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsConstEnumStr.swift deleted file mode 100755 index 0d4440812..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsConstEnumStr.swift +++ /dev/null @@ -1,11 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - public enum DefaultsAndConstsConstEnumStr: String, Codable, APIValue { - case one = "one" - case two = "two" - case three = "three" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsDefaultEnumInt.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsDefaultEnumInt.swift deleted file mode 100755 index aac40f4ee..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsDefaultEnumInt.swift +++ /dev/null @@ -1,11 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - public enum DefaultsAndConstsDefaultEnumInt: Int, Codable, APIValue { - case one = 1 - case two = 2 - case three = 3 - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsDefaultEnumStr.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsDefaultEnumStr.swift deleted file mode 100755 index b4ba73e50..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/DefaultsAndConstsDefaultEnumStr.swift +++ /dev/null @@ -1,11 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - public enum DefaultsAndConstsDefaultEnumStr: String, Codable, APIValue { - case one = "one" - case two = "two" - case three = "three" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DeprecatedEnum.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DeprecatedEnum.swift new file mode 100755 index 000000000..cdb9fe7e3 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/DeprecatedEnum.swift @@ -0,0 +1,13 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + + @available(*, deprecated, message: "This enum is deprecated") + public enum DeprecatedEnum: String, Codable, APIValue { + case a = "a" + case b = "b" + case c = "c" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DeprecatedFieldInObject.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DeprecatedFieldInObject.swift index cf3cdae5e..0757052c2 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/DeprecatedFieldInObject.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/DeprecatedFieldInObject.swift @@ -7,7 +7,7 @@ extension Shared { public struct DeprecatedFieldInObject { @available(*, deprecated, message: "This enum is deprecated") - public let deprecatedEnum: Shared.DeprecatedFieldInObjectDeprecatedEnum? + public let deprecatedEnum: Shared.DeprecatedEnum? @available(*, deprecated, renamed: "newField", message: "This will be removed in a future release, please migrate away from it as soon as possible") public let deprecatedField: String? @@ -19,7 +19,7 @@ extension Shared { /// - Parameter deprecatedField: /// @available(*, deprecated, message: "This initializer uses deprecated fields and will be removed in a future version.") - public init(deprecatedEnum: Shared.DeprecatedFieldInObjectDeprecatedEnum? = nil, deprecatedField: String? = nil, newField: String? = nil) { + public init(deprecatedEnum: Shared.DeprecatedEnum? = nil, deprecatedField: String? = nil, newField: String? = nil) { self.deprecatedEnum = deprecatedEnum self.deprecatedField = deprecatedField self.newField = newField diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/DeprecatedFieldInObjectDeprecatedEnum.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/DeprecatedFieldInObjectDeprecatedEnum.swift deleted file mode 100755 index 25dd013a4..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/DeprecatedFieldInObjectDeprecatedEnum.swift +++ /dev/null @@ -1,13 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - - @available(*, deprecated, message: "This enum is deprecated") - public enum DeprecatedFieldInObjectDeprecatedEnum: String, Codable, APIValue { - case a = "a" - case b = "b" - case c = "c" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/EnumNumber.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/EnumNumber.swift new file mode 100755 index 000000000..ca37bb815 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/EnumNumber.swift @@ -0,0 +1,11 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + public enum EnumNumber: Int, Codable, APIValue { + case one = 1 + case two = 2 + case three = 3 + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/EnumStr.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/EnumStr.swift new file mode 100755 index 000000000..d45bd053f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/EnumStr.swift @@ -0,0 +1,11 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + public enum EnumStr: String, Codable, APIValue { + case one = "one" + case two = "two" + case three = "three" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleBoat.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleBoat.swift index cbcae7c05..64e1eaf59 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleBoat.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleBoat.swift @@ -8,7 +8,7 @@ extension Shared { @DecimalSerialized public private(set) var length: Double public let name: String - public let type: Shared.ExampleBoatType + public let type: Shared.TypeModel @DateTime public private(set) var createdAt: Date? @DateTime @@ -17,7 +17,7 @@ extension Shared { /// Creates an object with the specified parameters /// /// - public init(length: Double, name: String, type: Shared.ExampleBoatType, createdAt: Date? = nil, updatedAt: Date? = nil) { + public init(length: Double, name: String, type: Shared.TypeModel, createdAt: Date? = nil, updatedAt: Date? = nil) { self._length = DecimalSerialized(wrappedValue: length) self.name = name self.type = type @@ -40,7 +40,7 @@ extension Shared.ExampleBoat: Codable { let container = try decoder.container(keyedBy: CodingKeys.self) self._length = try container.decode(DecimalSerialized.self, forKey: .length) self.name = try container.decode(String.self, forKey: .name) - self.type = try container.decode(Shared.ExampleBoatType.self, forKey: .type) + self.type = try container.decode(Shared.TypeModel.self, forKey: .type) self._createdAt = try container.decodeIfPresent(DateTime.self, forKey: .createdAt) ?? DateTime(wrappedValue: nil) self._updatedAt = try container.decodeIfPresent(DateTime.self, forKey: .updatedAt) ?? DateTime(wrappedValue: nil) } diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleBoatType.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleBoatType.swift deleted file mode 100755 index aa1162bde..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleBoatType.swift +++ /dev/null @@ -1,9 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - public enum ExampleBoatType: String, Codable, APIValue { - case boat = "boat" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResource.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResource.swift index def2b7ece..54ea4349c 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResource.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResource.swift @@ -5,7 +5,7 @@ import Foundation extension Shared { /// A model object public struct ExampleResource { - public let chocolates: [Shared.ExampleResourceChocolates] + public let chocolates: [Shared.Chocolates] public let id: String public let name: String public let vehicle: Shared.ExampleVehicle @@ -13,8 +13,8 @@ extension Shared { public let arrayOfString: [String]? @DateTime public private(set) var createdAt: Date? - public let enumNumber: Shared.ExampleResourceEnumNumber? - public let enumStr: Shared.ExampleResourceEnumStr? + public let enumNumber: Shared.EnumNumber? + public let enumStr: Shared.EnumStr? public let mapOfInteger: [String: Int]? public let mapOfString: [String: String]? @DateTime @@ -23,7 +23,7 @@ extension Shared { /// Creates an object with the specified parameters /// /// - public init(chocolates: [Shared.ExampleResourceChocolates], id: String, name: String, vehicle: Shared.ExampleVehicle, arrayOfNumber: [Double]? = nil, arrayOfString: [String]? = nil, createdAt: Date? = nil, enumNumber: Shared.ExampleResourceEnumNumber? = nil, enumStr: Shared.ExampleResourceEnumStr? = nil, mapOfInteger: [String: Int]? = nil, mapOfString: [String: String]? = nil, updatedAt: Date? = nil) { + public init(chocolates: [Shared.Chocolates], id: String, name: String, vehicle: Shared.ExampleVehicle, arrayOfNumber: [Double]? = nil, arrayOfString: [String]? = nil, createdAt: Date? = nil, enumNumber: Shared.EnumNumber? = nil, enumStr: Shared.EnumStr? = nil, mapOfInteger: [String: Int]? = nil, mapOfString: [String: String]? = nil, updatedAt: Date? = nil) { self.chocolates = chocolates self.id = id self.name = name @@ -58,15 +58,15 @@ extension Shared.ExampleResource: Codable { public init(from decoder: Decoder) throws { let container = try decoder.container(keyedBy: CodingKeys.self) - self.chocolates = try container.decode([Shared.ExampleResourceChocolates].self, forKey: .chocolates) + self.chocolates = try container.decode([Shared.Chocolates].self, forKey: .chocolates) self.id = try container.decode(String.self, forKey: .id) self.name = try container.decode(String.self, forKey: .name) self.vehicle = try container.decode(Shared.ExampleVehicle.self, forKey: .vehicle) self.arrayOfNumber = try container.decodeIfPresent([Double].self, forKey: .arrayOfNumber) self.arrayOfString = try container.decodeIfPresent([String].self, forKey: .arrayOfString) self._createdAt = try container.decodeIfPresent(DateTime.self, forKey: .createdAt) ?? DateTime(wrappedValue: nil) - self.enumNumber = try container.decodeIfPresent(Shared.ExampleResourceEnumNumber.self, forKey: .enumNumber) - self.enumStr = try container.decodeIfPresent(Shared.ExampleResourceEnumStr.self, forKey: .enumStr) + self.enumNumber = try container.decodeIfPresent(Shared.EnumNumber.self, forKey: .enumNumber) + self.enumStr = try container.decodeIfPresent(Shared.EnumStr.self, forKey: .enumStr) self.mapOfInteger = try container.decodeIfPresent([String: Int].self, forKey: .mapOfInteger) self.mapOfString = try container.decodeIfPresent([String: String].self, forKey: .mapOfString) self._updatedAt = try container.decodeIfPresent(DateTime.self, forKey: .updatedAt) ?? DateTime(wrappedValue: nil) diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResourceChocolates.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResourceChocolates.swift deleted file mode 100755 index 9c711454b..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResourceChocolates.swift +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public struct ExampleResourceChocolates { - public let description: String - - /// Creates an object with the specified parameters - /// - /// - public init(description: String) { - self.description = description - } - } -} - -extension Shared.ExampleResourceChocolates: Codable { - enum CodingKeys: String, CodingKey { - case description - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResourceEnumNumber.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResourceEnumNumber.swift deleted file mode 100755 index b9bf12e0e..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResourceEnumNumber.swift +++ /dev/null @@ -1,11 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - public enum ExampleResourceEnumNumber: Int, Codable, APIValue { - case one = 1 - case two = 2 - case three = 3 - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResourceEnumStr.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResourceEnumStr.swift deleted file mode 100755 index 3c79da9f0..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/ExampleResourceEnumStr.swift +++ /dev/null @@ -1,11 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - public enum ExampleResourceEnumStr: String, Codable, APIValue { - case one = "one" - case two = "two" - case three = "three" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/HeaderAuth.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/HeaderAuth.swift new file mode 100755 index 000000000..a4ba2fe6c --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/HeaderAuth.swift @@ -0,0 +1,27 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public struct HeaderAuth { + public let expectedValue: String + public let headerName: String + + /// Creates an object with the specified parameters + /// + /// + public init(expectedValue: String, headerName: String) { + self.expectedValue = expectedValue + self.headerName = headerName + } + } +} + +extension Shared.HeaderAuth: Codable { + enum CodingKeys: String, CodingKey { + case expectedValue + case headerName + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/HttpBinSimpleJsonObject.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/HttpBinSimpleJsonObject.swift index a9ed286f0..473128505 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/HttpBinSimpleJsonObject.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/HttpBinSimpleJsonObject.swift @@ -5,12 +5,12 @@ import Foundation extension Shared { /// A model object public struct HttpBinSimpleJsonObject { - public let slideshow: Shared.HttpBinSimpleJsonObjectSlideshow + public let slideshow: Shared.Slideshow /// Creates an object with the specified parameters /// /// - public init(slideshow: Shared.HttpBinSimpleJsonObjectSlideshow) { + public init(slideshow: Shared.Slideshow) { self.slideshow = slideshow } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/HttpBinSimpleJsonObjectSlideshow.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/HttpBinSimpleJsonObjectSlideshow.swift deleted file mode 100755 index 4d888822c..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/HttpBinSimpleJsonObjectSlideshow.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public struct HttpBinSimpleJsonObjectSlideshow { - public let author: String - public let date: String - public let slides: [Shared.HttpBinSimpleJsonObjectSlideshowSlides] - public let title: String - - /// Creates an object with the specified parameters - /// - /// - public init(author: String, date: String, slides: [Shared.HttpBinSimpleJsonObjectSlideshowSlides], title: String) { - self.author = author - self.date = date - self.slides = slides - self.title = title - } - } -} - -extension Shared.HttpBinSimpleJsonObjectSlideshow: Codable { - enum CodingKeys: String, CodingKey { - case author - case date - case slides - case title - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.swift deleted file mode 100755 index effce622b..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.swift +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public struct HttpBinSimpleJsonObjectSlideshowSlides { - public let title: String - public let type: String - public let items: [String]? - - /// Creates an object with the specified parameters - /// - /// - public init(title: String, type: String, items: [String]? = nil) { - self.title = title - self.type = type - self.items = items - } - } -} - -extension Shared.HttpBinSimpleJsonObjectSlideshowSlides: Codable { - enum CodingKeys: String, CodingKey { - case title - case type - case items - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/Int32Enum.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/Int32Enum.swift new file mode 100755 index 000000000..76c0a0948 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/Int32Enum.swift @@ -0,0 +1,12 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// An int32 enum property. + public enum Int32Enum: Int, Codable, APIValue { + case fiftyFive = 55 + case sixtyNine = 69 + case oneHundredAndEightyOne = 181 + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/Int32EnumVal.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/Int32EnumVal.swift new file mode 100755 index 000000000..2c4ccaaa0 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/Int32EnumVal.swift @@ -0,0 +1,12 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// An int32 enum property. + public enum Int32EnumVal: Int, Codable, APIValue { + case fiftyFive = 55 + case sixtyNine = 69 + case oneHundredAndEightyOne = 181 + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/IntEnum.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/IntEnum.swift new file mode 100755 index 000000000..15a052f59 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/IntEnum.swift @@ -0,0 +1,12 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// An integer enum property. + public enum IntEnum: Int, Codable, APIValue { + case first = 1 + case second = 2 + case third = 3 + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/IntEnumVal.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/IntEnumVal.swift new file mode 100755 index 000000000..75976a5ce --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/IntEnumVal.swift @@ -0,0 +1,12 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// An integer enum property. + public enum IntEnumVal: Int, Codable, APIValue { + case first = 1 + case second = 2 + case third = 3 + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfRefInObject.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfRefInObject.swift index 17828fbad..ece956491 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfRefInObject.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfRefInObject.swift @@ -6,13 +6,13 @@ extension Shared { /// A model object public struct NullableOneOfRefInObject { public let nullableOneOfOne: Shared.TypedObject1 - public let nullableOneOfTwo: Shared.NullableOneOfRefInObjectNullableOneOfTwo - public let oneOfOne: Shared.NullableOneOfRefInObjectOneOfOne + public let nullableOneOfTwo: Shared.NullableOneOfTwo + public let oneOfOne: Shared.OneOfOne /// Creates an object with the specified parameters /// /// - public init(nullableOneOfOne: Shared.TypedObject1, nullableOneOfTwo: Shared.NullableOneOfRefInObjectNullableOneOfTwo, oneOfOne: Shared.NullableOneOfRefInObjectOneOfOne) { + public init(nullableOneOfOne: Shared.TypedObject1, nullableOneOfTwo: Shared.NullableOneOfTwo, oneOfOne: Shared.OneOfOne) { self.nullableOneOfOne = nullableOneOfOne self.nullableOneOfTwo = nullableOneOfTwo self.oneOfOne = oneOfOne diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfRefInObjectNullableOneOfTwo.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfRefInObjectNullableOneOfTwo.swift deleted file mode 100755 index bb4e02414..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfRefInObjectNullableOneOfTwo.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public enum NullableOneOfRefInObjectNullableOneOfTwo { - case typedObject1(Shared.TypedObject1) - case typedObject2(Shared.TypedObject2) - } -} - -extension Shared.NullableOneOfRefInObjectNullableOneOfTwo: Codable { - public init(from decoder: Decoder) throws { - if let value = try? Shared.TypedObject1(from: decoder) { - self = .typedObject1(value) - } else if let value = try? Shared.TypedObject2(from: decoder) { - self = .typedObject2(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .typedObject1(let value): - try value.encode(to: encoder) - case .typedObject2(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfRefInObjectOneOfOne.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfRefInObjectOneOfOne.swift deleted file mode 100755 index 6e5bf1085..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfRefInObjectOneOfOne.swift +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public enum NullableOneOfRefInObjectOneOfOne { - case typedObject1(Shared.TypedObject1) - } -} - -extension Shared.NullableOneOfRefInObjectOneOfOne: Codable { - public init(from decoder: Decoder) throws { - if let value = try? Shared.TypedObject1(from: decoder) { - self = .typedObject1(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .typedObject1(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfTwo.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfTwo.swift new file mode 100755 index 000000000..37281215f --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/NullableOneOfTwo.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public enum NullableOneOfTwo { + case typedObject1(Shared.TypedObject1) + case typedObject2(Shared.TypedObject2) + } +} + +extension Shared.NullableOneOfTwo: Codable { + public init(from decoder: Decoder) throws { + if let value = try? Shared.TypedObject1(from: decoder) { + self = .typedObject1(value) + } else if let value = try? Shared.TypedObject2(from: decoder) { + self = .typedObject2(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .typedObject1(let value): + try value.encode(to: encoder) + case .typedObject2(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfCircularReferenceObject.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfCircularReferenceObject.swift index 946e0e641..5467dea73 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfCircularReferenceObject.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfCircularReferenceObject.swift @@ -5,12 +5,12 @@ import Foundation extension Shared { /// A model object public final class OneOfCircularReferenceObject { - public let child: Shared.OneOfCircularReferenceObjectChild + public let child: Shared.Child /// Creates an object with the specified parameters /// /// - public init(child: Shared.OneOfCircularReferenceObjectChild) { + public init(child: Shared.Child) { self.child = child } } diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfCircularReferenceObjectChild.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfCircularReferenceObjectChild.swift deleted file mode 100755 index a5c76ac6f..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfCircularReferenceObjectChild.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public enum OneOfCircularReferenceObjectChild { - case oneOfCircularReferenceObject(Shared.OneOfCircularReferenceObject) - case simpleObject(Shared.SimpleObject) - } -} - -extension Shared.OneOfCircularReferenceObjectChild: Codable { - public init(from decoder: Decoder) throws { - if let value = try? Shared.OneOfCircularReferenceObject(from: decoder) { - self = .oneOfCircularReferenceObject(value) - } else if let value = try? Shared.SimpleObject(from: decoder) { - self = .simpleObject(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .oneOfCircularReferenceObject(let value): - try value.encode(to: encoder) - case .simpleObject(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfFromArrayOfTypes.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfFromArrayOfTypes.swift new file mode 100755 index 000000000..31b67149e --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfFromArrayOfTypes.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public enum OneOfFromArrayOfTypes { + case string(String) + case integer(Int) + } +} + +extension Shared.OneOfFromArrayOfTypes: Codable { + public init(from decoder: Decoder) throws { + if let value = try? String(from: decoder) { + self = .string(value) + } else if let value = try? Int(from: decoder) { + self = .integer(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .string(let value): + try value.encode(to: encoder) + case .integer(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTest.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTest.swift index 8db3bbfcd..2ae2d991e 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTest.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTest.swift @@ -7,13 +7,13 @@ extension Shared { public struct OneOfGenerationStressTest { public let any: AnyValue public let nullableAny: AnyValue - public let oneOfFromArrayOfTypes: Shared.OneOfGenerationStressTestOneOfFromArrayOfTypes - public let oneOfSameType: Shared.OneOfGenerationStressTestOneOfSameType + public let oneOfFromArrayOfTypes: Shared.OneOfFromArrayOfTypes + public let oneOfSameType: Shared.OneOfSameType /// Creates an object with the specified parameters /// /// - public init(any: AnyValue, nullableAny: AnyValue, oneOfFromArrayOfTypes: Shared.OneOfGenerationStressTestOneOfFromArrayOfTypes, oneOfSameType: Shared.OneOfGenerationStressTestOneOfSameType) { + public init(any: AnyValue, nullableAny: AnyValue, oneOfFromArrayOfTypes: Shared.OneOfFromArrayOfTypes, oneOfSameType: Shared.OneOfSameType) { self.any = any self.nullableAny = nullableAny self.oneOfFromArrayOfTypes = oneOfFromArrayOfTypes diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfFromArrayOfTypes.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfFromArrayOfTypes.swift deleted file mode 100755 index f75946cd7..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfFromArrayOfTypes.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public enum OneOfGenerationStressTestOneOfFromArrayOfTypes { - case string(String) - case integer(Int) - } -} - -extension Shared.OneOfGenerationStressTestOneOfFromArrayOfTypes: Codable { - public init(from decoder: Decoder) throws { - if let value = try? String(from: decoder) { - self = .string(value) - } else if let value = try? Int(from: decoder) { - self = .integer(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .string(let value): - try value.encode(to: encoder) - case .integer(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfSameType.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfSameType.swift deleted file mode 100755 index 3f7b9ed54..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfSameType.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public enum OneOfGenerationStressTestOneOfSameType { - case string(String) - case oneOfGenerationStressTestOneOfSameType2(Shared.OneOfGenerationStressTestOneOfSameType2) - } -} - -extension Shared.OneOfGenerationStressTestOneOfSameType: Codable { - public init(from decoder: Decoder) throws { - if let value = try? String(from: decoder) { - self = .string(value) - } else if let value = try? Shared.OneOfGenerationStressTestOneOfSameType2(from: decoder) { - self = .oneOfGenerationStressTestOneOfSameType2(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .string(let value): - try value.encode(to: encoder) - case .oneOfGenerationStressTestOneOfSameType2(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfSameType2.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfSameType2.swift deleted file mode 100755 index f495e3c6b..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfSameType2.swift +++ /dev/null @@ -1,9 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - public enum OneOfGenerationStressTestOneOfSameType2: String, Codable, APIValue { - case latest = "latest" - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfOne.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfOne.swift new file mode 100755 index 000000000..a87df4926 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfOne.swift @@ -0,0 +1,28 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public enum OneOfOne { + case typedObject1(Shared.TypedObject1) + } +} + +extension Shared.OneOfOne: Codable { + public init(from decoder: Decoder) throws { + if let value = try? Shared.TypedObject1(from: decoder) { + self = .typedObject1(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .typedObject1(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfSameType.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfSameType.swift new file mode 100755 index 000000000..94476389e --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/OneOfSameType.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public enum OneOfSameType { + case string(String) + case two(Shared.Two) + } +} + +extension Shared.OneOfSameType: Codable { + public init(from decoder: Decoder) throws { + if let value = try? String(from: decoder) { + self = .string(value) + } else if let value = try? Shared.Two(from: decoder) { + self = .two(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .string(let value): + try value.encode(to: encoder) + case .two(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/ReadWriteObject.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/ReadWriteObject.swift new file mode 100755 index 000000000..ac3800e33 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/ReadWriteObject.swift @@ -0,0 +1,30 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public struct ReadWriteObject { + public let num1: Int + public let num2: Int + public let num3: Int + + /// Creates an object with the specified parameters + /// + /// + public init(num1: Int, num2: Int, num3: Int) { + self.num1 = num1 + self.num2 = num2 + self.num3 = num3 + } + } +} + +extension Shared.ReadWriteObject: Codable { + enum CodingKeys: String, CodingKey { + case num1 + case num2 + case num3 + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/ReadWriteObjectInput.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/ReadWriteObjectInput.swift deleted file mode 100755 index 34127c312..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/ReadWriteObjectInput.swift +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public struct ReadWriteObjectInput { - public let num1: Int - public let num2: Int - public let num3: Int - - /// Creates an object with the specified parameters - /// - /// - public init(num1: Int, num2: Int, num3: Int) { - self.num1 = num1 - self.num2 = num2 - self.num3 = num3 - } - } -} - -extension Shared.ReadWriteObjectInput: Codable { - enum CodingKeys: String, CodingKey { - case num1 - case num2 - case num3 - } -} - diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObject.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObject.swift index 0cdac5c71..253645940 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObject.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObject.swift @@ -25,9 +25,9 @@ extension Shared { /// An int32 property. public let int32: Int /// An int32 enum property. - public let int32Enum: Shared.SimpleObjectInt32Enum + public let int32Enum: Shared.Int32Enum /// An integer enum property. - public let intEnum: Shared.SimpleObjectIntEnum + public let intEnum: Shared.IntEnum /// A number property. @DecimalSerialized public private(set) var num: Double @@ -67,7 +67,7 @@ extension Shared { /// - Parameter numOptNull: An optional number property will be null for tests. /// - Parameter strOpt: An optional string property. /// - public init(any: AnyValue, bool: Bool, date: Date, dateTime: Date, `enum`: Shared.Enum, float32: Double, int: Int, int32: Int, int32Enum: Shared.SimpleObjectInt32Enum, intEnum: Shared.SimpleObjectIntEnum, num: Double, str: String, bigint: Int? = nil, bigintStr: String? = nil, boolOpt: Bool? = nil, decimal: Double? = nil, decimalStr: String? = nil, intOptNull: Int? = nil, numOptNull: Double? = nil, strOpt: String? = nil) { + public init(any: AnyValue, bool: Bool, date: Date, dateTime: Date, `enum`: Shared.Enum, float32: Double, int: Int, int32: Int, int32Enum: Shared.Int32Enum, intEnum: Shared.IntEnum, num: Double, str: String, bigint: Int? = nil, bigintStr: String? = nil, boolOpt: Bool? = nil, decimal: Double? = nil, decimalStr: String? = nil, intOptNull: Int? = nil, numOptNull: Double? = nil, strOpt: String? = nil) { self.any = any self.bool = bool self._date = DateOnly(wrappedValue: date) @@ -126,8 +126,8 @@ extension Shared.SimpleObject: Codable { self._float32 = try container.decode(DecimalSerialized.self, forKey: .float32) self.int = try container.decode(Int.self, forKey: .int) self.int32 = try container.decode(Int.self, forKey: .int32) - self.int32Enum = try container.decode(Shared.SimpleObjectInt32Enum.self, forKey: .int32Enum) - self.intEnum = try container.decode(Shared.SimpleObjectIntEnum.self, forKey: .intEnum) + self.int32Enum = try container.decode(Shared.Int32Enum.self, forKey: .int32Enum) + self.intEnum = try container.decode(Shared.IntEnum.self, forKey: .intEnum) self._num = try container.decode(DecimalSerialized.self, forKey: .num) self.str = try container.decode(String.self, forKey: .str) self.bigint = try container.decodeIfPresent(Int.self, forKey: .bigint) diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectCamelCase.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectCamelCase.swift index fa5899fbb..7eb0f80dd 100755 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectCamelCase.swift +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectCamelCase.swift @@ -21,11 +21,11 @@ extension Shared { @DecimalSerialized public private(set) var float32Val: Double /// An integer enum property. - public let intEnumVal: Shared.SimpleObjectCamelCaseIntEnumVal + public let intEnumVal: Shared.IntEnumVal /// An integer property. public let intVal: Int /// An int32 enum property. - public let int32EnumVal: Shared.SimpleObjectCamelCaseInt32EnumVal + public let int32EnumVal: Shared.Int32EnumVal /// An int32 property. public let int32Val: Int /// A number property. @@ -66,7 +66,7 @@ extension Shared { /// - Parameter numOptNullVal: An optional number property will be null for tests. /// - Parameter strOptVal: An optional string property. /// - public init(anyVal: AnyValue, boolVal: Bool, dateTimeVal: Date, dateVal: Date, enumVal: Shared.Enum, float32Val: Double, intEnumVal: Shared.SimpleObjectCamelCaseIntEnumVal, intVal: Int, int32EnumVal: Shared.SimpleObjectCamelCaseInt32EnumVal, int32Val: Int, numVal: Double, strVal: String, bigintStrVal: String? = nil, bigintVal: Int? = nil, boolOptVal: Bool? = nil, decimalVal: Double? = nil, intOptNullVal: Int? = nil, numOptNullVal: Double? = nil, strOptVal: String? = nil) { + public init(anyVal: AnyValue, boolVal: Bool, dateTimeVal: Date, dateVal: Date, enumVal: Shared.Enum, float32Val: Double, intEnumVal: Shared.IntEnumVal, intVal: Int, int32EnumVal: Shared.Int32EnumVal, int32Val: Int, numVal: Double, strVal: String, bigintStrVal: String? = nil, bigintVal: Int? = nil, boolOptVal: Bool? = nil, decimalVal: Double? = nil, intOptNullVal: Int? = nil, numOptNullVal: Double? = nil, strOptVal: String? = nil) { self.anyVal = anyVal self.boolVal = boolVal self._dateTimeVal = DateTime(wrappedValue: dateTimeVal) @@ -121,9 +121,9 @@ extension Shared.SimpleObjectCamelCase: Codable { self._dateVal = try container.decode(DateOnly.self, forKey: .dateVal) self.enumVal = try container.decode(Shared.Enum.self, forKey: .enumVal) self._float32Val = try container.decode(DecimalSerialized.self, forKey: .float32Val) - self.intEnumVal = try container.decode(Shared.SimpleObjectCamelCaseIntEnumVal.self, forKey: .intEnumVal) + self.intEnumVal = try container.decode(Shared.IntEnumVal.self, forKey: .intEnumVal) self.intVal = try container.decode(Int.self, forKey: .intVal) - self.int32EnumVal = try container.decode(Shared.SimpleObjectCamelCaseInt32EnumVal.self, forKey: .int32EnumVal) + self.int32EnumVal = try container.decode(Shared.Int32EnumVal.self, forKey: .int32EnumVal) self.int32Val = try container.decode(Int.self, forKey: .int32Val) self._numVal = try container.decode(DecimalSerialized.self, forKey: .numVal) self.strVal = try container.decode(String.self, forKey: .strVal) diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectCamelCaseInt32EnumVal.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectCamelCaseInt32EnumVal.swift deleted file mode 100755 index f4dc9a389..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectCamelCaseInt32EnumVal.swift +++ /dev/null @@ -1,12 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// An int32 enum property. - public enum SimpleObjectCamelCaseInt32EnumVal: Int, Codable, APIValue { - case fiftyFive = 55 - case sixtyNine = 69 - case oneHundredAndEightyOne = 181 - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectCamelCaseIntEnumVal.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectCamelCaseIntEnumVal.swift deleted file mode 100755 index 99a56907c..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectCamelCaseIntEnumVal.swift +++ /dev/null @@ -1,12 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// An integer enum property. - public enum SimpleObjectCamelCaseIntEnumVal: Int, Codable, APIValue { - case first = 1 - case second = 2 - case third = 3 - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectInt32Enum.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectInt32Enum.swift deleted file mode 100755 index f4f14e48a..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectInt32Enum.swift +++ /dev/null @@ -1,12 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// An int32 enum property. - public enum SimpleObjectInt32Enum: Int, Codable, APIValue { - case fiftyFive = 55 - case sixtyNine = 69 - case oneHundredAndEightyOne = 181 - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectIntEnum.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectIntEnum.swift deleted file mode 100755 index 62d94c864..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/SimpleObjectIntEnum.swift +++ /dev/null @@ -1,12 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// An integer enum property. - public enum SimpleObjectIntEnum: Int, Codable, APIValue { - case first = 1 - case second = 2 - case third = 3 - } -} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/Slides.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/Slides.swift new file mode 100755 index 000000000..e4a0e23ce --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/Slides.swift @@ -0,0 +1,30 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public struct Slides { + public let title: String + public let type: String + public let items: [String]? + + /// Creates an object with the specified parameters + /// + /// + public init(title: String, type: String, items: [String]? = nil) { + self.title = title + self.type = type + self.items = items + } + } +} + +extension Shared.Slides: Codable { + enum CodingKeys: String, CodingKey { + case title + case type + case items + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/Slideshow.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/Slideshow.swift new file mode 100755 index 000000000..8e45b3629 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/Slideshow.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public struct Slideshow { + public let author: String + public let date: String + public let slides: [Shared.Slides] + public let title: String + + /// Creates an object with the specified parameters + /// + /// + public init(author: String, date: String, slides: [Shared.Slides], title: String) { + self.author = author + self.date = date + self.slides = slides + self.title = title + } + } +} + +extension Shared.Slideshow: Codable { + enum CodingKeys: String, CodingKey { + case author + case date + case slides + case title + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/Two.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/Two.swift new file mode 100755 index 000000000..d42b44112 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/Two.swift @@ -0,0 +1,9 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + public enum Two: String, Codable, APIValue { + case latest = "latest" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/TypeModel.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/TypeModel.swift new file mode 100755 index 000000000..96d8502cf --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/TypeModel.swift @@ -0,0 +1,9 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + public enum TypeModel: String, Codable, APIValue { + case boat = "boat" + } +} diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/WeaklyTypedOneOfReadWriteObject.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/WeaklyTypedOneOfReadWriteObject.swift new file mode 100755 index 000000000..1cfe152c3 --- /dev/null +++ b/swift-client-sdk/Sources/OpenAPI/models/shared/WeaklyTypedOneOfReadWriteObject.swift @@ -0,0 +1,33 @@ +// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + +import Foundation + +extension Shared { + /// A model object + public enum WeaklyTypedOneOfReadWriteObject { + case simpleObject(Shared.SimpleObject) + case readWriteObject(Shared.ReadWriteObject) + } +} + +extension Shared.WeaklyTypedOneOfReadWriteObject: Codable { + public init(from decoder: Decoder) throws { + if let value = try? Shared.SimpleObject(from: decoder) { + self = .simpleObject(value) + } else if let value = try? Shared.ReadWriteObject(from: decoder) { + self = .readWriteObject(value) + } else { + throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .simpleObject(let value): + try value.encode(to: encoder) + case .readWriteObject(let value): + try value.encode(to: encoder) + } + } +} + diff --git a/swift-client-sdk/Sources/OpenAPI/models/shared/WeaklyTypedOneOfReadWriteObjectInput.swift b/swift-client-sdk/Sources/OpenAPI/models/shared/WeaklyTypedOneOfReadWriteObjectInput.swift deleted file mode 100755 index 0e0f35a4f..000000000 --- a/swift-client-sdk/Sources/OpenAPI/models/shared/WeaklyTypedOneOfReadWriteObjectInput.swift +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - -import Foundation - -extension Shared { - /// A model object - public enum WeaklyTypedOneOfReadWriteObjectInput { - case simpleObject(Shared.SimpleObject) - case readWriteObjectInput(Shared.ReadWriteObjectInput) - } -} - -extension Shared.WeaklyTypedOneOfReadWriteObjectInput: Codable { - public init(from decoder: Decoder) throws { - if let value = try? Shared.SimpleObject(from: decoder) { - self = .simpleObject(value) - } else if let value = try? Shared.ReadWriteObjectInput(from: decoder) { - self = .readWriteObjectInput(value) - } else { - throw OpenAPIError.failedToHandleResponse(.failedToDecodeResponse) - } - } - - public func encode(to encoder: Encoder) throws { - switch self { - case .simpleObject(let value): - try value.encode(to: encoder) - case .readWriteObjectInput(let value): - try value.encode(to: encoder) - } - } -} - diff --git a/swift-client-sdk/Tests/OpenAPITests/testsprimary/RequestBodiesTests.swift b/swift-client-sdk/Tests/OpenAPITests/testsprimary/RequestBodiesTests.swift index 5e5da38d4..f8206a10f 100755 --- a/swift-client-sdk/Tests/OpenAPITests/testsprimary/RequestBodiesTests.swift +++ b/swift-client-sdk/Tests/OpenAPITests/testsprimary/RequestBodiesTests.swift @@ -32,7 +32,7 @@ class RequestBodiesTests: XCTestCase { server: nil ) XCTAssertEqual(response.statusCode, 200, "Request should succeed") - XCTAssertEqual(try response.data.simpleObjects(), [object], "Serialized request body and response objects should be equal") + XCTAssertEqual(try response.data.res(), [object], "Serialized request body and response objects should be equal") } func testRequestBodyPostApplicationJSONArrayOfArray() async throws { @@ -44,8 +44,8 @@ class RequestBodiesTests: XCTestCase { server: nil ) XCTAssertEqual(response.statusCode, 200, "Request should succeed") - XCTAssertEqual(try response.data.arrs()[safelyIndexed: 0]?[safelyIndexed: 0], object) - XCTAssertEqual(try response.data.arrs()[safelyIndexed: 1]?[safelyIndexed: 0], object) + XCTAssertEqual(try response.data.res()[safelyIndexed: 0]?[safelyIndexed: 0], object) + XCTAssertEqual(try response.data.res()[safelyIndexed: 1]?[safelyIndexed: 0], object) } func testRequestBodyPostApplicationJSONMap() async throws { @@ -118,10 +118,10 @@ class RequestBodiesTests: XCTestCase { server: nil ) XCTAssertEqual(response.statusCode, 200, "Request should succeed") - XCTAssertEqual(try response.data.maps()[safelyIndexed: 0]?["mapElem1"], object) - XCTAssertEqual(try response.data.maps()[safelyIndexed: 0]?["mapElem2"], object) - XCTAssertEqual(try response.data.maps()[safelyIndexed: 1]?["mapElem1"], object) - XCTAssertEqual(try response.data.maps()[safelyIndexed: 1]?["mapElem2"], object) + XCTAssertEqual(try response.data.res()[safelyIndexed: 0]?["mapElem1"], object) + XCTAssertEqual(try response.data.res()[safelyIndexed: 0]?["mapElem2"], object) + XCTAssertEqual(try response.data.res()[safelyIndexed: 1]?["mapElem1"], object) + XCTAssertEqual(try response.data.res()[safelyIndexed: 1]?["mapElem2"], object) } func testRequestBodyPostApplicationJSONMapOfPrimitive() async throws { @@ -147,7 +147,7 @@ class RequestBodiesTests: XCTestCase { server: nil ) XCTAssertEqual(response.statusCode, 200, "Request should succeed") - XCTAssertEqual(try response.data.strings(), ["hello", "world"]) + XCTAssertEqual(try response.data.res(), ["hello", "world"]) } func testRequestBodyPostApplicationJSONMapOfMapOfPrimitive() async throws { @@ -184,7 +184,7 @@ class RequestBodiesTests: XCTestCase { server: nil ) XCTAssertEqual(response.statusCode, 200, "Request should succeed") - XCTAssertEqual(try response.data.arrs(), [["foo", "bar"],["buzz", "bazz"]]) + XCTAssertEqual(try response.data.res(), [["foo", "bar"],["buzz", "bazz"]]) } func testRequestBodyPostApplicationJSONArrayObject() async throws { @@ -431,7 +431,7 @@ class RequestBodiesTests: XCTestCase { request: .init( file: .init( content: data, - file: fileContents + fileName: fileContents ) ) ) @@ -604,4 +604,4 @@ class RequestBodiesTests: XCTestCase { XCTAssertEqual(try response.data.readWriteObject().num3, 4) XCTAssertEqual(try response.data.readWriteObject().sum, 7) } -} \ No newline at end of file +} diff --git a/swift-client-sdk/Tests/OpenAPITests/testsprimary/TestObjects.swift b/swift-client-sdk/Tests/OpenAPITests/testsprimary/TestObjects.swift index f129967f5..79fec9a0e 100755 --- a/swift-client-sdk/Tests/OpenAPITests/testsprimary/TestObjects.swift +++ b/swift-client-sdk/Tests/OpenAPITests/testsprimary/TestObjects.swift @@ -149,8 +149,8 @@ extension Shared.TypedObject3: Equatable { // MARK: - Union Types -extension Shared.DeepObjectAny: Equatable { - public static func == (lhs: Shared.DeepObjectAny, rhs: Shared.DeepObjectAny) -> Bool { +extension Shared.`Any`: Equatable { + public static func == (lhs: Shared.`Any`, rhs: Shared.`Any`) -> Bool { switch (lhs, rhs) { case (.simpleObject(let simpleObject1), .simpleObject(let simpleObject2)): return simpleObject1 == simpleObject2 @@ -216,8 +216,8 @@ extension Shared.TypedObjectOneOf: Equatable { } } -extension Operations.PrimitiveTypeOneOfPostResJson: Equatable { - public static func == (lhs: Operations.PrimitiveTypeOneOfPostResJson, rhs: Operations.PrimitiveTypeOneOfPostResJson) -> Bool { +extension Operations.PrimitiveTypeOneOfPostJson: Equatable { + public static func == (lhs: Operations.PrimitiveTypeOneOfPostJson, rhs: Operations.PrimitiveTypeOneOfPostJson) -> Bool { switch (lhs, rhs) { case (.string(let value1), .string(let value2)): return value1 == value2 @@ -233,8 +233,8 @@ extension Operations.PrimitiveTypeOneOfPostResJson: Equatable { } } -extension Operations.MixedTypeOneOfPostResJson: Equatable { - public static func == (lhs: Operations.MixedTypeOneOfPostResJson, rhs: Operations.MixedTypeOneOfPostResJson) -> Bool { +extension Operations.MixedTypeOneOfPostJson: Equatable { + public static func == (lhs: Operations.MixedTypeOneOfPostJson, rhs: Operations.MixedTypeOneOfPostJson) -> Bool { switch (lhs, rhs) { case (.string(let value1), .string(let value2)): return value1 == value2 @@ -288,7 +288,7 @@ extension Shared.WeaklyTypedOneOfObject { } } -extension Operations.DeepObjectQueryParamsMapResArgs { +extension Operations.DeepObjectQueryParamsMapArgs { func string() throws -> String { switch self { case .string(let string): diff --git a/swift-client-sdk/USAGE.md b/swift-client-sdk/USAGE.md index a08104eed..841331919 100755 --- a/swift-client-sdk/USAGE.md +++ b/swift-client-sdk/USAGE.md @@ -10,7 +10,7 @@ let client = Client(security: .apiKeyAuth("Token YOUR_API_KEY")) let response = try await client.generation.getGlobalNameOverride() switch response.data { -case .getGlobalNameOverride200ApplicationJSONObject(let getGlobalNameOverride200ApplicationJSONObject): +case .object(let object): // Handle response break case .empty: @@ -156,7 +156,7 @@ let response = try await client.generation.usageExamplePost( ) switch response.data { -case .usageExamplePost200ApplicationJSONObject(let usageExamplePost200ApplicationJSONObject): +case .object(let object): // Handle response break case .empty: diff --git a/swift-client-sdk/files.gen b/swift-client-sdk/files.gen index 6c95628db..8e275663d 100755 --- a/swift-client-sdk/files.gen +++ b/swift-client-sdk/files.gen @@ -1,25 +1,25 @@ -Sources/OpenAPI/internal/api/_AuthAPI.swift -Sources/OpenAPI/internal/api/_AuthNewAPI.swift -Sources/OpenAPI/internal/api/_DocumentationAPI.swift +Sources/OpenAPI/internal/api/_GenerationAPI.swift Sources/OpenAPI/internal/api/_ErrorsAPI.swift -Sources/OpenAPI/internal/api/_FirstAPI.swift +Sources/OpenAPI/internal/api/_UnionsAPI.swift Sources/OpenAPI/internal/api/_FlatteningAPI.swift -Sources/OpenAPI/internal/api/_GenerationAPI.swift Sources/OpenAPI/internal/api/_GlobalsAPI.swift +Sources/OpenAPI/internal/api/_ParametersAPI.swift Sources/OpenAPI/internal/api/_NestFirstAPI.swift Sources/OpenAPI/internal/api/_NestedAPI.swift Sources/OpenAPI/internal/api/_NestedFirstAPI.swift Sources/OpenAPI/internal/api/_NestedSecondAPI.swift -Sources/OpenAPI/internal/api/_PaginationAPI.swift -Sources/OpenAPI/internal/api/_ParametersAPI.swift Sources/OpenAPI/internal/api/_RequestBodiesAPI.swift -Sources/OpenAPI/internal/api/_ResourceAPI.swift Sources/OpenAPI/internal/api/_ResponseBodiesAPI.swift -Sources/OpenAPI/internal/api/_RetriesAPI.swift -Sources/OpenAPI/internal/api/_SecondAPI.swift Sources/OpenAPI/internal/api/_ServersAPI.swift Sources/OpenAPI/internal/api/_TelemetryAPI.swift -Sources/OpenAPI/internal/api/_UnionsAPI.swift +Sources/OpenAPI/internal/api/_AuthNewAPI.swift +Sources/OpenAPI/internal/api/_AuthAPI.swift +Sources/OpenAPI/internal/api/_DocumentationAPI.swift +Sources/OpenAPI/internal/api/_ResourceAPI.swift +Sources/OpenAPI/internal/api/_FirstAPI.swift +Sources/OpenAPI/internal/api/_SecondAPI.swift +Sources/OpenAPI/internal/api/_PaginationAPI.swift +Sources/OpenAPI/internal/api/_RetriesAPI.swift Sources/OpenAPI/configuration/GlobalServer.swift Sources/OpenAPI/configuration/GlobalParameters.swift Sources/OpenAPI/Client.swift @@ -66,6 +66,7 @@ Sources/OpenAPI/models/callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse. Sources/OpenAPI/models/callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody.swift Sources/OpenAPI/models/callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse.swift Sources/OpenAPI/models/operations/AnchorTypesGetResponse.swift +Sources/OpenAPI/models/operations/AnchorTypesGetTypeFromAnchor.swift Sources/OpenAPI/models/operations/ApiKeyAuthGlobalNewResponse.swift Sources/OpenAPI/models/operations/ApiKeyAuthGlobalResponse.swift Sources/OpenAPI/models/operations/ApiKeyAuthGlobalToken.swift @@ -73,6 +74,7 @@ Sources/OpenAPI/models/operations/ApiKeyAuthResponse.swift Sources/OpenAPI/models/operations/ApiKeyAuthSecurity.swift Sources/OpenAPI/internal/models/ApiKeyAuthSecurity+Serialization.swift Sources/OpenAPI/models/operations/ApiKeyAuthToken.swift +Sources/OpenAPI/models/operations/Args.swift Sources/OpenAPI/models/operations/ArrayCircularReferenceGetResponse.swift Sources/OpenAPI/models/operations/AuthGlobalResponse.swift Sources/OpenAPI/models/operations/BasicAuthNewResponse.swift @@ -102,10 +104,10 @@ Sources/OpenAPI/internal/models/ConflictingParamsRequest+Serialization.swift Sources/OpenAPI/models/operations/ConflictingParamsRes.swift Sources/OpenAPI/models/operations/ConflictingParamsResponse.swift Sources/OpenAPI/models/operations/ConnectionErrorGetResponse.swift +Sources/OpenAPI/models/operations/CreateFileFile.swift +Sources/OpenAPI/internal/models/CreateFileFile+Serialization.swift Sources/OpenAPI/models/operations/CreateFileRequestBody.swift Sources/OpenAPI/internal/models/CreateFileRequestBody+Serialization.swift -Sources/OpenAPI/models/operations/CreateFileRequestBodyFile.swift -Sources/OpenAPI/internal/models/CreateFileRequestBodyFile+Serialization.swift Sources/OpenAPI/models/operations/CreateFileResponse.swift Sources/OpenAPI/models/operations/CreateResourceResponse.swift Sources/OpenAPI/models/operations/DateParamWithDefaultRequest.swift @@ -117,81 +119,89 @@ Sources/OpenAPI/models/operations/DateTimeParamWithDefaultResponse.swift Sources/OpenAPI/models/operations/DecimalParamWithDefaultRequest.swift Sources/OpenAPI/internal/models/DecimalParamWithDefaultRequest+Serialization.swift Sources/OpenAPI/models/operations/DecimalParamWithDefaultResponse.swift +Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapArgs.swift +Sources/OpenAPI/internal/models/DeepObjectQueryParamsMapArgs+Serialization.swift Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapRequest.swift Sources/OpenAPI/internal/models/DeepObjectQueryParamsMapRequest+Serialization.swift Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapRes.swift -Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapResArgs.swift -Sources/OpenAPI/internal/models/DeepObjectQueryParamsMapResArgs+Serialization.swift Sources/OpenAPI/models/operations/DeepObjectQueryParamsMapResponse.swift -Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectObjArrParam.swift -Sources/OpenAPI/internal/models/DeepObjectQueryParamsObjectObjArrParam+Serialization.swift +Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectArgs.swift Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectRequest.swift Sources/OpenAPI/internal/models/DeepObjectQueryParamsObjectRequest+Serialization.swift Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectRes.swift -Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectResArgs.swift Sources/OpenAPI/models/operations/DeepObjectQueryParamsObjectResponse.swift Sources/OpenAPI/models/operations/DeleteResourceRequest.swift Sources/OpenAPI/internal/models/DeleteResourceRequest+Serialization.swift Sources/OpenAPI/models/operations/DeleteResourceResponse.swift Sources/OpenAPI/models/operations/DeprecatedFieldInSchemaPostResponse.swift -Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGet200ApplicationJSON.swift Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGetResponse.swift +Sources/OpenAPI/models/operations/DeprecatedObjectInSchemaGetResponseBody.swift Sources/OpenAPI/models/operations/DeprecatedOperationNoCommentsGetRequest.swift Sources/OpenAPI/internal/models/DeprecatedOperationNoCommentsGetRequest+Serialization.swift Sources/OpenAPI/models/operations/DeprecatedOperationNoCommentsGetResponse.swift Sources/OpenAPI/models/operations/DeprecatedOperationWithCommentsGetRequest.swift Sources/OpenAPI/internal/models/DeprecatedOperationWithCommentsGetRequest+Serialization.swift Sources/OpenAPI/models/operations/DeprecatedOperationWithCommentsGetResponse.swift +Sources/OpenAPI/models/operations/DifferentFileName.swift +Sources/OpenAPI/internal/models/DifferentFileName+Serialization.swift Sources/OpenAPI/models/operations/DuplicateParamDuplicateParamResponse.swift Sources/OpenAPI/models/operations/DuplicateParamRequest.swift Sources/OpenAPI/internal/models/DuplicateParamRequest+Serialization.swift Sources/OpenAPI/models/operations/DuplicateParamResponse.swift +Sources/OpenAPI/models/operations/Empty.swift +Sources/OpenAPI/internal/models/Empty+Serialization.swift Sources/OpenAPI/models/operations/EmptyObjectGetRequest.swift Sources/OpenAPI/internal/models/EmptyObjectGetRequest+Serialization.swift Sources/OpenAPI/models/operations/EmptyObjectGetResponse.swift -Sources/OpenAPI/models/operations/EmptyResponseObjectWithCommentGet200ApplicationOctetStream.swift -Sources/OpenAPI/internal/models/EmptyResponseObjectWithCommentGet200ApplicationOctetStream+Serialization.swift +Sources/OpenAPI/models/operations/EmptyRespWithEmptyProperies.swift +Sources/OpenAPI/internal/models/EmptyRespWithEmptyProperies+Serialization.swift Sources/OpenAPI/models/operations/EmptyResponseObjectWithCommentGetResponse.swift +Sources/OpenAPI/models/operations/EmptyResponseObjectWithCommentGetResponseBody.swift +Sources/OpenAPI/internal/models/EmptyResponseObjectWithCommentGetResponseBody+Serialization.swift +Sources/OpenAPI/models/operations/EmptyWithEmptyProperties.swift +Sources/OpenAPI/internal/models/EmptyWithEmptyProperties+Serialization.swift +Sources/OpenAPI/models/operations/EnumNameOverride.swift +Sources/OpenAPI/internal/models/EnumNameOverride+Serialization.swift +Sources/OpenAPI/models/operations/EnumParameter.swift +Sources/OpenAPI/internal/models/EnumParameter+Serialization.swift +Sources/OpenAPI/models/operations/File.swift +Sources/OpenAPI/internal/models/File+Serialization.swift Sources/OpenAPI/models/operations/FlattenedTypedObjectPostRes.swift Sources/OpenAPI/models/operations/FlattenedTypedObjectPostResponse.swift +Sources/OpenAPI/models/operations/FormQueryParamsArrayArgs.swift Sources/OpenAPI/models/operations/FormQueryParamsArrayRequest.swift Sources/OpenAPI/internal/models/FormQueryParamsArrayRequest+Serialization.swift Sources/OpenAPI/models/operations/FormQueryParamsArrayRes.swift -Sources/OpenAPI/models/operations/FormQueryParamsArrayResArgs.swift Sources/OpenAPI/models/operations/FormQueryParamsArrayResponse.swift -Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectObjParam.swift -Sources/OpenAPI/internal/models/FormQueryParamsCamelObjectObjParam+Serialization.swift -Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectObjParamExploded.swift -Sources/OpenAPI/internal/models/FormQueryParamsCamelObjectObjParamExploded+Serialization.swift +Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectArgs.swift Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectRequest.swift Sources/OpenAPI/internal/models/FormQueryParamsCamelObjectRequest+Serialization.swift Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectRes.swift -Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectResArgs.swift Sources/OpenAPI/models/operations/FormQueryParamsCamelObjectResponse.swift Sources/OpenAPI/models/operations/FormQueryParamsMapRequest.swift Sources/OpenAPI/internal/models/FormQueryParamsMapRequest+Serialization.swift Sources/OpenAPI/models/operations/FormQueryParamsMapRes.swift Sources/OpenAPI/models/operations/FormQueryParamsMapResponse.swift +Sources/OpenAPI/models/operations/FormQueryParamsObjectArgs.swift Sources/OpenAPI/models/operations/FormQueryParamsObjectRequest.swift Sources/OpenAPI/internal/models/FormQueryParamsObjectRequest+Serialization.swift Sources/OpenAPI/models/operations/FormQueryParamsObjectRes.swift -Sources/OpenAPI/models/operations/FormQueryParamsObjectResArgs.swift Sources/OpenAPI/models/operations/FormQueryParamsObjectResponse.swift +Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveArgs.swift Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveRequest.swift Sources/OpenAPI/internal/models/FormQueryParamsPrimitiveRequest+Serialization.swift Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveRes.swift -Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveResArgs.swift Sources/OpenAPI/models/operations/FormQueryParamsPrimitiveResponse.swift +Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectArgs.swift Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectRequest.swift Sources/OpenAPI/internal/models/FormQueryParamsRefParamObjectRequest+Serialization.swift Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectRes.swift -Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectResArgs.swift Sources/OpenAPI/models/operations/FormQueryParamsRefParamObjectResponse.swift Sources/OpenAPI/models/operations/GetDocumentationPerLanguageRequest.swift Sources/OpenAPI/internal/models/GetDocumentationPerLanguageRequest+Serialization.swift Sources/OpenAPI/models/operations/GetDocumentationPerLanguageResponse.swift -Sources/OpenAPI/models/operations/GetGlobalNameOverride200ApplicationJSON.swift Sources/OpenAPI/models/operations/GetGlobalNameOverrideResponse.swift +Sources/OpenAPI/models/operations/GetGlobalNameOverrideResponseBody.swift Sources/OpenAPI/models/operations/GetResourceRequest.swift Sources/OpenAPI/internal/models/GetResourceRequest+Serialization.swift Sources/OpenAPI/models/operations/GetResourceResponse.swift @@ -204,74 +214,72 @@ Sources/OpenAPI/models/operations/GlobalPathParameterGetResponse.swift Sources/OpenAPI/models/operations/GlobalsQueryParameterGetRequest.swift Sources/OpenAPI/internal/models/GlobalsQueryParameterGetRequest+Serialization.swift Sources/OpenAPI/models/operations/GlobalsQueryParameterGetRes.swift -Sources/OpenAPI/models/operations/GlobalsQueryParameterGetResArgs.swift Sources/OpenAPI/models/operations/GlobalsQueryParameterGetResponse.swift Sources/OpenAPI/models/operations/GroupFirstGetResponse.swift Sources/OpenAPI/models/operations/GroupSecondGetResponse.swift Sources/OpenAPI/models/operations/HeaderParamsArrayRequest.swift Sources/OpenAPI/internal/models/HeaderParamsArrayRequest+Serialization.swift Sources/OpenAPI/models/operations/HeaderParamsArrayRes.swift -Sources/OpenAPI/models/operations/HeaderParamsArrayResHeaders.swift Sources/OpenAPI/models/operations/HeaderParamsArrayResponse.swift +Sources/OpenAPI/models/operations/HeaderParamsMapHeaders.swift Sources/OpenAPI/models/operations/HeaderParamsMapRequest.swift Sources/OpenAPI/internal/models/HeaderParamsMapRequest+Serialization.swift Sources/OpenAPI/models/operations/HeaderParamsMapRes.swift -Sources/OpenAPI/models/operations/HeaderParamsMapResHeaders.swift Sources/OpenAPI/models/operations/HeaderParamsMapResponse.swift +Sources/OpenAPI/models/operations/HeaderParamsObjectHeaders.swift Sources/OpenAPI/models/operations/HeaderParamsObjectRequest.swift Sources/OpenAPI/internal/models/HeaderParamsObjectRequest+Serialization.swift Sources/OpenAPI/models/operations/HeaderParamsObjectRes.swift -Sources/OpenAPI/models/operations/HeaderParamsObjectResHeaders.swift Sources/OpenAPI/models/operations/HeaderParamsObjectResponse.swift +Sources/OpenAPI/models/operations/HeaderParamsPrimitiveHeaders.swift Sources/OpenAPI/models/operations/HeaderParamsPrimitiveRequest.swift Sources/OpenAPI/internal/models/HeaderParamsPrimitiveRequest+Serialization.swift Sources/OpenAPI/models/operations/HeaderParamsPrimitiveRes.swift -Sources/OpenAPI/models/operations/HeaderParamsPrimitiveResHeaders.swift Sources/OpenAPI/models/operations/HeaderParamsPrimitiveResponse.swift -Sources/OpenAPI/models/operations/IgnoredGenerationGet200ApplicationJSON.swift +Sources/OpenAPI/models/operations/Headers.swift Sources/OpenAPI/models/operations/IgnoredGenerationGetResponse.swift -Sources/OpenAPI/models/operations/IgnoresPostApplicationJSON.swift +Sources/OpenAPI/models/operations/IgnoredGenerationGetResponseBody.swift Sources/OpenAPI/models/operations/IgnoresPostRequest.swift Sources/OpenAPI/internal/models/IgnoresPostRequest+Serialization.swift +Sources/OpenAPI/models/operations/IgnoresPostRequestBody.swift Sources/OpenAPI/models/operations/IgnoresPostResponse.swift Sources/OpenAPI/models/operations/InlineBodyAndParamConflictRequest.swift Sources/OpenAPI/internal/models/InlineBodyAndParamConflictRequest+Serialization.swift Sources/OpenAPI/models/operations/InlineBodyAndParamConflictRequestBody.swift Sources/OpenAPI/models/operations/InlineBodyAndParamConflictRes.swift -Sources/OpenAPI/models/operations/InlineBodyAndParamConflictResJson.swift Sources/OpenAPI/models/operations/InlineBodyAndParamConflictResponse.swift +Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictJson.swift Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictRequest.swift Sources/OpenAPI/internal/models/InlineBodyAndParamNoConflictRequest+Serialization.swift Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictRequestBody.swift Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictRes.swift -Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictResJson.swift Sources/OpenAPI/models/operations/InlineBodyAndParamNoConflictResponse.swift +Sources/OpenAPI/models/operations/JsonQueryParamsObjectArgs.swift Sources/OpenAPI/models/operations/JsonQueryParamsObjectRequest.swift Sources/OpenAPI/internal/models/JsonQueryParamsObjectRequest+Serialization.swift Sources/OpenAPI/models/operations/JsonQueryParamsObjectRes.swift -Sources/OpenAPI/models/operations/JsonQueryParamsObjectResArgs.swift Sources/OpenAPI/models/operations/JsonQueryParamsObjectResponse.swift +Sources/OpenAPI/models/operations/MixedParametersCamelCaseArgs.swift +Sources/OpenAPI/models/operations/MixedParametersCamelCaseHeaders.swift Sources/OpenAPI/models/operations/MixedParametersCamelCaseRequest.swift Sources/OpenAPI/internal/models/MixedParametersCamelCaseRequest+Serialization.swift Sources/OpenAPI/models/operations/MixedParametersCamelCaseRes.swift -Sources/OpenAPI/models/operations/MixedParametersCamelCaseResArgs.swift -Sources/OpenAPI/models/operations/MixedParametersCamelCaseResHeaders.swift Sources/OpenAPI/models/operations/MixedParametersCamelCaseResponse.swift +Sources/OpenAPI/models/operations/MixedParametersPrimitivesArgs.swift +Sources/OpenAPI/models/operations/MixedParametersPrimitivesHeaders.swift Sources/OpenAPI/models/operations/MixedParametersPrimitivesRequest.swift Sources/OpenAPI/internal/models/MixedParametersPrimitivesRequest+Serialization.swift Sources/OpenAPI/models/operations/MixedParametersPrimitivesRes.swift -Sources/OpenAPI/models/operations/MixedParametersPrimitivesResArgs.swift -Sources/OpenAPI/models/operations/MixedParametersPrimitivesResHeaders.swift Sources/OpenAPI/models/operations/MixedParametersPrimitivesResponse.swift Sources/OpenAPI/models/operations/MixedQueryParamsRequest.swift Sources/OpenAPI/internal/models/MixedQueryParamsRequest+Serialization.swift Sources/OpenAPI/models/operations/MixedQueryParamsRes.swift Sources/OpenAPI/models/operations/MixedQueryParamsResponse.swift +Sources/OpenAPI/models/operations/MixedTypeOneOfPostJson.swift +Sources/OpenAPI/internal/models/MixedTypeOneOfPostJson+Serialization.swift Sources/OpenAPI/models/operations/MixedTypeOneOfPostRequestBody.swift Sources/OpenAPI/internal/models/MixedTypeOneOfPostRequestBody+Serialization.swift Sources/OpenAPI/models/operations/MixedTypeOneOfPostRes.swift -Sources/OpenAPI/models/operations/MixedTypeOneOfPostResJson.swift -Sources/OpenAPI/internal/models/MixedTypeOneOfPostResJson+Serialization.swift Sources/OpenAPI/models/operations/MixedTypeOneOfPostResponse.swift Sources/OpenAPI/models/operations/MultipleMixedOptionsAuthResponse.swift Sources/OpenAPI/models/operations/MultipleMixedOptionsAuthSecurity.swift @@ -299,8 +307,7 @@ Sources/OpenAPI/internal/models/MultipleSimpleOptionsAuthSecurity+Serialization. Sources/OpenAPI/models/operations/MultipleSimpleSchemeAuthResponse.swift Sources/OpenAPI/models/operations/MultipleSimpleSchemeAuthSecurity.swift Sources/OpenAPI/internal/models/MultipleSimpleSchemeAuthSecurity+Serialization.swift -Sources/OpenAPI/models/operations/NameOverrideGetEnumNameOverride.swift -Sources/OpenAPI/internal/models/NameOverrideGetEnumNameOverride+Serialization.swift +Sources/OpenAPI/models/operations/NameOverrideGetOverriddenResponse.swift Sources/OpenAPI/models/operations/NameOverrideGetRequest.swift Sources/OpenAPI/internal/models/NameOverrideGetRequest+Serialization.swift Sources/OpenAPI/models/operations/NameOverrideGetResponse.swift @@ -312,23 +319,21 @@ Sources/OpenAPI/models/operations/NullableObjectPostRes.swift Sources/OpenAPI/models/operations/NullableObjectPostResponse.swift Sources/OpenAPI/models/operations/NullableOneOfRefInObjectPostRes.swift Sources/OpenAPI/models/operations/NullableOneOfRefInObjectPostResponse.swift +Sources/OpenAPI/models/operations/NullableOneOfSchemaPostJson.swift Sources/OpenAPI/models/operations/NullableOneOfSchemaPostRequestBody.swift Sources/OpenAPI/models/operations/NullableOneOfSchemaPostRes.swift -Sources/OpenAPI/models/operations/NullableOneOfSchemaPostResJson.swift Sources/OpenAPI/models/operations/NullableOneOfSchemaPostResponse.swift Sources/OpenAPI/models/operations/NullableOneOfTypeInObjectPostRes.swift Sources/OpenAPI/models/operations/NullableOneOfTypeInObjectPostResponse.swift +Sources/OpenAPI/models/operations/NullableOptionalObj.swift +Sources/OpenAPI/internal/models/NullableOptionalObj+Serialization.swift Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBody.swift -Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj.swift -Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj+Serialization.swift -Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj.swift -Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj+Serialization.swift -Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostRequestBodyRequiredObj.swift -Sources/OpenAPI/internal/models/NullableRequiredEmptyObjectPostRequestBodyRequiredObj+Serialization.swift Sources/OpenAPI/models/operations/NullableRequiredEmptyObjectPostResponse.swift +Sources/OpenAPI/models/operations/NullableRequiredEnum.swift +Sources/OpenAPI/internal/models/NullableRequiredEnum+Serialization.swift +Sources/OpenAPI/models/operations/NullableRequiredObj.swift +Sources/OpenAPI/internal/models/NullableRequiredObj+Serialization.swift Sources/OpenAPI/models/operations/NullableRequiredPropertyPostRequestBody.swift -Sources/OpenAPI/models/operations/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.swift -Sources/OpenAPI/internal/models/NullableRequiredPropertyPostRequestBodyNullableRequiredEnum+Serialization.swift Sources/OpenAPI/models/operations/NullableRequiredPropertyPostResponse.swift Sources/OpenAPI/models/operations/NullableRequiredSharedObjectPostRequestBody.swift Sources/OpenAPI/models/operations/NullableRequiredSharedObjectPostResponse.swift @@ -347,6 +352,14 @@ Sources/OpenAPI/models/operations/Oauth2OverrideResponse.swift Sources/OpenAPI/models/operations/Oauth2OverrideSecurity.swift Sources/OpenAPI/internal/models/Oauth2OverrideSecurity+Serialization.swift Sources/OpenAPI/models/operations/Oauth2OverrideToken.swift +Sources/OpenAPI/models/operations/Obj.swift +Sources/OpenAPI/internal/models/Obj+Serialization.swift +Sources/OpenAPI/models/operations/ObjArrParam.swift +Sources/OpenAPI/internal/models/ObjArrParam+Serialization.swift +Sources/OpenAPI/models/operations/ObjParam.swift +Sources/OpenAPI/internal/models/ObjParam+Serialization.swift +Sources/OpenAPI/models/operations/ObjParamExploded.swift +Sources/OpenAPI/internal/models/ObjParamExploded+Serialization.swift Sources/OpenAPI/models/operations/ObjectCircularReferenceGetResponse.swift Sources/OpenAPI/models/operations/OneOfCircularReferenceGetResponse.swift Sources/OpenAPI/models/operations/OpenIdConnectAuthNewResponse.swift @@ -356,7 +369,10 @@ Sources/OpenAPI/models/operations/OpenIdConnectAuthResponse.swift Sources/OpenAPI/models/operations/OpenIdConnectAuthSecurity.swift Sources/OpenAPI/internal/models/OpenIdConnectAuthSecurity+Serialization.swift Sources/OpenAPI/models/operations/OpenIdConnectAuthToken.swift -Sources/OpenAPI/models/operations/OverriddenResponse.swift +Sources/OpenAPI/models/operations/Operations.Form.swift +Sources/OpenAPI/models/operations/Operations.Json.swift +Sources/OpenAPI/models/operations/OptEnumParameter.swift +Sources/OpenAPI/internal/models/OptEnumParameter+Serialization.swift Sources/OpenAPI/models/operations/PaginationCursorBodyRequestBody.swift Sources/OpenAPI/models/operations/PaginationCursorBodyRes.swift Sources/OpenAPI/models/operations/PaginationCursorBodyResponse.swift @@ -380,19 +396,19 @@ Sources/OpenAPI/models/operations/PathParameterJsonRequest.swift Sources/OpenAPI/internal/models/PathParameterJsonRequest+Serialization.swift Sources/OpenAPI/models/operations/PathParameterJsonRes.swift Sources/OpenAPI/models/operations/PathParameterJsonResponse.swift +Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayArgs.swift Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayRequest.swift Sources/OpenAPI/internal/models/PipeDelimitedQueryParamsArrayRequest+Serialization.swift Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayRes.swift -Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayResArgs.swift Sources/OpenAPI/models/operations/PipeDelimitedQueryParamsArrayResponse.swift +Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostJson.swift +Sources/OpenAPI/internal/models/PrimitiveTypeOneOfPostJson+Serialization.swift Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostRequestBody.swift Sources/OpenAPI/internal/models/PrimitiveTypeOneOfPostRequestBody+Serialization.swift Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostRes.swift -Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostResJson.swift -Sources/OpenAPI/internal/models/PrimitiveTypeOneOfPostResJson+Serialization.swift Sources/OpenAPI/models/operations/PrimitiveTypeOneOfPostResponse.swift -Sources/OpenAPI/models/operations/PutAnythingIgnoredGeneration200ApplicationJSON.swift Sources/OpenAPI/models/operations/PutAnythingIgnoredGenerationResponse.swift +Sources/OpenAPI/models/operations/PutAnythingIgnoredGenerationResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.swift Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayObjCamelCaseResponse.swift Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonArrayObjResponse.swift @@ -423,143 +439,132 @@ Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseR Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.swift Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonSimpleRes.swift Sources/OpenAPI/models/operations/RequestBodyPostApplicationJsonSimpleResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypes200ApplicationJSON.swift Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesRequest.swift Sources/OpenAPI/internal/models/RequestBodyPostComplexNumberTypesRequest+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConsts200ApplicationJSON.swift +Sources/OpenAPI/models/operations/RequestBodyPostComplexNumberTypesResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConstsResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmpty.swift -Sources/OpenAPI/internal/models/RequestBodyPostEmptyObject200ApplicationJSONEmpty+Serialization.swift -Sources/OpenAPI/models/operations/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies.swift -Sources/OpenAPI/internal/models/RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies+Serialization.swift +Sources/OpenAPI/models/operations/RequestBodyPostDefaultsAndConstsResponseBody.swift +Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectEmpty.swift +Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectEmpty+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBody.swift -Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBodyEmpty.swift -Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectRequestBodyEmpty+Serialization.swift -Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties.swift -Sources/OpenAPI/internal/models/RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostEmptyObjectResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostFormDeepRes.swift -Sources/OpenAPI/models/operations/RequestBodyPostFormDeepResForm.swift Sources/OpenAPI/models/operations/RequestBodyPostFormDeepResponse.swift Sources/OpenAPI/models/operations/RequestBodyPostFormMapPrimitiveRes.swift Sources/OpenAPI/models/operations/RequestBodyPostFormMapPrimitiveResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleForm.swift +Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleHeaders.swift Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleRes.swift -Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleResForm.swift -Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleResHeaders.swift Sources/OpenAPI/models/operations/RequestBodyPostFormSimpleResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBigInt200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesBoolean200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDate200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDateTime200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDecimal200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesFloat32200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesInt32200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesInteger200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesNumber200ApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostJSONDataTypesString200ApplicationJSON.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDateResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBooleanResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesBooleanResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateTimeResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesFloat32Response.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesInt32Response.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesInt32ResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesIntegerResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesIntegerResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesNumberResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesNumberResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesStringResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostJsonDataTypesStringResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON.swift +Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded.swift -Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded+Serialization.swift +Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.swift +Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitFormRequestBody+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitFormRes.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitFormResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitJsonRes.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartFormData.swift -Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitMultipartFormData+Serialization.swift +Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.swift +Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationJSON.swift -Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded.swift -Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.swift Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamFormRequest+Serialization.swift +Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.swift +Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.swift Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamJsonRequest+Serialization.swift +Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData.swift -Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamMultipartFormData+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.swift Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest+Serialization.swift +Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.swift +Sources/OpenAPI/internal/models/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.swift Sources/OpenAPI/models/operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON.swift Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostNullArray200ApplicationJSON.swift +Sources/OpenAPI/models/operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostNullArrayResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostNullDictionary200ApplicationJSON.swift +Sources/OpenAPI/models/operations/RequestBodyPostNullArrayResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostNullDictionaryResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON.swift +Sources/OpenAPI/models/operations/RequestBodyPostNullDictionaryResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponse.swift -Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBody200ApplicationJSON.swift +Sources/OpenAPI/models/operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBodyResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPostNullableRequiredStringBodyResponseBody.swift Sources/OpenAPI/models/operations/RequestBodyPutBytesRes.swift Sources/OpenAPI/models/operations/RequestBodyPutBytesResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsArgs.swift Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsRequest.swift Sources/OpenAPI/internal/models/RequestBodyPutBytesWithParamsRequest+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsRes.swift -Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsResArgs.swift Sources/OpenAPI/models/operations/RequestBodyPutBytesWithParamsResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepForm.swift Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepRes.swift -Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepResForm.swift Sources/OpenAPI/models/operations/RequestBodyPutMultipartDeepResponse.swift Sources/OpenAPI/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBody.swift Sources/OpenAPI/internal/models/RequestBodyPutMultipartDifferentFileNameRequestBody+Serialization.swift -Sources/OpenAPI/models/operations/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName.swift -Sources/OpenAPI/internal/models/RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPutMultipartDifferentFileNameRes.swift Sources/OpenAPI/models/operations/RequestBodyPutMultipartDifferentFileNameResponse.swift Sources/OpenAPI/models/operations/RequestBodyPutMultipartFileRequestBody.swift Sources/OpenAPI/internal/models/RequestBodyPutMultipartFileRequestBody+Serialization.swift -Sources/OpenAPI/models/operations/RequestBodyPutMultipartFileRequestBodyFile.swift -Sources/OpenAPI/internal/models/RequestBodyPutMultipartFileRequestBodyFile+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPutMultipartFileRes.swift Sources/OpenAPI/models/operations/RequestBodyPutMultipartFileResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleForm.swift +Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleHeaders.swift Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleRes.swift -Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleResForm.swift -Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleResHeaders.swift Sources/OpenAPI/models/operations/RequestBodyPutMultipartSimpleResponse.swift Sources/OpenAPI/models/operations/RequestBodyPutStringRes.swift Sources/OpenAPI/models/operations/RequestBodyPutStringResponse.swift +Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsArgs.swift Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsRequest.swift Sources/OpenAPI/internal/models/RequestBodyPutStringWithParamsRequest+Serialization.swift Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsRes.swift -Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsResArgs.swift Sources/OpenAPI/models/operations/RequestBodyPutStringWithParamsResponse.swift Sources/OpenAPI/models/operations/RequestBodyReadAndWriteResponse.swift Sources/OpenAPI/models/operations/RequestBodyReadOnlyInputResponse.swift @@ -568,14 +573,16 @@ Sources/OpenAPI/models/operations/RequestBodyReadWriteOnlyUnionResponse.swift Sources/OpenAPI/models/operations/RequestBodyWriteOnlyOutputResponse.swift Sources/OpenAPI/models/operations/RequestBodyWriteOnlyResponse.swift Sources/OpenAPI/models/operations/RequestBodyWriteOnlyUnionResponse.swift -Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON.swift +Sources/OpenAPI/models/operations/RequiredObj.swift +Sources/OpenAPI/internal/models/RequiredObj+Serialization.swift Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.swift -Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON.swift +Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.swift Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePostResponse.swift -Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON.swift +Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.swift Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponse.swift -Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPost200ApplicationJSON.swift +Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.swift Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPostResponse.swift +Sources/OpenAPI/models/operations/ResponseBodyAdditionalPropertiesPostResponseBody.swift Sources/OpenAPI/models/operations/ResponseBodyBytesGetResponse.swift Sources/OpenAPI/models/operations/ResponseBodyEmptyWithHeadersRequest.swift Sources/OpenAPI/internal/models/ResponseBodyEmptyWithHeadersRequest+Serialization.swift @@ -585,8 +592,8 @@ Sources/OpenAPI/models/operations/ResponseBodyOptionalGetResponse.swift Sources/OpenAPI/models/operations/ResponseBodyReadOnlyResponse.swift Sources/OpenAPI/models/operations/ResponseBodyStringGetResponse.swift Sources/OpenAPI/models/operations/ResponseBodyXmlGetResponse.swift -Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON.swift Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.swift +Sources/OpenAPI/models/operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.swift Sources/OpenAPI/models/operations/RetriesGetRequest.swift Sources/OpenAPI/internal/models/RetriesGetRequest+Serialization.swift Sources/OpenAPI/models/operations/RetriesGetResponse.swift @@ -616,10 +623,10 @@ Sources/OpenAPI/models/operations/SimplePathParameterPrimitivesResponse.swift Sources/OpenAPI/models/operations/StatusGetErrorRequest.swift Sources/OpenAPI/internal/models/StatusGetErrorRequest+Serialization.swift Sources/OpenAPI/models/operations/StatusGetErrorResponse.swift -Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrors501ApplicationJSON.swift Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsRequest.swift Sources/OpenAPI/internal/models/StatusGetXSpeakeasyErrorsRequest+Serialization.swift Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsResponse.swift +Sources/OpenAPI/models/operations/StatusGetXSpeakeasyErrorsResponseBody.swift Sources/OpenAPI/models/operations/StronglyTypedOneOfPostRes.swift Sources/OpenAPI/models/operations/StronglyTypedOneOfPostResponse.swift Sources/OpenAPI/models/operations/TelemetrySpeakeasyUserAgentGetRequest.swift @@ -628,76 +635,71 @@ Sources/OpenAPI/models/operations/TelemetrySpeakeasyUserAgentGetRes.swift Sources/OpenAPI/models/operations/TelemetrySpeakeasyUserAgentGetResponse.swift Sources/OpenAPI/models/operations/TelemetryUserAgentGetRes.swift Sources/OpenAPI/models/operations/TelemetryUserAgentGetResponse.swift -Sources/OpenAPI/models/operations/TypeFromAnchor.swift Sources/OpenAPI/models/operations/TypedObjectNullableOneOfPostRes.swift Sources/OpenAPI/models/operations/TypedObjectNullableOneOfPostResponse.swift Sources/OpenAPI/models/operations/TypedObjectOneOfPostRes.swift Sources/OpenAPI/models/operations/TypedObjectOneOfPostResponse.swift -Sources/OpenAPI/models/operations/TypedParameterGenerationGetObj.swift -Sources/OpenAPI/internal/models/TypedParameterGenerationGetObj+Serialization.swift Sources/OpenAPI/models/operations/TypedParameterGenerationGetRequest.swift Sources/OpenAPI/internal/models/TypedParameterGenerationGetRequest+Serialization.swift Sources/OpenAPI/models/operations/TypedParameterGenerationGetResponse.swift +Sources/OpenAPI/models/operations/UnionBigIntDecimalJson.swift +Sources/OpenAPI/internal/models/UnionBigIntDecimalJson+Serialization.swift Sources/OpenAPI/models/operations/UnionBigIntDecimalRequestBody.swift Sources/OpenAPI/internal/models/UnionBigIntDecimalRequestBody+Serialization.swift Sources/OpenAPI/models/operations/UnionBigIntDecimalRes.swift -Sources/OpenAPI/models/operations/UnionBigIntDecimalResJson.swift -Sources/OpenAPI/internal/models/UnionBigIntDecimalResJson+Serialization.swift Sources/OpenAPI/models/operations/UnionBigIntDecimalResponse.swift Sources/OpenAPI/models/operations/UnionDateNullRes.swift Sources/OpenAPI/models/operations/UnionDateNullResponse.swift +Sources/OpenAPI/models/operations/UnionDateTimeBigIntJson.swift +Sources/OpenAPI/internal/models/UnionDateTimeBigIntJson+Serialization.swift Sources/OpenAPI/models/operations/UnionDateTimeBigIntRequestBody.swift Sources/OpenAPI/internal/models/UnionDateTimeBigIntRequestBody+Serialization.swift Sources/OpenAPI/models/operations/UnionDateTimeBigIntRes.swift -Sources/OpenAPI/models/operations/UnionDateTimeBigIntResJson.swift -Sources/OpenAPI/internal/models/UnionDateTimeBigIntResJson+Serialization.swift Sources/OpenAPI/models/operations/UnionDateTimeBigIntResponse.swift Sources/OpenAPI/models/operations/UnionDateTimeNullRes.swift Sources/OpenAPI/models/operations/UnionDateTimeNullResponse.swift Sources/OpenAPI/models/operations/UpdateResourceRequest.swift Sources/OpenAPI/internal/models/UpdateResourceRequest+Serialization.swift Sources/OpenAPI/models/operations/UpdateResourceResponse.swift -Sources/OpenAPI/models/operations/UsageExamplePost200ApplicationJSON.swift -Sources/OpenAPI/models/operations/UsageExamplePost200ApplicationJSONJSON.swift -Sources/OpenAPI/models/operations/UsageExamplePostEnumParameter.swift -Sources/OpenAPI/internal/models/UsageExamplePostEnumParameter+Serialization.swift -Sources/OpenAPI/models/operations/UsageExamplePostOptEnumParameter.swift -Sources/OpenAPI/internal/models/UsageExamplePostOptEnumParameter+Serialization.swift +Sources/OpenAPI/models/operations/UsageExamplePostJson.swift Sources/OpenAPI/models/operations/UsageExamplePostRequest.swift Sources/OpenAPI/internal/models/UsageExamplePostRequest+Serialization.swift Sources/OpenAPI/models/operations/UsageExamplePostRequestBody.swift Sources/OpenAPI/models/operations/UsageExamplePostResponse.swift +Sources/OpenAPI/models/operations/UsageExamplePostResponseBody.swift Sources/OpenAPI/models/operations/UsageExamplePostSecurity.swift Sources/OpenAPI/internal/models/UsageExamplePostSecurity+Serialization.swift Sources/OpenAPI/models/operations/WeaklyTypedOneOfPostRes.swift Sources/OpenAPI/models/operations/WeaklyTypedOneOfPostResponse.swift Sources/OpenAPI/models/shared/AllOfToAllOf.swift +Sources/OpenAPI/models/shared/Any.swift +Sources/OpenAPI/internal/models/Any+Serialization.swift +Sources/OpenAPI/models/shared/AnyVal.swift +Sources/OpenAPI/internal/models/AnyVal+Serialization.swift Sources/OpenAPI/models/shared/ArrObjValue.swift Sources/OpenAPI/models/shared/ArrObjValueCamelCase.swift Sources/OpenAPI/models/shared/ArrayCircularReferenceObject.swift Sources/OpenAPI/models/shared/AuthServiceRequestBody.swift -Sources/OpenAPI/models/shared/AuthServiceRequestBodyBasicAuth.swift -Sources/OpenAPI/models/shared/AuthServiceRequestBodyHeaderAuth.swift +Sources/OpenAPI/models/shared/BasicAuth.swift +Sources/OpenAPI/models/shared/Child.swift +Sources/OpenAPI/internal/models/Child+Serialization.swift +Sources/OpenAPI/models/shared/Chocolates.swift Sources/OpenAPI/models/shared/ComplexNumberTypes.swift +Sources/OpenAPI/models/shared/ConstEnumInt.swift +Sources/OpenAPI/internal/models/ConstEnumInt+Serialization.swift +Sources/OpenAPI/models/shared/ConstEnumStr.swift +Sources/OpenAPI/internal/models/ConstEnumStr+Serialization.swift Sources/OpenAPI/models/shared/DeepObject.swift Sources/OpenAPI/internal/models/DeepObject+Serialization.swift -Sources/OpenAPI/models/shared/DeepObjectAny.swift -Sources/OpenAPI/internal/models/DeepObjectAny+Serialization.swift Sources/OpenAPI/models/shared/DeepObjectCamelCase.swift -Sources/OpenAPI/models/shared/DeepObjectCamelCaseAnyVal.swift -Sources/OpenAPI/internal/models/DeepObjectCamelCaseAnyVal+Serialization.swift Sources/OpenAPI/models/shared/DeepObjectWithType.swift Sources/OpenAPI/models/shared/DeepObjectWithTypeAny.swift Sources/OpenAPI/internal/models/DeepObjectWithTypeAny+Serialization.swift +Sources/OpenAPI/models/shared/DefaultEnumInt.swift +Sources/OpenAPI/internal/models/DefaultEnumInt+Serialization.swift +Sources/OpenAPI/models/shared/DefaultEnumStr.swift +Sources/OpenAPI/internal/models/DefaultEnumStr+Serialization.swift Sources/OpenAPI/models/shared/DefaultsAndConsts.swift -Sources/OpenAPI/models/shared/DefaultsAndConstsConstEnumInt.swift -Sources/OpenAPI/internal/models/DefaultsAndConstsConstEnumInt+Serialization.swift -Sources/OpenAPI/models/shared/DefaultsAndConstsConstEnumStr.swift -Sources/OpenAPI/internal/models/DefaultsAndConstsConstEnumStr+Serialization.swift -Sources/OpenAPI/models/shared/DefaultsAndConstsDefaultEnumInt.swift -Sources/OpenAPI/internal/models/DefaultsAndConstsDefaultEnumInt+Serialization.swift -Sources/OpenAPI/models/shared/DefaultsAndConstsDefaultEnumStr.swift -Sources/OpenAPI/internal/models/DefaultsAndConstsDefaultEnumStr+Serialization.swift Sources/OpenAPI/models/shared/DefaultsAndConstsOutput.swift Sources/OpenAPI/models/shared/DefaultsAndConstsOutputConstEnumInt.swift Sources/OpenAPI/internal/models/DefaultsAndConstsOutputConstEnumInt+Serialization.swift @@ -707,65 +709,65 @@ Sources/OpenAPI/models/shared/DefaultsAndConstsOutputDefaultEnumInt.swift Sources/OpenAPI/internal/models/DefaultsAndConstsOutputDefaultEnumInt+Serialization.swift Sources/OpenAPI/models/shared/DefaultsAndConstsOutputDefaultEnumStr.swift Sources/OpenAPI/internal/models/DefaultsAndConstsOutputDefaultEnumStr+Serialization.swift +Sources/OpenAPI/models/shared/DeprecatedEnum.swift +Sources/OpenAPI/internal/models/DeprecatedEnum+Serialization.swift Sources/OpenAPI/models/shared/DeprecatedFieldInObject.swift -Sources/OpenAPI/models/shared/DeprecatedFieldInObjectDeprecatedEnum.swift -Sources/OpenAPI/internal/models/DeprecatedFieldInObjectDeprecatedEnum+Serialization.swift Sources/OpenAPI/models/shared/DeprecatedObject.swift Sources/OpenAPI/models/shared/EmptyObjectParam.swift Sources/OpenAPI/internal/models/EmptyObjectParam+Serialization.swift Sources/OpenAPI/models/shared/Enum.swift Sources/OpenAPI/internal/models/Enum+Serialization.swift +Sources/OpenAPI/models/shared/EnumNumber.swift +Sources/OpenAPI/internal/models/EnumNumber+Serialization.swift +Sources/OpenAPI/models/shared/EnumStr.swift +Sources/OpenAPI/internal/models/EnumStr+Serialization.swift Sources/OpenAPI/models/shared/Error.swift Sources/OpenAPI/models/shared/ErrorType.swift Sources/OpenAPI/internal/models/ErrorType+Serialization.swift Sources/OpenAPI/models/shared/ExampleBoat.swift -Sources/OpenAPI/models/shared/ExampleBoatType.swift -Sources/OpenAPI/internal/models/ExampleBoatType+Serialization.swift Sources/OpenAPI/models/shared/ExampleCar.swift Sources/OpenAPI/models/shared/ExampleCarType.swift Sources/OpenAPI/internal/models/ExampleCarType+Serialization.swift Sources/OpenAPI/models/shared/ExampleResource.swift -Sources/OpenAPI/models/shared/ExampleResourceChocolates.swift -Sources/OpenAPI/models/shared/ExampleResourceEnumNumber.swift -Sources/OpenAPI/internal/models/ExampleResourceEnumNumber+Serialization.swift -Sources/OpenAPI/models/shared/ExampleResourceEnumStr.swift -Sources/OpenAPI/internal/models/ExampleResourceEnumStr+Serialization.swift Sources/OpenAPI/models/shared/ExampleVehicle.swift Sources/OpenAPI/models/shared/FakerFormattedStrings.swift Sources/OpenAPI/models/shared/FakerStrings.swift Sources/OpenAPI/models/shared/FileResource.swift Sources/OpenAPI/models/shared/FlattenedTypedObject1.swift +Sources/OpenAPI/models/shared/HeaderAuth.swift Sources/OpenAPI/models/shared/HttpBinSimpleJsonObject.swift -Sources/OpenAPI/models/shared/HttpBinSimpleJsonObjectSlideshow.swift -Sources/OpenAPI/models/shared/HttpBinSimpleJsonObjectSlideshowSlides.swift +Sources/OpenAPI/models/shared/Int32Enum.swift +Sources/OpenAPI/internal/models/Int32Enum+Serialization.swift +Sources/OpenAPI/models/shared/Int32EnumVal.swift +Sources/OpenAPI/internal/models/Int32EnumVal+Serialization.swift +Sources/OpenAPI/models/shared/IntEnum.swift +Sources/OpenAPI/internal/models/IntEnum+Serialization.swift +Sources/OpenAPI/models/shared/IntEnumVal.swift +Sources/OpenAPI/internal/models/IntEnumVal+Serialization.swift Sources/OpenAPI/models/shared/LimitOffsetConfig.swift Sources/OpenAPI/models/shared/MapObjValue.swift Sources/OpenAPI/models/shared/MapObjValueCamelCase.swift Sources/OpenAPI/models/shared/NullableObject.swift Sources/OpenAPI/models/shared/NullableOneOfRefInObject.swift -Sources/OpenAPI/models/shared/NullableOneOfRefInObjectNullableOneOfTwo.swift -Sources/OpenAPI/models/shared/NullableOneOfRefInObjectOneOfOne.swift +Sources/OpenAPI/models/shared/NullableOneOfTwo.swift Sources/OpenAPI/models/shared/NullableOneOfTypeInObject.swift Sources/OpenAPI/models/shared/NullableOneOfTypeInObjectNullableOneOfTwo.swift Sources/OpenAPI/internal/models/NullableOneOfTypeInObjectNullableOneOfTwo+Serialization.swift Sources/OpenAPI/models/shared/ObjWithZeroValueComplexTypePtrs.swift Sources/OpenAPI/models/shared/ObjectCircularReferenceObject.swift Sources/OpenAPI/models/shared/OneOfCircularReferenceObject.swift -Sources/OpenAPI/models/shared/OneOfCircularReferenceObjectChild.swift -Sources/OpenAPI/internal/models/OneOfCircularReferenceObjectChild+Serialization.swift +Sources/OpenAPI/models/shared/OneOfFromArrayOfTypes.swift +Sources/OpenAPI/internal/models/OneOfFromArrayOfTypes+Serialization.swift Sources/OpenAPI/models/shared/OneOfGenerationStressTest.swift -Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfFromArrayOfTypes.swift -Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfFromArrayOfTypes+Serialization.swift -Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfSameType.swift -Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfSameType+Serialization.swift -Sources/OpenAPI/models/shared/OneOfGenerationStressTestOneOfSameType2.swift -Sources/OpenAPI/internal/models/OneOfGenerationStressTestOneOfSameType2+Serialization.swift +Sources/OpenAPI/models/shared/OneOfOne.swift +Sources/OpenAPI/models/shared/OneOfSameType.swift +Sources/OpenAPI/internal/models/OneOfSameType+Serialization.swift Sources/OpenAPI/models/shared/PrimitiveTypeUnion.swift Sources/OpenAPI/internal/models/PrimitiveTypeUnion+Serialization.swift Sources/OpenAPI/models/shared/ReadOnlyObject.swift Sources/OpenAPI/models/shared/ReadOnlyObjectInput.swift Sources/OpenAPI/internal/models/ReadOnlyObjectInput+Serialization.swift -Sources/OpenAPI/models/shared/ReadWriteObjectInput.swift +Sources/OpenAPI/models/shared/ReadWriteObject.swift Sources/OpenAPI/models/shared/ReadWriteObjectOutput.swift Sources/OpenAPI/models/shared/RefQueryParamObj.swift Sources/OpenAPI/internal/models/RefQueryParamObj+Serialization.swift @@ -778,20 +780,18 @@ Sources/OpenAPI/internal/models/Security+Serialization.swift Sources/OpenAPI/models/shared/SimpleObject.swift Sources/OpenAPI/internal/models/SimpleObject+Serialization.swift Sources/OpenAPI/models/shared/SimpleObjectCamelCase.swift -Sources/OpenAPI/models/shared/SimpleObjectCamelCaseInt32EnumVal.swift -Sources/OpenAPI/internal/models/SimpleObjectCamelCaseInt32EnumVal+Serialization.swift -Sources/OpenAPI/models/shared/SimpleObjectCamelCaseIntEnumVal.swift -Sources/OpenAPI/internal/models/SimpleObjectCamelCaseIntEnumVal+Serialization.swift -Sources/OpenAPI/models/shared/SimpleObjectInt32Enum.swift -Sources/OpenAPI/internal/models/SimpleObjectInt32Enum+Serialization.swift -Sources/OpenAPI/models/shared/SimpleObjectIntEnum.swift -Sources/OpenAPI/internal/models/SimpleObjectIntEnum+Serialization.swift Sources/OpenAPI/models/shared/SimpleObjectWithType.swift Sources/OpenAPI/models/shared/SimpleObjectWithTypeInt32Enum.swift Sources/OpenAPI/internal/models/SimpleObjectWithTypeInt32Enum+Serialization.swift Sources/OpenAPI/models/shared/SimpleObjectWithTypeIntEnum.swift Sources/OpenAPI/internal/models/SimpleObjectWithTypeIntEnum+Serialization.swift +Sources/OpenAPI/models/shared/Slides.swift +Sources/OpenAPI/models/shared/Slideshow.swift Sources/OpenAPI/models/shared/StronglyTypedOneOfObject.swift +Sources/OpenAPI/models/shared/Two.swift +Sources/OpenAPI/internal/models/Two+Serialization.swift +Sources/OpenAPI/models/shared/TypeModel.swift +Sources/OpenAPI/internal/models/TypeModel+Serialization.swift Sources/OpenAPI/models/shared/TypedObject1.swift Sources/OpenAPI/models/shared/TypedObject1Type.swift Sources/OpenAPI/internal/models/TypedObject1Type+Serialization.swift @@ -811,8 +811,8 @@ Sources/OpenAPI/models/shared/WeaklyTypedOneOfReadOnlyObject.swift Sources/OpenAPI/internal/models/WeaklyTypedOneOfReadOnlyObject+Serialization.swift Sources/OpenAPI/models/shared/WeaklyTypedOneOfReadOnlyObjectInput.swift Sources/OpenAPI/internal/models/WeaklyTypedOneOfReadOnlyObjectInput+Serialization.swift -Sources/OpenAPI/models/shared/WeaklyTypedOneOfReadWriteObjectInput.swift -Sources/OpenAPI/internal/models/WeaklyTypedOneOfReadWriteObjectInput+Serialization.swift +Sources/OpenAPI/models/shared/WeaklyTypedOneOfReadWriteObject.swift +Sources/OpenAPI/internal/models/WeaklyTypedOneOfReadWriteObject+Serialization.swift Sources/OpenAPI/models/shared/WeaklyTypedOneOfReadWriteObjectOutput.swift Sources/OpenAPI/internal/models/WeaklyTypedOneOfReadWriteObjectOutput+Serialization.swift Sources/OpenAPI/models/shared/WeaklyTypedOneOfWriteOnlyObject.swift diff --git a/swift-client-sdk/gen.yaml b/swift-client-sdk/gen.yaml index 0bb7573e9..7dcf86dde 100755 --- a/swift-client-sdk/gen.yaml +++ b/swift-client-sdk/gen.yaml @@ -2,15 +2,15 @@ configVersion: 1.0.0 management: docChecksum: 0c1717dc8f9e83b99bad896fa719645c docVersion: 0.1.0 - speakeasyVersion: 1.112.1 - generationVersion: 2.173.0 + speakeasyVersion: 1.114.1 + generationVersion: 2.181.1 generation: comments: {} sdkClassName: SDK repoURL: https://github.com/speakeasy-api/openapi-generation-tests.git features: swift: - core: 2.89.0 + core: 3.0.1 deprecations: 2.81.1 docs: 0.0.3 enums: 2.81.1 @@ -27,9 +27,17 @@ features: nameOverrides: 2.81.1 serverIDs: 2.81.1 swift: - version: 0.1.2 + version: 0.2.0 author: Speakeasy description: Swift Client SDK Generated by Speakeasy + imports: + option: openapi + paths: + callbacks: models/callbacks + errors: models/errors + operations: models/operations + shared: models/shared + webhooks: models/webhooks packageName: OpenAPI published: true repoSubDirectory: swift-client-sdk diff --git a/typescript-client-sdk/README.md b/typescript-client-sdk/README.md index 2d4dae955..f057eede3 100755 --- a/typescript-client-sdk/README.md +++ b/typescript-client-sdk/README.md @@ -45,11 +45,11 @@ Do this second ```typescript import { SDK } from "openapi"; import { - UsageExamplePostEnumParameter, - UsageExamplePostOptEnumParameter, + EnumParameter, + OptEnumParameter, UsageExamplePostSecurity, } from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async () => { @@ -81,8 +81,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -97,13 +97,13 @@ import { RFCDate } from "openapi/dist/sdk/types"; decimalParameter: 2679.33, decimalStrParameter: "string", doubleParameter: 5223.72, - enumParameter: UsageExamplePostEnumParameter.Value1, + enumParameter: EnumParameter.Value1, falseyNumberParameter: 0, float32Parameter: 6946.59, floatParameter: 2286.22, int64Parameter: 102975, intParameter: 566999, - optEnumParameter: UsageExamplePostOptEnumParameter.Value3, + optEnumParameter: OptEnumParameter.Value3, strParameter: "example 1", }, operationSecurity @@ -125,54 +125,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; * [putAnythingIgnoredGeneration](docs/sdks/sdk/README.md#putanythingignoredgeneration) * [responseBodyJsonGet](docs/sdks/sdk/README.md#responsebodyjsonget) -### [auth](docs/sdks/auth/README.md) - -* [apiKeyAuth](docs/sdks/auth/README.md#apikeyauth) -* [apiKeyAuthGlobal](docs/sdks/auth/README.md#apikeyauthglobal) -* [basicAuth](docs/sdks/auth/README.md#basicauth) -* [bearerAuth](docs/sdks/auth/README.md#bearerauth) -* [globalBearerAuth](docs/sdks/auth/README.md#globalbearerauth) -* [oauth2Auth](docs/sdks/auth/README.md#oauth2auth) -* [oauth2Override](docs/sdks/auth/README.md#oauth2override) -* [openIdConnectAuth](docs/sdks/auth/README.md#openidconnectauth) - -### [authNew](docs/sdks/authnew/README.md) - -* [apiKeyAuthGlobalNew](docs/sdks/authnew/README.md#apikeyauthglobalnew) -* [authGlobal](docs/sdks/authnew/README.md#authglobal) -* [basicAuthNew](docs/sdks/authnew/README.md#basicauthnew) -* [multipleMixedOptionsAuth](docs/sdks/authnew/README.md#multiplemixedoptionsauth) -* [multipleMixedSchemeAuth](docs/sdks/authnew/README.md#multiplemixedschemeauth) -* [multipleOptionsWithMixedSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithmixedschemesauth) -* [multipleOptionsWithSimpleSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithsimpleschemesauth) -* [multipleSimpleOptionsAuth](docs/sdks/authnew/README.md#multiplesimpleoptionsauth) -* [multipleSimpleSchemeAuth](docs/sdks/authnew/README.md#multiplesimpleschemeauth) -* [oauth2AuthNew](docs/sdks/authnew/README.md#oauth2authnew) -* [openIdConnectAuthNew](docs/sdks/authnew/README.md#openidconnectauthnew) - -### [documentation](docs/sdks/documentation/README.md) - -* [getDocumentationPerLanguage](docs/sdks/documentation/README.md#getdocumentationperlanguage) - Gets documentation for some language, I guess. - -### [errors](docs/sdks/errors/README.md) - -* [connectionErrorGet](docs/sdks/errors/README.md#connectionerrorget) -* [statusGetError](docs/sdks/errors/README.md#statusgeterror) -* [statusGetXSpeakeasyErrors](docs/sdks/errors/README.md#statusgetxspeakeasyerrors) - -### [first](docs/sdks/first/README.md) - -* [get](docs/sdks/first/README.md#get) - -### [flattening](docs/sdks/flattening/README.md) - -* [componentBodyAndParamConflict](docs/sdks/flattening/README.md#componentbodyandparamconflict) -* [componentBodyAndParamNoConflict](docs/sdks/flattening/README.md#componentbodyandparamnoconflict) -* [conflictingParams](docs/sdks/flattening/README.md#conflictingparams) -* [inlineBodyAndParamConflict](docs/sdks/flattening/README.md#inlinebodyandparamconflict) -* [inlineBodyAndParamNoConflict](docs/sdks/flattening/README.md#inlinebodyandparamnoconflict) - -### [generation](docs/sdks/generation/README.md) +### [.generation](docs/sdks/generation/README.md) * [anchorTypesGet](docs/sdks/generation/README.md#anchortypesget) * [arrayCircularReferenceGet](docs/sdks/generation/README.md#arraycircularreferenceget) @@ -195,38 +148,44 @@ import { RFCDate } from "openapi/dist/sdk/types"; * [typedParameterGenerationGet](docs/sdks/generation/README.md#typedparametergenerationget) * [usageExamplePost](docs/sdks/generation/README.md#usageexamplepost) - An operation used for testing usage examples -### [globals](docs/sdks/globals/README.md) - -* [globalPathParameterGet](docs/sdks/globals/README.md#globalpathparameterget) -* [globalsQueryParameterGet](docs/sdks/globals/README.md#globalsqueryparameterget) - - -### [nest.first](docs/sdks/nestfirst/README.md) - -* [get](docs/sdks/nestfirst/README.md#get) +### [.errors](docs/sdks/errors/README.md) -### [nested](docs/sdks/nested/README.md) - -* [get](docs/sdks/nested/README.md#get) +* [connectionErrorGet](docs/sdks/errors/README.md#connectionerrorget) +* [statusGetError](docs/sdks/errors/README.md#statusgeterror) +* [statusGetXSpeakeasyErrors](docs/sdks/errors/README.md#statusgetxspeakeasyerrors) -### [nested.first](docs/sdks/nestedfirst/README.md) +### [.unions](docs/sdks/unions/README.md) -* [get](docs/sdks/nestedfirst/README.md#get) +* [flattenedTypedObjectPost](docs/sdks/unions/README.md#flattenedtypedobjectpost) +* [mixedTypeOneOfPost](docs/sdks/unions/README.md#mixedtypeoneofpost) +* [nullableOneOfRefInObjectPost](docs/sdks/unions/README.md#nullableoneofrefinobjectpost) +* [nullableOneOfSchemaPost](docs/sdks/unions/README.md#nullableoneofschemapost) +* [nullableOneOfTypeInObjectPost](docs/sdks/unions/README.md#nullableoneoftypeinobjectpost) +* [nullableTypedObjectPost](docs/sdks/unions/README.md#nullabletypedobjectpost) +* [primitiveTypeOneOfPost](docs/sdks/unions/README.md#primitivetypeoneofpost) +* [stronglyTypedOneOfPost](docs/sdks/unions/README.md#stronglytypedoneofpost) +* [typedObjectNullableOneOfPost](docs/sdks/unions/README.md#typedobjectnullableoneofpost) +* [typedObjectOneOfPost](docs/sdks/unions/README.md#typedobjectoneofpost) +* [unionBigIntDecimal](docs/sdks/unions/README.md#unionbigintdecimal) +* [unionDateNull](docs/sdks/unions/README.md#uniondatenull) +* [unionDateTimeBigInt](docs/sdks/unions/README.md#uniondatetimebigint) +* [unionDateTimeNull](docs/sdks/unions/README.md#uniondatetimenull) +* [weaklyTypedOneOfPost](docs/sdks/unions/README.md#weaklytypedoneofpost) -### [nested.second](docs/sdks/nestedsecond/README.md) +### [.flattening](docs/sdks/flattening/README.md) -* [get](docs/sdks/nestedsecond/README.md#get) +* [componentBodyAndParamConflict](docs/sdks/flattening/README.md#componentbodyandparamconflict) +* [componentBodyAndParamNoConflict](docs/sdks/flattening/README.md#componentbodyandparamnoconflict) +* [conflictingParams](docs/sdks/flattening/README.md#conflictingparams) +* [inlineBodyAndParamConflict](docs/sdks/flattening/README.md#inlinebodyandparamconflict) +* [inlineBodyAndParamNoConflict](docs/sdks/flattening/README.md#inlinebodyandparamnoconflict) -### [pagination](docs/sdks/pagination/README.md) +### [.globals](docs/sdks/globals/README.md) -* [paginationCursorBody](docs/sdks/pagination/README.md#paginationcursorbody) -* [paginationCursorParams](docs/sdks/pagination/README.md#paginationcursorparams) -* [paginationLimitOffsetOffsetBody](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetbody) -* [paginationLimitOffsetOffsetParams](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetparams) -* [paginationLimitOffsetPageBody](docs/sdks/pagination/README.md#paginationlimitoffsetpagebody) -* [paginationLimitOffsetPageParams](docs/sdks/pagination/README.md#paginationlimitoffsetpageparams) +* [globalPathParameterGet](docs/sdks/globals/README.md#globalpathparameterget) +* [globalsQueryParameterGet](docs/sdks/globals/README.md#globalsqueryparameterget) -### [parameters](docs/sdks/parameters/README.md) +### [.parameters](docs/sdks/parameters/README.md) * [deepObjectQueryParamsMap](docs/sdks/parameters/README.md#deepobjectqueryparamsmap) * [deepObjectQueryParamsObject](docs/sdks/parameters/README.md#deepobjectqueryparamsobject) @@ -252,7 +211,24 @@ import { RFCDate } from "openapi/dist/sdk/types"; * [simplePathParameterObjects](docs/sdks/parameters/README.md#simplepathparameterobjects) * [simplePathParameterPrimitives](docs/sdks/parameters/README.md#simplepathparameterprimitives) -### [requestBodies](docs/sdks/requestbodies/README.md) + +### [.nest.first](docs/sdks/sdkfirst/README.md) + +* [get](docs/sdks/sdkfirst/README.md#get) + +### [.nested](docs/sdks/nested/README.md) + +* [get](docs/sdks/nested/README.md#get) + +### [.nested.first](docs/sdks/sdknestedfirst/README.md) + +* [get](docs/sdks/sdknestedfirst/README.md#get) + +### [.nested.second](docs/sdks/sdksecond/README.md) + +* [get](docs/sdks/sdksecond/README.md#get) + +### [.requestBodies](docs/sdks/requestbodies/README.md) * [nullableObjectPost](docs/sdks/requestbodies/README.md#nullableobjectpost) * [nullableRequiredEmptyObjectPost](docs/sdks/requestbodies/README.md#nullablerequiredemptyobjectpost) @@ -336,15 +312,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; * [requestBodyWriteOnlyOutput](docs/sdks/requestbodies/README.md#requestbodywriteonlyoutput) * [requestBodyWriteOnlyUnion](docs/sdks/requestbodies/README.md#requestbodywriteonlyunion) -### [resource](docs/sdks/resource/README.md) - -* [createFile](docs/sdks/resource/README.md#createfile) -* [createResource](docs/sdks/resource/README.md#createresource) -* [deleteResource](docs/sdks/resource/README.md#deleteresource) -* [getResource](docs/sdks/resource/README.md#getresource) -* [updateResource](docs/sdks/resource/README.md#updateresource) - -### [responseBodies](docs/sdks/responsebodies/README.md) +### [.responseBodies](docs/sdks/responsebodies/README.md) * [responseBodyAdditionalPropertiesComplexNumbersPost](docs/sdks/responsebodies/README.md#responsebodyadditionalpropertiescomplexnumberspost) * [responseBodyAdditionalPropertiesDatePost](docs/sdks/responsebodies/README.md#responsebodyadditionalpropertiesdatepost) @@ -358,15 +326,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; * [responseBodyXmlGet](docs/sdks/responsebodies/README.md#responsebodyxmlget) * [responseBodyZeroValueComplexTypePtrsPost](docs/sdks/responsebodies/README.md#responsebodyzerovaluecomplextypeptrspost) -### [retries](docs/sdks/retries/README.md) - -* [retriesGet](docs/sdks/retries/README.md#retriesget) - -### [second](docs/sdks/second/README.md) - -* [get](docs/sdks/second/README.md#get) - -### [servers](docs/sdks/servers/README.md) +### [.servers](docs/sdks/servers/README.md) * [selectGlobalServer](docs/sdks/servers/README.md#selectglobalserver) * [selectServerWithID](docs/sdks/servers/README.md#selectserverwithid) - Select a server by ID. @@ -375,28 +335,68 @@ import { RFCDate } from "openapi/dist/sdk/types"; * [serverWithTemplatesGlobal](docs/sdks/servers/README.md#serverwithtemplatesglobal) * [serversByIDWithTemplates](docs/sdks/servers/README.md#serversbyidwithtemplates) -### [telemetry](docs/sdks/telemetry/README.md) +### [.telemetry](docs/sdks/telemetry/README.md) * [telemetrySpeakeasyUserAgentGet](docs/sdks/telemetry/README.md#telemetryspeakeasyuseragentget) * [telemetryUserAgentGet](docs/sdks/telemetry/README.md#telemetryuseragentget) -### [unions](docs/sdks/unions/README.md) +### [.authNew](docs/sdks/authnew/README.md) -* [flattenedTypedObjectPost](docs/sdks/unions/README.md#flattenedtypedobjectpost) -* [mixedTypeOneOfPost](docs/sdks/unions/README.md#mixedtypeoneofpost) -* [nullableOneOfRefInObjectPost](docs/sdks/unions/README.md#nullableoneofrefinobjectpost) -* [nullableOneOfSchemaPost](docs/sdks/unions/README.md#nullableoneofschemapost) -* [nullableOneOfTypeInObjectPost](docs/sdks/unions/README.md#nullableoneoftypeinobjectpost) -* [nullableTypedObjectPost](docs/sdks/unions/README.md#nullabletypedobjectpost) -* [primitiveTypeOneOfPost](docs/sdks/unions/README.md#primitivetypeoneofpost) -* [stronglyTypedOneOfPost](docs/sdks/unions/README.md#stronglytypedoneofpost) -* [typedObjectNullableOneOfPost](docs/sdks/unions/README.md#typedobjectnullableoneofpost) -* [typedObjectOneOfPost](docs/sdks/unions/README.md#typedobjectoneofpost) -* [unionBigIntDecimal](docs/sdks/unions/README.md#unionbigintdecimal) -* [unionDateNull](docs/sdks/unions/README.md#uniondatenull) -* [unionDateTimeBigInt](docs/sdks/unions/README.md#uniondatetimebigint) -* [unionDateTimeNull](docs/sdks/unions/README.md#uniondatetimenull) -* [weaklyTypedOneOfPost](docs/sdks/unions/README.md#weaklytypedoneofpost) +* [apiKeyAuthGlobalNew](docs/sdks/authnew/README.md#apikeyauthglobalnew) +* [authGlobal](docs/sdks/authnew/README.md#authglobal) +* [basicAuthNew](docs/sdks/authnew/README.md#basicauthnew) +* [multipleMixedOptionsAuth](docs/sdks/authnew/README.md#multiplemixedoptionsauth) +* [multipleMixedSchemeAuth](docs/sdks/authnew/README.md#multiplemixedschemeauth) +* [multipleOptionsWithMixedSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithmixedschemesauth) +* [multipleOptionsWithSimpleSchemesAuth](docs/sdks/authnew/README.md#multipleoptionswithsimpleschemesauth) +* [multipleSimpleOptionsAuth](docs/sdks/authnew/README.md#multiplesimpleoptionsauth) +* [multipleSimpleSchemeAuth](docs/sdks/authnew/README.md#multiplesimpleschemeauth) +* [oauth2AuthNew](docs/sdks/authnew/README.md#oauth2authnew) +* [openIdConnectAuthNew](docs/sdks/authnew/README.md#openidconnectauthnew) + +### [.auth](docs/sdks/auth/README.md) + +* [apiKeyAuth](docs/sdks/auth/README.md#apikeyauth) +* [apiKeyAuthGlobal](docs/sdks/auth/README.md#apikeyauthglobal) +* [basicAuth](docs/sdks/auth/README.md#basicauth) +* [bearerAuth](docs/sdks/auth/README.md#bearerauth) +* [globalBearerAuth](docs/sdks/auth/README.md#globalbearerauth) +* [oauth2Auth](docs/sdks/auth/README.md#oauth2auth) +* [oauth2Override](docs/sdks/auth/README.md#oauth2override) +* [openIdConnectAuth](docs/sdks/auth/README.md#openidconnectauth) + +### [.documentation](docs/sdks/documentation/README.md) + +* [getDocumentationPerLanguage](docs/sdks/documentation/README.md#getdocumentationperlanguage) - Gets documentation for some language, I guess. + +### [.resource](docs/sdks/resource/README.md) + +* [createFile](docs/sdks/resource/README.md#createfile) +* [createResource](docs/sdks/resource/README.md#createresource) +* [deleteResource](docs/sdks/resource/README.md#deleteresource) +* [getResource](docs/sdks/resource/README.md#getresource) +* [updateResource](docs/sdks/resource/README.md#updateresource) + +### [.first](docs/sdks/first/README.md) + +* [get](docs/sdks/first/README.md#get) + +### [.second](docs/sdks/second/README.md) + +* [get](docs/sdks/second/README.md#get) + +### [.pagination](docs/sdks/pagination/README.md) + +* [paginationCursorBody](docs/sdks/pagination/README.md#paginationcursorbody) +* [paginationCursorParams](docs/sdks/pagination/README.md#paginationcursorparams) +* [paginationLimitOffsetOffsetBody](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetbody) +* [paginationLimitOffsetOffsetParams](docs/sdks/pagination/README.md#paginationlimitoffsetoffsetparams) +* [paginationLimitOffsetPageBody](docs/sdks/pagination/README.md#paginationlimitoffsetpagebody) +* [paginationLimitOffsetPageParams](docs/sdks/pagination/README.md#paginationlimitoffsetpageparams) + +### [.retries](docs/sdks/retries/README.md) + +* [retriesGet](docs/sdks/retries/README.md#retriesget) @@ -552,7 +552,7 @@ const statusCode: number = 385913; } else if (e instanceof error) { console.error(e) // handle exception - } else if (e instanceof statusGetXSpeakeasyErrors_501ApplicationJSON_object) { + } else if (e instanceof 501_application/json_object) { console.error(e) // handle exception } } @@ -590,25 +590,24 @@ Some of the server options above contain variables. If you want to set the value * `protocol: string` - * `something: ServerSomething` + * `something: models.ServerSomething` For example: - ```typescript import { SDK } from "openapi"; (async () => { const sdk = new SDK({ + serverIdx: 4, security: { apiKeyAuth: "Token YOUR_API_KEY", }, globalPathParam: 100, globalQueryParam: "some example global query param", - serverIdx: 4, }); - const res = await sdk.sdk.putAnythingIgnoredGeneration("string"); + const res = await sdk.putAnythingIgnoredGeneration("string"); if (res.statusCode == 200) { // handle response @@ -622,21 +621,20 @@ import { SDK } from "openapi"; The default server can also be overridden globally by passing a URL to the `serverURL: str` optional parameter when initializing the SDK client instance. For example: - ```typescript import { SDK } from "openapi"; (async () => { const sdk = new SDK({ + serverURL: "http://localhost:35123", security: { apiKeyAuth: "Token YOUR_API_KEY", }, globalPathParam: 100, globalQueryParam: "some example global query param", - serverURL: "http://localhost:35123", }); - const res = await sdk.sdk.putAnythingIgnoredGeneration("string"); + const res = await sdk.putAnythingIgnoredGeneration("string"); if (res.statusCode == 200) { // handle response @@ -649,31 +647,127 @@ import { SDK } from "openapi"; The server URL can also be overridden on a per-operation basis, provided a server list was specified for the operation. For example: +```typescript +import { SDK } from "openapi"; + +(async () => { + const sdk = new SDK({ + security: { + apiKeyAuth: "Token YOUR_API_KEY", + }, + globalPathParam: 100, + globalQueryParam: "some example global query param", + }); + + const res = await sdk.errors.connectionErrorGet("http://somebrokenapi.broken"); + + if (res.statusCode == 200) { + // handle response + } +})(); + +``` + + + + + +# Custom HTTP Client + +The Typescript SDK makes API calls using the (axios)[https://axios-http.com/docs/intro] HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `AxiosInstance` object. + + +For example, you could specify a header for every request that your sdk makes as follows: + +```typescript +from openapi import SDK; +import axios; + +const httpClient = axios.create({ + headers: {'x-custom-header': 'someValue'} +}) + + +const sdk = new SDK({defaultClient: httpClient}); +``` + + + + + +# Retries + +Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK. + +To change the default retry strategy for a single API call, simply provide a retryConfig object to the call: + + +## Example + +```typescript +import { SDK } from "openapi"; +import { RetriesGetRequest } from "openapi/dist/sdk/models/operations"; + +(async () => { + const sdk = new SDK({ + security: { + apiKeyAuth: "Token YOUR_API_KEY", + }, + globalPathParam: 100, + globalQueryParam: "some example global query param", + }); + const requestId: string = "string"; + const numRetries: number = 75342; + + const res = await sdk.retries.retriesGet(requestId, numRetries, { + strategy: "backoff", + backoff: { + initialInterval: 1, + maxInterval: 50, + exponent: 1.1, + maxElapsedTime: 100, + }, + retryConnectionErrors: false, + }); + + if (res.statusCode == 200) { + // handle response + } +})(); + +``` + +If you'd like to override the default retry strategy for all operations that support retries, you can provide a retryConfig at SDK initialization: + + +## Example ```typescript import { SDK } from "openapi"; +import { RetriesGetRequest } from "openapi/dist/sdk/models/operations"; (async() => { const sdk = new SDK({ + retry_config: { + strategy: "backoff", + backoff: { + initialInterval: 1, + maxInterval: 50, + exponent: 1.1, + maxElapsedTime: 100, + }, + retryConnectionErrors: false, + } security: { apiKeyAuth: "Token YOUR_API_KEY", }, globalPathParam: 100, globalQueryParam: "some example global query param", }); +const requestId: string = "string"; +const numRetries: number = 75342; - const res = await sdk.authNew.apiKeyAuthGlobalNew({ - basicAuth: { - password: "owsGgP4_AhRPMSJ", - username: "Devonte_Bins", - }, - headerAuth: [ - { - expectedValue: "string", - headerName: "string", - }, - ], - }, serverURL: "http://localhost:35456"); + const res = await sdk.retries.retriesGet(requestId, numRetries); if (res.statusCode == 200) { @@ -681,30 +775,128 @@ import { SDK } from "openapi"; } })(); ``` - + - -# Custom HTTP Client -The Typescript SDK makes API calls using the (axios)[https://axios-http.com/docs/intro] HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `AxiosInstance` object. + -For example, you could specify a header for every request that your sdk makes as follows: +# Authentication + +## Per-Client Security Schemes + +Your SDK supports the following security schemes globally: + +| Name | Type | Scheme | +| --------------- | --------------- | --------------- | +| `apiKeyAuth` | apiKey | API key | +| `apiKeyAuthNew` | apiKey | API key | +| `oauth2` | oauth2 | OAuth2 token | + +You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example: ```typescript -from openapi import SDK; -import axios; +import { SDK } from "openapi"; -const httpClient = axios.create({ - headers: {'x-custom-header': 'someValue'} -}) +(async () => { + const sdk = new SDK({ + security: { + apiKeyAuth: "Token YOUR_API_KEY", + }, + globalPathParam: 100, + globalQueryParam: "some example global query param", + }); + const res = await sdk.putAnythingIgnoredGeneration("string"); + + if (res.statusCode == 200) { + // handle response + } +})(); -const sdk = new SDK({defaultClient: httpClient}); ``` - + +## Per-Operation Security Schemes + +Some operations in your SDK require the security scheme to be specified at the request level. For example: +## Second +Do this second +```typescript +import { SDK } from "openapi"; +import { + EnumParameter, + OptEnumParameter, + UsageExamplePostSecurity, +} from "openapi/dist/sdk/models/operations"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; +import { RFCDate } from "openapi/dist/sdk/types"; + +(async () => { + const sdk = new SDK({ + globalPathParam: 100, + globalQueryParam: "some example global query param", + }); + const operationSecurity: UsageExamplePostSecurity = { + password: "YOUR_PASSWORD", + username: "YOUR_USERNAME", + }; + + const res = await sdk.generation.usageExamplePost( + { + requestBody: { + fakerFormattedStrings: {}, + fakerStrings: {}, + simpleObject: { + any: "any", + bigint: 8821239038968084, + bigintStr: "9223372036854775808", + bool: true, + boolOpt: true, + date: new RFCDate("2020-01-01"), + dateTime: new Date("2020-01-01T00:00:00.000000001Z"), + decimal: 3.141592653589793, + decimalStr: "3.14159265358979344719667586", + enum: Enum.One, + float32: 1.1, + int: 1, + int32: 1, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, + num: 1.1, + str: "test", + strOpt: "testOptional", + }, + }, + bigintParameter: 168827, + bigintStrParameter: "string", + boolParameter: false, + dateParameter: new RFCDate("2022-05-05"), + dateTimeDefaultParameter: new Date("2023-06-11T00:39:45.412Z"), + dateTimeParameter: new Date("2022-07-22T13:16:48.221Z"), + decimalParameter: 2679.33, + decimalStrParameter: "string", + doubleParameter: 5223.72, + enumParameter: EnumParameter.Value1, + falseyNumberParameter: 0, + float32Parameter: 6946.59, + floatParameter: 2286.22, + int64Parameter: 102975, + intParameter: 566999, + optEnumParameter: OptEnumParameter.Value3, + strParameter: "example 1", + }, + operationSecurity + ); + + if (res.statusCode == 200) { + // handle response + } +})(); + +``` + diff --git a/typescript-client-sdk/USAGE.md b/typescript-client-sdk/USAGE.md index 4ebc6b17e..defa348ff 100755 --- a/typescript-client-sdk/USAGE.md +++ b/typescript-client-sdk/USAGE.md @@ -28,11 +28,11 @@ Do this second ```typescript import { SDK } from "openapi"; import { - UsageExamplePostEnumParameter, - UsageExamplePostOptEnumParameter, + EnumParameter, + OptEnumParameter, UsageExamplePostSecurity, } from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async () => { @@ -64,8 +64,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -80,13 +80,13 @@ import { RFCDate } from "openapi/dist/sdk/types"; decimalParameter: 2679.33, decimalStrParameter: "string", doubleParameter: 5223.72, - enumParameter: UsageExamplePostEnumParameter.Value1, + enumParameter: EnumParameter.Value1, falseyNumberParameter: 0, float32Parameter: 6946.59, floatParameter: 2286.22, int64Parameter: 102975, intParameter: 566999, - optEnumParameter: UsageExamplePostOptEnumParameter.Value3, + optEnumParameter: OptEnumParameter.Value3, strParameter: "example 1", }, operationSecurity diff --git a/typescript-client-sdk/__tests__primary/errors.test.ts b/typescript-client-sdk/__tests__primary/errors.test.ts index 068484734..e5d80753b 100755 --- a/typescript-client-sdk/__tests__primary/errors.test.ts +++ b/typescript-client-sdk/__tests__primary/errors.test.ts @@ -5,7 +5,7 @@ import { ErrorT, SDKError, - StatusGetXSpeakeasyErrors501ApplicationJSON, + StatusGetXSpeakeasyErrorsResponseBody, } from "../src/sdk/models/errors"; import { expect, test } from "@jest/globals"; @@ -115,12 +115,12 @@ test("Test Status Get Error X-Speakeasy-Errors", async () => { try { await sdk.errors.statusGetXSpeakeasyErrors(501); } catch (e) { - expect(e).toBeInstanceOf(StatusGetXSpeakeasyErrors501ApplicationJSON); + expect(e).toBeInstanceOf(StatusGetXSpeakeasyErrorsResponseBody); expect(`${e}`).toBe( - 'StatusGetXSpeakeasyErrors501ApplicationJSON: {"code":"501","message":"an error occurred","type":"internal"}' + 'StatusGetXSpeakeasyErrorsResponseBody: {"code":"501","message":"an error occurred","type":"internal"}' ); - const sdkErr = e as StatusGetXSpeakeasyErrors501ApplicationJSON; + const sdkErr = e as StatusGetXSpeakeasyErrorsResponseBody; expect(sdkErr.code).toBe("501"); expect(sdkErr.rawResponse?.status).toBe(501); diff --git a/typescript-client-sdk/__tests__primary/helpers.ts b/typescript-client-sdk/__tests__primary/helpers.ts index c2ef6d894..13b00b8d3 100755 --- a/typescript-client-sdk/__tests__primary/helpers.ts +++ b/typescript-client-sdk/__tests__primary/helpers.ts @@ -6,13 +6,13 @@ import { DeepObject, DeepObjectCamelCase, Enum, + Int32Enum, + IntEnum, SimpleObject, SimpleObjectCamelCase, - SimpleObjectInt32Enum, - SimpleObjectIntEnum, } from "../src/sdk/models/shared"; -import {RFCDate} from "../src/sdk/types"; +import { RFCDate } from "../src/sdk/types"; export const createSimpleObject = (): SimpleObject => { return new SimpleObject({ @@ -20,8 +20,8 @@ export const createSimpleObject = (): SimpleObject => { bool: true, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, float32: 1.1, enum: Enum.One, @@ -39,8 +39,8 @@ export const createSimpleObjectCamelCase = (): SimpleObjectCamelCase => { boolVal: true, intVal: 1, int32Val: 1, - int32EnumVal: SimpleObjectInt32Enum.FiftyFive, - intEnumVal: SimpleObjectIntEnum.Second, + int32EnumVal: Int32Enum.FiftyFive, + intEnumVal: IntEnum.Second, numVal: 1.1, float32Val: 1.1, enumVal: Enum.One, @@ -80,7 +80,7 @@ export const createDeepObjectCamelCase = (): DeepObjectCamelCase => { objVal: createSimpleObjectCamelCase(), strVal: "test", }); -} +}; export const sortKeys = (obj: any): any => { if (Array.isArray(obj)) { @@ -99,4 +99,4 @@ export const sortKeys = (obj: any): any => { } else { return obj; } -}; \ No newline at end of file +}; diff --git a/typescript-client-sdk/__tests__primary/requestbodies.test.ts b/typescript-client-sdk/__tests__primary/requestbodies.test.ts index 00c0310cd..82ba44a1d 100755 --- a/typescript-client-sdk/__tests__primary/requestbodies.test.ts +++ b/typescript-client-sdk/__tests__primary/requestbodies.test.ts @@ -7,21 +7,21 @@ import * as path from "path"; import { ReadOnlyObjectInput, - ReadWriteObjectInput, + ReadWriteObject, WriteOnlyObject, } from "../src/sdk/models/shared"; import { - createDeepObject, createDeepObjectCamelCase, + createDeepObject, + createDeepObjectCamelCase, createSimpleObject, createSimpleObjectCamelCase, sortKeys, } from "./helpers"; - -import { recordTest } from "./common_helpers"; import { expect, test } from "@jest/globals"; +import { RFCDate } from "../src/sdk/types"; import { SDK } from "../src"; -import {RFCDate} from "../src/sdk/types"; +import { recordTest } from "./common_helpers"; test("Request Body Post Application JSON Simple", async () => { recordTest("request-bodies-post-application-json-simple"); @@ -39,12 +39,17 @@ test("Request Body Post Application JSON Simple Camel Case", async () => { const s = new SDK({}); const obj = createSimpleObjectCamelCase(); - const res = await s.requestBodies.requestBodyPostApplicationJsonSimpleCamelCase(obj); + const res = + await s.requestBodies.requestBodyPostApplicationJsonSimpleCamelCase(obj); expect(res.statusCode).toBe(200); expect(res.res).toBeDefined(); - const rawResponseData = JSON.parse(new TextDecoder().decode(res.rawResponse?.data)) - expect(rawResponseData?.data).toMatchInlineSnapshot(`"{"any_val":"any","bool_opt_val":true,"bool_val":true,"date_time_val":"2020-01-01T00:00:00.001Z","date_val":"2020-01-01","enum_val":"one","float32_val":1.1,"int32_enum_val":55,"int32_val":1,"int_enum_val":2,"int_val":1,"num_val":1.1,"str_opt_val":"testOptional","str_val":"test"}"`) + const rawResponseData = JSON.parse( + new TextDecoder().decode(res.rawResponse?.data) + ); + expect(rawResponseData?.data).toMatchInlineSnapshot( + `"{"any_val":"any","bool_opt_val":true,"bool_val":true,"date_time_val":"2020-01-01T00:00:00.001Z","date_val":"2020-01-01","enum_val":"one","float32_val":1.1,"int32_enum_val":55,"int32_val":1,"int_enum_val":2,"int_val":1,"num_val":1.1,"str_opt_val":"testOptional","str_val":"test"}"` + ); expect(rawResponseData?.json).toMatchInlineSnapshot(` { "any_val": "any", @@ -62,7 +67,7 @@ test("Request Body Post Application JSON Simple Camel Case", async () => { "str_opt_val": "testOptional", "str_val": "test", } -`) +`); expect(res.res?.json).toMatchInlineSnapshot(` SimpleObjectCamelCase { "anyVal": "any", @@ -80,7 +85,7 @@ SimpleObjectCamelCase { "strOptVal": "testOptional", "strVal": "test", } -`) +`); expect(res.res?.json?.dateVal).toBeInstanceOf(RFCDate); expect(res.res?.json).toEqual(obj); }); @@ -95,8 +100,8 @@ test("Request Body Post Application JSON Array", async () => { obj, ]); expect(res.statusCode).toBe(200); - expect(res.simpleObjects).toBeDefined(); - expect(res.simpleObjects).toEqual([obj, obj]); + expect(res.res).toBeDefined(); + expect(res.res).toEqual([obj, obj]); }); test("Request Body Post Application JSON Array Camel Case", async () => { @@ -104,13 +109,14 @@ test("Request Body Post Application JSON Array Camel Case", async () => { const s = new SDK({}); const obj = createSimpleObjectCamelCase(); - const res = await s.requestBodies.requestBodyPostApplicationJsonArrayCamelCase([ - obj, - obj, - ]); + const res = + await s.requestBodies.requestBodyPostApplicationJsonArrayCamelCase([ + obj, + obj, + ]); expect(res.statusCode).toBe(200); - expect(res.simpleObjectCamelCases).toBeDefined(); - expect(res.simpleObjectCamelCases).toEqual([obj, obj]); + expect(res.res).toBeDefined(); + expect(res.res).toEqual([obj, obj]); }); test("Request Body Post Application JSON Array of Array", async () => { @@ -123,8 +129,8 @@ test("Request Body Post Application JSON Array of Array", async () => { [obj], ]); expect(res.statusCode).toBe(200); - expect(res.arrs).toBeDefined(); - expect(res.arrs).toEqual([[obj], [obj]]); + expect(res.res).toBeDefined(); + expect(res.res).toEqual([[obj], [obj]]); }); test("Request Body Post Application JSON Array of Array Camel Case", async () => { @@ -132,13 +138,14 @@ test("Request Body Post Application JSON Array of Array Camel Case", async () => const s = new SDK({}); const obj = createSimpleObjectCamelCase(); - const res = await s.requestBodies.requestBodyPostApplicationJsonArrayOfArrayCamelCase([ - [obj], - [obj], - ]); + const res = + await s.requestBodies.requestBodyPostApplicationJsonArrayOfArrayCamelCase([ + [obj], + [obj], + ]); expect(res.statusCode).toBe(200); - expect(res.arrs).toBeDefined(); - expect(res.arrs).toEqual([[obj], [obj]]); + expect(res.res).toBeDefined(); + expect(res.res).toEqual([[obj], [obj]]); }); test("Request Body Post Application JSON Map", async () => { @@ -209,16 +216,17 @@ test("Request Body Post Application JSON Map of Map Camel Case", async () => { const s = new SDK({}); const obj = createSimpleObjectCamelCase(); - const res = await s.requestBodies.requestBodyPostApplicationJsonMapOfMapCamelCase({ - mapElem1: { - subMapElem1: obj, - subMapElem2: obj, - }, - mapElem2: { - subMapElem1: obj, - subMapElem2: obj, - }, - }); + const res = + await s.requestBodies.requestBodyPostApplicationJsonMapOfMapCamelCase({ + mapElem1: { + subMapElem1: obj, + subMapElem2: obj, + }, + mapElem2: { + subMapElem1: obj, + subMapElem2: obj, + }, + }); expect(res.statusCode).toBe(200); expect(res.res).toBeDefined(); expect(res.res).toEqual({ @@ -255,10 +263,11 @@ test("Request Body Post Application JSON Map of Array Camel Case", async () => { const s = new SDK({}); const obj = createSimpleObjectCamelCase(); - const res = await s.requestBodies.requestBodyPostApplicationJsonMapOfArrayCamelCase({ - mapElem1: [obj, obj], - mapElem2: [obj, obj], - }); + const res = + await s.requestBodies.requestBodyPostApplicationJsonMapOfArrayCamelCase({ + mapElem1: [obj, obj], + mapElem2: [obj, obj], + }); expect(res.statusCode).toBe(200); expect(res.res).toBeDefined(); expect(res.res).toEqual({ @@ -283,8 +292,8 @@ test("Request Body Post Application JSON Array of Map", async () => { }, ]); expect(res.statusCode).toBe(200); - expect(res.maps).toBeDefined(); - expect(res.maps).toEqual([ + expect(res.res).toBeDefined(); + expect(res.res).toEqual([ { mapElem1: obj, mapElem2: obj, @@ -301,19 +310,20 @@ test("Request Body Post Application JSON Array of Map Camel Case", async () => { const s = new SDK({}); const obj = createSimpleObjectCamelCase(); - const res = await s.requestBodies.requestBodyPostApplicationJsonArrayOfMapCamelCase([ - { - mapElem1: obj, - mapElem2: obj, - }, - { - mapElem1: obj, - mapElem2: obj, - }, - ]); + const res = + await s.requestBodies.requestBodyPostApplicationJsonArrayOfMapCamelCase([ + { + mapElem1: obj, + mapElem2: obj, + }, + { + mapElem1: obj, + mapElem2: obj, + }, + ]); expect(res.statusCode).toBe(200); - expect(res.maps).toBeDefined(); - expect(res.maps).toEqual([ + expect(res.res).toBeDefined(); + expect(res.res).toEqual([ { mapElem1: obj, mapElem2: obj, @@ -352,8 +362,8 @@ test("Request Body Post Application JSON Array of Primitive", async () => { "world", ]); expect(res.statusCode).toBe(200); - expect(res.strings).toBeDefined(); - expect(res.strings).toEqual(["hello", "world"]); + expect(res.res).toBeDefined(); + expect(res.res).toEqual(["hello", "world"]); }); test("Request Body Post Application JSON Map of Map of Primitive", async () => { @@ -399,8 +409,8 @@ test("Request Body Post Application JSON Array of Array of Primitive", async () ] ); expect(res.statusCode).toBe(200); - expect(res.arrs).toBeDefined(); - expect(res.arrs).toEqual([ + expect(res.res).toBeDefined(); + expect(res.res).toEqual([ ["foo", "bar"], ["buzz", "bazz"], ]); @@ -425,10 +435,11 @@ test("Request Body Post Application JSON Array Object Camel Case", async () => { const s = new SDK({}); const obj = createSimpleObjectCamelCase(); - const res = await s.requestBodies.requestBodyPostApplicationJsonArrayObjCamelCase([ - obj, - obj, - ]); + const res = + await s.requestBodies.requestBodyPostApplicationJsonArrayObjCamelCase([ + obj, + obj, + ]); expect(res.statusCode).toBe(200); expect(res.arrObjValueCamelCase).toBeDefined(); expect(res.arrObjValueCamelCase?.json).toEqual([obj, obj]); @@ -456,10 +467,11 @@ test("Request Body Post Application JSON Map Object Camel Case", async () => { const s = new SDK({}); const obj = createSimpleObjectCamelCase(); - const res = await s.requestBodies.requestBodyPostApplicationJsonMapObjCamelCase({ - mapElem1: obj, - mapElem2: obj, - }); + const res = + await s.requestBodies.requestBodyPostApplicationJsonMapObjCamelCase({ + mapElem1: obj, + mapElem2: obj, + }); expect(res.statusCode).toBe(200); expect(res.mapObjValueCamelCase).toBeDefined(); expect(res.mapObjValueCamelCase?.json).toEqual({ @@ -488,7 +500,9 @@ test("Request Body Post Application JSON Deep Camel Case", async () => { const s = new SDK({}); const obj = createDeepObjectCamelCase(); - const res = await s.requestBodies.requestBodyPostApplicationJsonDeepCamelCase(obj); + const res = await s.requestBodies.requestBodyPostApplicationJsonDeepCamelCase( + obj + ); expect(res.statusCode).toBe(200); expect(res.res).toBeDefined(); @@ -692,6 +706,7 @@ test("Request Body Put Multipart Simple", async () => { const res = await s.requestBodies.requestBodyPutMultipartSimple(obj); expect(res.statusCode).toBe(200); expect(res.res).toBeDefined(); + expect(res.res?.headers.contentType).toMatch(/^multipart\/form-data/); expect(res.res?.form).toEqual({ any: "any", bool: "true", @@ -738,7 +753,7 @@ test("Request Body Put Multipart File", async () => { const res = await s.requestBodies.requestBodyPutMultipartFile({ file: { content: data, - file: "testUpload.json", + fileName: "testUpload.json", }, }); @@ -760,7 +775,7 @@ test("Request Body Put Multipart Different File Name", async () => { const res = await s.requestBodies.requestBodyPutMultipartDifferentFileName({ differentFileName: { content: data, - differentFileName: "testUpload.json", + fileName: "testUpload.json", }, }); @@ -779,6 +794,7 @@ test("Request Body Post Form Simple", async () => { const res = await s.requestBodies.requestBodyPostFormSimple(obj); expect(res.statusCode).toBe(200); expect(res.res).toBeDefined(); + expect(res.res?.headers.contentType).toEqual("application/x-www-form-urlencoded"); expect(res.res?.form).toEqual({ any: "any", bool: "true", @@ -893,7 +909,7 @@ test("Request Body Post Empty Object", async () => { const s = new SDK({}); const res = await s.requestBodies.requestBodyPostEmptyObject({}); - expect(res.requestBodyPostEmptyObject200ApplicationJSONObject).toBeDefined(); + expect(res.object).toBeDefined(); expect(res.statusCode).toBe(200); }); @@ -952,7 +968,7 @@ test("Request Body Read And Write", async () => { const s = new SDK({}); const res = await s.requestBodies.requestBodyReadAndWrite( - new ReadWriteObjectInput({ + new ReadWriteObject({ num1: 1, num2: 2, num3: 4, @@ -963,4 +979,4 @@ test("Request Body Read And Write", async () => { expect(res.readWriteObject).toBeDefined(); expect(res.readWriteObject?.num3).toEqual(4); expect(res.readWriteObject?.sum).toEqual(7); -}); \ No newline at end of file +}); diff --git a/typescript-client-sdk/__tests__primary/responsebodies.test.ts b/typescript-client-sdk/__tests__primary/responsebodies.test.ts index c0b285b26..62798e8db 100755 --- a/typescript-client-sdk/__tests__primary/responsebodies.test.ts +++ b/typescript-client-sdk/__tests__primary/responsebodies.test.ts @@ -2,12 +2,11 @@ * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. */ -import { ResponseBodyOptionalGetAcceptEnum } from "../src/sdk/responsebodies"; - -import { recordTest } from "./common_helpers"; import { expect, test } from "@jest/globals"; +import { ResponseBodyOptionalGetAcceptEnum } from "../src/sdk/responsebodies"; import { SDK } from "../src/sdk"; +import { recordTest } from "./common_helpers"; test("Response Body JSON Get", async () => { recordTest("response-bodies-json-get"); @@ -123,7 +122,7 @@ test("Response Body Override Accept Header", async () => { expect(res.statusCode).toBe(200); expect(res.contentType).toContain("text/plain"); - expect(res.responseBodyOptionalGet200TextPlainString).toEqual("Success"); + expect(res.res).toEqual("Success"); }); test("Response Body Default Accept Header", async () => { @@ -148,4 +147,4 @@ test("Response Body Read Only", async () => { expect(res.readOnlyObject?.bool).toEqual(true); expect(res.readOnlyObject?.num).toEqual(1.0); expect(res.readOnlyObject?.string).toEqual("hello"); -}); \ No newline at end of file +}); diff --git a/typescript-client-sdk/__tests__primary/telemetry.test.ts b/typescript-client-sdk/__tests__primary/telemetry.test.ts index ae93d91b8..d5ea5c7fc 100755 --- a/typescript-client-sdk/__tests__primary/telemetry.test.ts +++ b/typescript-client-sdk/__tests__primary/telemetry.test.ts @@ -21,7 +21,7 @@ test("Test Telemetry User Agent Get", async () => { expect(res.statusCode).toBeDefined(); expect(res.statusCode).toBe(200); expect(res.res?.headers["X-Speakeasy-User-Agent"]).toBe( - "speakeasy-sdk/typescript 1.40.3 2.173.0 0.1.0 openapi" + "speakeasy-sdk/typescript 2.0.0 2.181.1 0.1.0 openapi" ); }); @@ -39,6 +39,6 @@ test("Test Telemetry Speakeasy User Agent Get", async () => { expect(res.statusCode).toBe(200); expect(res.res?.headers["User-Agent"]).toBe(userAgent); expect(res.res?.headers["X-Speakeasy-User-Agent"]).toBe( - "speakeasy-sdk/typescript 1.40.3 2.173.0 0.1.0 openapi" + "speakeasy-sdk/typescript 2.0.0 2.181.1 0.1.0 openapi" ); }); diff --git a/typescript-client-sdk/docs/models/errors/errort.md b/typescript-client-sdk/docs/models/errors/errort.md index 517f2ed84..d03854036 100755 --- a/typescript-client-sdk/docs/models/errors/errort.md +++ b/typescript-client-sdk/docs/models/errors/errort.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | -| `code` | *string* | :heavy_minus_sign: | N/A | -| `message` | *string* | :heavy_minus_sign: | N/A | -| `type` | [ErrorType](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | +| `code` | *string* | :heavy_minus_sign: | N/A | +| `message` | *string* | :heavy_minus_sign: | N/A | +| `type` | [errors.ErrorType](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md b/typescript-client-sdk/docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md deleted file mode 100755 index 49b86d376..000000000 --- a/typescript-client-sdk/docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md +++ /dev/null @@ -1,13 +0,0 @@ -# StatusGetXSpeakeasyErrors501ApplicationJSON - -Not Implemented - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `code` | *string* | :heavy_minus_sign: | N/A | -| `message` | *string* | :heavy_minus_sign: | N/A | -| `type` | [ErrorType](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md b/typescript-client-sdk/docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md new file mode 100755 index 000000000..52f975405 --- /dev/null +++ b/typescript-client-sdk/docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md @@ -0,0 +1,13 @@ +# StatusGetXSpeakeasyErrorsResponseBody + +Not Implemented + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `code` | *string* | :heavy_minus_sign: | N/A | +| `message` | *string* | :heavy_minus_sign: | N/A | +| `type` | [errors.ErrorType](../../models/errors/errortype.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/anchortypesgetresponse.md b/typescript-client-sdk/docs/models/operations/anchortypesgetresponse.md index 4cf71ea7b..13c033e5e 100755 --- a/typescript-client-sdk/docs/models/operations/anchortypesgetresponse.md +++ b/typescript-client-sdk/docs/models/operations/anchortypesgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `typeFromAnchor` | [TypeFromAnchor](../../models/operations/typefromanchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `typeFromAnchor` | [operations.AnchorTypesGetTypeFromAnchor](../../models/operations/anchortypesgettypefromanchor.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md b/typescript-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md new file mode 100755 index 000000000..c208b2d36 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/anchortypesgettypefromanchor.md @@ -0,0 +1,10 @@ +# AnchorTypesGetTypeFromAnchor + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/apikeyauthglobalresponse.md b/typescript-client-sdk/docs/models/operations/apikeyauthglobalresponse.md index e380758da..7ab01d726 100755 --- a/typescript-client-sdk/docs/models/operations/apikeyauthglobalresponse.md +++ b/typescript-client-sdk/docs/models/operations/apikeyauthglobalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [ApiKeyAuthGlobalToken](../../models/operations/apikeyauthglobaltoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [operations.ApiKeyAuthGlobalToken](../../models/operations/apikeyauthglobaltoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/apikeyauthresponse.md b/typescript-client-sdk/docs/models/operations/apikeyauthresponse.md index e3c13f277..b228b3e2f 100755 --- a/typescript-client-sdk/docs/models/operations/apikeyauthresponse.md +++ b/typescript-client-sdk/docs/models/operations/apikeyauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [ApiKeyAuthToken](../../models/operations/apikeyauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [operations.ApiKeyAuthToken](../../models/operations/apikeyauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/args.md b/typescript-client-sdk/docs/models/operations/args.md new file mode 100755 index 000000000..2b0646d1c --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/args.md @@ -0,0 +1,8 @@ +# Args + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `globalQueryParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/basicauthresponse.md b/typescript-client-sdk/docs/models/operations/basicauthresponse.md index b1e826380..ce351b69d 100755 --- a/typescript-client-sdk/docs/models/operations/basicauthresponse.md +++ b/typescript-client-sdk/docs/models/operations/basicauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `user` | [BasicAuthUser](../../models/operations/basicauthuser.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `user` | [operations.BasicAuthUser](../../models/operations/basicauthuser.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/bearerauthresponse.md b/typescript-client-sdk/docs/models/operations/bearerauthresponse.md index a5551e74b..5d5031d1c 100755 --- a/typescript-client-sdk/docs/models/operations/bearerauthresponse.md +++ b/typescript-client-sdk/docs/models/operations/bearerauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [BearerAuthToken](../../models/operations/bearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [operations.BearerAuthToken](../../models/operations/bearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md b/typescript-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md index d2fa502bb..f5ec2825f 100755 --- a/typescript-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md +++ b/typescript-client-sdk/docs/models/operations/componentbodyandparamconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [ComponentBodyAndParamConflictRes](../../models/operations/componentbodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.ComponentBodyAndParamConflictRes](../../models/operations/componentbodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md b/typescript-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md index c2a34ef08..f799fb89a 100755 --- a/typescript-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md +++ b/typescript-client-sdk/docs/models/operations/componentbodyandparamnoconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [ComponentBodyAndParamNoConflictRes](../../models/operations/componentbodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.ComponentBodyAndParamNoConflictRes](../../models/operations/componentbodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/conflictingparamsresponse.md b/typescript-client-sdk/docs/models/operations/conflictingparamsresponse.md index 3ed082abd..dc0d60907 100755 --- a/typescript-client-sdk/docs/models/operations/conflictingparamsresponse.md +++ b/typescript-client-sdk/docs/models/operations/conflictingparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [ConflictingParamsRes](../../models/operations/conflictingparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.ConflictingParamsRes](../../models/operations/conflictingparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/createfilefile.md b/typescript-client-sdk/docs/models/operations/createfilefile.md new file mode 100755 index 000000000..00b0879bf --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/createfilefile.md @@ -0,0 +1,9 @@ +# CreateFileFile + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *Uint8Array* | :heavy_check_mark: | N/A | +| `fileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/createfilerequestbody.md b/typescript-client-sdk/docs/models/operations/createfilerequestbody.md index b19b7cd2d..ae35ee7a0 100755 --- a/typescript-client-sdk/docs/models/operations/createfilerequestbody.md +++ b/typescript-client-sdk/docs/models/operations/createfilerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `file` | [CreateFileRequestBodyFile](../../models/operations/createfilerequestbodyfile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | +| `file` | [operations.CreateFileFile](../../models/operations/createfilefile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/createfilerequestbodyfile.md b/typescript-client-sdk/docs/models/operations/createfilerequestbodyfile.md deleted file mode 100755 index 7420bea52..000000000 --- a/typescript-client-sdk/docs/models/operations/createfilerequestbodyfile.md +++ /dev/null @@ -1,9 +0,0 @@ -# CreateFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content` | *Uint8Array* | :heavy_check_mark: | N/A | -| `file` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md index ea3d3e46c..b163e3a94 100755 --- a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md +++ b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsmapresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [DeepObjectQueryParamsMapRes](../../models/operations/deepobjectqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.DeepObjectQueryParamsMapRes](../../models/operations/deepobjectqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md new file mode 100755 index 000000000..27b373130 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectargs.md @@ -0,0 +1,26 @@ +# DeepObjectQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | +| `objArrParamArr` | *string*[] | :heavy_check_mark: | N/A | | +| `objParamAny` | *string* | :heavy_check_mark: | N/A | any | +| `objParamBigintStr` | *string* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `objParamBigint` | *string* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `objParamBoolOpt` | *string* | :heavy_check_mark: | N/A | true | +| `objParamBool` | *string* | :heavy_check_mark: | N/A | true | +| `objParamDateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `objParamDate` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | +| `objParamDecimalStr` | *string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `objParamDecimal` | *string* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `objParamEnum` | *string* | :heavy_check_mark: | N/A | one | +| `objParamFloat32` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `objParamInt32Enum` | *string* | :heavy_check_mark: | N/A | 55 | +| `objParamInt32` | *string* | :heavy_check_mark: | N/A | 1 | +| `objParamIntEnum` | *string* | :heavy_check_mark: | N/A | 2 | +| `objParamInt` | *string* | :heavy_check_mark: | N/A | 1 | +| `objParamNum` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `objParamStrOpt` | *string* | :heavy_check_mark: | N/A | testOptional | +| `objParamStr` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md deleted file mode 100755 index 7ec7980e9..000000000 --- a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md +++ /dev/null @@ -1,8 +0,0 @@ -# DeepObjectQueryParamsObjectObjArrParam - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | *string*[] | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md index a272bfe3d..6d5b50317 100755 --- a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md +++ b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `objParam` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `objArrParam` | [DeepObjectQueryParamsObjectObjArrParam](../../models/operations/deepobjectqueryparamsobjectobjarrparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `objParam` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `objArrParam` | [operations.ObjArrParam](../../models/operations/objarrparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md index b50059ca6..62e5eda81 100755 --- a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md +++ b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [DeepObjectQueryParamsObjectResArgs](../../models/operations/deepobjectqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.DeepObjectQueryParamsObjectArgs](../../models/operations/deepobjectqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/deepObject/obj?objArrParam[arr]=test&objArrParam[arr]=test2&objParam[any]=any&objParam[bigintStr]=9223372036854775808&objParam[bigint]=8821239038968084&objParam[boolOpt]=true&objParam[bool]=true&objParam[dateTime]=2020-01-01T00%3A00%3A00.000000001Z&objParam[date]=2020-01-01&objParam[decimalStr]=3.14159265358979344719667586&objParam[decimal]=3.141592653589793&objParam[enum]=one&objParam[float32]=1.1&objParam[int32Enum]=55&objParam[int32]=1&objParam[intEnum]=2&objParam[int]=1&objParam[num]=1.1&objParam[strOpt]=testOptional&objParam[str]=test | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md deleted file mode 100755 index 1a15828ce..000000000 --- a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresargs.md +++ /dev/null @@ -1,26 +0,0 @@ -# DeepObjectQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | -| `objArrParamArr` | *string*[] | :heavy_check_mark: | N/A | | -| `objParamAny` | *string* | :heavy_check_mark: | N/A | any | -| `objParamBigintStr` | *string* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `objParamBigint` | *string* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `objParamBoolOpt` | *string* | :heavy_check_mark: | N/A | true | -| `objParamBool` | *string* | :heavy_check_mark: | N/A | true | -| `objParamDateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `objParamDate` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | -| `objParamDecimalStr` | *string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `objParamDecimal` | *string* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `objParamEnum` | *string* | :heavy_check_mark: | N/A | one | -| `objParamFloat32` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `objParamInt32Enum` | *string* | :heavy_check_mark: | N/A | 55 | -| `objParamInt32` | *string* | :heavy_check_mark: | N/A | 1 | -| `objParamIntEnum` | *string* | :heavy_check_mark: | N/A | 2 | -| `objParamInt` | *string* | :heavy_check_mark: | N/A | 1 | -| `objParamNum` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `objParamStrOpt` | *string* | :heavy_check_mark: | N/A | testOptional | -| `objParamStr` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md index bc17f4c70..686053ca9 100755 --- a/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md +++ b/typescript-client-sdk/docs/models/operations/deepobjectqueryparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [DeepObjectQueryParamsObjectRes](../../models/operations/deepobjectqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.DeepObjectQueryParamsObjectRes](../../models/operations/deepobjectqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md b/typescript-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md deleted file mode 100755 index 6ade495d7..000000000 --- a/typescript-client-sdk/docs/models/operations/deprecatedobjectinschemaget200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# DeprecatedObjectInSchemaGet200ApplicationJSON - -A successful response that contains a deprecatedObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | -| ~~`json`~~ | [shared.DeprecatedObject](../../models/shared/deprecatedobject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md b/typescript-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md index dd68208b8..adbca3844 100755 --- a/typescript-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md +++ b/typescript-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `deprecatedObjectInSchemaGet200ApplicationJSONObject` | [DeprecatedObjectInSchemaGet200ApplicationJSON](../../models/operations/deprecatedobjectinschemaget200applicationjson.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.DeprecatedObjectInSchemaGetResponseBody](../../models/operations/deprecatedobjectinschemagetresponsebody.md) | :heavy_minus_sign: | A successful response that contains a deprecatedObject sent in the request body | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md b/typescript-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md new file mode 100755 index 000000000..69d655437 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/deprecatedobjectinschemagetresponsebody.md @@ -0,0 +1,10 @@ +# DeprecatedObjectInSchemaGetResponseBody + +A successful response that contains a deprecatedObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | +| ~~`json`~~ | [shared.DeprecatedObject](../../models/shared/deprecatedobject.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This object is deprecated. | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/differentfilename.md b/typescript-client-sdk/docs/models/operations/differentfilename.md new file mode 100755 index 000000000..8876dce55 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/differentfilename.md @@ -0,0 +1,9 @@ +# DifferentFileName + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *Uint8Array* | :heavy_check_mark: | N/A | +| `fileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/duplicateparamresponse.md b/typescript-client-sdk/docs/models/operations/duplicateparamresponse.md index 7f42c932e..92d3d17f0 100755 --- a/typescript-client-sdk/docs/models/operations/duplicateparamresponse.md +++ b/typescript-client-sdk/docs/models/operations/duplicateparamresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `duplicateParamResponse` | [DuplicateParamDuplicateParamResponse](../../models/operations/duplicateparamduplicateparamresponse.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `duplicateParamResponse` | [operations.DuplicateParamDuplicateParamResponse](../../models/operations/duplicateparamduplicateparamresponse.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/empty.md b/typescript-client-sdk/docs/models/operations/empty.md new file mode 100755 index 000000000..f9f6b3eab --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/empty.md @@ -0,0 +1,7 @@ +# Empty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md b/typescript-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md deleted file mode 100755 index bbddca47a..000000000 --- a/typescript-client-sdk/docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md +++ /dev/null @@ -1,9 +0,0 @@ -# EmptyResponseObjectWithCommentGet200ApplicationOctetStream - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md b/typescript-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md new file mode 100755 index 000000000..5098e6819 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md @@ -0,0 +1,9 @@ +# EmptyResponseObjectWithCommentGetResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md b/typescript-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md new file mode 100755 index 000000000..1da3e5d24 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/emptyrespwithemptyproperies.md @@ -0,0 +1,7 @@ +# EmptyRespWithEmptyProperies + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/emptywithemptyproperties.md b/typescript-client-sdk/docs/models/operations/emptywithemptyproperties.md new file mode 100755 index 000000000..535ae89ed --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/emptywithemptyproperties.md @@ -0,0 +1,7 @@ +# EmptyWithEmptyProperties + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/enumnameoverride.md b/typescript-client-sdk/docs/models/operations/enumnameoverride.md new file mode 100755 index 000000000..214bf6347 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/enumnameoverride.md @@ -0,0 +1,12 @@ +# EnumNameOverride + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `Value1` | value1 | +| `Value2` | value2 | +| `Value3` | value3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/enumparameter.md b/typescript-client-sdk/docs/models/operations/enumparameter.md new file mode 100755 index 000000000..ddb69e96e --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/enumparameter.md @@ -0,0 +1,12 @@ +# EnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `Value1` | value1 | +| `Value2` | value2 | +| `Value3` | value3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/file.md b/typescript-client-sdk/docs/models/operations/file.md new file mode 100755 index 000000000..89a9dac88 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/file.md @@ -0,0 +1,9 @@ +# File + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `content` | *Uint8Array* | :heavy_check_mark: | N/A | +| `fileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md b/typescript-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md index b43576826..b2cdcf815 100755 --- a/typescript-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/flattenedtypedobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [FlattenedTypedObjectPostRes](../../models/operations/flattenedtypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.FlattenedTypedObjectPostRes](../../models/operations/flattenedtypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/form.md b/typescript-client-sdk/docs/models/operations/form.md new file mode 100755 index 000000000..5cd1b6713 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/form.md @@ -0,0 +1,14 @@ +# Form + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | *string* | :heavy_check_mark: | N/A | +| `bool` | *string* | :heavy_check_mark: | N/A | +| `int` | *string* | :heavy_check_mark: | N/A | +| `map` | *string* | :heavy_check_mark: | N/A | +| `num` | *string* | :heavy_check_mark: | N/A | +| `obj` | *string* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsarrayargs.md b/typescript-client-sdk/docs/models/operations/formqueryparamsarrayargs.md new file mode 100755 index 000000000..07e3087b2 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsarrayargs.md @@ -0,0 +1,9 @@ +# FormQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `arrParam` | *string* | :heavy_check_mark: | N/A | test,test2 | +| `arrParamExploded` | *string*[] | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsarrayres.md b/typescript-client-sdk/docs/models/operations/formqueryparamsarrayres.md index 01520a8a3..afa80d687 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsarrayres.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsarrayres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | -| `args` | [FormQueryParamsArrayResArgs](../../models/operations/formqueryparamsarrayresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.FormQueryParamsArrayArgs](../../models/operations/formqueryparamsarrayargs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/array?arrParam=test%2Ctest2&arrParamExploded=1&arrParamExploded=2 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md b/typescript-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md deleted file mode 100755 index a9dd74118..000000000 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsarrayresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `arrParam` | *string* | :heavy_check_mark: | N/A | test,test2 | -| `arrParamExploded` | *string*[] | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md b/typescript-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md index 53ad7cb01..20f7b845d 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [FormQueryParamsArrayRes](../../models/operations/formqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.FormQueryParamsArrayRes](../../models/operations/formqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md b/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md new file mode 100755 index 000000000..96dd24d7a --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectargs.md @@ -0,0 +1,9 @@ +# FormQueryParamsCamelObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `itemCount` | *string* | :heavy_check_mark: | N/A | 10 | +| `searchTerm` | *string* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md b/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md deleted file mode 100755 index e697700d9..000000000 --- a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparam.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParam - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `encodedCount` | *string* | :heavy_minus_sign: | N/A | 11 | -| `encodedTerm` | *string* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md b/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md deleted file mode 100755 index 6ca24282d..000000000 --- a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectobjparamexploded.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectObjParamExploded - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `itemCount` | *string* | :heavy_minus_sign: | N/A | 10 | -| `searchTerm` | *string* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md b/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md index 6f3883688..e521b4efb 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `objParamExploded` | [FormQueryParamsCamelObjectObjParamExploded](../../models/operations/formqueryparamscamelobjectobjparamexploded.md) | :heavy_check_mark: | N/A | -| `objParam` | [FormQueryParamsCamelObjectObjParam](../../models/operations/formqueryparamscamelobjectobjparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `objParamExploded` | [operations.ObjParamExploded](../../models/operations/objparamexploded.md) | :heavy_check_mark: | N/A | +| `objParam` | [operations.ObjParam](../../models/operations/objparam.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md b/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md index cad08fc62..4b5153273 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsCamelObjectResArgs](../../models/operations/formqueryparamscamelobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.FormQueryParamsCamelObjectArgs](../../models/operations/formqueryparamscamelobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/camelObj?item_count=10&obj_param=encoded_count%2C11%2Cencoded_term%2Cbar&search_term=foo | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md b/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md deleted file mode 100755 index 4b29bf886..000000000 --- a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# FormQueryParamsCamelObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `itemCount` | *string* | :heavy_check_mark: | N/A | 10 | -| `searchTerm` | *string* | :heavy_check_mark: | N/A | foo | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md b/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md index a9137b95d..5024384ce 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamscamelobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [FormQueryParamsCamelObjectRes](../../models/operations/formqueryparamscamelobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.FormQueryParamsCamelObjectRes](../../models/operations/formqueryparamscamelobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsmapresponse.md b/typescript-client-sdk/docs/models/operations/formqueryparamsmapresponse.md index c5b4fc70c..d0d98ac28 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsmapresponse.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsmapresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [FormQueryParamsMapRes](../../models/operations/formqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.FormQueryParamsMapRes](../../models/operations/formqueryparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsobjectargs.md b/typescript-client-sdk/docs/models/operations/formqueryparamsobjectargs.md new file mode 100755 index 000000000..a672921b8 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsobjectargs.md @@ -0,0 +1,28 @@ +# FormQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `any` | *string* | :heavy_check_mark: | N/A | any | +| `bigint` | *string* | :heavy_minus_sign: | N/A | 8821239038968084 | +| `bigintStr` | *string* | :heavy_minus_sign: | N/A | 9223372036854775808 | +| `bool` | *string* | :heavy_check_mark: | N/A | true | +| `boolOpt` | *string* | :heavy_minus_sign: | N/A | true | +| `date` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | +| `dateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | +| `decimal` | *string* | :heavy_minus_sign: | N/A | 3.141592653589793 | +| `decimalStr` | *string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | +| `enum` | *string* | :heavy_check_mark: | N/A | one | +| `float32` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `int` | *string* | :heavy_check_mark: | N/A | 1 | +| `int32` | *string* | :heavy_check_mark: | N/A | 1 | +| `int32Enum` | *string* | :heavy_check_mark: | N/A | 55 | +| `intEnum` | *string* | :heavy_check_mark: | N/A | 2 | +| `intOptNull` | *string* | :heavy_minus_sign: | N/A | | +| `num` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `numOptNull` | *string* | :heavy_minus_sign: | N/A | | +| `objParam` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `str` | *string* | :heavy_check_mark: | N/A | test | +| `strOpt` | *string* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsobjectres.md b/typescript-client-sdk/docs/models/operations/formqueryparamsobjectres.md index 542484f92..38c890b3b 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsobjectres.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsObjectResArgs](../../models/operations/formqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.FormQueryParamsObjectArgs](../../models/operations/formqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/obj?any=any&bigint=8821239038968084&bigintStr=9223372036854775808&bool=true&boolOpt=true&date=2020-01-01&dateTime=2020-01-01T00%3A00%3A00.000000001Z&decimal=3.141592653589793&decimalStr=3.14159265358979344719667586&enum=one&float32=1.1&int=1&int32=1&int32Enum=55&intEnum=2&num=1.1&objParam=any%2Cany%2Cbigint%2C8821239038968084%2CbigintStr%2C9223372036854775808%2Cbool%2Ctrue%2CboolOpt%2Ctrue%2Cdate%2C2020-01-01%2CdateTime%2C2020-01-01T00%3A00%3A00.000000001Z%2Cdecimal%2C3.141592653589793%2CdecimalStr%2C3.14159265358979344719667586%2Cenum%2Cone%2Cfloat32%2C1.1%2Cint%2C1%2Cint32%2C1%2Cint32Enum%2C55%2CintEnum%2C2%2Cnum%2C1.1%2Cstr%2Ctest%2CstrOpt%2CtestOptional&str=test&strOpt=testOptional | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md b/typescript-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md deleted file mode 100755 index f4dac1798..000000000 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsobjectresargs.md +++ /dev/null @@ -1,28 +0,0 @@ -# FormQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `any` | *string* | :heavy_check_mark: | N/A | any | -| `bigint` | *string* | :heavy_minus_sign: | N/A | 8821239038968084 | -| `bigintStr` | *string* | :heavy_minus_sign: | N/A | 9223372036854775808 | -| `bool` | *string* | :heavy_check_mark: | N/A | true | -| `boolOpt` | *string* | :heavy_minus_sign: | N/A | true | -| `date` | *string* | :heavy_check_mark: | N/A | 2020-01-01 | -| `dateTime` | *string* | :heavy_check_mark: | N/A | 2020-01-01T00:00:00.000000001Z | -| `decimal` | *string* | :heavy_minus_sign: | N/A | 3.141592653589793 | -| `decimalStr` | *string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `enum` | *string* | :heavy_check_mark: | N/A | one | -| `float32` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `int` | *string* | :heavy_check_mark: | N/A | 1 | -| `int32` | *string* | :heavy_check_mark: | N/A | 1 | -| `int32Enum` | *string* | :heavy_check_mark: | N/A | 55 | -| `intEnum` | *string* | :heavy_check_mark: | N/A | 2 | -| `intOptNull` | *string* | :heavy_minus_sign: | N/A | | -| `num` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `numOptNull` | *string* | :heavy_minus_sign: | N/A | | -| `objParam` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `str` | *string* | :heavy_check_mark: | N/A | test | -| `strOpt` | *string* | :heavy_minus_sign: | N/A | testOptional | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md b/typescript-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md index 6458c19eb..690740f66 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [FormQueryParamsObjectRes](../../models/operations/formqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.FormQueryParamsObjectRes](../../models/operations/formqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md b/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md new file mode 100755 index 000000000..7a7793a16 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveargs.md @@ -0,0 +1,11 @@ +# FormQueryParamsPrimitiveArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `boolParam` | *string* | :heavy_check_mark: | N/A | true | +| `intParam` | *string* | :heavy_check_mark: | N/A | 1 | +| `numParam` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `strParam` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md b/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md index e287284d8..43a9d40c3 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsPrimitiveResArgs](../../models/operations/formqueryparamsprimitiveresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.FormQueryParamsPrimitiveArgs](../../models/operations/formqueryparamsprimitiveargs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/primitive?boolParam=true&intParam=1&numParam=1.1&strParam=test | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md b/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md deleted file mode 100755 index b8e1f112b..000000000 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveresargs.md +++ /dev/null @@ -1,11 +0,0 @@ -# FormQueryParamsPrimitiveResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `boolParam` | *string* | :heavy_check_mark: | N/A | true | -| `intParam` | *string* | :heavy_check_mark: | N/A | 1 | -| `numParam` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `strParam` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md b/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md index 9cefeb89b..1bfcef42a 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsprimitiveresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [FormQueryParamsPrimitiveRes](../../models/operations/formqueryparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.FormQueryParamsPrimitiveRes](../../models/operations/formqueryparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md b/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md new file mode 100755 index 000000000..de488ab35 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectargs.md @@ -0,0 +1,12 @@ +# FormQueryParamsRefParamObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | +| `bool` | *string* | :heavy_check_mark: | N/A | true | +| `int` | *string* | :heavy_check_mark: | N/A | 1 | +| `num` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `refObjParam` | *string* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | +| `str` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md b/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md index 84ddae7b6..09bbcaffe 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [FormQueryParamsRefParamObjectResArgs](../../models/operations/formqueryparamsrefparamobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.FormQueryParamsRefParamObjectArgs](../../models/operations/formqueryparamsrefparamobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/form/refParamObject?bool=true&int=1&num=1.1&refObjParam=bool%2Ctrue%2Cint%2C1%2Cnum%2C1.1%2Cstr%2Ctest&str=test | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md b/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md deleted file mode 100755 index 3dd0abd6d..000000000 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresargs.md +++ /dev/null @@ -1,12 +0,0 @@ -# FormQueryParamsRefParamObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -| `bool` | *string* | :heavy_check_mark: | N/A | true | -| `int` | *string* | :heavy_check_mark: | N/A | 1 | -| `num` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `refObjParam` | *string* | :heavy_check_mark: | N/A | bool,true,int,1,num,1.1,str,test | -| `str` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md b/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md index e60fe78a0..680a17f12 100755 --- a/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md +++ b/typescript-client-sdk/docs/models/operations/formqueryparamsrefparamobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [FormQueryParamsRefParamObjectRes](../../models/operations/formqueryparamsrefparamobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.FormQueryParamsRefParamObjectRes](../../models/operations/formqueryparamsrefparamobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md b/typescript-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md deleted file mode 100755 index 23fc164b5..000000000 --- a/typescript-client-sdk/docs/models/operations/getglobalnameoverride200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# GetGlobalNameOverride200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md b/typescript-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md index fe02a921f..6212fca4c 100755 --- a/typescript-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md +++ b/typescript-client-sdk/docs/models/operations/getglobalnameoverrideresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `getGlobalNameOverride200ApplicationJSONObject` | [GetGlobalNameOverride200ApplicationJSON](../../models/operations/getglobalnameoverride200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.GetGlobalNameOverrideResponseBody](../../models/operations/getglobalnameoverrideresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md b/typescript-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md new file mode 100755 index 000000000..1439bd8d8 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/getglobalnameoverrideresponsebody.md @@ -0,0 +1,10 @@ +# GetGlobalNameOverrideResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/globalbearerauthresponse.md b/typescript-client-sdk/docs/models/operations/globalbearerauthresponse.md index c1c6cfa92..8e0cdbcd9 100755 --- a/typescript-client-sdk/docs/models/operations/globalbearerauthresponse.md +++ b/typescript-client-sdk/docs/models/operations/globalbearerauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [GlobalBearerAuthToken](../../models/operations/globalbearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [operations.GlobalBearerAuthToken](../../models/operations/globalbearerauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/globalpathparametergetresponse.md b/typescript-client-sdk/docs/models/operations/globalpathparametergetresponse.md index 59d4a9b2e..18ed426c0 100755 --- a/typescript-client-sdk/docs/models/operations/globalpathparametergetresponse.md +++ b/typescript-client-sdk/docs/models/operations/globalpathparametergetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [GlobalPathParameterGetRes](../../models/operations/globalpathparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.GlobalPathParameterGetRes](../../models/operations/globalpathparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/globalsqueryparametergetres.md b/typescript-client-sdk/docs/models/operations/globalsqueryparametergetres.md index 5c18e347b..785d72fd2 100755 --- a/typescript-client-sdk/docs/models/operations/globalsqueryparametergetres.md +++ b/typescript-client-sdk/docs/models/operations/globalsqueryparametergetres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `args` | [GlobalsQueryParameterGetResArgs](../../models/operations/globalsqueryparametergetresargs.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | +| `args` | [operations.Args](../../models/operations/args.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md b/typescript-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md deleted file mode 100755 index c484e5297..000000000 --- a/typescript-client-sdk/docs/models/operations/globalsqueryparametergetresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# GlobalsQueryParameterGetResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `globalQueryParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md b/typescript-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md index 758a659e2..c7b5a55f7 100755 --- a/typescript-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md +++ b/typescript-client-sdk/docs/models/operations/globalsqueryparametergetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [GlobalsQueryParameterGetRes](../../models/operations/globalsqueryparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.GlobalsQueryParameterGetRes](../../models/operations/globalsqueryparametergetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsarrayres.md b/typescript-client-sdk/docs/models/operations/headerparamsarrayres.md index a32eec5dd..7e6a8f1e2 100755 --- a/typescript-client-sdk/docs/models/operations/headerparamsarrayres.md +++ b/typescript-client-sdk/docs/models/operations/headerparamsarrayres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsArrayResHeaders](../../models/operations/headerparamsarrayresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | +| `headers` | [operations.Headers](../../models/operations/headers.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsarrayresheaders.md b/typescript-client-sdk/docs/models/operations/headerparamsarrayresheaders.md deleted file mode 100755 index 95cc40d13..000000000 --- a/typescript-client-sdk/docs/models/operations/headerparamsarrayresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# HeaderParamsArrayResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `xHeaderArray` | *string* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsarrayresponse.md b/typescript-client-sdk/docs/models/operations/headerparamsarrayresponse.md index 3e8149a33..4b4466e79 100755 --- a/typescript-client-sdk/docs/models/operations/headerparamsarrayresponse.md +++ b/typescript-client-sdk/docs/models/operations/headerparamsarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [HeaderParamsArrayRes](../../models/operations/headerparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.HeaderParamsArrayRes](../../models/operations/headerparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsmapheaders.md b/typescript-client-sdk/docs/models/operations/headerparamsmapheaders.md new file mode 100755 index 000000000..3d5fb718d --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/headerparamsmapheaders.md @@ -0,0 +1,9 @@ +# HeaderParamsMapHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | +| `xHeaderMap` | *string* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | +| `xHeaderMapExplode` | *string* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsmapres.md b/typescript-client-sdk/docs/models/operations/headerparamsmapres.md index 1547dba31..bd32f4b01 100755 --- a/typescript-client-sdk/docs/models/operations/headerparamsmapres.md +++ b/typescript-client-sdk/docs/models/operations/headerparamsmapres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsMapResHeaders](../../models/operations/headerparamsmapresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `headers` | [operations.HeaderParamsMapHeaders](../../models/operations/headerparamsmapheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsmapresheaders.md b/typescript-client-sdk/docs/models/operations/headerparamsmapresheaders.md deleted file mode 100755 index f70a33a78..000000000 --- a/typescript-client-sdk/docs/models/operations/headerparamsmapresheaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsMapResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- | -| `xHeaderMap` | *string* | :heavy_check_mark: | N/A | key1,value1,key2,value2 | -| `xHeaderMapExplode` | *string* | :heavy_check_mark: | N/A | test1=val1,test2=val2 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsmapresponse.md b/typescript-client-sdk/docs/models/operations/headerparamsmapresponse.md index a448e763a..fe71a385b 100755 --- a/typescript-client-sdk/docs/models/operations/headerparamsmapresponse.md +++ b/typescript-client-sdk/docs/models/operations/headerparamsmapresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [HeaderParamsMapRes](../../models/operations/headerparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.HeaderParamsMapRes](../../models/operations/headerparamsmapres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsobjectheaders.md b/typescript-client-sdk/docs/models/operations/headerparamsobjectheaders.md new file mode 100755 index 000000000..c53623380 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/headerparamsobjectheaders.md @@ -0,0 +1,9 @@ +# HeaderParamsObjectHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `xHeaderObj` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | +| `xHeaderObjExplode` | *string* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsobjectres.md b/typescript-client-sdk/docs/models/operations/headerparamsobjectres.md index c0406c35f..e9c879bae 100755 --- a/typescript-client-sdk/docs/models/operations/headerparamsobjectres.md +++ b/typescript-client-sdk/docs/models/operations/headerparamsobjectres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsObjectResHeaders](../../models/operations/headerparamsobjectresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `headers` | [operations.HeaderParamsObjectHeaders](../../models/operations/headerparamsobjectheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsobjectresheaders.md b/typescript-client-sdk/docs/models/operations/headerparamsobjectresheaders.md deleted file mode 100755 index b0f93a940..000000000 --- a/typescript-client-sdk/docs/models/operations/headerparamsobjectresheaders.md +++ /dev/null @@ -1,9 +0,0 @@ -# HeaderParamsObjectResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `xHeaderObj` | *string* | :heavy_check_mark: | N/A | any,any,bigint,8821239038968084,bigintStr,9223372036854775808,bool,true,boolOpt,true,date,2020-01-01,dateTime,2020-01-01T00:00:00.000000001Z,decimal,3.141592653589793,decimalStr,3.14159265358979344719667586,enum,one,float32,1.1,int,1,int32,1,int32Enum,55,intEnum,2,num,1.1,str,test,strOpt,testOptional | -| `xHeaderObjExplode` | *string* | :heavy_check_mark: | N/A | any=any,bigint=8821239038968084,bigintStr=9223372036854775808,bool=true,boolOpt=true,date=2020-01-01,dateTime=2020-01-01T00:00:00.000000001Z,decimal=3.141592653589793,decimalStr=3.14159265358979344719667586,enum=one,float32=1.1,int=1,int32=1,int32Enum=55,intEnum=2,num=1.1,str=test,strOpt=testOptional | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsobjectresponse.md b/typescript-client-sdk/docs/models/operations/headerparamsobjectresponse.md index 0a0018d9e..07330ad4e 100755 --- a/typescript-client-sdk/docs/models/operations/headerparamsobjectresponse.md +++ b/typescript-client-sdk/docs/models/operations/headerparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [HeaderParamsObjectRes](../../models/operations/headerparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.HeaderParamsObjectRes](../../models/operations/headerparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md b/typescript-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md new file mode 100755 index 000000000..66c1589a6 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/headerparamsprimitiveheaders.md @@ -0,0 +1,11 @@ +# HeaderParamsPrimitiveHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `xHeaderBoolean` | *string* | :heavy_check_mark: | N/A | true | +| `xHeaderInteger` | *string* | :heavy_check_mark: | N/A | 1 | +| `xHeaderNumber` | *string* | :heavy_check_mark: | N/A | 1.1 | +| `xHeaderString` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsprimitiveres.md b/typescript-client-sdk/docs/models/operations/headerparamsprimitiveres.md index 39ce8d8a4..b3eee037a 100755 --- a/typescript-client-sdk/docs/models/operations/headerparamsprimitiveres.md +++ b/typescript-client-sdk/docs/models/operations/headerparamsprimitiveres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `headers` | [HeaderParamsPrimitiveResHeaders](../../models/operations/headerparamsprimitiveresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `headers` | [operations.HeaderParamsPrimitiveHeaders](../../models/operations/headerparamsprimitiveheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md b/typescript-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md deleted file mode 100755 index e6129b100..000000000 --- a/typescript-client-sdk/docs/models/operations/headerparamsprimitiveresheaders.md +++ /dev/null @@ -1,11 +0,0 @@ -# HeaderParamsPrimitiveResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `xHeaderBoolean` | *string* | :heavy_check_mark: | N/A | true | -| `xHeaderInteger` | *string* | :heavy_check_mark: | N/A | 1 | -| `xHeaderNumber` | *string* | :heavy_check_mark: | N/A | 1.1 | -| `xHeaderString` | *string* | :heavy_check_mark: | N/A | test | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md b/typescript-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md index 54b0f9101..e4622e480 100755 --- a/typescript-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md +++ b/typescript-client-sdk/docs/models/operations/headerparamsprimitiveresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [HeaderParamsPrimitiveRes](../../models/operations/headerparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.HeaderParamsPrimitiveRes](../../models/operations/headerparamsprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/headers.md b/typescript-client-sdk/docs/models/operations/headers.md new file mode 100755 index 000000000..2b5393e85 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/headers.md @@ -0,0 +1,8 @@ +# Headers + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `xHeaderArray` | *string* | :heavy_check_mark: | N/A | test1,test2 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md b/typescript-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md deleted file mode 100755 index 7fc7f78aa..000000000 --- a/typescript-client-sdk/docs/models/operations/ignoredgenerationget200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# IgnoredGenerationGet200ApplicationJSON - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md b/typescript-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md index 5bbc0a76b..28903f9ad 100755 --- a/typescript-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md +++ b/typescript-client-sdk/docs/models/operations/ignoredgenerationgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `ignoredGenerationGet200ApplicationJSONObject` | [IgnoredGenerationGet200ApplicationJSON](../../models/operations/ignoredgenerationget200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.IgnoredGenerationGetResponseBody](../../models/operations/ignoredgenerationgetresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md b/typescript-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md new file mode 100755 index 000000000..58b46cd25 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/ignoredgenerationgetresponsebody.md @@ -0,0 +1,10 @@ +# IgnoredGenerationGetResponseBody + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/ignorespostapplicationjson.md b/typescript-client-sdk/docs/models/operations/ignorespostapplicationjson.md deleted file mode 100755 index c48b23935..000000000 --- a/typescript-client-sdk/docs/models/operations/ignorespostapplicationjson.md +++ /dev/null @@ -1,9 +0,0 @@ -# IgnoresPostApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `callbackUrl` | *string* | :heavy_minus_sign: | N/A | -| `testProp` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/ignorespostrequest.md b/typescript-client-sdk/docs/models/operations/ignorespostrequest.md index b0de45715..14e2a2235 100755 --- a/typescript-client-sdk/docs/models/operations/ignorespostrequest.md +++ b/typescript-client-sdk/docs/models/operations/ignorespostrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `requestBody` | [IgnoresPostApplicationJSON](../../models/operations/ignorespostapplicationjson.md) | :heavy_check_mark: | N/A | -| `testParam` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `requestBody` | [operations.IgnoresPostRequestBody](../../models/operations/ignorespostrequestbody.md) | :heavy_check_mark: | N/A | +| `testParam` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/ignorespostrequestbody.md b/typescript-client-sdk/docs/models/operations/ignorespostrequestbody.md new file mode 100755 index 000000000..62949fdd5 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/ignorespostrequestbody.md @@ -0,0 +1,9 @@ +# IgnoresPostRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `callbackUrl` | *string* | :heavy_minus_sign: | N/A | +| `testProp` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md b/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md index 1f0673fec..c7565b3ab 100755 --- a/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md +++ b/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `requestBody` | [InlineBodyAndParamConflictRequestBody](../../models/operations/inlinebodyandparamconflictrequestbody.md) | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [operations.InlineBodyAndParamConflictRequestBody](../../models/operations/inlinebodyandparamconflictrequestbody.md) | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md b/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md index 83632eede..c768e81c8 100755 --- a/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md +++ b/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `args` | Record | :heavy_check_mark: | N/A | -| `json` | [InlineBodyAndParamConflictResJson](../../models/operations/inlinebodyandparamconflictresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | +| `args` | Record | :heavy_check_mark: | N/A | +| `json` | [operations.Json](../../models/operations/json.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md b/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md deleted file mode 100755 index 584640a2f..000000000 --- a/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictresjson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamConflictResJson - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md b/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md index 25992befc..21d1b9de7 100755 --- a/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md +++ b/typescript-client-sdk/docs/models/operations/inlinebodyandparamconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [InlineBodyAndParamConflictRes](../../models/operations/inlinebodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.InlineBodyAndParamConflictRes](../../models/operations/inlinebodyandparamconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md b/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md new file mode 100755 index 000000000..04449ee40 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictjson.md @@ -0,0 +1,8 @@ +# InlineBodyAndParamNoConflictJson + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bodyStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md b/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md index caed63936..b3c2b40a5 100755 --- a/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md +++ b/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [InlineBodyAndParamNoConflictRequestBody](../../models/operations/inlinebodyandparamnoconflictrequestbody.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `requestBody` | [operations.InlineBodyAndParamNoConflictRequestBody](../../models/operations/inlinebodyandparamnoconflictrequestbody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md b/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md index a4737ad5d..7d5f851a5 100755 --- a/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md +++ b/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `args` | Record | :heavy_check_mark: | N/A | -| `json` | [InlineBodyAndParamNoConflictResJson](../../models/operations/inlinebodyandparamnoconflictresjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `args` | Record | :heavy_check_mark: | N/A | +| `json` | [operations.InlineBodyAndParamNoConflictJson](../../models/operations/inlinebodyandparamnoconflictjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md b/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md deleted file mode 100755 index 3b197e2bc..000000000 --- a/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresjson.md +++ /dev/null @@ -1,8 +0,0 @@ -# InlineBodyAndParamNoConflictResJson - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bodyStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md b/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md index 881d46ffc..608598a04 100755 --- a/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md +++ b/typescript-client-sdk/docs/models/operations/inlinebodyandparamnoconflictresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [InlineBodyAndParamNoConflictRes](../../models/operations/inlinebodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.InlineBodyAndParamNoConflictRes](../../models/operations/inlinebodyandparamnoconflictres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/json.md b/typescript-client-sdk/docs/models/operations/json.md new file mode 100755 index 000000000..84c30e36a --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/json.md @@ -0,0 +1,8 @@ +# Json + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md b/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md new file mode 100755 index 000000000..d2a02e286 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectargs.md @@ -0,0 +1,9 @@ +# JsonQueryParamsObjectArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `deepObjParam` | *string* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | +| `simpleObjParam` | *string* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md b/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md index 79bb192aa..455f9e356 100755 --- a/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md +++ b/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `args` | [JsonQueryParamsObjectResArgs](../../models/operations/jsonqueryparamsobjectresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.JsonQueryParamsObjectArgs](../../models/operations/jsonqueryparamsobjectargs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/json/obj?deepObjParam={"any"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"arr"%3A[{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}]%2C"bool"%3Atrue%2C"int"%3A1%2C"map"%3A{"key"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"key2"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}}%2C"num"%3A1.1%2C"obj"%3A{"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"}%2C"str"%3A"test"}&simpleObjParam={"any"%3A"any"%2C"bigint"%3A8821239038968084%2C"bigintStr"%3A"9223372036854775808"%2C"bool"%3Atrue%2C"boolOpt"%3Atrue%2C"date"%3A"2020-01-01"%2C"dateTime"%3A"2020-01-01T00%3A00%3A00.000000001Z"%2C"decimal"%3A3.141592653589793%2C"decimalStr"%3A"3.14159265358979344719667586"%2C"enum"%3A"one"%2C"float32"%3A1.1%2C"int"%3A1%2C"int32"%3A1%2C"int32Enum"%3A55%2C"intEnum"%3A2%2C"num"%3A1.1%2C"str"%3A"test"%2C"strOpt"%3A"testOptional"} | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md b/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md deleted file mode 100755 index 874d258ac..000000000 --- a/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# JsonQueryParamsObjectResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `deepObjParam` | *string* | :heavy_check_mark: | N/A | {"any":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"arr":[{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}],"bool":true,"int":1,"map":{"key":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"key2":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"}},"num":1.1,"obj":{"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"},"str":"test"} | -| `simpleObjParam` | *string* | :heavy_check_mark: | N/A | {"any":"any","bigint":8821239038968084,"bigintStr":"9223372036854775808","bool":true,"boolOpt":true,"date":"2020-01-01","dateTime":"2020-01-01T00:00:00.000000001Z","decimal":3.141592653589793,"decimalStr":"3.14159265358979344719667586","enum":"one","float32":1.1,"int":1,"int32":1,"int32Enum":55,"intEnum":2,"num":1.1,"str":"test","strOpt":"testOptional"} | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md b/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md index 1a510cdd3..51d10ff07 100755 --- a/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md +++ b/typescript-client-sdk/docs/models/operations/jsonqueryparamsobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [JsonQueryParamsObjectRes](../../models/operations/jsonqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.JsonQueryParamsObjectRes](../../models/operations/jsonqueryparamsobjectres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md b/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md new file mode 100755 index 000000000..ff528ca7a --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseargs.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md b/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md new file mode 100755 index 000000000..d215fe22f --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseheaders.md @@ -0,0 +1,8 @@ +# MixedParametersCamelCaseHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `headerParam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md b/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md index 7f49f4805..4bb5ab3a4 100755 --- a/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md +++ b/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseres.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `args` | [MixedParametersCamelCaseResArgs](../../models/operations/mixedparameterscamelcaseresargs.md) | :heavy_check_mark: | N/A | | -| `headers` | [MixedParametersCamelCaseResHeaders](../../models/operations/mixedparameterscamelcaseresheaders.md) | :heavy_check_mark: | N/A | | -| `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `args` | [operations.MixedParametersCamelCaseArgs](../../models/operations/mixedparameterscamelcaseargs.md) | :heavy_check_mark: | N/A | | +| `headers` | [operations.MixedParametersCamelCaseHeaders](../../models/operations/mixedparameterscamelcaseheaders.md) | :heavy_check_mark: | N/A | | +| `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue/camelcase?query_string_param=queryValue | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md b/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md deleted file mode 100755 index 9ebad8b77..000000000 --- a/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md b/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md deleted file mode 100755 index 59bf6053a..000000000 --- a/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersCamelCaseResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `headerParam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md b/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md index b9062d243..628f51e6c 100755 --- a/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md +++ b/typescript-client-sdk/docs/models/operations/mixedparameterscamelcaseresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [MixedParametersCamelCaseRes](../../models/operations/mixedparameterscamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.MixedParametersCamelCaseRes](../../models/operations/mixedparameterscamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md b/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md new file mode 100755 index 000000000..4a9edeed2 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesargs.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md b/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md new file mode 100755 index 000000000..0f60fc497 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesheaders.md @@ -0,0 +1,8 @@ +# MixedParametersPrimitivesHeaders + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `headerparam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesres.md b/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesres.md index ca9816ec5..413a2a80c 100755 --- a/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesres.md +++ b/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesres.md @@ -5,8 +5,8 @@ OK ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `args` | [MixedParametersPrimitivesResArgs](../../models/operations/mixedparametersprimitivesresargs.md) | :heavy_check_mark: | N/A | | -| `headers` | [MixedParametersPrimitivesResHeaders](../../models/operations/mixedparametersprimitivesresheaders.md) | :heavy_check_mark: | N/A | | -| `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `args` | [operations.MixedParametersPrimitivesArgs](../../models/operations/mixedparametersprimitivesargs.md) | :heavy_check_mark: | N/A | | +| `headers` | [operations.MixedParametersPrimitivesHeaders](../../models/operations/mixedparametersprimitivesheaders.md) | :heavy_check_mark: | N/A | | +| `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/mixedParams/path/pathValue?queryStringParam=queryValue | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md b/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md deleted file mode 100755 index 9af9bd8e4..000000000 --- a/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *string* | :heavy_check_mark: | N/A | queryValue | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md b/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md deleted file mode 100755 index 4fbc527d4..000000000 --- a/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# MixedParametersPrimitivesResHeaders - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `headerparam` | *string* | :heavy_check_mark: | N/A | headerValue | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md b/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md index 7ab0bb9a3..56b1f1e79 100755 --- a/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md +++ b/typescript-client-sdk/docs/models/operations/mixedparametersprimitivesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [MixedParametersPrimitivesRes](../../models/operations/mixedparametersprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.MixedParametersPrimitivesRes](../../models/operations/mixedparametersprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedqueryparamsresponse.md b/typescript-client-sdk/docs/models/operations/mixedqueryparamsresponse.md index d1c722d0b..feefc028b 100755 --- a/typescript-client-sdk/docs/models/operations/mixedqueryparamsresponse.md +++ b/typescript-client-sdk/docs/models/operations/mixedqueryparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [MixedQueryParamsRes](../../models/operations/mixedqueryparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.MixedQueryParamsRes](../../models/operations/mixedqueryparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md b/typescript-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md index 751ebbe1a..5f3b67d53 100755 --- a/typescript-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/mixedtypeoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [MixedTypeOneOfPostRes](../../models/operations/mixedtypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.MixedTypeOneOfPostRes](../../models/operations/mixedtypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md b/typescript-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md index f7d1fcc3e..77bae69ae 100755 --- a/typescript-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md +++ b/typescript-client-sdk/docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | -| `option1` | [MultipleOptionsWithMixedSchemesAuthSecurityOption1](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | -| `option2` | [MultipleOptionsWithMixedSchemesAuthSecurityOption2](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | +| `option1` | [operations.MultipleOptionsWithMixedSchemesAuthSecurityOption1](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | +| `option2` | [operations.MultipleOptionsWithMixedSchemesAuthSecurityOption2](../../models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md b/typescript-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md index 411359b69..df4f73771 100755 --- a/typescript-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md +++ b/typescript-client-sdk/docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | -| `option1` | [MultipleOptionsWithSimpleSchemesAuthSecurityOption1](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | -| `option2` | [MultipleOptionsWithSimpleSchemesAuthSecurityOption2](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | +| `option1` | [operations.MultipleOptionsWithSimpleSchemesAuthSecurityOption1](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md) | :heavy_minus_sign: | N/A | +| `option2` | [operations.MultipleOptionsWithSimpleSchemesAuthSecurityOption2](../../models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md b/typescript-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md deleted file mode 100755 index 9056f5918..000000000 --- a/typescript-client-sdk/docs/models/operations/nameoverridegetenumnameoverride.md +++ /dev/null @@ -1,12 +0,0 @@ -# NameOverrideGetEnumNameOverride - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `Value1` | value1 | -| `Value2` | value2 | -| `Value3` | value3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md b/typescript-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md new file mode 100755 index 000000000..38a4d402b --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/nameoverridegetoverriddenresponse.md @@ -0,0 +1,10 @@ +# NameOverrideGetOverriddenResponse + +A successful response that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `json` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nameoverridegetrequest.md b/typescript-client-sdk/docs/models/operations/nameoverridegetrequest.md index 6622768b6..c3455ddec 100755 --- a/typescript-client-sdk/docs/models/operations/nameoverridegetrequest.md +++ b/typescript-client-sdk/docs/models/operations/nameoverridegetrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | Example | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `testEnumQueryParam` | [NameOverrideGetEnumNameOverride](../../models/operations/nameoverridegetenumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | -| `testQueryParam` | *string* | :heavy_check_mark: | N/A | example | \ No newline at end of file +| Field | Type | Required | Description | Example | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `testEnumQueryParam` | [operations.EnumNameOverride](../../models/operations/enumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | +| `testQueryParam` | *string* | :heavy_check_mark: | N/A | example | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nameoverridegetresponse.md b/typescript-client-sdk/docs/models/operations/nameoverridegetresponse.md index 240076157..0563a0a15 100755 --- a/typescript-client-sdk/docs/models/operations/nameoverridegetresponse.md +++ b/typescript-client-sdk/docs/models/operations/nameoverridegetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `overriddenResponse` | [OverriddenResponse](../../models/operations/overriddenresponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `overriddenResponse` | [operations.NameOverrideGetOverriddenResponse](../../models/operations/nameoverridegetoverriddenresponse.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullableobjectpostresponse.md b/typescript-client-sdk/docs/models/operations/nullableobjectpostresponse.md index a8e0cec5a..0be5b7075 100755 --- a/typescript-client-sdk/docs/models/operations/nullableobjectpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/nullableobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [NullableObjectPostRes](../../models/operations/nullableobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.NullableObjectPostRes](../../models/operations/nullableobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md b/typescript-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md index b1f50926d..eb1e50359 100755 --- a/typescript-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/nullableoneofrefinobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [NullableOneOfRefInObjectPostRes](../../models/operations/nullableoneofrefinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.NullableOneOfRefInObjectPostRes](../../models/operations/nullableoneofrefinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md b/typescript-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md index b720850b5..35219fe83 100755 --- a/typescript-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md +++ b/typescript-client-sdk/docs/models/operations/nullableoneofschemapostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [NullableOneOfSchemaPostRes](../../models/operations/nullableoneofschemapostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.NullableOneOfSchemaPostRes](../../models/operations/nullableoneofschemapostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md b/typescript-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md index b12b521aa..8c454cfd8 100755 --- a/typescript-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/nullableoneoftypeinobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [NullableOneOfTypeInObjectPostRes](../../models/operations/nullableoneoftypeinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.NullableOneOfTypeInObjectPostRes](../../models/operations/nullableoneoftypeinobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullableoptionalobj.md b/typescript-client-sdk/docs/models/operations/nullableoptionalobj.md new file mode 100755 index 000000000..a4e5f26bb --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/nullableoptionalobj.md @@ -0,0 +1,7 @@ +# NullableOptionalObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md b/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md index 0922494ad..6c5a7a53e 100755 --- a/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md +++ b/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `nullableOptionalObj` | [NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj](../../models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md) | :heavy_minus_sign: | N/A | -| `nullableRequiredObj` | [NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj](../../models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md) | :heavy_check_mark: | N/A | -| `requiredObj` | [NullableRequiredEmptyObjectPostRequestBodyRequiredObj](../../models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | +| `nullableOptionalObj` | [operations.NullableOptionalObj](../../models/operations/nullableoptionalobj.md) | :heavy_minus_sign: | N/A | +| `nullableRequiredObj` | [operations.NullableRequiredObj](../../models/operations/nullablerequiredobj.md) | :heavy_check_mark: | N/A | +| `requiredObj` | [operations.RequiredObj](../../models/operations/requiredobj.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md b/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md deleted file mode 100755 index 4bd625eb3..000000000 --- a/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md b/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md deleted file mode 100755 index f5a542eea..000000000 --- a/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md b/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md deleted file mode 100755 index 20a807232..000000000 --- a/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md +++ /dev/null @@ -1,7 +0,0 @@ -# NullableRequiredEmptyObjectPostRequestBodyRequiredObj - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md b/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md index be5684e93..5336b651f 100755 --- a/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/nullablerequiredemptyobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullableRequiredEmptyObjectPost200ApplicationJSONString` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullablerequiredenum.md b/typescript-client-sdk/docs/models/operations/nullablerequiredenum.md new file mode 100755 index 000000000..28484cb2b --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/nullablerequiredenum.md @@ -0,0 +1,9 @@ +# NullableRequiredEnum + + +## Values + +| Name | Value | +| -------- | -------- | +| `First` | first | +| `Second` | second | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullablerequiredobj.md b/typescript-client-sdk/docs/models/operations/nullablerequiredobj.md new file mode 100755 index 000000000..b1e3ab8c2 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/nullablerequiredobj.md @@ -0,0 +1,7 @@ +# NullableRequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md b/typescript-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md index 149b78216..3dcbc16e1 100755 --- a/typescript-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md +++ b/typescript-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbody.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -| `nullableOptionalInt` | *number* | :heavy_minus_sign: | N/A | -| `nullableRequiredArray` | *number*[] | :heavy_check_mark: | N/A | -| `nullableRequiredEnum` | [NullableRequiredPropertyPostRequestBodyNullableRequiredEnum](../../models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md) | :heavy_check_mark: | N/A | -| `nullableRequiredInt` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `nullableOptionalInt` | *number* | :heavy_minus_sign: | N/A | +| `nullableRequiredArray` | *number*[] | :heavy_check_mark: | N/A | +| `nullableRequiredEnum` | [operations.NullableRequiredEnum](../../models/operations/nullablerequiredenum.md) | :heavy_check_mark: | N/A | +| `nullableRequiredInt` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md b/typescript-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md deleted file mode 100755 index 318a96e26..000000000 --- a/typescript-client-sdk/docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md +++ /dev/null @@ -1,9 +0,0 @@ -# NullableRequiredPropertyPostRequestBodyNullableRequiredEnum - - -## Values - -| Name | Value | -| -------- | -------- | -| `First` | first | -| `Second` | second | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md b/typescript-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md index 6e496e944..6b5a79a20 100755 --- a/typescript-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md +++ b/typescript-client-sdk/docs/models/operations/nullablerequiredpropertypostresponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullableRequiredPropertyPost200ApplicationJSONString` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md b/typescript-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md index 1878e38ab..bf870c4ab 100755 --- a/typescript-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/nullablerequiredsharedobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `nullableRequiredSharedObjectPost200ApplicationJSONString` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | *string* | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md b/typescript-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md index 40187efc0..7eaeb258d 100755 --- a/typescript-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/nullabletypedobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [NullableTypedObjectPostRes](../../models/operations/nullabletypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.NullableTypedObjectPostRes](../../models/operations/nullabletypedobjectpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/oauth2authresponse.md b/typescript-client-sdk/docs/models/operations/oauth2authresponse.md index 66fcfea29..bea7f1ae0 100755 --- a/typescript-client-sdk/docs/models/operations/oauth2authresponse.md +++ b/typescript-client-sdk/docs/models/operations/oauth2authresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [Oauth2AuthToken](../../models/operations/oauth2authtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [operations.Oauth2AuthToken](../../models/operations/oauth2authtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/oauth2overrideresponse.md b/typescript-client-sdk/docs/models/operations/oauth2overrideresponse.md index dffdf9214..5ec0f74ea 100755 --- a/typescript-client-sdk/docs/models/operations/oauth2overrideresponse.md +++ b/typescript-client-sdk/docs/models/operations/oauth2overrideresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [Oauth2OverrideToken](../../models/operations/oauth2overridetoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [operations.Oauth2OverrideToken](../../models/operations/oauth2overridetoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/obj.md b/typescript-client-sdk/docs/models/operations/obj.md new file mode 100755 index 000000000..ece03b5e5 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/obj.md @@ -0,0 +1,10 @@ +# Obj + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *boolean* | :heavy_check_mark: | N/A | +| `num` | *number* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/objarrparam.md b/typescript-client-sdk/docs/models/operations/objarrparam.md new file mode 100755 index 000000000..370f1e9a9 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/objarrparam.md @@ -0,0 +1,8 @@ +# ObjArrParam + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | *string*[] | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/objparam.md b/typescript-client-sdk/docs/models/operations/objparam.md new file mode 100755 index 000000000..c02588fb9 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/objparam.md @@ -0,0 +1,9 @@ +# ObjParam + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `encodedCount` | *string* | :heavy_minus_sign: | N/A | 11 | +| `encodedTerm` | *string* | :heavy_minus_sign: | N/A | bar | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/objparamexploded.md b/typescript-client-sdk/docs/models/operations/objparamexploded.md new file mode 100755 index 000000000..726a7d37d --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/objparamexploded.md @@ -0,0 +1,9 @@ +# ObjParamExploded + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `itemCount` | *string* | :heavy_minus_sign: | N/A | 10 | +| `searchTerm` | *string* | :heavy_minus_sign: | N/A | foo | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/openidconnectauthresponse.md b/typescript-client-sdk/docs/models/operations/openidconnectauthresponse.md index bef80f046..8f987cf10 100755 --- a/typescript-client-sdk/docs/models/operations/openidconnectauthresponse.md +++ b/typescript-client-sdk/docs/models/operations/openidconnectauthresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `token` | [OpenIdConnectAuthToken](../../models/operations/openidconnectauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `token` | [operations.OpenIdConnectAuthToken](../../models/operations/openidconnectauthtoken.md) | :heavy_minus_sign: | Successful authentication. | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/optenumparameter.md b/typescript-client-sdk/docs/models/operations/optenumparameter.md new file mode 100755 index 000000000..48e54e2a4 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/optenumparameter.md @@ -0,0 +1,12 @@ +# OptEnumParameter + +An enum type + + +## Values + +| Name | Value | +| -------- | -------- | +| `Value1` | value1 | +| `Value2` | value2 | +| `Value3` | value3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/overriddenresponse.md b/typescript-client-sdk/docs/models/operations/overriddenresponse.md deleted file mode 100755 index 782f2767e..000000000 --- a/typescript-client-sdk/docs/models/operations/overriddenresponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# OverriddenResponse - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/paginationcursorbodyresponse.md b/typescript-client-sdk/docs/models/operations/paginationcursorbodyresponse.md index 01c45136a..ab293b60e 100755 --- a/typescript-client-sdk/docs/models/operations/paginationcursorbodyresponse.md +++ b/typescript-client-sdk/docs/models/operations/paginationcursorbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [PaginationCursorBodyRes](../../models/operations/paginationcursorbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.PaginationCursorBodyRes](../../models/operations/paginationcursorbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/paginationcursorparamsresponse.md b/typescript-client-sdk/docs/models/operations/paginationcursorparamsresponse.md index 81d2d5492..a6c0b38f0 100755 --- a/typescript-client-sdk/docs/models/operations/paginationcursorparamsresponse.md +++ b/typescript-client-sdk/docs/models/operations/paginationcursorparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [PaginationCursorParamsRes](../../models/operations/paginationcursorparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.PaginationCursorParamsRes](../../models/operations/paginationcursorparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md b/typescript-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md index f4ddd76f8..e45e4b1bb 100755 --- a/typescript-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md +++ b/typescript-client-sdk/docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [PaginationLimitOffsetOffsetBodyRes](../../models/operations/paginationlimitoffsetoffsetbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.PaginationLimitOffsetOffsetBodyRes](../../models/operations/paginationlimitoffsetoffsetbodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md b/typescript-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md index 655454a21..a2a19d25f 100755 --- a/typescript-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md +++ b/typescript-client-sdk/docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [PaginationLimitOffsetOffsetParamsRes](../../models/operations/paginationlimitoffsetoffsetparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.PaginationLimitOffsetOffsetParamsRes](../../models/operations/paginationlimitoffsetoffsetparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md b/typescript-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md index 29d0c2b68..b02d6366f 100755 --- a/typescript-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md +++ b/typescript-client-sdk/docs/models/operations/paginationlimitoffsetpagebodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [PaginationLimitOffsetPageBodyRes](../../models/operations/paginationlimitoffsetpagebodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.PaginationLimitOffsetPageBodyRes](../../models/operations/paginationlimitoffsetpagebodyres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md b/typescript-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md index 847673c09..f8ad37c39 100755 --- a/typescript-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md +++ b/typescript-client-sdk/docs/models/operations/paginationlimitoffsetpageparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [PaginationLimitOffsetPageParamsRes](../../models/operations/paginationlimitoffsetpageparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.PaginationLimitOffsetPageParamsRes](../../models/operations/paginationlimitoffsetpageparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/pathparameterjsonresponse.md b/typescript-client-sdk/docs/models/operations/pathparameterjsonresponse.md index ee7f58c2d..4c4c14775 100755 --- a/typescript-client-sdk/docs/models/operations/pathparameterjsonresponse.md +++ b/typescript-client-sdk/docs/models/operations/pathparameterjsonresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [PathParameterJsonRes](../../models/operations/pathparameterjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.PathParameterJsonRes](../../models/operations/pathparameterjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md b/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md new file mode 100755 index 000000000..7f962c15a --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayargs.md @@ -0,0 +1,9 @@ +# PipeDelimitedQueryParamsArrayArgs + + +## Fields + +| Field | Type | Required | Description | Example | +| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | +| `arrParam` | *string* | :heavy_check_mark: | N/A | test\|test2 | +| `arrParamExploded` | *string*[] | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md b/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md index 31a18bb0f..3ff76b912 100755 --- a/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md +++ b/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayres.md @@ -7,5 +7,5 @@ OK | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `args` | [PipeDelimitedQueryParamsArrayResArgs](../../models/operations/pipedelimitedqueryparamsarrayresargs.md) | :heavy_check_mark: | N/A | | +| `args` | [operations.PipeDelimitedQueryParamsArrayArgs](../../models/operations/pipedelimitedqueryparamsarrayargs.md) | :heavy_check_mark: | N/A | | | `url` | *string* | :heavy_check_mark: | N/A | http://localhost:35123/anything/queryParams/pipe/array?arrParam=test\|test2&arrParamExploded=1&arrParamExploded=2&mapParam=key1\|val1\|key2\|val2&objParam=any\|any\|bigint\|8821239038968084\|bigintStr\|9223372036854775808\|bool\|true\|boolOpt\|true\|date\|2020-01-01\|dateTime\|2020-01-01T00%3A00%3A00.000000001Z\|decimal\|3.141592653589793\|decimalStr\|3.14159265358979344719667586\|enum\|one\|float32\|1.1\|int\|1\|int32\|1\|int32Enum\|55\|intEnum\|2\|num\|1.1\|str\|test\|strOpt\|testOptional | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md b/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md deleted file mode 100755 index fcf5e9bd3..000000000 --- a/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresargs.md +++ /dev/null @@ -1,9 +0,0 @@ -# PipeDelimitedQueryParamsArrayResArgs - - -## Fields - -| Field | Type | Required | Description | Example | -| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | -| `arrParam` | *string* | :heavy_check_mark: | N/A | test\|test2 | -| `arrParamExploded` | *string*[] | :heavy_check_mark: | N/A | | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md b/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md index ca56cd080..c3e0efe9e 100755 --- a/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md +++ b/typescript-client-sdk/docs/models/operations/pipedelimitedqueryparamsarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [PipeDelimitedQueryParamsArrayRes](../../models/operations/pipedelimitedqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.PipeDelimitedQueryParamsArrayRes](../../models/operations/pipedelimitedqueryparamsarrayres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md b/typescript-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md index debb9a55a..6fa94432c 100755 --- a/typescript-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/primitivetypeoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [PrimitiveTypeOneOfPostRes](../../models/operations/primitivetypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.PrimitiveTypeOneOfPostRes](../../models/operations/primitivetypeoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md b/typescript-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md deleted file mode 100755 index 273a7bc4f..000000000 --- a/typescript-client-sdk/docs/models/operations/putanythingignoredgeneration200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# PutAnythingIgnoredGeneration200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md b/typescript-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md index d68786ac1..6c52dd04a 100755 --- a/typescript-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md +++ b/typescript-client-sdk/docs/models/operations/putanythingignoredgenerationresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `putAnythingIgnoredGeneration200ApplicationJSONObject` | [PutAnythingIgnoredGeneration200ApplicationJSON](../../models/operations/putanythingignoredgeneration200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.PutAnythingIgnoredGenerationResponseBody](../../models/operations/putanythingignoredgenerationresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md b/typescript-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md new file mode 100755 index 000000000..b39a58f3e --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/putanythingignoredgenerationresponsebody.md @@ -0,0 +1,10 @@ +# PutAnythingIgnoredGenerationResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md index dd71a024d..1a8dc8eaf 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarraycamelcaseresponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `simpleObjectCamelCases` | [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)[] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)[] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md index b79a6c8f3..d0a18677b 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarraycamelcaseresponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)[][] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)[][] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md index 35f92cd3a..7dfbc2242 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitiveresponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | *string*[][] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *string*[][] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md index d1f5868fc..ec3092086 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofarrayresponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `arrs` | [shared.SimpleObject](../../models/shared/simpleobject.md)[][] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [shared.SimpleObject](../../models/shared/simpleobject.md)[][] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md index 7c2d245a1..c5fc6e783 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapcamelcaseresponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `maps` | Record[] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | Record[] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md index e0ddfc001..8a1a719d4 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofmapresponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `maps` | Record[] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | Record[] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md index 14ddbafbe..b9c9710ea 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayofprimitiveresponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `strings` | *string*[] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | *string*[] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md index fc44d0cdc..a63935f43 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonarrayresponse.md @@ -8,4 +8,4 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `simpleObjects` | [shared.SimpleObject](../../models/shared/simpleobject.md)[] | :heavy_minus_sign: | OK | \ No newline at end of file +| `res` | [shared.SimpleObject](../../models/shared/simpleobject.md)[] | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md index ef45766ac..9bfff5104 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepcamelcaseresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostApplicationJsonDeepCamelCaseRes](../../models/operations/requestbodypostapplicationjsondeepcamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostApplicationJsonDeepCamelCaseRes](../../models/operations/requestbodypostapplicationjsondeepcamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md index 7ad86ee86..8bf033eaa 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsondeepresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostApplicationJsonDeepRes](../../models/operations/requestbodypostapplicationjsondeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostApplicationJsonDeepRes](../../models/operations/requestbodypostapplicationjsondeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md index 5bada77bc..00a3d3e00 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonmultiplejsonfilteredresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostApplicationJsonMultipleJsonFilteredRes](../../models/operations/requestbodypostapplicationjsonmultiplejsonfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostApplicationJsonMultipleJsonFilteredRes](../../models/operations/requestbodypostapplicationjsonmultiplejsonfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md index 3149305ce..89d7c8d96 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostApplicationJsonSimpleCamelCaseRes](../../models/operations/requestbodypostapplicationjsonsimplecamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostApplicationJsonSimpleCamelCaseRes](../../models/operations/requestbodypostapplicationjsonsimplecamelcaseres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md index 7d6a54815..943401254 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostApplicationJsonSimpleRes](../../models/operations/requestbodypostapplicationjsonsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostApplicationJsonSimpleRes](../../models/operations/requestbodypostapplicationjsonsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md deleted file mode 100755 index 3c3cd6d5f..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostComplexNumberTypes200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | -| `json` | [shared.ComplexNumberTypes](../../models/shared/complexnumbertypes.md) | :heavy_check_mark: | N/A | -| `url` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md index 1d4d91968..bce88af46 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostComplexNumberTypes200ApplicationJSONObject` | [RequestBodyPostComplexNumberTypes200ApplicationJSON](../../models/operations/requestbodypostcomplexnumbertypes200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostComplexNumberTypesResponseBody](../../models/operations/requestbodypostcomplexnumbertypesresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md new file mode 100755 index 000000000..5490922ff --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostComplexNumberTypesResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | +| `json` | [shared.ComplexNumberTypes](../../models/shared/complexnumbertypes.md) | :heavy_check_mark: | N/A | +| `url` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md deleted file mode 100755 index ba33a2549..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostDefaultsAndConsts200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -| `json` | [shared.DefaultsAndConstsOutput](../../models/shared/defaultsandconstsoutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md index 4cb06f4f6..3bad410b4 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostDefaultsAndConsts200ApplicationJSONObject` | [RequestBodyPostDefaultsAndConsts200ApplicationJSON](../../models/operations/requestbodypostdefaultsandconsts200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostDefaultsAndConstsResponseBody](../../models/operations/requestbodypostdefaultsandconstsresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md new file mode 100755 index 000000000..2955038a3 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostDefaultsAndConstsResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | +| `json` | [shared.DefaultsAndConstsOutput](../../models/shared/defaultsandconstsoutput.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md deleted file mode 100755 index f62b97401..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `empty` | [RequestBodyPostEmptyObject200ApplicationJSONEmpty](../../models/operations/requestbodypostemptyobject200applicationjsonempty.md) | :heavy_minus_sign: | N/A | -| `emptyRespWithEmptyProperies` | [RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies](../../models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md deleted file mode 100755 index 6248bf538..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md deleted file mode 100755 index 27326d373..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md new file mode 100755 index 000000000..7624b0484 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectempty.md @@ -0,0 +1,7 @@ +# RequestBodyPostEmptyObjectEmpty + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md index 5126258cf..a9e70ef77 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `empty` | [RequestBodyPostEmptyObjectRequestBodyEmpty](../../models/operations/requestbodypostemptyobjectrequestbodyempty.md) | :heavy_minus_sign: | N/A | -| `emptyWithEmptyProperties` | [RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties](../../models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | +| `empty` | [operations.Empty](../../models/operations/empty.md) | :heavy_minus_sign: | N/A | +| `emptyWithEmptyProperties` | [operations.EmptyWithEmptyProperties](../../models/operations/emptywithemptyproperties.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md deleted file mode 100755 index 60e906506..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmpty - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md deleted file mode 100755 index 66bb29b41..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md +++ /dev/null @@ -1,7 +0,0 @@ -# RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties - - -## Fields - -| Field | Type | Required | Description | -| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md index 88437d70f..447d88940 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostEmptyObject200ApplicationJSONObject` | [RequestBodyPostEmptyObject200ApplicationJSON](../../models/operations/requestbodypostemptyobject200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostEmptyObjectResponseBody](../../models/operations/requestbodypostemptyobjectresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md new file mode 100755 index 000000000..33beefe54 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostemptyobjectresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostEmptyObjectResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `empty` | [operations.RequestBodyPostEmptyObjectEmpty](../../models/operations/requestbodypostemptyobjectempty.md) | :heavy_minus_sign: | N/A | +| `emptyRespWithEmptyProperies` | [operations.EmptyRespWithEmptyProperies](../../models/operations/emptyrespwithemptyproperies.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostformdeepres.md b/typescript-client-sdk/docs/models/operations/requestbodypostformdeepres.md index 72395db0a..5109b0bba 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostformdeepres.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostformdeepres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPostFormDeepResForm](../../models/operations/requestbodypostformdeepresform.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | +| `form` | [operations.Form](../../models/operations/form.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostformdeepresform.md b/typescript-client-sdk/docs/models/operations/requestbodypostformdeepresform.md deleted file mode 100755 index 0799e1c39..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostformdeepresform.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPostFormDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | *string* | :heavy_check_mark: | N/A | -| `bool` | *string* | :heavy_check_mark: | N/A | -| `int` | *string* | :heavy_check_mark: | N/A | -| `map` | *string* | :heavy_check_mark: | N/A | -| `num` | *string* | :heavy_check_mark: | N/A | -| `obj` | *string* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md index 193c7227a..0984d0183 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostformdeepresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostFormDeepRes](../../models/operations/requestbodypostformdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostFormDeepRes](../../models/operations/requestbodypostformdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md index d3dc7950f..a9068502c 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostformmapprimitiveresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostFormMapPrimitiveRes](../../models/operations/requestbodypostformmapprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostFormMapPrimitiveRes](../../models/operations/requestbodypostformmapprimitiveres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleform.md b/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleform.md new file mode 100755 index 000000000..96bc13b6a --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleform.md @@ -0,0 +1,21 @@ +# RequestBodyPostFormSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `any` | *string* | :heavy_check_mark: | N/A | +| `bool` | *string* | :heavy_check_mark: | N/A | +| `boolOpt` | *string* | :heavy_minus_sign: | N/A | +| `date` | *string* | :heavy_check_mark: | N/A | +| `dateTime` | *string* | :heavy_check_mark: | N/A | +| `enum` | *string* | :heavy_check_mark: | N/A | +| `float32` | *string* | :heavy_check_mark: | N/A | +| `int` | *string* | :heavy_check_mark: | N/A | +| `int32` | *string* | :heavy_check_mark: | N/A | +| `intOptNull` | *string* | :heavy_minus_sign: | N/A | +| `num` | *string* | :heavy_check_mark: | N/A | +| `numOptNull` | *string* | :heavy_minus_sign: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | +| `strOpt` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md b/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md new file mode 100755 index 000000000..347ceba6f --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleheaders.md @@ -0,0 +1,8 @@ +# RequestBodyPostFormSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `contentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleres.md b/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleres.md index 188da40ab..c90f438cb 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleres.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPostFormSimpleResForm](../../models/operations/requestbodypostformsimpleresform.md) | :heavy_check_mark: | N/A | -| `headers` | [RequestBodyPostFormSimpleResHeaders](../../models/operations/requestbodypostformsimpleresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `form` | [operations.RequestBodyPostFormSimpleForm](../../models/operations/requestbodypostformsimpleform.md) | :heavy_check_mark: | N/A | +| `headers` | [operations.RequestBodyPostFormSimpleHeaders](../../models/operations/requestbodypostformsimpleheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md b/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md deleted file mode 100755 index 925b11bb5..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleresform.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPostFormSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `any` | *string* | :heavy_check_mark: | N/A | -| `bool` | *string* | :heavy_check_mark: | N/A | -| `boolOpt` | *string* | :heavy_minus_sign: | N/A | -| `date` | *string* | :heavy_check_mark: | N/A | -| `dateTime` | *string* | :heavy_check_mark: | N/A | -| `enum` | *string* | :heavy_check_mark: | N/A | -| `float32` | *string* | :heavy_check_mark: | N/A | -| `int` | *string* | :heavy_check_mark: | N/A | -| `int32` | *string* | :heavy_check_mark: | N/A | -| `intOptNull` | *string* | :heavy_minus_sign: | N/A | -| `num` | *string* | :heavy_check_mark: | N/A | -| `numOptNull` | *string* | :heavy_minus_sign: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | -| `strOpt` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md b/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md deleted file mode 100755 index 760072213..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPostFormSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `contentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md index ed04e45a4..4ad2996d5 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostformsimpleresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostFormSimpleRes](../../models/operations/requestbodypostformsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostFormSimpleRes](../../models/operations/requestbodypostformsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md deleted file mode 100755 index b4216ffdb..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | *number*[] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md index 5a7fa56e3..5ebd24feb 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesArrayBigIntResponseBody](../../models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md new file mode 100755 index 000000000..d62d8c3e5 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | *number*[] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md deleted file mode 100755 index 675aad400..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | [RFCDate](../../types/rfcdate.md)[] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md index 0cb5d2988..73d224224 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesArrayDateResponseBody](../../models/operations/requestbodypostjsondatatypesarraydateresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md new file mode 100755 index 000000000..d2c2d8a08 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | [RFCDate](../../types/rfcdate.md)[] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md deleted file mode 100755 index 3a368c3d7..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | *string*[] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md index 0d7cd98ee..35cd60613 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody](../../models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md new file mode 100755 index 000000000..53affa98d --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | *string*[] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md deleted file mode 100755 index 2ca0e0711..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigInt200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md index dedb0a5b0..7b45a9d30 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesBigInt200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesbigint200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesBigIntResponseBody](../../models/operations/requestbodypostjsondatatypesbigintresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md new file mode 100755 index 000000000..7a9d119bd --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesBigIntResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md deleted file mode 100755 index ba47ae0ac..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md index c845ea118..7ffec7f0c 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesBigIntStrResponseBody](../../models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md new file mode 100755 index 000000000..fdf0ed993 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md deleted file mode 100755 index 2048fd10b..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesBoolean200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *boolean* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md index d4b605093..cb7cf3114 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesBoolean200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesboolean200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesBooleanResponseBody](../../models/operations/requestbodypostjsondatatypesbooleanresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md new file mode 100755 index 000000000..934623b55 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesBooleanResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *boolean* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md deleted file mode 100755 index 4fae5b2ba..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDate200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | [RFCDate](../../types/rfcdate.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md index 7eded7f3a..e61685a0b 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDate200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDate200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesdate200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesDateResponseBody](../../models/operations/requestbodypostjsondatatypesdateresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md new file mode 100755 index 000000000..b3d2f34a5 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDateResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | [RFCDate](../../types/rfcdate.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md deleted file mode 100755 index 139b37787..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md index 297b15534..ae6b9d885 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDateTime200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesDateTimeResponseBody](../../models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md new file mode 100755 index 000000000..1183385ff --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md deleted file mode 100755 index 61e50c129..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md index bc3960de1..b9d574906 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDecimal200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesDecimalResponseBody](../../models/operations/requestbodypostjsondatatypesdecimalresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md new file mode 100755 index 000000000..268be7c5b --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md deleted file mode 100755 index 9361e6907..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md index 15f30953c..2a52419d0 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesDecimalStrResponseBody](../../models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md new file mode 100755 index 000000000..e6423fdb4 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesDecimalStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md deleted file mode 100755 index e20a35413..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesFloat32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md index f2b51a0fe..44e5e0ecf 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesFloat32200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesFloat32ResponseBody](../../models/operations/requestbodypostjsondatatypesfloat32responsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md new file mode 100755 index 000000000..a57d4826b --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesFloat32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md deleted file mode 100755 index 917b8935e..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInt32200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md index 316da7449..9fb90e6e5 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32response.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesInt32200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesInt32200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesint32200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesInt32ResponseBody](../../models/operations/requestbodypostjsondatatypesint32responsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md new file mode 100755 index 000000000..9eb0bb042 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesint32responsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesInt32ResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md deleted file mode 100755 index e3677ddd8..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesInteger200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md index 566c0d874..f61e4053e 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesInteger200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesInteger200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesinteger200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesIntegerResponseBody](../../models/operations/requestbodypostjsondatatypesintegerresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md new file mode 100755 index 000000000..53c959a45 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesIntegerResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md deleted file mode 100755 index e3618fce6..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------ | ------------------------ | ------------------------ | ------------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md index 72acfd28e..5178ed827 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesMapBigIntStrResponseBody](../../models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md new file mode 100755 index 000000000..34f836554 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapBigIntStrResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------ | ------------------------ | ------------------------ | ------------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md deleted file mode 100755 index 4dd056404..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md index b26089798..d29df0dc7 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesMapDateTimeResponseBody](../../models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md new file mode 100755 index 000000000..6c9ee4a00 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapDateTimeResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md deleted file mode 100755 index bf1e41c71..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md +++ /dev/null @@ -1,11 +0,0 @@ -# RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------ | ------------------------ | ------------------------ | ------------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | -| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md index 2ea429920..e0e9650ca 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesMapDecimalResponseBody](../../models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md new file mode 100755 index 000000000..fc0a60901 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md @@ -0,0 +1,11 @@ +# RequestBodyPostJsonDataTypesMapDecimalResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------ | ------------------------ | ------------------------ | ------------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | +| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md deleted file mode 100755 index a320a7886..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesNumber200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md index 4a9bf95c5..0c4443e7b 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesNumber200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesNumber200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesnumber200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesNumberResponseBody](../../models/operations/requestbodypostjsondatatypesnumberresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md new file mode 100755 index 000000000..96f497efc --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesNumberResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md deleted file mode 100755 index b83af1983..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostJSONDataTypesString200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md index b813dd436..9deec210c 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostJSONDataTypesString200ApplicationJSONObject` | [RequestBodyPostJSONDataTypesString200ApplicationJSON](../../models/operations/requestbodypostjsondatatypesstring200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostJsonDataTypesStringResponseBody](../../models/operations/requestbodypostjsondatatypesstringresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md new file mode 100755 index 000000000..ae6705bff --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostJsonDataTypesStringResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `json` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md index 4ffe46f12..d246faea7 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostMultipleContentTypesComponentFilteredRes](../../models/operations/requestbodypostmultiplecontenttypescomponentfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostMultipleContentTypesComponentFilteredRes](../../models/operations/requestbodypostmultiplecontenttypescomponentfilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md deleted file mode 100755 index 06b2bd828..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *boolean* | :heavy_check_mark: | N/A | -| `num` | *number* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md new file mode 100755 index 000000000..f475a0b1f --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesInlineFilteredRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *boolean* | :heavy_check_mark: | N/A | +| `num` | *number* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md index 7853fa7f7..a7fa67a1c 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostMultipleContentTypesInlineFilteredRes](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostMultipleContentTypesInlineFilteredRes](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md deleted file mode 100755 index cceed8d98..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *boolean* | :heavy_check_mark: | N/A | -| `num` | *number* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md deleted file mode 100755 index 3a43930cb..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool3` | *boolean* | :heavy_check_mark: | N/A | -| `num3` | *number* | :heavy_check_mark: | N/A | -| `str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md new file mode 100755 index 000000000..0cd90498a --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool3` | *boolean* | :heavy_check_mark: | N/A | +| `num3` | *number* | :heavy_check_mark: | N/A | +| `str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md index 9ee24c4a3..37b40e751 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostMultipleContentTypesSplitFormRes](../../models/operations/requestbodypostmultiplecontenttypessplitformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostMultipleContentTypesSplitFormRes](../../models/operations/requestbodypostmultiplecontenttypessplitformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md new file mode 100755 index 000000000..97a16ca91 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitJsonRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *boolean* | :heavy_check_mark: | N/A | +| `num` | *number* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md index 6438ad412..dbf2f5be3 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostMultipleContentTypesSplitJsonRes](../../models/operations/requestbodypostmultiplecontenttypessplitjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostMultipleContentTypesSplitJsonRes](../../models/operations/requestbodypostmultiplecontenttypessplitjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md deleted file mode 100755 index 45daaf7b2..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool2` | *boolean* | :heavy_check_mark: | N/A | -| `num2` | *number* | :heavy_check_mark: | N/A | -| `str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md new file mode 100755 index 000000000..099e2fcab --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool2` | *boolean* | :heavy_check_mark: | N/A | +| `num2` | *number* | :heavy_check_mark: | N/A | +| `str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md index 5eb5f6041..140751e06 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostMultipleContentTypesSplitMultipartRes](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostMultipleContentTypesSplitMultipartRes](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md deleted file mode 100755 index d4cc12ef0..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationJSON - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *boolean* | :heavy_check_mark: | N/A | -| `num` | *number* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md deleted file mode 100755 index d17101c5f..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool3` | *boolean* | :heavy_check_mark: | N/A | -| `num3` | *number* | :heavy_check_mark: | N/A | -| `str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md index 957d13e7f..8475b8ea0 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md new file mode 100755 index 000000000..87ff2c5ee --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamFormRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool3` | *boolean* | :heavy_check_mark: | N/A | +| `num3` | *number* | :heavy_check_mark: | N/A | +| `str3` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md index 5d1a69033..b90247dce 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostMultipleContentTypesSplitParamFormRes](../../models/operations/requestbodypostmultiplecontenttypessplitparamformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostMultipleContentTypesSplitParamFormRes](../../models/operations/requestbodypostmultiplecontenttypessplitparamformres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md index 87ddb548a..1e04edca3 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md new file mode 100755 index 000000000..4628cfb7c --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool` | *boolean* | :heavy_check_mark: | N/A | +| `num` | *number* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md index 984913781..efccf5d9c 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostMultipleContentTypesSplitParamJsonRes](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostMultipleContentTypesSplitParamJsonRes](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md deleted file mode 100755 index 62e11b813..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostMultipleContentTypesSplitParamMultipartFormData - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool2` | *boolean* | :heavy_check_mark: | N/A | -| `num2` | *number* | :heavy_check_mark: | N/A | -| `str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md index 16cb27f6a..2a2f22278 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md new file mode 100755 index 000000000..08a08bdaa --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md @@ -0,0 +1,10 @@ +# RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `bool2` | *boolean* | :heavy_check_mark: | N/A | +| `num2` | *number* | :heavy_check_mark: | N/A | +| `str2` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md index 72ff872a5..a5b3e3274 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPostMultipleContentTypesSplitParamMultipartRes](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRes](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md deleted file mode 100755 index b10b548ae..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md index b1ef5069a..cf0947957 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject` | [RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON](../../models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody](../../models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md new file mode 100755 index 000000000..4400288b0 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNotNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md deleted file mode 100755 index 5901cc56f..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md index 138f2674f..6be3c978c 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject` | [RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON](../../models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody](../../models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md new file mode 100755 index 000000000..26535e293 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableNotRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md deleted file mode 100755 index ae5fb5eb4..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullableRequiredStringBody200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md index 31a83fbc6..44083932c 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullableRequiredStringBody200ApplicationJSONObject` | [RequestBodyPostNullableRequiredStringBody200ApplicationJSON](../../models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostNullableRequiredStringBodyResponseBody](../../models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md new file mode 100755 index 000000000..9e2f6c5b0 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullableRequiredStringBodyResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md deleted file mode 100755 index e452fe928..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostnullarray200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullArray200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md index d5b2fc202..b64336de9 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostnullarrayresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullArray200ApplicationJSONObject` | [RequestBodyPostNullArray200ApplicationJSON](../../models/operations/requestbodypostnullarray200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostNullArrayResponseBody](../../models/operations/requestbodypostnullarrayresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md new file mode 100755 index 000000000..ab00ebfdd --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostnullarrayresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullArrayResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md b/typescript-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md deleted file mode 100755 index f1b8f0b5e..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodypostnulldictionary200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# RequestBodyPostNullDictionary200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md b/typescript-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md index 99cbef781..74656a50d 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `requestBodyPostNullDictionary200ApplicationJSONObject` | [RequestBodyPostNullDictionary200ApplicationJSON](../../models/operations/requestbodypostnulldictionary200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.RequestBodyPostNullDictionaryResponseBody](../../models/operations/requestbodypostnulldictionaryresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md b/typescript-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md new file mode 100755 index 000000000..559dc545e --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodypostnulldictionaryresponsebody.md @@ -0,0 +1,10 @@ +# RequestBodyPostNullDictionaryResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputbytesresponse.md b/typescript-client-sdk/docs/models/operations/requestbodyputbytesresponse.md index 2d6c57587..5e1f8d895 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputbytesresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputbytesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPutBytesRes](../../models/operations/requestbodyputbytesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPutBytesRes](../../models/operations/requestbodyputbytesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md b/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md new file mode 100755 index 000000000..0183e8eba --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsargs.md @@ -0,0 +1,8 @@ +# RequestBodyPutBytesWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md b/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md index 793f91599..dd92a85ac 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| `args` | [RequestBodyPutBytesWithParamsResArgs](../../models/operations/requestbodyputbyteswithparamsresargs.md) | :heavy_check_mark: | N/A | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `args` | [operations.RequestBodyPutBytesWithParamsArgs](../../models/operations/requestbodyputbyteswithparamsargs.md) | :heavy_check_mark: | N/A | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md b/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md deleted file mode 100755 index fbade96e6..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutBytesWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md b/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md index 497d37554..4adfb6d2e 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputbyteswithparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPutBytesWithParamsRes](../../models/operations/requestbodyputbyteswithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPutBytesWithParamsRes](../../models/operations/requestbodyputbyteswithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md new file mode 100755 index 000000000..7868fc9f6 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepform.md @@ -0,0 +1,14 @@ +# RequestBodyPutMultipartDeepForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `arr` | *string* | :heavy_check_mark: | N/A | +| `bool` | *string* | :heavy_check_mark: | N/A | +| `int` | *string* | :heavy_check_mark: | N/A | +| `map` | *string* | :heavy_check_mark: | N/A | +| `num` | *string* | :heavy_check_mark: | N/A | +| `obj` | *string* | :heavy_check_mark: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md index 16e5b0612..7cbc83e09 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepres.md @@ -5,6 +5,6 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPutMultipartDeepResForm](../../models/operations/requestbodyputmultipartdeepresform.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `form` | [operations.RequestBodyPutMultipartDeepForm](../../models/operations/requestbodyputmultipartdeepform.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md deleted file mode 100755 index 0c82c20a3..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepresform.md +++ /dev/null @@ -1,14 +0,0 @@ -# RequestBodyPutMultipartDeepResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `arr` | *string* | :heavy_check_mark: | N/A | -| `bool` | *string* | :heavy_check_mark: | N/A | -| `int` | *string* | :heavy_check_mark: | N/A | -| `map` | *string* | :heavy_check_mark: | N/A | -| `num` | *string* | :heavy_check_mark: | N/A | -| `obj` | *string* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md index 1132d85f7..47c4e43bf 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdeepresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPutMultipartDeepRes](../../models/operations/requestbodyputmultipartdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPutMultipartDeepRes](../../models/operations/requestbodyputmultipartdeepres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md index b823ece6f..8085b4fb3 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `differentFileName` | [RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName](../../models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `differentFileName` | [operations.DifferentFileName](../../models/operations/differentfilename.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md deleted file mode 100755 index cd7436a0c..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName - - -## Fields - -| Field | Type | Required | Description | -| ------------------- | ------------------- | ------------------- | ------------------- | -| `content` | *Uint8Array* | :heavy_check_mark: | N/A | -| `differentFileName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md index c22186453..ab885890c 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPutMultipartDifferentFileNameRes](../../models/operations/requestbodyputmultipartdifferentfilenameres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPutMultipartDifferentFileNameRes](../../models/operations/requestbodyputmultipartdifferentfilenameres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md index 97c319697..01a45a805 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbody.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `file` | [RequestBodyPutMultipartFileRequestBodyFile](../../models/operations/requestbodyputmultipartfilerequestbodyfile.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | +| `file` | [operations.File](../../models/operations/file.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md deleted file mode 100755 index 73516a5a1..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md +++ /dev/null @@ -1,9 +0,0 @@ -# RequestBodyPutMultipartFileRequestBodyFile - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `content` | *Uint8Array* | :heavy_check_mark: | N/A | -| `file` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md index d35f149b1..cc904056a 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartfileresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPutMultipartFileRes](../../models/operations/requestbodyputmultipartfileres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPutMultipartFileRes](../../models/operations/requestbodyputmultipartfileres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md new file mode 100755 index 000000000..7bb26746b --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleform.md @@ -0,0 +1,21 @@ +# RequestBodyPutMultipartSimpleForm + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `any` | *string* | :heavy_check_mark: | N/A | +| `bool` | *string* | :heavy_check_mark: | N/A | +| `boolOpt` | *string* | :heavy_minus_sign: | N/A | +| `date` | *string* | :heavy_check_mark: | N/A | +| `dateTime` | *string* | :heavy_check_mark: | N/A | +| `enum` | *string* | :heavy_check_mark: | N/A | +| `float32` | *string* | :heavy_check_mark: | N/A | +| `int` | *string* | :heavy_check_mark: | N/A | +| `int32` | *string* | :heavy_check_mark: | N/A | +| `intOptNull` | *string* | :heavy_minus_sign: | N/A | +| `num` | *string* | :heavy_check_mark: | N/A | +| `numOptNull` | *string* | :heavy_minus_sign: | N/A | +| `str` | *string* | :heavy_check_mark: | N/A | +| `strOpt` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md new file mode 100755 index 000000000..7d2330c47 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleheaders.md @@ -0,0 +1,8 @@ +# RequestBodyPutMultipartSimpleHeaders + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `contentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md index fce756fe8..753099661 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| `form` | [RequestBodyPutMultipartSimpleResForm](../../models/operations/requestbodyputmultipartsimpleresform.md) | :heavy_check_mark: | N/A | -| `headers` | [RequestBodyPutMultipartSimpleResHeaders](../../models/operations/requestbodyputmultipartsimpleresheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | +| `form` | [operations.RequestBodyPutMultipartSimpleForm](../../models/operations/requestbodyputmultipartsimpleform.md) | :heavy_check_mark: | N/A | +| `headers` | [operations.RequestBodyPutMultipartSimpleHeaders](../../models/operations/requestbodyputmultipartsimpleheaders.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md deleted file mode 100755 index 64400fab7..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresform.md +++ /dev/null @@ -1,21 +0,0 @@ -# RequestBodyPutMultipartSimpleResForm - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `any` | *string* | :heavy_check_mark: | N/A | -| `bool` | *string* | :heavy_check_mark: | N/A | -| `boolOpt` | *string* | :heavy_minus_sign: | N/A | -| `date` | *string* | :heavy_check_mark: | N/A | -| `dateTime` | *string* | :heavy_check_mark: | N/A | -| `enum` | *string* | :heavy_check_mark: | N/A | -| `float32` | *string* | :heavy_check_mark: | N/A | -| `int` | *string* | :heavy_check_mark: | N/A | -| `int32` | *string* | :heavy_check_mark: | N/A | -| `intOptNull` | *string* | :heavy_minus_sign: | N/A | -| `num` | *string* | :heavy_check_mark: | N/A | -| `numOptNull` | *string* | :heavy_minus_sign: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | -| `strOpt` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md deleted file mode 100755 index 62bf0b0f3..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresheaders.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutMultipartSimpleResHeaders - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `contentType` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md index fc93ca256..2a6614701 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputmultipartsimpleresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPutMultipartSimpleRes](../../models/operations/requestbodyputmultipartsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPutMultipartSimpleRes](../../models/operations/requestbodyputmultipartsimpleres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputstringresponse.md b/typescript-client-sdk/docs/models/operations/requestbodyputstringresponse.md index d7ffe60ee..f2f9347eb 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputstringresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputstringresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPutStringRes](../../models/operations/requestbodyputstringres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPutStringRes](../../models/operations/requestbodyputstringres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md b/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md new file mode 100755 index 000000000..0011a3cf2 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsargs.md @@ -0,0 +1,8 @@ +# RequestBodyPutStringWithParamsArgs + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `queryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md b/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md index c6b65bd46..590dc8a9a 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsres.md @@ -5,7 +5,7 @@ OK ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `args` | [RequestBodyPutStringWithParamsResArgs](../../models/operations/requestbodyputstringwithparamsresargs.md) | :heavy_check_mark: | N/A | -| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| `args` | [operations.RequestBodyPutStringWithParamsArgs](../../models/operations/requestbodyputstringwithparamsargs.md) | :heavy_check_mark: | N/A | +| `data` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md b/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md deleted file mode 100755 index 985ff101e..000000000 --- a/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsresargs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RequestBodyPutStringWithParamsResArgs - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `queryStringParam` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md b/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md index 303db788c..dbd809d35 100755 --- a/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md +++ b/typescript-client-sdk/docs/models/operations/requestbodyputstringwithparamsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [RequestBodyPutStringWithParamsRes](../../models/operations/requestbodyputstringwithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.RequestBodyPutStringWithParamsRes](../../models/operations/requestbodyputstringwithparamsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/requiredobj.md b/typescript-client-sdk/docs/models/operations/requiredobj.md new file mode 100755 index 000000000..75e7b11a1 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/requiredobj.md @@ -0,0 +1,7 @@ +# RequiredObj + + +## Fields + +| Field | Type | Required | Description | +| ----------- | ----------- | ----------- | ----------- | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md deleted file mode 100755 index ca6393054..000000000 --- a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------ | ------------------------ | ------------------------ | ------------------------ | -| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md index 77d853d11..ae5da1c7d 100755 --- a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md +++ b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON](../../models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody](../../models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md new file mode 100755 index 000000000..898948db8 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------ | ------------------------ | ------------------------ | ------------------------ | +| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md deleted file mode 100755 index 2eefdd969..000000000 --- a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | -| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md index 72d797b3f..46c5dff82 100755 --- a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md +++ b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON](../../models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.ResponseBodyAdditionalPropertiesDatePostResponseBody](../../models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md new file mode 100755 index 000000000..7f726089b --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesDatePostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | +| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md deleted file mode 100755 index 6e699a997..000000000 --- a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md index 86e86a4c7..2c598a000 100755 --- a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON](../../models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody](../../models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md new file mode 100755 index 000000000..9a06a5e5d --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesObjectPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md deleted file mode 100755 index f394ff5f9..000000000 --- a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyAdditionalPropertiesPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------ | ------------------------ | ------------------------ | ------------------------ | -| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md index 2db21733b..44549da74 100755 --- a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md +++ b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyAdditionalPropertiesPost200ApplicationJSONObject` | [ResponseBodyAdditionalPropertiesPost200ApplicationJSON](../../models/operations/responsebodyadditionalpropertiespost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.ResponseBodyAdditionalPropertiesPostResponseBody](../../models/operations/responsebodyadditionalpropertiespostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md new file mode 100755 index 000000000..fc252d8a0 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyAdditionalPropertiesPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------ | ------------------------ | ------------------------ | ------------------------ | +| `json` | Record | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md b/typescript-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md index 749667f79..0bfd4cf3b 100755 --- a/typescript-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md +++ b/typescript-client-sdk/docs/models/operations/responsebodyoptionalgetresponse.md @@ -8,5 +8,5 @@ | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyOptionalGet200TextPlainString` | *string* | :heavy_minus_sign: | OK | +| `res` | *string* | :heavy_minus_sign: | OK | | `typedObject1` | [shared.TypedObject1](../../models/shared/typedobject1.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md b/typescript-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md deleted file mode 100755 index 03aa7b4b4..000000000 --- a/typescript-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON - -OK - - -## Fields - -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | -| `json` | [shared.ObjWithZeroValueComplexTypePtrs](../../models/shared/objwithzerovaluecomplextypeptrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md b/typescript-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md index 51c721b9e..d91d74f16 100755 --- a/typescript-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md +++ b/typescript-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject` | [ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON](../../models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody](../../models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md b/typescript-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md new file mode 100755 index 000000000..9053da8b1 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md @@ -0,0 +1,10 @@ +# ResponseBodyZeroValueComplexTypePtrsPostResponseBody + +OK + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `json` | [shared.ObjWithZeroValueComplexTypePtrs](../../models/shared/objwithzerovaluecomplextypeptrs.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/retriesgetresponse.md b/typescript-client-sdk/docs/models/operations/retriesgetresponse.md index 7a49f366e..cc32bc305 100755 --- a/typescript-client-sdk/docs/models/operations/retriesgetresponse.md +++ b/typescript-client-sdk/docs/models/operations/retriesgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `retries` | [RetriesGetRetries](../../models/operations/retriesgetretries.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `retries` | [operations.RetriesGetRetries](../../models/operations/retriesgetretries.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md b/typescript-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md index bdd7ee2a4..b0014fe2b 100755 --- a/typescript-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md +++ b/typescript-client-sdk/docs/models/operations/simplepathparameterarraysresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [SimplePathParameterArraysRes](../../models/operations/simplepathparameterarraysres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.SimplePathParameterArraysRes](../../models/operations/simplepathparameterarraysres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/simplepathparametermapsresponse.md b/typescript-client-sdk/docs/models/operations/simplepathparametermapsresponse.md index 1139f83f7..891cf7ace 100755 --- a/typescript-client-sdk/docs/models/operations/simplepathparametermapsresponse.md +++ b/typescript-client-sdk/docs/models/operations/simplepathparametermapsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [SimplePathParameterMapsRes](../../models/operations/simplepathparametermapsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.SimplePathParameterMapsRes](../../models/operations/simplepathparametermapsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md b/typescript-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md index 9c12c8f30..fe8386fdd 100755 --- a/typescript-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md +++ b/typescript-client-sdk/docs/models/operations/simplepathparameterobjectsresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [SimplePathParameterObjectsRes](../../models/operations/simplepathparameterobjectsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.SimplePathParameterObjectsRes](../../models/operations/simplepathparameterobjectsres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md b/typescript-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md index 190c0c7ed..bf5cf951b 100755 --- a/typescript-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md +++ b/typescript-client-sdk/docs/models/operations/simplepathparameterprimitivesresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [SimplePathParameterPrimitivesRes](../../models/operations/simplepathparameterprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.SimplePathParameterPrimitivesRes](../../models/operations/simplepathparameterprimitivesres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md b/typescript-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md index 8b6bc6744..6e7e65368 100755 --- a/typescript-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/stronglytypedoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [StronglyTypedOneOfPostRes](../../models/operations/stronglytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.StronglyTypedOneOfPostRes](../../models/operations/stronglytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md b/typescript-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md index 92859d6e4..75a30b45c 100755 --- a/typescript-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md +++ b/typescript-client-sdk/docs/models/operations/telemetryspeakeasyuseragentgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [TelemetrySpeakeasyUserAgentGetRes](../../models/operations/telemetryspeakeasyuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.TelemetrySpeakeasyUserAgentGetRes](../../models/operations/telemetryspeakeasyuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md b/typescript-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md index e95f9b913..1399ef9f3 100755 --- a/typescript-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md +++ b/typescript-client-sdk/docs/models/operations/telemetryuseragentgetresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [TelemetryUserAgentGetRes](../../models/operations/telemetryuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.TelemetryUserAgentGetRes](../../models/operations/telemetryuseragentgetres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md b/typescript-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md index 11111cafb..d9b103a1e 100755 --- a/typescript-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/typedobjectnullableoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [TypedObjectNullableOneOfPostRes](../../models/operations/typedobjectnullableoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.TypedObjectNullableOneOfPostRes](../../models/operations/typedobjectnullableoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md b/typescript-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md index ac672477e..49baab608 100755 --- a/typescript-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/typedobjectoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [TypedObjectOneOfPostRes](../../models/operations/typedobjectoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.TypedObjectOneOfPostRes](../../models/operations/typedobjectoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/typedparametergenerationgetobj.md b/typescript-client-sdk/docs/models/operations/typedparametergenerationgetobj.md deleted file mode 100755 index cf4d7d1d8..000000000 --- a/typescript-client-sdk/docs/models/operations/typedparametergenerationgetobj.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypedParameterGenerationGetObj - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `bool` | *boolean* | :heavy_check_mark: | N/A | -| `num` | *number* | :heavy_check_mark: | N/A | -| `str` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md b/typescript-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md index 955860658..00f78b044 100755 --- a/typescript-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md +++ b/typescript-client-sdk/docs/models/operations/typedparametergenerationgetrequest.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `bigint` | *number* | :heavy_minus_sign: | N/A | -| `date` | [RFCDate](../../types/rfcdate.md) | :heavy_minus_sign: | N/A | -| `decimal` | *number* | :heavy_minus_sign: | N/A | -| `obj` | [TypedParameterGenerationGetObj](../../models/operations/typedparametergenerationgetobj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | +| `bigint` | *number* | :heavy_minus_sign: | N/A | +| `date` | [RFCDate](../../types/rfcdate.md) | :heavy_minus_sign: | N/A | +| `decimal` | *number* | :heavy_minus_sign: | N/A | +| `obj` | [operations.Obj](../../models/operations/obj.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/typefromanchor.md b/typescript-client-sdk/docs/models/operations/typefromanchor.md deleted file mode 100755 index 94b429559..000000000 --- a/typescript-client-sdk/docs/models/operations/typefromanchor.md +++ /dev/null @@ -1,10 +0,0 @@ -# TypeFromAnchor - -A successful response that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `json` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/unionbigintdecimalresponse.md b/typescript-client-sdk/docs/models/operations/unionbigintdecimalresponse.md index fef8e7e1f..f6883d16f 100755 --- a/typescript-client-sdk/docs/models/operations/unionbigintdecimalresponse.md +++ b/typescript-client-sdk/docs/models/operations/unionbigintdecimalresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [UnionBigIntDecimalRes](../../models/operations/unionbigintdecimalres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.UnionBigIntDecimalRes](../../models/operations/unionbigintdecimalres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/uniondatenullresponse.md b/typescript-client-sdk/docs/models/operations/uniondatenullresponse.md index 723ddb7cb..4b1cfe878 100755 --- a/typescript-client-sdk/docs/models/operations/uniondatenullresponse.md +++ b/typescript-client-sdk/docs/models/operations/uniondatenullresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [UnionDateNullRes](../../models/operations/uniondatenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.UnionDateNullRes](../../models/operations/uniondatenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/uniondatetimebigintresponse.md b/typescript-client-sdk/docs/models/operations/uniondatetimebigintresponse.md index baa25f79f..3dd8b2667 100755 --- a/typescript-client-sdk/docs/models/operations/uniondatetimebigintresponse.md +++ b/typescript-client-sdk/docs/models/operations/uniondatetimebigintresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [UnionDateTimeBigIntRes](../../models/operations/uniondatetimebigintres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.UnionDateTimeBigIntRes](../../models/operations/uniondatetimebigintres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/uniondatetimenullresponse.md b/typescript-client-sdk/docs/models/operations/uniondatetimenullresponse.md index ff68c570b..db414d429 100755 --- a/typescript-client-sdk/docs/models/operations/uniondatetimenullresponse.md +++ b/typescript-client-sdk/docs/models/operations/uniondatetimenullresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [UnionDateTimeNullRes](../../models/operations/uniondatetimenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.UnionDateTimeNullRes](../../models/operations/uniondatetimenullres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md b/typescript-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md deleted file mode 100755 index a4b56357c..000000000 --- a/typescript-client-sdk/docs/models/operations/usageexamplepost200applicationjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSON - -A response body that contains the simpleObject sent in the request body - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | -| `json` | [UsageExamplePost200ApplicationJSONJSON](../../models/operations/usageexamplepost200applicationjsonjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md b/typescript-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md deleted file mode 100755 index c9a69d1da..000000000 --- a/typescript-client-sdk/docs/models/operations/usageexamplepost200applicationjsonjson.md +++ /dev/null @@ -1,10 +0,0 @@ -# UsageExamplePost200ApplicationJSONJSON - - -## Fields - -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `fakerFormattedStrings` | [shared.FakerFormattedStrings](../../models/shared/fakerformattedstrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | -| `fakerStrings` | [shared.FakerStrings](../../models/shared/fakerstrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | -| `simpleObject` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/usageexamplepostenumparameter.md b/typescript-client-sdk/docs/models/operations/usageexamplepostenumparameter.md deleted file mode 100755 index edee3e287..000000000 --- a/typescript-client-sdk/docs/models/operations/usageexamplepostenumparameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `Value1` | value1 | -| `Value2` | value2 | -| `Value3` | value3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/usageexamplepostjson.md b/typescript-client-sdk/docs/models/operations/usageexamplepostjson.md new file mode 100755 index 000000000..de4e2d142 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/usageexamplepostjson.md @@ -0,0 +1,10 @@ +# UsageExamplePostJson + + +## Fields + +| Field | Type | Required | Description | +| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `fakerFormattedStrings` | [shared.FakerFormattedStrings](../../models/shared/fakerformattedstrings.md) | :heavy_minus_sign: | A set of strings with format values that lead to relevant examples being generated for them | +| `fakerStrings` | [shared.FakerStrings](../../models/shared/fakerstrings.md) | :heavy_minus_sign: | A set of strings with fieldnames that lead to relevant examples being generated for them | +| `simpleObject` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_minus_sign: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md b/typescript-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md deleted file mode 100755 index f0d5899a0..000000000 --- a/typescript-client-sdk/docs/models/operations/usageexamplepostoptenumparameter.md +++ /dev/null @@ -1,12 +0,0 @@ -# UsageExamplePostOptEnumParameter - -An enum type - - -## Values - -| Name | Value | -| -------- | -------- | -| `Value1` | value1 | -| `Value2` | value2 | -| `Value3` | value3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/usageexamplepostrequest.md b/typescript-client-sdk/docs/models/operations/usageexamplepostrequest.md index acaedc559..e0c3ef278 100755 --- a/typescript-client-sdk/docs/models/operations/usageexamplepostrequest.md +++ b/typescript-client-sdk/docs/models/operations/usageexamplepostrequest.md @@ -3,27 +3,27 @@ ## Fields -| Field | Type | Required | Description | Example | -| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `requestBody` | [UsageExamplePostRequestBody](../../models/operations/usageexamplepostrequestbody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | -| `bigintParameter` | *number* | :heavy_check_mark: | An bigint parameter | | -| `bigintParameterOptional` | *number* | :heavy_minus_sign: | An bigint parameter | | -| `bigintStrParameter` | *string* | :heavy_check_mark: | An bigint parameter | | -| `bigintStrParameterOptional` | *string* | :heavy_minus_sign: | An bigint parameter | | -| `boolParameter` | *boolean* | :heavy_check_mark: | A boolean parameter | | -| `dateParameter` | [RFCDate](../../types/rfcdate.md) | :heavy_check_mark: | A date parameter | | -| `dateTimeDefaultParameter` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | A date time parameter with a default value | | -| `dateTimeParameter` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | A date time parameter | | -| `decimalParameter` | *number* | :heavy_check_mark: | A decimal parameter | | -| `decimalParameterOptional` | *number* | :heavy_minus_sign: | A decimal parameter | | -| `decimalStrParameter` | *string* | :heavy_check_mark: | A decimal parameter | | -| `decimalStrParameterOptional` | *string* | :heavy_minus_sign: | A decimal parameter | | -| `doubleParameter` | *number* | :heavy_check_mark: | A double parameter | | -| `enumParameter` | [UsageExamplePostEnumParameter](../../models/operations/usageexamplepostenumparameter.md) | :heavy_check_mark: | An enum parameter | | -| `falseyNumberParameter` | *number* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | -| `float32Parameter` | *number* | :heavy_check_mark: | A float32 parameter | | -| `floatParameter` | *number* | :heavy_check_mark: | A float parameter | | -| `int64Parameter` | *number* | :heavy_check_mark: | An int64 parameter | | -| `intParameter` | *number* | :heavy_check_mark: | An integer parameter | | -| `optEnumParameter` | [UsageExamplePostOptEnumParameter](../../models/operations/usageexamplepostoptenumparameter.md) | :heavy_minus_sign: | An enum parameter | value3 | -| `strParameter` | *string* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file +| Field | Type | Required | Description | Example | +| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | +| `requestBody` | [operations.UsageExamplePostRequestBody](../../models/operations/usageexamplepostrequestbody.md) | :heavy_minus_sign: | A request body that contains fields with different formats for testing example generation | | +| `bigintParameter` | *number* | :heavy_check_mark: | An bigint parameter | | +| `bigintParameterOptional` | *number* | :heavy_minus_sign: | An bigint parameter | | +| `bigintStrParameter` | *string* | :heavy_check_mark: | An bigint parameter | | +| `bigintStrParameterOptional` | *string* | :heavy_minus_sign: | An bigint parameter | | +| `boolParameter` | *boolean* | :heavy_check_mark: | A boolean parameter | | +| `dateParameter` | [RFCDate](../../types/rfcdate.md) | :heavy_check_mark: | A date parameter | | +| `dateTimeDefaultParameter` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | A date time parameter with a default value | | +| `dateTimeParameter` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | A date time parameter | | +| `decimalParameter` | *number* | :heavy_check_mark: | A decimal parameter | | +| `decimalParameterOptional` | *number* | :heavy_minus_sign: | A decimal parameter | | +| `decimalStrParameter` | *string* | :heavy_check_mark: | A decimal parameter | | +| `decimalStrParameterOptional` | *string* | :heavy_minus_sign: | A decimal parameter | | +| `doubleParameter` | *number* | :heavy_check_mark: | A double parameter | | +| `enumParameter` | [operations.EnumParameter](../../models/operations/enumparameter.md) | :heavy_check_mark: | An enum parameter | | +| `falseyNumberParameter` | *number* | :heavy_check_mark: | A number parameter that contains a falsey example value | 0 | +| `float32Parameter` | *number* | :heavy_check_mark: | A float32 parameter | | +| `floatParameter` | *number* | :heavy_check_mark: | A float parameter | | +| `int64Parameter` | *number* | :heavy_check_mark: | An int64 parameter | | +| `intParameter` | *number* | :heavy_check_mark: | An integer parameter | | +| `optEnumParameter` | [operations.OptEnumParameter](../../models/operations/optenumparameter.md) | :heavy_minus_sign: | An enum parameter | value3 | +| `strParameter` | *string* | :heavy_check_mark: | A string parameter | example 1 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/usageexamplepostresponse.md b/typescript-client-sdk/docs/models/operations/usageexamplepostresponse.md index dd92b2e6d..8b85e59db 100755 --- a/typescript-client-sdk/docs/models/operations/usageexamplepostresponse.md +++ b/typescript-client-sdk/docs/models/operations/usageexamplepostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `usageExamplePost200ApplicationJSONObject` | [UsageExamplePost200ApplicationJSON](../../models/operations/usageexamplepost200applicationjson.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `object` | [operations.UsageExamplePostResponseBody](../../models/operations/usageexamplepostresponsebody.md) | :heavy_minus_sign: | A successful response that contains the simpleObject sent in the request body | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/usageexamplepostresponsebody.md b/typescript-client-sdk/docs/models/operations/usageexamplepostresponsebody.md new file mode 100755 index 000000000..c47f8f274 --- /dev/null +++ b/typescript-client-sdk/docs/models/operations/usageexamplepostresponsebody.md @@ -0,0 +1,10 @@ +# UsageExamplePostResponseBody + +A response body that contains the simpleObject sent in the request body + + +## Fields + +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `json` | [operations.UsageExamplePostJson](../../models/operations/usageexamplepostjson.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md b/typescript-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md index e9fe8da53..8402c0bb7 100755 --- a/typescript-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md +++ b/typescript-client-sdk/docs/models/operations/weaklytypedoneofpostresponse.md @@ -3,9 +3,9 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | -| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | -| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | -| `res` | [WeaklyTypedOneOfPostRes](../../models/operations/weaklytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | +| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | +| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | +| `res` | [operations.WeaklyTypedOneOfPostRes](../../models/operations/weaklytypedoneofpostres.md) | :heavy_minus_sign: | OK | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/arraycircularreferenceobject.md b/typescript-client-sdk/docs/models/shared/arraycircularreferenceobject.md index 08fd3420d..51194496a 100755 --- a/typescript-client-sdk/docs/models/shared/arraycircularreferenceobject.md +++ b/typescript-client-sdk/docs/models/shared/arraycircularreferenceobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `circular` | [ArrayCircularReferenceObject](../../models/shared/arraycircularreferenceobject.md)[] | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `circular` | [shared.ArrayCircularReferenceObject](../../models/shared/arraycircularreferenceobject.md)[] | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/arrobjvalue.md b/typescript-client-sdk/docs/models/shared/arrobjvalue.md index 1ef766002..2a1274135 100755 --- a/typescript-client-sdk/docs/models/shared/arrobjvalue.md +++ b/typescript-client-sdk/docs/models/shared/arrobjvalue.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | -| `json` | [SimpleObject](../../models/shared/simpleobject.md)[] | :heavy_minus_sign: | N/A | -| `required` | *any* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | +| `json` | [shared.SimpleObject](../../models/shared/simpleobject.md)[] | :heavy_minus_sign: | N/A | +| `required` | *any* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/arrobjvaluecamelcase.md b/typescript-client-sdk/docs/models/shared/arrobjvaluecamelcase.md index 98067511c..b11edb31a 100755 --- a/typescript-client-sdk/docs/models/shared/arrobjvaluecamelcase.md +++ b/typescript-client-sdk/docs/models/shared/arrobjvaluecamelcase.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | -| `json` | [SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)[] | :heavy_minus_sign: | N/A | -| `required` | *any* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | +| `json` | [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)[] | :heavy_minus_sign: | N/A | +| `required` | *any* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/authservicerequestbody.md b/typescript-client-sdk/docs/models/shared/authservicerequestbody.md index fb12702a4..b5574bdb4 100755 --- a/typescript-client-sdk/docs/models/shared/authservicerequestbody.md +++ b/typescript-client-sdk/docs/models/shared/authservicerequestbody.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | -| `basicAuth` | [AuthServiceRequestBodyBasicAuth](../../models/shared/authservicerequestbodybasicauth.md) | :heavy_minus_sign: | N/A | -| `headerAuth` | [AuthServiceRequestBodyHeaderAuth](../../models/shared/authservicerequestbodyheaderauth.md)[] | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | +| `basicAuth` | [shared.BasicAuth](../../models/shared/basicauth.md) | :heavy_minus_sign: | N/A | +| `headerAuth` | [shared.HeaderAuth](../../models/shared/headerauth.md)[] | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md b/typescript-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md deleted file mode 100755 index 4ee6ba09f..000000000 --- a/typescript-client-sdk/docs/models/shared/authservicerequestbodybasicauth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyBasicAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `password` | *string* | :heavy_check_mark: | N/A | -| `username` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md b/typescript-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md deleted file mode 100755 index 438ca56cd..000000000 --- a/typescript-client-sdk/docs/models/shared/authservicerequestbodyheaderauth.md +++ /dev/null @@ -1,9 +0,0 @@ -# AuthServiceRequestBodyHeaderAuth - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `expectedValue` | *string* | :heavy_check_mark: | N/A | -| `headerName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/basicauth.md b/typescript-client-sdk/docs/models/shared/basicauth.md new file mode 100755 index 000000000..7055185f9 --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/basicauth.md @@ -0,0 +1,9 @@ +# BasicAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `password` | *string* | :heavy_check_mark: | N/A | +| `username` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/chocolates.md b/typescript-client-sdk/docs/models/shared/chocolates.md new file mode 100755 index 000000000..29ac802c8 --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/chocolates.md @@ -0,0 +1,8 @@ +# Chocolates + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `description` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/constenumint.md b/typescript-client-sdk/docs/models/shared/constenumint.md new file mode 100755 index 000000000..f997d5a9b --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/constenumint.md @@ -0,0 +1,10 @@ +# ConstEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | 1 | +| `Two` | 2 | +| `Three` | 3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/constenumstr.md b/typescript-client-sdk/docs/models/shared/constenumstr.md new file mode 100755 index 000000000..2ae40ddfb --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/constenumstr.md @@ -0,0 +1,10 @@ +# ConstEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | one | +| `Two` | two | +| `Three` | three | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/deepobject.md b/typescript-client-sdk/docs/models/shared/deepobject.md index 50a4fac35..743befe98 100755 --- a/typescript-client-sdk/docs/models/shared/deepobject.md +++ b/typescript-client-sdk/docs/models/shared/deepobject.md @@ -6,11 +6,11 @@ | Field | Type | Required | Description | Example | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `any` | *any* | :heavy_check_mark: | N/A | anyOf[0] | -| `arr` | [SimpleObject](../../models/shared/simpleobject.md)[] | :heavy_check_mark: | N/A | ...,... | +| `arr` | [shared.SimpleObject](../../models/shared/simpleobject.md)[] | :heavy_check_mark: | N/A | ...,... | | `bool` | *boolean* | :heavy_check_mark: | N/A | true | | `int` | *number* | :heavy_check_mark: | N/A | 1 | -| `map` | Record | :heavy_check_mark: | N/A | [object Object] | +| `map` | Record | :heavy_check_mark: | N/A | [object Object] | | `num` | *number* | :heavy_check_mark: | N/A | 1.1 | -| `obj` | [SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | +| `obj` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | | `str` | *string* | :heavy_check_mark: | N/A | test | | `type` | *string* | :heavy_minus_sign: | N/A | | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/deepobjectcamelcase.md b/typescript-client-sdk/docs/models/shared/deepobjectcamelcase.md index 6e3d0bb68..54d7ff698 100755 --- a/typescript-client-sdk/docs/models/shared/deepobjectcamelcase.md +++ b/typescript-client-sdk/docs/models/shared/deepobjectcamelcase.md @@ -6,11 +6,11 @@ | Field | Type | Required | Description | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `anyVal` | *any* | :heavy_check_mark: | N/A | -| `arrVal` | [SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)[] | :heavy_check_mark: | N/A | +| `arrVal` | [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md)[] | :heavy_check_mark: | N/A | | `boolVal` | *boolean* | :heavy_check_mark: | N/A | | `intVal` | *number* | :heavy_check_mark: | N/A | -| `mapVal` | Record | :heavy_check_mark: | N/A | +| `mapVal` | Record | :heavy_check_mark: | N/A | | `numVal` | *number* | :heavy_check_mark: | N/A | -| `objVal` | [SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | +| `objVal` | [shared.SimpleObjectCamelCase](../../models/shared/simpleobjectcamelcase.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties.

[A link to the external docs.](https://docs.speakeasyapi.dev) | | `strVal` | *string* | :heavy_check_mark: | N/A | | `type` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/defaultenumint.md b/typescript-client-sdk/docs/models/shared/defaultenumint.md new file mode 100755 index 000000000..d7e9b6543 --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/defaultenumint.md @@ -0,0 +1,10 @@ +# DefaultEnumInt + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | 1 | +| `Two` | 2 | +| `Three` | 3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/defaultenumstr.md b/typescript-client-sdk/docs/models/shared/defaultenumstr.md new file mode 100755 index 000000000..43ebd7ae7 --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/defaultenumstr.md @@ -0,0 +1,10 @@ +# DefaultEnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | one | +| `Two` | two | +| `Three` | three | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/defaultsandconsts.md b/typescript-client-sdk/docs/models/shared/defaultsandconsts.md index c27588ad8..9c127a16f 100755 --- a/typescript-client-sdk/docs/models/shared/defaultsandconsts.md +++ b/typescript-client-sdk/docs/models/shared/defaultsandconsts.md @@ -12,8 +12,8 @@ | `constDateTime` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | N/A | | `constDecimal` | *number* | :heavy_check_mark: | N/A | | `constDecimalStr` | *string* | :heavy_check_mark: | N/A | -| `constEnumInt` | [DefaultsAndConstsConstEnumInt](../../models/shared/defaultsandconstsconstenumint.md) | :heavy_check_mark: | N/A | -| `constEnumStr` | [DefaultsAndConstsConstEnumStr](../../models/shared/defaultsandconstsconstenumstr.md) | :heavy_check_mark: | N/A | +| `constEnumInt` | [shared.ConstEnumInt](../../models/shared/constenumint.md) | :heavy_check_mark: | N/A | +| `constEnumStr` | [shared.ConstEnumStr](../../models/shared/constenumstr.md) | :heavy_check_mark: | N/A | | `constInt` | *number* | :heavy_check_mark: | N/A | | `constNum` | *number* | :heavy_check_mark: | N/A | | `constStr` | *string* | :heavy_check_mark: | N/A | @@ -25,8 +25,8 @@ | `defaultDateTime` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A | | `defaultDecimal` | *number* | :heavy_minus_sign: | N/A | | `defaultDecimalStr` | *string* | :heavy_minus_sign: | N/A | -| `defaultEnumInt` | [DefaultsAndConstsDefaultEnumInt](../../models/shared/defaultsandconstsdefaultenumint.md) | :heavy_minus_sign: | N/A | -| `defaultEnumStr` | [DefaultsAndConstsDefaultEnumStr](../../models/shared/defaultsandconstsdefaultenumstr.md) | :heavy_minus_sign: | N/A | +| `defaultEnumInt` | [shared.DefaultEnumInt](../../models/shared/defaultenumint.md) | :heavy_minus_sign: | N/A | +| `defaultEnumStr` | [shared.DefaultEnumStr](../../models/shared/defaultenumstr.md) | :heavy_minus_sign: | N/A | | `defaultInt` | *number* | :heavy_minus_sign: | N/A | | `defaultNum` | *number* | :heavy_minus_sign: | N/A | | `defaultStr` | *string* | :heavy_minus_sign: | N/A | diff --git a/typescript-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md b/typescript-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md deleted file mode 100755 index c417317c2..000000000 --- a/typescript-client-sdk/docs/models/shared/defaultsandconstsconstenumint.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | 1 | -| `Two` | 2 | -| `Three` | 3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md b/typescript-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md deleted file mode 100755 index fe2be67fb..000000000 --- a/typescript-client-sdk/docs/models/shared/defaultsandconstsconstenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsConstEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | one | -| `Two` | two | -| `Three` | three | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md b/typescript-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md deleted file mode 100755 index 381ae51a2..000000000 --- a/typescript-client-sdk/docs/models/shared/defaultsandconstsdefaultenumint.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumInt - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | 1 | -| `Two` | 2 | -| `Three` | 3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md b/typescript-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md deleted file mode 100755 index cc25b20a5..000000000 --- a/typescript-client-sdk/docs/models/shared/defaultsandconstsdefaultenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# DefaultsAndConstsDefaultEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | one | -| `Two` | two | -| `Three` | three | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/defaultsandconstsoutput.md b/typescript-client-sdk/docs/models/shared/defaultsandconstsoutput.md index 4134162a9..d32de55ee 100755 --- a/typescript-client-sdk/docs/models/shared/defaultsandconstsoutput.md +++ b/typescript-client-sdk/docs/models/shared/defaultsandconstsoutput.md @@ -3,33 +3,33 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `constBigInt` | *number* | :heavy_check_mark: | N/A | -| `constBigIntStr` | *string* | :heavy_check_mark: | N/A | -| `constBool` | *boolean* | :heavy_check_mark: | N/A | -| `constDate` | [RFCDate](../../types/rfcdate.md) | :heavy_check_mark: | N/A | -| `constDateTime` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | N/A | -| `constDecimal` | *number* | :heavy_check_mark: | N/A | -| `constDecimalStr` | *string* | :heavy_check_mark: | N/A | -| `constEnumInt` | [DefaultsAndConstsOutputConstEnumInt](../../models/shared/defaultsandconstsoutputconstenumint.md) | :heavy_check_mark: | N/A | -| `constEnumStr` | [DefaultsAndConstsOutputConstEnumStr](../../models/shared/defaultsandconstsoutputconstenumstr.md) | :heavy_check_mark: | N/A | -| `constInt` | *number* | :heavy_check_mark: | N/A | -| `constNum` | *number* | :heavy_check_mark: | N/A | -| `constStr` | *string* | :heavy_check_mark: | N/A | -| `constStrNull` | *string* | :heavy_check_mark: | N/A | -| `defaultBigInt` | *number* | :heavy_check_mark: | N/A | -| `defaultBigIntStr` | *string* | :heavy_check_mark: | N/A | -| `defaultBool` | *boolean* | :heavy_check_mark: | N/A | -| `defaultDate` | [RFCDate](../../types/rfcdate.md) | :heavy_check_mark: | N/A | -| `defaultDateTime` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | N/A | -| `defaultDecimal` | *number* | :heavy_check_mark: | N/A | -| `defaultDecimalStr` | *string* | :heavy_check_mark: | N/A | -| `defaultEnumInt` | [DefaultsAndConstsOutputDefaultEnumInt](../../models/shared/defaultsandconstsoutputdefaultenumint.md) | :heavy_check_mark: | N/A | -| `defaultEnumStr` | [DefaultsAndConstsOutputDefaultEnumStr](../../models/shared/defaultsandconstsoutputdefaultenumstr.md) | :heavy_check_mark: | N/A | -| `defaultInt` | *number* | :heavy_check_mark: | N/A | -| `defaultNum` | *number* | :heavy_check_mark: | N/A | -| `defaultStr` | *string* | :heavy_check_mark: | N/A | -| `defaultStrNullable` | *string* | :heavy_check_mark: | N/A | -| `defaultStrOptional` | *string* | :heavy_minus_sign: | N/A | -| `normalField` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `constBigInt` | *number* | :heavy_check_mark: | N/A | +| `constBigIntStr` | *string* | :heavy_check_mark: | N/A | +| `constBool` | *boolean* | :heavy_check_mark: | N/A | +| `constDate` | [RFCDate](../../types/rfcdate.md) | :heavy_check_mark: | N/A | +| `constDateTime` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | N/A | +| `constDecimal` | *number* | :heavy_check_mark: | N/A | +| `constDecimalStr` | *string* | :heavy_check_mark: | N/A | +| `constEnumInt` | [shared.DefaultsAndConstsOutputConstEnumInt](../../models/shared/defaultsandconstsoutputconstenumint.md) | :heavy_check_mark: | N/A | +| `constEnumStr` | [shared.DefaultsAndConstsOutputConstEnumStr](../../models/shared/defaultsandconstsoutputconstenumstr.md) | :heavy_check_mark: | N/A | +| `constInt` | *number* | :heavy_check_mark: | N/A | +| `constNum` | *number* | :heavy_check_mark: | N/A | +| `constStr` | *string* | :heavy_check_mark: | N/A | +| `constStrNull` | *string* | :heavy_check_mark: | N/A | +| `defaultBigInt` | *number* | :heavy_check_mark: | N/A | +| `defaultBigIntStr` | *string* | :heavy_check_mark: | N/A | +| `defaultBool` | *boolean* | :heavy_check_mark: | N/A | +| `defaultDate` | [RFCDate](../../types/rfcdate.md) | :heavy_check_mark: | N/A | +| `defaultDateTime` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | N/A | +| `defaultDecimal` | *number* | :heavy_check_mark: | N/A | +| `defaultDecimalStr` | *string* | :heavy_check_mark: | N/A | +| `defaultEnumInt` | [shared.DefaultsAndConstsOutputDefaultEnumInt](../../models/shared/defaultsandconstsoutputdefaultenumint.md) | :heavy_check_mark: | N/A | +| `defaultEnumStr` | [shared.DefaultsAndConstsOutputDefaultEnumStr](../../models/shared/defaultsandconstsoutputdefaultenumstr.md) | :heavy_check_mark: | N/A | +| `defaultInt` | *number* | :heavy_check_mark: | N/A | +| `defaultNum` | *number* | :heavy_check_mark: | N/A | +| `defaultStr` | *string* | :heavy_check_mark: | N/A | +| `defaultStrNullable` | *string* | :heavy_check_mark: | N/A | +| `defaultStrOptional` | *string* | :heavy_minus_sign: | N/A | +| `normalField` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/deprecatedenum.md b/typescript-client-sdk/docs/models/shared/deprecatedenum.md new file mode 100755 index 000000000..2af19435d --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/deprecatedenum.md @@ -0,0 +1,12 @@ +# ~~DeprecatedEnum~~ + +> :warning: **DEPRECATED**: This enum is deprecated. + + +## Values + +| Name | Value | +| ----- | ----- | +| `A` | a | +| `B` | b | +| `C` | c | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/deprecatedfieldinobject.md b/typescript-client-sdk/docs/models/shared/deprecatedfieldinobject.md index 440768864..572de37df 100755 --- a/typescript-client-sdk/docs/models/shared/deprecatedfieldinobject.md +++ b/typescript-client-sdk/docs/models/shared/deprecatedfieldinobject.md @@ -5,6 +5,6 @@ | Field | Type | Required | Description | | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -| ~~`deprecatedEnum`~~ | [DeprecatedFieldInObjectDeprecatedEnum](../../models/shared/deprecatedfieldinobjectdeprecatedenum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | +| ~~`deprecatedEnum`~~ | [shared.DeprecatedEnum](../../models/shared/deprecatedenum.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This enum is deprecated. | | ~~`deprecatedField`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. Use newField instead. | | `newField` | *string* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md b/typescript-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md deleted file mode 100755 index 14c3d71b4..000000000 --- a/typescript-client-sdk/docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md +++ /dev/null @@ -1,12 +0,0 @@ -# ~~DeprecatedFieldInObjectDeprecatedEnum~~ - -> :warning: **DEPRECATED**: This enum is deprecated. - - -## Values - -| Name | Value | -| ----- | ----- | -| `A` | a | -| `B` | b | -| `C` | c | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/enumnumber.md b/typescript-client-sdk/docs/models/shared/enumnumber.md new file mode 100755 index 000000000..3da13cca6 --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/enumnumber.md @@ -0,0 +1,10 @@ +# EnumNumber + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | 1 | +| `Two` | 2 | +| `Three` | 3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/enumstr.md b/typescript-client-sdk/docs/models/shared/enumstr.md new file mode 100755 index 000000000..244a7fd0b --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/enumstr.md @@ -0,0 +1,10 @@ +# EnumStr + + +## Values + +| Name | Value | +| ------- | ------- | +| `One` | one | +| `Two` | two | +| `Three` | three | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/exampleresource.md b/typescript-client-sdk/docs/models/shared/exampleresource.md index 668a22083..ce6fed969 100755 --- a/typescript-client-sdk/docs/models/shared/exampleresource.md +++ b/typescript-client-sdk/docs/models/shared/exampleresource.md @@ -7,10 +7,10 @@ | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | | `arrayOfNumber` | *number*[] | :heavy_minus_sign: | N/A | | `arrayOfString` | *string*[] | :heavy_minus_sign: | N/A | -| `chocolates` | [ExampleResourceChocolates](../../models/shared/exampleresourcechocolates.md)[] | :heavy_check_mark: | N/A | +| `chocolates` | [shared.Chocolates](../../models/shared/chocolates.md)[] | :heavy_check_mark: | N/A | | `createdAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A | -| `enumNumber` | [ExampleResourceEnumNumber](../../models/shared/exampleresourceenumnumber.md) | :heavy_minus_sign: | N/A | -| `enumStr` | [ExampleResourceEnumStr](../../models/shared/exampleresourceenumstr.md) | :heavy_minus_sign: | N/A | +| `enumNumber` | [shared.EnumNumber](../../models/shared/enumnumber.md) | :heavy_minus_sign: | N/A | +| `enumStr` | [shared.EnumStr](../../models/shared/enumstr.md) | :heavy_minus_sign: | N/A | | `id` | *string* | :heavy_check_mark: | N/A | | `mapOfInteger` | Record | :heavy_minus_sign: | N/A | | `mapOfString` | Record | :heavy_minus_sign: | N/A | diff --git a/typescript-client-sdk/docs/models/shared/exampleresourcechocolates.md b/typescript-client-sdk/docs/models/shared/exampleresourcechocolates.md deleted file mode 100755 index b84a5214c..000000000 --- a/typescript-client-sdk/docs/models/shared/exampleresourcechocolates.md +++ /dev/null @@ -1,8 +0,0 @@ -# ExampleResourceChocolates - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `description` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/exampleresourceenumnumber.md b/typescript-client-sdk/docs/models/shared/exampleresourceenumnumber.md deleted file mode 100755 index 0a6d9bd00..000000000 --- a/typescript-client-sdk/docs/models/shared/exampleresourceenumnumber.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumNumber - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | 1 | -| `Two` | 2 | -| `Three` | 3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/exampleresourceenumstr.md b/typescript-client-sdk/docs/models/shared/exampleresourceenumstr.md deleted file mode 100755 index fbd86b672..000000000 --- a/typescript-client-sdk/docs/models/shared/exampleresourceenumstr.md +++ /dev/null @@ -1,10 +0,0 @@ -# ExampleResourceEnumStr - - -## Values - -| Name | Value | -| ------- | ------- | -| `One` | one | -| `Two` | two | -| `Three` | three | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/headerauth.md b/typescript-client-sdk/docs/models/shared/headerauth.md new file mode 100755 index 000000000..505f4e60e --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/headerauth.md @@ -0,0 +1,9 @@ +# HeaderAuth + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `expectedValue` | *string* | :heavy_check_mark: | N/A | +| `headerName` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/httpbinsimplejsonobject.md b/typescript-client-sdk/docs/models/shared/httpbinsimplejsonobject.md index 9f742de08..24e956307 100755 --- a/typescript-client-sdk/docs/models/shared/httpbinsimplejsonobject.md +++ b/typescript-client-sdk/docs/models/shared/httpbinsimplejsonobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | -| `slideshow` | [HttpBinSimpleJsonObjectSlideshow](../../models/shared/httpbinsimplejsonobjectslideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | +| `slideshow` | [shared.Slideshow](../../models/shared/slideshow.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md b/typescript-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md deleted file mode 100755 index caf863296..000000000 --- a/typescript-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshow.md +++ /dev/null @@ -1,11 +0,0 @@ -# HttpBinSimpleJsonObjectSlideshow - - -## Fields - -| Field | Type | Required | Description | -| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | -| `author` | *string* | :heavy_check_mark: | N/A | -| `date` | *string* | :heavy_check_mark: | N/A | -| `slides` | [HttpBinSimpleJsonObjectSlideshowSlides](../../models/shared/httpbinsimplejsonobjectslideshowslides.md)[] | :heavy_check_mark: | N/A | -| `title` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md b/typescript-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md deleted file mode 100755 index 8cf732511..000000000 --- a/typescript-client-sdk/docs/models/shared/httpbinsimplejsonobjectslideshowslides.md +++ /dev/null @@ -1,10 +0,0 @@ -# HttpBinSimpleJsonObjectSlideshowSlides - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `items` | *string*[] | :heavy_minus_sign: | N/A | -| `title` | *string* | :heavy_check_mark: | N/A | -| `type` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/int32enum.md b/typescript-client-sdk/docs/models/shared/int32enum.md new file mode 100755 index 000000000..3827028a2 --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/int32enum.md @@ -0,0 +1,12 @@ +# Int32Enum + +An int32 enum property. + + +## Values + +| Name | Value | +| ------------------------ | ------------------------ | +| `FiftyFive` | 55 | +| `SixtyNine` | 69 | +| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/int32enumval.md b/typescript-client-sdk/docs/models/shared/int32enumval.md new file mode 100755 index 000000000..e0dcea464 --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/int32enumval.md @@ -0,0 +1,12 @@ +# Int32EnumVal + +An int32 enum property. + + +## Values + +| Name | Value | +| ------------------------ | ------------------------ | +| `FiftyFive` | 55 | +| `SixtyNine` | 69 | +| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/intenum.md b/typescript-client-sdk/docs/models/shared/intenum.md new file mode 100755 index 000000000..5a6582451 --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/intenum.md @@ -0,0 +1,12 @@ +# IntEnum + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `First` | 1 | +| `Second` | 2 | +| `Third` | 3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/intenumval.md b/typescript-client-sdk/docs/models/shared/intenumval.md new file mode 100755 index 000000000..1261fe20b --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/intenumval.md @@ -0,0 +1,12 @@ +# IntEnumVal + +An integer enum property. + + +## Values + +| Name | Value | +| -------- | -------- | +| `First` | 1 | +| `Second` | 2 | +| `Third` | 3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/mapobjvalue.md b/typescript-client-sdk/docs/models/shared/mapobjvalue.md index 603961e25..c33c5c589 100755 --- a/typescript-client-sdk/docs/models/shared/mapobjvalue.md +++ b/typescript-client-sdk/docs/models/shared/mapobjvalue.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | -| `json` | Record | :heavy_minus_sign: | N/A | -| `required` | *any* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `json` | Record | :heavy_minus_sign: | N/A | +| `required` | *any* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/mapobjvaluecamelcase.md b/typescript-client-sdk/docs/models/shared/mapobjvaluecamelcase.md index 5a181600f..303287375 100755 --- a/typescript-client-sdk/docs/models/shared/mapobjvaluecamelcase.md +++ b/typescript-client-sdk/docs/models/shared/mapobjvaluecamelcase.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `json` | Record | :heavy_minus_sign: | N/A | -| `required` | *any* | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `json` | Record | :heavy_minus_sign: | N/A | +| `required` | *any* | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/nullableoneofrefinobject.md b/typescript-client-sdk/docs/models/shared/nullableoneofrefinobject.md index 85afef862..6cefef29a 100755 --- a/typescript-client-sdk/docs/models/shared/nullableoneofrefinobject.md +++ b/typescript-client-sdk/docs/models/shared/nullableoneofrefinobject.md @@ -3,8 +3,8 @@ ## Fields -| Field | Type | Required | Description | -| --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | -| `nullableOneOfOne` | [TypedObject1](../../models/shared/typedobject1.md) | :heavy_check_mark: | N/A | -| `nullableOneOfTwo` | *any* | :heavy_check_mark: | N/A | -| `oneOfOne` | *any* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | +| `nullableOneOfOne` | [shared.TypedObject1](../../models/shared/typedobject1.md) | :heavy_check_mark: | N/A | +| `nullableOneOfTwo` | *any* | :heavy_check_mark: | N/A | +| `oneOfOne` | *any* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/objectcircularreferenceobject.md b/typescript-client-sdk/docs/models/shared/objectcircularreferenceobject.md index 369de0505..ee5b15db8 100755 --- a/typescript-client-sdk/docs/models/shared/objectcircularreferenceobject.md +++ b/typescript-client-sdk/docs/models/shared/objectcircularreferenceobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `circular` | [ObjectCircularReferenceObject](../../models/shared/objectcircularreferenceobject.md) | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `circular` | [shared.ObjectCircularReferenceObject](../../models/shared/objectcircularreferenceobject.md) | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/readwriteobject.md b/typescript-client-sdk/docs/models/shared/readwriteobject.md new file mode 100755 index 000000000..b5b676dab --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/readwriteobject.md @@ -0,0 +1,10 @@ +# ReadWriteObject + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `num1` | *number* | :heavy_check_mark: | N/A | +| `num2` | *number* | :heavy_check_mark: | N/A | +| `num3` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/readwriteobjectinput.md b/typescript-client-sdk/docs/models/shared/readwriteobjectinput.md deleted file mode 100755 index 4d2a52adf..000000000 --- a/typescript-client-sdk/docs/models/shared/readwriteobjectinput.md +++ /dev/null @@ -1,10 +0,0 @@ -# ReadWriteObjectInput - - -## Fields - -| Field | Type | Required | Description | -| ------------------ | ------------------ | ------------------ | ------------------ | -| `num1` | *number* | :heavy_check_mark: | N/A | -| `num2` | *number* | :heavy_check_mark: | N/A | -| `num3` | *number* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/simpleobject.md b/typescript-client-sdk/docs/models/shared/simpleobject.md index a01d7eda1..36c6ebaf8 100755 --- a/typescript-client-sdk/docs/models/shared/simpleobject.md +++ b/typescript-client-sdk/docs/models/shared/simpleobject.md @@ -19,12 +19,12 @@ A link to the external docs. | `dateTime` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00.000000001Z | | `decimal` | *number* | :heavy_minus_sign: | N/A | 3.141592653589793 | | `decimalStr` | *string* | :heavy_minus_sign: | N/A | 3.14159265358979344719667586 | -| `enum` | [Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | +| `enum` | [shared.Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | | `float32` | *number* | :heavy_check_mark: | A float32 property. | 1.1 | | `int` | *number* | :heavy_check_mark: | An integer property. | 1 | | `int32` | *number* | :heavy_check_mark: | An int32 property. | 1 | -| `int32Enum` | [SimpleObjectInt32Enum](../../models/shared/simpleobjectint32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | -| `intEnum` | [SimpleObjectIntEnum](../../models/shared/simpleobjectintenum.md) | :heavy_check_mark: | An integer enum property. | 2 | +| `int32Enum` | [shared.Int32Enum](../../models/shared/int32enum.md) | :heavy_check_mark: | An int32 enum property. | 55 | +| `intEnum` | [shared.IntEnum](../../models/shared/intenum.md) | :heavy_check_mark: | An integer enum property. | 2 | | `intOptNull` | *number* | :heavy_minus_sign: | An optional integer property will be null for tests. | | | `num` | *number* | :heavy_check_mark: | A number property. | 1.1 | | `numOptNull` | *number* | :heavy_minus_sign: | An optional number property will be null for tests. | | diff --git a/typescript-client-sdk/docs/models/shared/simpleobjectcamelcase.md b/typescript-client-sdk/docs/models/shared/simpleobjectcamelcase.md index b5cee9ae5..c4c542702 100755 --- a/typescript-client-sdk/docs/models/shared/simpleobjectcamelcase.md +++ b/typescript-client-sdk/docs/models/shared/simpleobjectcamelcase.md @@ -18,11 +18,11 @@ A link to the external docs. | `dateTimeVal` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_check_mark: | A date-time property. | 2020-01-01T00:00:00Z | | `dateVal` | [RFCDate](../../types/rfcdate.md) | :heavy_check_mark: | A date property. | 2020-01-01 | | `decimalVal` | *number* | :heavy_minus_sign: | N/A | | -| `enumVal` | [Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | +| `enumVal` | [shared.Enum](../../models/shared/enum.md) | :heavy_check_mark: | A string based enum | one | | `float32Val` | *number* | :heavy_check_mark: | A float32 property. | 2.2222222 | -| `int32EnumVal` | [SimpleObjectCamelCaseInt32EnumVal](../../models/shared/simpleobjectcamelcaseint32enumval.md) | :heavy_check_mark: | An int32 enum property. | 69 | +| `int32EnumVal` | [shared.Int32EnumVal](../../models/shared/int32enumval.md) | :heavy_check_mark: | An int32 enum property. | 69 | | `int32Val` | *number* | :heavy_check_mark: | An int32 property. | 1 | -| `intEnumVal` | [SimpleObjectCamelCaseIntEnumVal](../../models/shared/simpleobjectcamelcaseintenumval.md) | :heavy_check_mark: | An integer enum property. | 3 | +| `intEnumVal` | [shared.IntEnumVal](../../models/shared/intenumval.md) | :heavy_check_mark: | An integer enum property. | 3 | | `intOptNullVal` | *number* | :heavy_minus_sign: | An optional integer property will be null for tests. | 999999 | | `intVal` | *number* | :heavy_check_mark: | An integer property. | 999999 | | `numOptNullVal` | *number* | :heavy_minus_sign: | An optional number property will be null for tests. | 1.1 | diff --git a/typescript-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md b/typescript-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md deleted file mode 100755 index 066a09cee..000000000 --- a/typescript-client-sdk/docs/models/shared/simpleobjectcamelcaseint32enumval.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseInt32EnumVal - -An int32 enum property. - - -## Values - -| Name | Value | -| ------------------------ | ------------------------ | -| `FiftyFive` | 55 | -| `SixtyNine` | 69 | -| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md b/typescript-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md deleted file mode 100755 index 13e4ff61c..000000000 --- a/typescript-client-sdk/docs/models/shared/simpleobjectcamelcaseintenumval.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectCamelCaseIntEnumVal - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `First` | 1 | -| `Second` | 2 | -| `Third` | 3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/simpleobjectint32enum.md b/typescript-client-sdk/docs/models/shared/simpleobjectint32enum.md deleted file mode 100755 index 1671069bb..000000000 --- a/typescript-client-sdk/docs/models/shared/simpleobjectint32enum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectInt32Enum - -An int32 enum property. - - -## Values - -| Name | Value | -| ------------------------ | ------------------------ | -| `FiftyFive` | 55 | -| `SixtyNine` | 69 | -| `OneHundredAndEightyOne` | 181 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/simpleobjectintenum.md b/typescript-client-sdk/docs/models/shared/simpleobjectintenum.md deleted file mode 100755 index 90d7f4ecb..000000000 --- a/typescript-client-sdk/docs/models/shared/simpleobjectintenum.md +++ /dev/null @@ -1,12 +0,0 @@ -# SimpleObjectIntEnum - -An integer enum property. - - -## Values - -| Name | Value | -| -------- | -------- | -| `First` | 1 | -| `Second` | 2 | -| `Third` | 3 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/slides.md b/typescript-client-sdk/docs/models/shared/slides.md new file mode 100755 index 000000000..eba4eaac2 --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/slides.md @@ -0,0 +1,10 @@ +# Slides + + +## Fields + +| Field | Type | Required | Description | +| ------------------ | ------------------ | ------------------ | ------------------ | +| `items` | *string*[] | :heavy_minus_sign: | N/A | +| `title` | *string* | :heavy_check_mark: | N/A | +| `type` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/slideshow.md b/typescript-client-sdk/docs/models/shared/slideshow.md new file mode 100755 index 000000000..023adb611 --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/slideshow.md @@ -0,0 +1,11 @@ +# Slideshow + + +## Fields + +| Field | Type | Required | Description | +| ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | +| `author` | *string* | :heavy_check_mark: | N/A | +| `date` | *string* | :heavy_check_mark: | N/A | +| `slides` | [shared.Slides](../../models/shared/slides.md)[] | :heavy_check_mark: | N/A | +| `title` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/typedobject1.md b/typescript-client-sdk/docs/models/shared/typedobject1.md index 02fc2f576..b692a03f5 100755 --- a/typescript-client-sdk/docs/models/shared/typedobject1.md +++ b/typescript-client-sdk/docs/models/shared/typedobject1.md @@ -3,7 +3,7 @@ ## Fields -| Field | Type | Required | Description | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| `type` | [TypedObject1Type](../../models/shared/typedobject1type.md) | :heavy_check_mark: | N/A | -| `value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | +| `type` | [shared.TypeT](../../models/shared/typet.md) | :heavy_check_mark: | N/A | +| `value` | *string* | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/typedobject1type.md b/typescript-client-sdk/docs/models/shared/typedobject1type.md deleted file mode 100755 index 8df1ada70..000000000 --- a/typescript-client-sdk/docs/models/shared/typedobject1type.md +++ /dev/null @@ -1,8 +0,0 @@ -# TypedObject1Type - - -## Values - -| Name | Value | -| ------ | ------ | -| `Obj1` | obj1 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/typet.md b/typescript-client-sdk/docs/models/shared/typet.md new file mode 100755 index 000000000..7aec6b050 --- /dev/null +++ b/typescript-client-sdk/docs/models/shared/typet.md @@ -0,0 +1,8 @@ +# TypeT + + +## Values + +| Name | Value | +| ------ | ------ | +| `Obj1` | obj1 | \ No newline at end of file diff --git a/typescript-client-sdk/docs/models/shared/validcircularreferenceobject.md b/typescript-client-sdk/docs/models/shared/validcircularreferenceobject.md index 48f72ce1c..96df6b1a7 100755 --- a/typescript-client-sdk/docs/models/shared/validcircularreferenceobject.md +++ b/typescript-client-sdk/docs/models/shared/validcircularreferenceobject.md @@ -3,6 +3,6 @@ ## Fields -| Field | Type | Required | Description | -| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -| `circular` | [ValidCircularReferenceObject](../../models/shared/validcircularreferenceobject.md)[] | :heavy_minus_sign: | N/A | \ No newline at end of file +| Field | Type | Required | Description | +| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| `circular` | [shared.ValidCircularReferenceObject](../../models/shared/validcircularreferenceobject.md)[] | :heavy_minus_sign: | N/A | \ No newline at end of file diff --git a/typescript-client-sdk/docs/sdks/auth/README.md b/typescript-client-sdk/docs/sdks/auth/README.md index ab5e203fc..e7d1cb4ae 100755 --- a/typescript-client-sdk/docs/sdks/auth/README.md +++ b/typescript-client-sdk/docs/sdks/auth/README.md @@ -1,5 +1,5 @@ # Auth -(*auth*) +(*.auth*) ## Overview diff --git a/typescript-client-sdk/docs/sdks/authnew/README.md b/typescript-client-sdk/docs/sdks/authnew/README.md index 6445af564..39aaceee0 100755 --- a/typescript-client-sdk/docs/sdks/authnew/README.md +++ b/typescript-client-sdk/docs/sdks/authnew/README.md @@ -1,5 +1,5 @@ # AuthNew -(*authNew*) +(*.authNew*) ## Overview diff --git a/typescript-client-sdk/docs/sdks/documentation/README.md b/typescript-client-sdk/docs/sdks/documentation/README.md index 776ed68e4..978196357 100755 --- a/typescript-client-sdk/docs/sdks/documentation/README.md +++ b/typescript-client-sdk/docs/sdks/documentation/README.md @@ -1,5 +1,5 @@ # Documentation -(*documentation*) +(*.documentation*) ## Overview diff --git a/typescript-client-sdk/docs/sdks/errors/README.md b/typescript-client-sdk/docs/sdks/errors/README.md index 8a3437b3b..e2bb94c93 100755 --- a/typescript-client-sdk/docs/sdks/errors/README.md +++ b/typescript-client-sdk/docs/sdks/errors/README.md @@ -1,5 +1,5 @@ # Errors -(*errors*) +(*.errors*) ## Overview diff --git a/typescript-client-sdk/docs/sdks/first/README.md b/typescript-client-sdk/docs/sdks/first/README.md index 6c1e8b34f..55820339c 100755 --- a/typescript-client-sdk/docs/sdks/first/README.md +++ b/typescript-client-sdk/docs/sdks/first/README.md @@ -1,5 +1,5 @@ # First -(*first*) +(*.first*) ### Available Operations diff --git a/typescript-client-sdk/docs/sdks/flattening/README.md b/typescript-client-sdk/docs/sdks/flattening/README.md index b5893ce7c..cad8fe0cb 100755 --- a/typescript-client-sdk/docs/sdks/flattening/README.md +++ b/typescript-client-sdk/docs/sdks/flattening/README.md @@ -1,5 +1,5 @@ # Flattening -(*flattening*) +(*.flattening*) ## Overview @@ -20,7 +20,7 @@ Endpoints for testing flattening through request body and parameter combinations ```typescript import { SDK } from "openapi"; import { ComponentBodyAndParamConflictRequest } from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObject, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum, SimpleObject } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -45,8 +45,8 @@ const simpleObject: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -83,7 +83,7 @@ const str: string = "string"; ```typescript import { SDK } from "openapi"; import { ComponentBodyAndParamNoConflictRequest } from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObject, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum, SimpleObject } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -109,8 +109,8 @@ const simpleObject: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", diff --git a/typescript-client-sdk/docs/sdks/generation/README.md b/typescript-client-sdk/docs/sdks/generation/README.md index 11e9c31f5..ab27d13c9 100755 --- a/typescript-client-sdk/docs/sdks/generation/README.md +++ b/typescript-client-sdk/docs/sdks/generation/README.md @@ -1,5 +1,5 @@ # Generation -(*generation*) +(*.generation*) ## Overview @@ -266,7 +266,7 @@ const decimalInput: number = 4060.06; ```typescript import { SDK } from "openapi"; -import { DeprecatedFieldInObjectDeprecatedEnum } from "openapi/dist/sdk/models/shared"; +import { DeprecatedEnum } from "openapi/dist/sdk/models/shared"; (async() => { const sdk = new SDK({ @@ -582,7 +582,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { IgnoresPostApplicationJSON, IgnoresPostRequest } from "openapi/dist/sdk/models/operations"; +import { IgnoresPostRequest, IgnoresPostRequestBody } from "openapi/dist/sdk/models/operations"; (async() => { const sdk = new SDK({ @@ -592,7 +592,7 @@ import { IgnoresPostApplicationJSON, IgnoresPostRequest } from "openapi/dist/sdk globalPathParam: 100, globalQueryParam: "some example global query param", }); -const requestBody: IgnoresPostApplicationJSON = {}; +const requestBody: IgnoresPostRequestBody = {}; const testParam: string = "string"; const res = await sdk.generation.ignoresPost(requestBody, testParam); @@ -606,11 +606,11 @@ const testParam: string = "string"; ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| `requestBody` | [operations.IgnoresPostApplicationJSON](../../models/operations/ignorespostapplicationjson.md) | :heavy_check_mark: | N/A | -| `testParam` | *string* | :heavy_minus_sign: | N/A | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| `requestBody` | [operations.IgnoresPostRequestBody](../../models/operations/ignorespostrequestbody.md) | :heavy_check_mark: | N/A | +| `testParam` | *string* | :heavy_minus_sign: | N/A | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | ### Response @@ -624,7 +624,7 @@ const testParam: string = "string"; ```typescript import { SDK } from "openapi"; -import { NameOverrideGetEnumNameOverride, NameOverrideGetRequest } from "openapi/dist/sdk/models/operations"; +import { EnumNameOverride, NameOverrideGetRequest } from "openapi/dist/sdk/models/operations"; (async() => { const sdk = new SDK({ @@ -634,7 +634,7 @@ import { NameOverrideGetEnumNameOverride, NameOverrideGetRequest } from "openapi globalPathParam: 100, globalQueryParam: "some example global query param", }); -const testEnumQueryParam: NameOverrideGetEnumNameOverride = NameOverrideGetEnumNameOverride.Value3; +const testEnumQueryParam: EnumNameOverride = EnumNameOverride.Value3; const testQueryParam: string = "example"; const res = await sdk.generation.nameOverride(testEnumQueryParam, testQueryParam); @@ -648,11 +648,11 @@ const testQueryParam: string = "example"; ### Parameters -| Parameter | Type | Required | Description | Example | -| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -| `testEnumQueryParam` | [operations.NameOverrideGetEnumNameOverride](../../models/operations/nameoverridegetenumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | -| `testQueryParam` | *string* | :heavy_check_mark: | N/A | example | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | | +| Parameter | Type | Required | Description | Example | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `testEnumQueryParam` | [operations.EnumNameOverride](../../models/operations/enumnameoverride.md) | :heavy_check_mark: | An enum type | value3 | +| `testQueryParam` | *string* | :heavy_check_mark: | N/A | example | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | | ### Response @@ -740,7 +740,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { TypedParameterGenerationGetObj, TypedParameterGenerationGetRequest } from "openapi/dist/sdk/models/operations"; +import { Obj, TypedParameterGenerationGetRequest } from "openapi/dist/sdk/models/operations"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -754,7 +754,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; const bigint: number = 879275; const date: RFCDate = new RFCDate("2023-11-18"); const decimal: number = 3346.96; -const obj: TypedParameterGenerationGetObj = { +const obj: Obj = { bool: false, num: 4778.06, str: "string", @@ -771,13 +771,13 @@ const obj: TypedParameterGenerationGetObj = { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | -| `bigint` | *number* | :heavy_minus_sign: | N/A | -| `date` | [RFCDate](../../types/rfcdate.md) | :heavy_minus_sign: | N/A | -| `decimal` | *number* | :heavy_minus_sign: | N/A | -| `obj` | [operations.TypedParameterGenerationGetObj](../../models/operations/typedparametergenerationgetobj.md) | :heavy_minus_sign: | N/A | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | +| `bigint` | *number* | :heavy_minus_sign: | N/A | +| `date` | [RFCDate](../../types/rfcdate.md) | :heavy_minus_sign: | N/A | +| `decimal` | *number* | :heavy_minus_sign: | N/A | +| `obj` | [operations.Obj](../../models/operations/obj.md) | :heavy_minus_sign: | N/A | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | ### Response @@ -796,12 +796,8 @@ Usage example docs ```typescript import { SDK } from "openapi"; -import { - UsageExamplePostEnumParameter, - UsageExamplePostOptEnumParameter, - UsageExamplePostSecurity, -} from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { EnumParameter, OptEnumParameter, UsageExamplePostSecurity } from "openapi/dist/sdk/models/operations"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -832,8 +828,8 @@ const operationSecurity: UsageExamplePostSecurity = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -848,13 +844,13 @@ const operationSecurity: UsageExamplePostSecurity = { decimalParameter: 2679.33, decimalStrParameter: "string", doubleParameter: 5223.72, - enumParameter: UsageExamplePostEnumParameter.Value1, + enumParameter: EnumParameter.Value1, falseyNumberParameter: 0, float32Parameter: 6946.59, floatParameter: 2286.22, int64Parameter: 102975, intParameter: 566999, - optEnumParameter: UsageExamplePostOptEnumParameter.Value3, + optEnumParameter: OptEnumParameter.Value3, strParameter: "example 1", }, operationSecurity); diff --git a/typescript-client-sdk/docs/sdks/globals/README.md b/typescript-client-sdk/docs/sdks/globals/README.md index 384d8131b..d4bcf414e 100755 --- a/typescript-client-sdk/docs/sdks/globals/README.md +++ b/typescript-client-sdk/docs/sdks/globals/README.md @@ -1,5 +1,5 @@ # Globals -(*globals*) +(*.globals*) ## Overview diff --git a/typescript-client-sdk/docs/sdks/nest/README.md b/typescript-client-sdk/docs/sdks/nest/README.md index 30ece9317..fea0cec1f 100755 --- a/typescript-client-sdk/docs/sdks/nest/README.md +++ b/typescript-client-sdk/docs/sdks/nest/README.md @@ -1,5 +1,5 @@ # Nest -(*nest*) +(*.nest*) ### Available Operations diff --git a/typescript-client-sdk/docs/sdks/nested/README.md b/typescript-client-sdk/docs/sdks/nested/README.md index 2724ce161..7e0fdd5e7 100755 --- a/typescript-client-sdk/docs/sdks/nested/README.md +++ b/typescript-client-sdk/docs/sdks/nested/README.md @@ -1,5 +1,5 @@ # Nested -(*nested*) +(*.nested*) ### Available Operations diff --git a/typescript-client-sdk/docs/sdks/nestedfirst/README.md b/typescript-client-sdk/docs/sdks/nestedfirst/README.md deleted file mode 100755 index c499eec5c..000000000 --- a/typescript-client-sdk/docs/sdks/nestedfirst/README.md +++ /dev/null @@ -1,43 +0,0 @@ -# NestedFirst -(*nested.first*) - -### Available Operations - -* [get](#get) - -## get - -### Example Usage - -```typescript -import { SDK } from "openapi"; - -(async() => { - const sdk = new SDK({ - security: { - apiKeyAuth: "Token YOUR_API_KEY", - }, - globalPathParam: 100, - globalQueryParam: "some example global query param", - }); - - const res = await sdk.nested.first.get(); - - - if (res.statusCode == 200) { - // handle response - } -})(); -``` - -### Parameters - -| Parameter | Type | Required | Description | -| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | - - -### Response - -**Promise<[operations.NestedFirstGetResponse](../../models/operations/nestedfirstgetresponse.md)>** - diff --git a/typescript-client-sdk/docs/sdks/nestedsecond/README.md b/typescript-client-sdk/docs/sdks/nestedsecond/README.md deleted file mode 100755 index c1481eda6..000000000 --- a/typescript-client-sdk/docs/sdks/nestedsecond/README.md +++ /dev/null @@ -1,43 +0,0 @@ -# NestedSecond -(*nested.second*) - -### Available Operations - -* [get](#get) - -## get - -### Example Usage - -```typescript -import { SDK } from "openapi"; - -(async() => { - const sdk = new SDK({ - security: { - apiKeyAuth: "Token YOUR_API_KEY", - }, - globalPathParam: 100, - globalQueryParam: "some example global query param", - }); - - const res = await sdk.nested.second.get(); - - - if (res.statusCode == 200) { - // handle response - } -})(); -``` - -### Parameters - -| Parameter | Type | Required | Description | -| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | - - -### Response - -**Promise<[operations.NestedSecondGetResponse](../../models/operations/nestedsecondgetresponse.md)>** - diff --git a/typescript-client-sdk/docs/sdks/nestfirst/README.md b/typescript-client-sdk/docs/sdks/nestfirst/README.md deleted file mode 100755 index a7b686017..000000000 --- a/typescript-client-sdk/docs/sdks/nestfirst/README.md +++ /dev/null @@ -1,43 +0,0 @@ -# NestFirst -(*nest.first*) - -### Available Operations - -* [get](#get) - -## get - -### Example Usage - -```typescript -import { SDK } from "openapi"; - -(async() => { - const sdk = new SDK({ - security: { - apiKeyAuth: "Token YOUR_API_KEY", - }, - globalPathParam: 100, - globalQueryParam: "some example global query param", - }); - - const res = await sdk.nest.first.get(); - - - if (res.statusCode == 200) { - // handle response - } -})(); -``` - -### Parameters - -| Parameter | Type | Required | Description | -| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | - - -### Response - -**Promise<[operations.NestFirstGetResponse](../../models/operations/nestfirstgetresponse.md)>** - diff --git a/typescript-client-sdk/docs/sdks/pagination/README.md b/typescript-client-sdk/docs/sdks/pagination/README.md index 85cc2b8be..e083ce922 100755 --- a/typescript-client-sdk/docs/sdks/pagination/README.md +++ b/typescript-client-sdk/docs/sdks/pagination/README.md @@ -1,5 +1,5 @@ # Pagination -(*pagination*) +(*.pagination*) ## Overview diff --git a/typescript-client-sdk/docs/sdks/parameters/README.md b/typescript-client-sdk/docs/sdks/parameters/README.md index fa2202804..c6dde2d29 100755 --- a/typescript-client-sdk/docs/sdks/parameters/README.md +++ b/typescript-client-sdk/docs/sdks/parameters/README.md @@ -1,5 +1,5 @@ # ParametersT -(*parameters*) +(*.parameters*) ## Overview @@ -91,8 +91,8 @@ const mapArrParam: Record = { ```typescript import { SDK } from "openapi"; -import { DeepObjectQueryParamsObjectObjArrParam, DeepObjectQueryParamsObjectRequest } from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObject, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { DeepObjectQueryParamsObjectRequest, ObjArrParam } from "openapi/dist/sdk/models/operations"; +import { Enum, Int32Enum, IntEnum, SimpleObject } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -117,13 +117,13 @@ const objParam: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", }; -const objArrParam: DeepObjectQueryParamsObjectObjArrParam = { +const objArrParam: ObjArrParam = { arr: [ "test", "test2", @@ -141,11 +141,11 @@ const objArrParam: DeepObjectQueryParamsObjectObjArrParam = { ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -| `objParam` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | -| `objArrParam` | [operations.DeepObjectQueryParamsObjectObjArrParam](../../models/operations/deepobjectqueryparamsobjectobjarrparam.md) | :heavy_minus_sign: | N/A | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | +| `objParam` | [shared.SimpleObject](../../models/shared/simpleobject.md) | :heavy_check_mark: | A simple object that uses all our supported primitive types and enums and has optional properties. | +| `objArrParam` | [operations.ObjArrParam](../../models/operations/objarrparam.md) | :heavy_minus_sign: | N/A | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | ### Response @@ -247,11 +247,7 @@ const arrParamExploded: number[] = [ ```typescript import { SDK } from "openapi"; -import { - FormQueryParamsCamelObjectObjParam, - FormQueryParamsCamelObjectObjParamExploded, - FormQueryParamsCamelObjectRequest, -} from "openapi/dist/sdk/models/operations"; +import { FormQueryParamsCamelObjectRequest, ObjParam, ObjParamExploded } from "openapi/dist/sdk/models/operations"; (async() => { const sdk = new SDK({ @@ -261,11 +257,11 @@ import { globalPathParam: 100, globalQueryParam: "some example global query param", }); -const objParamExploded: FormQueryParamsCamelObjectObjParamExploded = { +const objParamExploded: ObjParamExploded = { itemCount: "10", searchTerm: "foo", }; -const objParam: FormQueryParamsCamelObjectObjParam = { +const objParam: ObjParam = { encodedCount: "11", encodedTerm: "bar", }; @@ -281,11 +277,11 @@ const objParam: FormQueryParamsCamelObjectObjParam = { ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| `objParamExploded` | [operations.FormQueryParamsCamelObjectObjParamExploded](../../models/operations/formqueryparamscamelobjectobjparamexploded.md) | :heavy_check_mark: | N/A | -| `objParam` | [operations.FormQueryParamsCamelObjectObjParam](../../models/operations/formqueryparamscamelobjectobjparam.md) | :heavy_minus_sign: | N/A | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| `objParamExploded` | [operations.ObjParamExploded](../../models/operations/objparamexploded.md) | :heavy_check_mark: | N/A | +| `objParam` | [operations.ObjParam](../../models/operations/objparam.md) | :heavy_minus_sign: | N/A | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | ### Response @@ -348,7 +344,7 @@ const mapParamExploded: Record = { ```typescript import { SDK } from "openapi"; import { FormQueryParamsObjectRequest } from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObject, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum, SimpleObject } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -373,8 +369,8 @@ const objParamExploded: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -393,8 +389,8 @@ const objParam: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -620,7 +616,7 @@ const xHeaderMapExplode: Record = { ```typescript import { SDK } from "openapi"; import { HeaderParamsObjectRequest } from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObject, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum, SimpleObject } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -645,8 +641,8 @@ const xHeaderObj: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -665,8 +661,8 @@ const xHeaderObjExplode: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -748,7 +744,7 @@ const xHeaderString: string = "test"; ```typescript import { SDK } from "openapi"; import { JsonQueryParamsObjectRequest } from "openapi/dist/sdk/models/operations"; -import { DeepObject, Enum, SimpleObject, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { DeepObject, Enum, Int32Enum, IntEnum, SimpleObject } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -776,8 +772,8 @@ const deepObjParam: DeepObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -796,8 +792,8 @@ const deepObjParam: DeepObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -820,8 +816,8 @@ const deepObjParam: DeepObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -840,8 +836,8 @@ const deepObjParam: DeepObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -862,8 +858,8 @@ const deepObjParam: DeepObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -884,8 +880,8 @@ const simpleObjParam: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1009,7 +1005,7 @@ const queryStringParam: string = "queryValue"; ```typescript import { SDK } from "openapi"; import { MixedQueryParamsRequest } from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObject, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum, SimpleObject } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1034,8 +1030,8 @@ const deepObjectParam: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1054,8 +1050,8 @@ const formParam: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1074,8 +1070,8 @@ const jsonParam: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1112,7 +1108,7 @@ const jsonParam: SimpleObject = { ```typescript import { SDK } from "openapi"; import { PathParameterJsonRequest } from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObject, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum, SimpleObject } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1137,8 +1133,8 @@ const jsonObj: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1173,7 +1169,7 @@ const jsonObj: SimpleObject = { ```typescript import { SDK } from "openapi"; import { PipeDelimitedQueryParamsArrayRequest } from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObject, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum, SimpleObject } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1210,8 +1206,8 @@ const objParam: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1340,7 +1336,7 @@ const mapParamExploded: Record = { ```typescript import { SDK } from "openapi"; import { SimplePathParameterObjectsRequest } from "openapi/dist/sdk/models/operations"; -import { Enum, SimpleObject, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum, SimpleObject } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1365,8 +1361,8 @@ const objParam: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1385,8 +1381,8 @@ const objParamExploded: SimpleObject = { float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", diff --git a/typescript-client-sdk/docs/sdks/requestbodies/README.md b/typescript-client-sdk/docs/sdks/requestbodies/README.md index 9b92217c4..0e5b8f3e0 100755 --- a/typescript-client-sdk/docs/sdks/requestbodies/README.md +++ b/typescript-client-sdk/docs/sdks/requestbodies/README.md @@ -1,5 +1,5 @@ # RequestBodies -(*requestBodies*) +(*.requestBodies*) ## Overview @@ -177,7 +177,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { NullableRequiredPropertyPostRequestBodyNullableRequiredEnum } from "openapi/dist/sdk/models/operations"; +import { NullableRequiredEnum } from "openapi/dist/sdk/models/operations"; (async() => { const sdk = new SDK({ @@ -192,7 +192,7 @@ import { NullableRequiredPropertyPostRequestBodyNullableRequiredEnum } from "ope nullableRequiredArray: [ 2355.17, ], - nullableRequiredEnum: NullableRequiredPropertyPostRequestBodyNullableRequiredEnum.Second, + nullableRequiredEnum: NullableRequiredEnum.Second, nullableRequiredInt: 50266, }); @@ -267,7 +267,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -294,8 +294,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -329,7 +329,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectCamelCaseInt32EnumVal, SimpleObjectCamelCaseIntEnumVal } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32EnumVal, IntEnumVal } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -350,9 +350,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -389,7 +389,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -416,8 +416,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -450,7 +450,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectCamelCaseInt32EnumVal, SimpleObjectCamelCaseIntEnumVal } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32EnumVal, IntEnumVal } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -471,9 +471,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -509,7 +509,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -537,8 +537,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -573,7 +573,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectCamelCaseInt32EnumVal, SimpleObjectCamelCaseIntEnumVal } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32EnumVal, IntEnumVal } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -595,9 +595,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -678,7 +678,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -706,8 +706,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -742,7 +742,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectCamelCaseInt32EnumVal, SimpleObjectCamelCaseIntEnumVal } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32EnumVal, IntEnumVal } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -764,9 +764,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -845,7 +845,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -874,8 +874,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -894,8 +894,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -918,8 +918,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -938,8 +938,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -960,8 +960,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -995,7 +995,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectCamelCaseInt32EnumVal, SimpleObjectCamelCaseIntEnumVal } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32EnumVal, IntEnumVal } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1018,9 +1018,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -1040,9 +1040,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -1060,9 +1060,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -1099,7 +1099,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1126,8 +1126,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1161,7 +1161,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectCamelCaseInt32EnumVal, SimpleObjectCamelCaseIntEnumVal } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32EnumVal, IntEnumVal } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1182,9 +1182,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -1221,7 +1221,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1248,8 +1248,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1282,7 +1282,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectCamelCaseInt32EnumVal, SimpleObjectCamelCaseIntEnumVal } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32EnumVal, IntEnumVal } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1303,9 +1303,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -1341,7 +1341,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1369,8 +1369,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1405,7 +1405,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectCamelCaseInt32EnumVal, SimpleObjectCamelCaseIntEnumVal } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32EnumVal, IntEnumVal } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1427,9 +1427,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -1467,7 +1467,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1495,8 +1495,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1531,7 +1531,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectCamelCaseInt32EnumVal, SimpleObjectCamelCaseIntEnumVal } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32EnumVal, IntEnumVal } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1553,9 +1553,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -1677,7 +1677,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1703,8 +1703,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1736,7 +1736,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1762,8 +1762,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -1795,7 +1795,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectCamelCaseInt32EnumVal, SimpleObjectCamelCaseIntEnumVal } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32EnumVal, IntEnumVal } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1815,9 +1815,9 @@ import { RFCDate } from "openapi/dist/sdk/types"; dateVal: new RFCDate("2020-01-01"), enumVal: Enum.One, float32Val: 2.2222222, - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal.SixtyNine, + int32EnumVal: Int32EnumVal.SixtyNine, int32Val: 1, - intEnumVal: SimpleObjectCamelCaseIntEnumVal.Third, + intEnumVal: IntEnumVal.Third, intOptNullVal: 999999, intVal: 999999, numOptNullVal: 1.1, @@ -1905,12 +1905,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { - DefaultsAndConstsConstEnumInt, - DefaultsAndConstsConstEnumStr, - DefaultsAndConstsDefaultEnumInt, - DefaultsAndConstsDefaultEnumStr, -} from "openapi/dist/sdk/models/shared"; +import { ConstEnumInt, ConstEnumStr, DefaultEnumInt, DefaultEnumStr } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -1930,8 +1925,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; constDateTime: new Date("2022-12-15T04:16:08.794Z"), constDecimal: 9160.69, constDecimalStr: "string", - constEnumInt: DefaultsAndConstsConstEnumInt.One, - constEnumStr: DefaultsAndConstsConstEnumStr.Three, + constEnumInt: ConstEnumInt.One, + constEnumStr: ConstEnumStr.Three, constInt: 299545, constNum: 4612.63, constStr: "string", @@ -2006,7 +2001,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -2035,8 +2030,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -2055,8 +2050,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -2065,7 +2060,7 @@ import { RFCDate } from "openapi/dist/sdk/types"; bool: true, int: 1, map: { - "key": { + "key2": { any: "any", bigint: 8821239038968084, bigintStr: "9223372036854775808", @@ -2079,13 +2074,13 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", }, - "key2": { + "key": { any: "any", bigint: 8821239038968084, bigintStr: "9223372036854775808", @@ -2099,8 +2094,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -2121,8 +2116,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -2196,7 +2191,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -2222,8 +2217,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -2951,7 +2946,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -2977,8 +2972,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -3035,10 +3030,10 @@ import { SDK } from "openapi"; ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md) | :heavy_check_mark: | The request object to use for the request. | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `request` | [operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody](../../models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | ### Response @@ -3053,8 +3048,8 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; import { - RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded, RequestBodyPostMultipleContentTypesSplitParamFormRequest, + RequestBodyPostMultipleContentTypesSplitParamFormRequestBody, } from "openapi/dist/sdk/models/operations"; (async() => { @@ -3065,7 +3060,7 @@ import { globalPathParam: 100, globalQueryParam: "some example global query param", }); -const requestBody: RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded = { +const requestBody: RequestBodyPostMultipleContentTypesSplitParamFormRequestBody = { bool3: false, num3: 8693.24, str3: "string", @@ -3083,11 +3078,11 @@ const paramStr: string = "string"; ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | ### Response @@ -3102,8 +3097,8 @@ const paramStr: string = "string"; ```typescript import { SDK } from "openapi"; import { - RequestBodyPostMultipleContentTypesSplitParamApplicationJSON, RequestBodyPostMultipleContentTypesSplitParamJsonRequest, + RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody, } from "openapi/dist/sdk/models/operations"; (async() => { @@ -3114,7 +3109,7 @@ import { globalPathParam: 100, globalQueryParam: "some example global query param", }); -const requestBody: RequestBodyPostMultipleContentTypesSplitParamApplicationJSON = { +const requestBody: RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody = { bool: false, num: 9771.91, str: "string", @@ -3134,7 +3129,7 @@ const paramStr: string = "string"; | Parameter | Type | Required | Description | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md) | :heavy_check_mark: | N/A | +| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md) | :heavy_check_mark: | N/A | | `paramStr` | *string* | :heavy_check_mark: | N/A | | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | @@ -3151,8 +3146,8 @@ const paramStr: string = "string"; ```typescript import { SDK } from "openapi"; import { - RequestBodyPostMultipleContentTypesSplitParamMultipartFormData, RequestBodyPostMultipleContentTypesSplitParamMultipartRequest, + RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody, } from "openapi/dist/sdk/models/operations"; (async() => { @@ -3163,7 +3158,7 @@ import { globalPathParam: 100, globalQueryParam: "some example global query param", }); -const requestBody: RequestBodyPostMultipleContentTypesSplitParamMultipartFormData = { +const requestBody: RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody = { bool2: false, num2: 7000.76, str2: "string", @@ -3181,11 +3176,11 @@ const paramStr: string = "string"; ### Parameters -| Parameter | Type | Required | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md) | :heavy_check_mark: | N/A | -| `paramStr` | *string* | :heavy_check_mark: | N/A | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `requestBody` | [operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md) | :heavy_check_mark: | N/A | +| `paramStr` | *string* | :heavy_check_mark: | N/A | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | ### Response @@ -3224,10 +3219,10 @@ import { SDK } from "openapi"; ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `request` | [operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded](../../models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md) | :heavy_check_mark: | The request object to use for the request. | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | +| Parameter | Type | Required | Description | +| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `request` | [operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | ### Response @@ -3268,7 +3263,7 @@ import { SDK } from "openapi"; | Parameter | Type | Required | Description | | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `request` | [operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON](../../models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md) | :heavy_check_mark: | The request object to use for the request. | +| `request` | [operations.RequestBodyPostMultipleContentTypesSplitJsonRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | @@ -3308,10 +3303,10 @@ import { SDK } from "openapi"; ### Parameters -| Parameter | Type | Required | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `request` | [operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md) | :heavy_check_mark: | The request object to use for the request. | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | +| Parameter | Type | Required | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `request` | [operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody](../../models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md) | :heavy_check_mark: | The request object to use for the request. | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | ### Response @@ -3529,7 +3524,7 @@ import { SDK } from "openapi"; globalQueryParam: "some example global query param", }); - const res = await sdk.requestBodies.requestBodyPutBytes("9sS}}O%}aJ" as bytes <<<>>>); + const res = await sdk.requestBodies.requestBodyPutBytes(new TextEncoder().encode("0x5DbFFb1Ff9")); if (res.statusCode == 200) { @@ -3567,7 +3562,7 @@ import { RequestBodyPutBytesWithParamsRequest } from "openapi/dist/sdk/models/op globalPathParam: 100, globalQueryParam: "some example global query param", }); -const requestBody: Uint8Array = "o%jIWe4_P6" as bytes <<<>>>; +const requestBody: Uint8Array = new TextEncoder().encode("0xC1B9cA4eb5"); const queryStringParam: string = "string"; const res = await sdk.requestBodies.requestBodyPutBytesWithParams(requestBody, queryStringParam); @@ -3599,7 +3594,7 @@ const queryStringParam: string = "string"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -3628,8 +3623,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -3648,8 +3643,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -3672,8 +3667,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -3692,8 +3687,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -3714,8 +3709,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -3761,8 +3756,8 @@ import { SDK } from "openapi"; const res = await sdk.requestBodies.requestBodyPutMultipartDifferentFileName({ differentFileName: { - content: "Y}'H[5/Z[," as bytes <<<>>>, - differentFileName: "string", + content: new TextEncoder().encode("0xdF19d43dd2"), + fileName: "west_tunisian.pdf", }, }); @@ -3804,8 +3799,8 @@ import { SDK } from "openapi"; const res = await sdk.requestBodies.requestBodyPutMultipartFile({ file: { - content: "OJa,v`.FW-" as bytes <<<>>>, - file: "string", + content: new TextEncoder().encode("0xa9f2Ee38c3"), + fileName: "bandwidth_sedan.pdf", }, }); @@ -3835,7 +3830,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -3861,8 +3856,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", @@ -3999,11 +3994,11 @@ import { SDK } from "openapi"; ### Parameters -| Parameter | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `request` | [shared.ReadWriteObjectInput](../../models/shared/readwriteobjectinput.md) | :heavy_check_mark: | The request object to use for the request. | -| `serverURL` | *string* | :heavy_minus_sign: | An optional server URL to use. | -| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | +| Parameter | Type | Required | Description | +| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | +| `request` | [shared.ReadWriteObject](../../models/shared/readwriteobject.md) | :heavy_check_mark: | The request object to use for the request. | +| `serverURL` | *string* | :heavy_minus_sign: | An optional server URL to use. | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | ### Response diff --git a/typescript-client-sdk/docs/sdks/resource/README.md b/typescript-client-sdk/docs/sdks/resource/README.md index a7cd1dea3..93bd894b7 100755 --- a/typescript-client-sdk/docs/sdks/resource/README.md +++ b/typescript-client-sdk/docs/sdks/resource/README.md @@ -1,5 +1,5 @@ # Resource -(*resource*) +(*.resource*) ### Available Operations @@ -27,8 +27,8 @@ import { SDK } from "openapi"; const res = await sdk.resource.createFile({ file: { - content: "`'$Z`(L/RH" as bytes <<<>>>, - file: "string", + content: new TextEncoder().encode("0xf10df1a3b9"), + fileName: "rap_national.mp4v", }, }); @@ -58,7 +58,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { ExampleResourceEnumNumber, ExampleResourceEnumStr } from "openapi/dist/sdk/models/shared"; +import { EnumNumber, EnumStr } from "openapi/dist/sdk/models/shared"; (async() => { const sdk = new SDK({ diff --git a/typescript-client-sdk/docs/sdks/responsebodies/README.md b/typescript-client-sdk/docs/sdks/responsebodies/README.md index e4381a5ca..651872c29 100755 --- a/typescript-client-sdk/docs/sdks/responsebodies/README.md +++ b/typescript-client-sdk/docs/sdks/responsebodies/README.md @@ -1,5 +1,5 @@ # ResponseBodies -(*responseBodies*) +(*.responseBodies*) ## Overview @@ -105,7 +105,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { Enum, SimpleObjectInt32Enum, SimpleObjectIntEnum } from "openapi/dist/sdk/models/shared"; +import { Enum, Int32Enum, IntEnum } from "openapi/dist/sdk/models/shared"; import { RFCDate } from "openapi/dist/sdk/types"; (async() => { @@ -132,8 +132,8 @@ import { RFCDate } from "openapi/dist/sdk/types"; float32: 1.1, int: 1, int32: 1, - int32Enum: SimpleObjectInt32Enum.FiftyFive, - intEnum: SimpleObjectIntEnum.Second, + int32Enum: Int32Enum.FiftyFive, + intEnum: IntEnum.Second, num: 1.1, str: "test", strOpt: "testOptional", diff --git a/typescript-client-sdk/docs/sdks/retries/README.md b/typescript-client-sdk/docs/sdks/retries/README.md index 725c0674a..bdc80e367 100755 --- a/typescript-client-sdk/docs/sdks/retries/README.md +++ b/typescript-client-sdk/docs/sdks/retries/README.md @@ -1,5 +1,5 @@ # Retries -(*retries*) +(*.retries*) ## Overview diff --git a/typescript-client-sdk/docs/sdks/sdk/README.md b/typescript-client-sdk/docs/sdks/sdk/README.md index 8ae907f25..c2a06818d 100755 --- a/typescript-client-sdk/docs/sdks/sdk/README.md +++ b/typescript-client-sdk/docs/sdks/sdk/README.md @@ -29,7 +29,7 @@ import { SDK } from "openapi"; globalQueryParam: "some example global query param", }); - const res = await sdk.sdk.putAnythingIgnoredGeneration("string"); + const res = await sdk.putAnythingIgnoredGeneration("string"); if (res.statusCode == 200) { @@ -67,7 +67,7 @@ import { SDK } from "openapi"; globalQueryParam: "some example global query param", }); - const res = await sdk.sdk.responseBodyJsonGet(); + const res = await sdk.responseBodyJsonGet(); if (res.statusCode == 200) { diff --git a/typescript-client-sdk/docs/sdks/sdkfirst/README.md b/typescript-client-sdk/docs/sdks/sdkfirst/README.md new file mode 100755 index 000000000..7a9ba5dd4 --- /dev/null +++ b/typescript-client-sdk/docs/sdks/sdkfirst/README.md @@ -0,0 +1,43 @@ +# SDKFirst +(*.nest.first*) + +### Available Operations + +* [get](#get) + +## get + +### Example Usage + +```typescript +import { SDK } from "openapi"; + +(async() => { + const sdk = new SDK({ + security: { + apiKeyAuth: "Token YOUR_API_KEY", + }, + globalPathParam: 100, + globalQueryParam: "some example global query param", + }); + + const res = await sdk.nest.first.get(); + + + if (res.statusCode == 200) { + // handle response + } +})(); +``` + +### Parameters + +| Parameter | Type | Required | Description | +| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | + + +### Response + +**Promise<[operations.NestFirstGetResponse](../../models/operations/nestfirstgetresponse.md)>** + diff --git a/typescript-client-sdk/docs/sdks/sdknestedfirst/README.md b/typescript-client-sdk/docs/sdks/sdknestedfirst/README.md new file mode 100755 index 000000000..7309e42db --- /dev/null +++ b/typescript-client-sdk/docs/sdks/sdknestedfirst/README.md @@ -0,0 +1,43 @@ +# SDKNestedFirst +(*.nested.first*) + +### Available Operations + +* [get](#get) + +## get + +### Example Usage + +```typescript +import { SDK } from "openapi"; + +(async() => { + const sdk = new SDK({ + security: { + apiKeyAuth: "Token YOUR_API_KEY", + }, + globalPathParam: 100, + globalQueryParam: "some example global query param", + }); + + const res = await sdk.nested.first.get(); + + + if (res.statusCode == 200) { + // handle response + } +})(); +``` + +### Parameters + +| Parameter | Type | Required | Description | +| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | + + +### Response + +**Promise<[operations.NestedFirstGetResponse](../../models/operations/nestedfirstgetresponse.md)>** + diff --git a/typescript-client-sdk/docs/sdks/sdksecond/README.md b/typescript-client-sdk/docs/sdks/sdksecond/README.md new file mode 100755 index 000000000..595544b20 --- /dev/null +++ b/typescript-client-sdk/docs/sdks/sdksecond/README.md @@ -0,0 +1,43 @@ +# SDKSecond +(*.nested.second*) + +### Available Operations + +* [get](#get) + +## get + +### Example Usage + +```typescript +import { SDK } from "openapi"; + +(async() => { + const sdk = new SDK({ + security: { + apiKeyAuth: "Token YOUR_API_KEY", + }, + globalPathParam: 100, + globalQueryParam: "some example global query param", + }); + + const res = await sdk.nested.second.get(); + + + if (res.statusCode == 200) { + // handle response + } +})(); +``` + +### Parameters + +| Parameter | Type | Required | Description | +| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | +| `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | + + +### Response + +**Promise<[operations.NestedSecondGetResponse](../../models/operations/nestedsecondgetresponse.md)>** + diff --git a/typescript-client-sdk/docs/sdks/second/README.md b/typescript-client-sdk/docs/sdks/second/README.md index 10e10192f..bd1183488 100755 --- a/typescript-client-sdk/docs/sdks/second/README.md +++ b/typescript-client-sdk/docs/sdks/second/README.md @@ -1,5 +1,5 @@ # Second -(*second*) +(*.second*) ### Available Operations diff --git a/typescript-client-sdk/docs/sdks/servers/README.md b/typescript-client-sdk/docs/sdks/servers/README.md index 199c62a81..21bc88397 100755 --- a/typescript-client-sdk/docs/sdks/servers/README.md +++ b/typescript-client-sdk/docs/sdks/servers/README.md @@ -1,5 +1,5 @@ # Servers -(*servers*) +(*.servers*) ## Overview diff --git a/typescript-client-sdk/docs/sdks/telemetry/README.md b/typescript-client-sdk/docs/sdks/telemetry/README.md index e3d6ea1d1..6aa0b1fd7 100755 --- a/typescript-client-sdk/docs/sdks/telemetry/README.md +++ b/typescript-client-sdk/docs/sdks/telemetry/README.md @@ -1,5 +1,5 @@ # Telemetry -(*telemetry*) +(*.telemetry*) ## Overview diff --git a/typescript-client-sdk/docs/sdks/unions/README.md b/typescript-client-sdk/docs/sdks/unions/README.md index 2067fa816..94cd7baa8 100755 --- a/typescript-client-sdk/docs/sdks/unions/README.md +++ b/typescript-client-sdk/docs/sdks/unions/README.md @@ -1,5 +1,5 @@ # Unions -(*unions*) +(*.unions*) ## Overview @@ -105,7 +105,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { TypedObject1Type } from "openapi/dist/sdk/models/shared"; +import { TypeT } from "openapi/dist/sdk/models/shared"; (async() => { const sdk = new SDK({ @@ -118,7 +118,7 @@ import { TypedObject1Type } from "openapi/dist/sdk/models/shared"; const res = await sdk.unions.nullableOneOfRefInObjectPost({ nullableOneOfOne: { - type: TypedObject1Type.Obj1, + type: TypeT.Obj1, value: "string", }, nullableOneOfTwo: "string", @@ -231,7 +231,7 @@ import { SDK } from "openapi"; ```typescript import { SDK } from "openapi"; -import { TypedObject1Type } from "openapi/dist/sdk/models/shared"; +import { TypeT } from "openapi/dist/sdk/models/shared"; (async() => { const sdk = new SDK({ @@ -243,7 +243,7 @@ import { TypedObject1Type } from "openapi/dist/sdk/models/shared"; }); const res = await sdk.unions.nullableTypedObjectPost({ - type: TypedObject1Type.Obj1, + type: TypeT.Obj1, value: "string", }); diff --git a/typescript-client-sdk/files.gen b/typescript-client-sdk/files.gen index b60ad043a..654c9245b 100755 --- a/typescript-client-sdk/files.gen +++ b/typescript-client-sdk/files.gen @@ -1,26 +1,26 @@ -src/sdk/auth.ts -src/sdk/authnew.ts -src/sdk/documentation.ts +src/sdk/generation.ts src/sdk/errors.ts -src/sdk/first.ts +src/sdk/unions.ts src/sdk/flattening.ts -src/sdk/generation.ts src/sdk/globals.ts -src/sdk/nestfirst.ts +src/sdk/parameters.ts +src/sdk/sdkfirst.ts src/sdk/nest.ts -src/sdk/nestedfirst.ts -src/sdk/nestedsecond.ts +src/sdk/sdknestedfirst.ts +src/sdk/sdksecond.ts src/sdk/nested.ts -src/sdk/pagination.ts -src/sdk/parameters.ts src/sdk/requestbodies.ts -src/sdk/resource.ts src/sdk/responsebodies.ts -src/sdk/retries.ts -src/sdk/second.ts src/sdk/servers.ts src/sdk/telemetry.ts -src/sdk/unions.ts +src/sdk/authnew.ts +src/sdk/auth.ts +src/sdk/documentation.ts +src/sdk/resource.ts +src/sdk/first.ts +src/sdk/second.ts +src/sdk/pagination.ts +src/sdk/retries.ts src/sdk/sdk.ts .eslintrc.yml jest.config.js @@ -61,35 +61,6 @@ __tests__simple_security/auth.test.ts ../../testprojects/typescript/.eslintrc.yml ../../testprojects/typescript/package.json ../../testprojects/typescript/tsconfig.json -src/sdk/models/operations/apikeyauth.ts -src/sdk/models/operations/apikeyauthglobal.ts -src/sdk/models/operations/basicauth.ts -src/sdk/models/operations/bearerauth.ts -src/sdk/models/operations/globalbearerauth.ts -src/sdk/models/operations/oauth2auth.ts -src/sdk/models/operations/oauth2override.ts -src/sdk/models/operations/openidconnectauth.ts -src/sdk/models/operations/apikeyauthglobalnew.ts -src/sdk/models/operations/authglobal.ts -src/sdk/models/operations/basicauthnew.ts -src/sdk/models/operations/multiplemixedoptionsauth.ts -src/sdk/models/operations/multiplemixedschemeauth.ts -src/sdk/models/operations/multipleoptionswithmixedschemesauth.ts -src/sdk/models/operations/multipleoptionswithsimpleschemesauth.ts -src/sdk/models/operations/multiplesimpleoptionsauth.ts -src/sdk/models/operations/multiplesimpleschemeauth.ts -src/sdk/models/operations/oauth2authnew.ts -src/sdk/models/operations/openidconnectauthnew.ts -src/sdk/models/operations/getdocumentationperlanguage.ts -src/sdk/models/operations/connectionerrorget.ts -src/sdk/models/operations/statusgeterror.ts -src/sdk/models/operations/statusgetxspeakeasyerrors.ts -src/sdk/models/operations/groupfirstget.ts -src/sdk/models/operations/componentbodyandparamconflict.ts -src/sdk/models/operations/componentbodyandparamnoconflict.ts -src/sdk/models/operations/conflictingparams.ts -src/sdk/models/operations/inlinebodyandparamconflict.ts -src/sdk/models/operations/inlinebodyandparamnoconflict.ts src/sdk/models/operations/anchortypesget.ts src/sdk/models/operations/arraycircularreferenceget.ts src/sdk/models/operations/circularreferenceget.ts @@ -110,18 +81,31 @@ src/sdk/models/operations/objectcircularreferenceget.ts src/sdk/models/operations/oneofcircularreferenceget.ts src/sdk/models/operations/typedparametergenerationget.ts src/sdk/models/operations/usageexamplepost.ts +src/sdk/models/operations/connectionerrorget.ts +src/sdk/models/operations/statusgeterror.ts +src/sdk/models/operations/statusgetxspeakeasyerrors.ts +src/sdk/models/operations/flattenedtypedobjectpost.ts +src/sdk/models/operations/mixedtypeoneofpost.ts +src/sdk/models/operations/nullableoneofrefinobjectpost.ts +src/sdk/models/operations/nullableoneofschemapost.ts +src/sdk/models/operations/nullableoneoftypeinobjectpost.ts +src/sdk/models/operations/nullabletypedobjectpost.ts +src/sdk/models/operations/primitivetypeoneofpost.ts +src/sdk/models/operations/stronglytypedoneofpost.ts +src/sdk/models/operations/typedobjectnullableoneofpost.ts +src/sdk/models/operations/typedobjectoneofpost.ts +src/sdk/models/operations/unionbigintdecimal.ts +src/sdk/models/operations/uniondatenull.ts +src/sdk/models/operations/uniondatetimebigint.ts +src/sdk/models/operations/uniondatetimenull.ts +src/sdk/models/operations/weaklytypedoneofpost.ts +src/sdk/models/operations/componentbodyandparamconflict.ts +src/sdk/models/operations/componentbodyandparamnoconflict.ts +src/sdk/models/operations/conflictingparams.ts +src/sdk/models/operations/inlinebodyandparamconflict.ts +src/sdk/models/operations/inlinebodyandparamnoconflict.ts src/sdk/models/operations/globalpathparameterget.ts src/sdk/models/operations/globalsqueryparameterget.ts -src/sdk/models/operations/nestfirstget.ts -src/sdk/models/operations/nestedfirstget.ts -src/sdk/models/operations/nestedsecondget.ts -src/sdk/models/operations/nestedget.ts -src/sdk/models/operations/paginationcursorbody.ts -src/sdk/models/operations/paginationcursorparams.ts -src/sdk/models/operations/paginationlimitoffsetoffsetbody.ts -src/sdk/models/operations/paginationlimitoffsetoffsetparams.ts -src/sdk/models/operations/paginationlimitoffsetpagebody.ts -src/sdk/models/operations/paginationlimitoffsetpageparams.ts src/sdk/models/operations/deepobjectqueryparamsmap.ts src/sdk/models/operations/deepobjectqueryparamsobject.ts src/sdk/models/operations/duplicateparam.ts @@ -145,6 +129,10 @@ src/sdk/models/operations/simplepathparameterarrays.ts src/sdk/models/operations/simplepathparametermaps.ts src/sdk/models/operations/simplepathparameterobjects.ts src/sdk/models/operations/simplepathparameterprimitives.ts +src/sdk/models/operations/nestfirstget.ts +src/sdk/models/operations/nestedfirstget.ts +src/sdk/models/operations/nestedsecondget.ts +src/sdk/models/operations/nestedget.ts src/sdk/models/operations/nullableobjectpost.ts src/sdk/models/operations/nullablerequiredemptyobjectpost.ts src/sdk/models/operations/nullablerequiredpropertypost.ts @@ -226,11 +214,6 @@ src/sdk/models/operations/requestbodyreadwriteonlyunion.ts src/sdk/models/operations/requestbodywriteonly.ts src/sdk/models/operations/requestbodywriteonlyoutput.ts src/sdk/models/operations/requestbodywriteonlyunion.ts -src/sdk/models/operations/createfile.ts -src/sdk/models/operations/createresource.ts -src/sdk/models/operations/deleteresource.ts -src/sdk/models/operations/getresource.ts -src/sdk/models/operations/updateresource.ts src/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.ts src/sdk/models/operations/responsebodyadditionalpropertiesdatepost.ts src/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.ts @@ -242,8 +225,6 @@ src/sdk/models/operations/responsebodyreadonly.ts src/sdk/models/operations/responsebodystringget.ts src/sdk/models/operations/responsebodyxmlget.ts src/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.ts -src/sdk/models/operations/retriesget.ts -src/sdk/models/operations/groupsecondget.ts src/sdk/models/operations/selectglobalserver.ts src/sdk/models/operations/selectserverwithid.ts src/sdk/models/operations/serverwithprotocoltemplate.ts @@ -252,26 +233,42 @@ src/sdk/models/operations/serverwithtemplatesglobal.ts src/sdk/models/operations/serversbyidwithtemplates.ts src/sdk/models/operations/telemetryspeakeasyuseragentget.ts src/sdk/models/operations/telemetryuseragentget.ts -src/sdk/models/operations/flattenedtypedobjectpost.ts -src/sdk/models/operations/mixedtypeoneofpost.ts -src/sdk/models/operations/nullableoneofrefinobjectpost.ts -src/sdk/models/operations/nullableoneofschemapost.ts -src/sdk/models/operations/nullableoneoftypeinobjectpost.ts -src/sdk/models/operations/nullabletypedobjectpost.ts -src/sdk/models/operations/primitivetypeoneofpost.ts -src/sdk/models/operations/stronglytypedoneofpost.ts -src/sdk/models/operations/typedobjectnullableoneofpost.ts -src/sdk/models/operations/typedobjectoneofpost.ts -src/sdk/models/operations/unionbigintdecimal.ts -src/sdk/models/operations/uniondatenull.ts -src/sdk/models/operations/uniondatetimebigint.ts -src/sdk/models/operations/uniondatetimenull.ts -src/sdk/models/operations/weaklytypedoneofpost.ts +src/sdk/models/operations/apikeyauthglobalnew.ts +src/sdk/models/operations/authglobal.ts +src/sdk/models/operations/basicauthnew.ts +src/sdk/models/operations/multiplemixedoptionsauth.ts +src/sdk/models/operations/multiplemixedschemeauth.ts +src/sdk/models/operations/multipleoptionswithmixedschemesauth.ts +src/sdk/models/operations/multipleoptionswithsimpleschemesauth.ts +src/sdk/models/operations/multiplesimpleoptionsauth.ts +src/sdk/models/operations/multiplesimpleschemeauth.ts +src/sdk/models/operations/oauth2authnew.ts +src/sdk/models/operations/openidconnectauthnew.ts +src/sdk/models/operations/apikeyauth.ts +src/sdk/models/operations/apikeyauthglobal.ts +src/sdk/models/operations/basicauth.ts +src/sdk/models/operations/bearerauth.ts +src/sdk/models/operations/globalbearerauth.ts +src/sdk/models/operations/oauth2auth.ts +src/sdk/models/operations/oauth2override.ts +src/sdk/models/operations/openidconnectauth.ts +src/sdk/models/operations/getdocumentationperlanguage.ts +src/sdk/models/operations/createfile.ts +src/sdk/models/operations/createresource.ts +src/sdk/models/operations/deleteresource.ts +src/sdk/models/operations/getresource.ts +src/sdk/models/operations/updateresource.ts +src/sdk/models/operations/groupfirstget.ts +src/sdk/models/operations/groupsecondget.ts +src/sdk/models/operations/paginationcursorbody.ts +src/sdk/models/operations/paginationcursorparams.ts +src/sdk/models/operations/paginationlimitoffsetoffsetbody.ts +src/sdk/models/operations/paginationlimitoffsetoffsetparams.ts +src/sdk/models/operations/paginationlimitoffsetpagebody.ts +src/sdk/models/operations/paginationlimitoffsetpageparams.ts +src/sdk/models/operations/retriesget.ts src/sdk/models/operations/putanythingignoredgeneration.ts src/sdk/models/operations/responsebodyjsonget.ts -src/sdk/models/operations/index.ts -src/sdk/models/shared/authservicerequestbody.ts -src/sdk/models/shared/security.ts src/sdk/models/shared/simpleobject.ts src/sdk/models/shared/enum.ts src/sdk/models/shared/arraycircularreferenceobject.ts @@ -284,7 +281,9 @@ src/sdk/models/shared/objectcircularreferenceobject.ts src/sdk/models/shared/oneofcircularreferenceobject.ts src/sdk/models/shared/fakerstrings.ts src/sdk/models/shared/fakerformattedstrings.ts -src/sdk/models/shared/limitoffsetconfig.ts +src/sdk/models/shared/nullableoneofrefinobject.ts +src/sdk/models/shared/typedobject1.ts +src/sdk/models/shared/nullableoneoftypeinobject.ts src/sdk/models/shared/refqueryparamobjexploded.ts src/sdk/models/shared/refqueryparamobj.ts src/sdk/models/shared/deepobject.ts @@ -301,99 +300,25 @@ src/sdk/models/shared/defaultsandconsts.ts src/sdk/models/shared/readwriteobject.ts src/sdk/models/shared/readonlyobject.ts src/sdk/models/shared/writeonlyobject.ts +src/sdk/models/shared/objwithzerovaluecomplextypeptrs.ts +src/sdk/models/shared/authservicerequestbody.ts +src/sdk/models/shared/security.ts src/sdk/models/shared/fileresource.ts src/sdk/models/shared/exampleresource.ts -src/sdk/models/shared/typedobject1.ts -src/sdk/models/shared/objwithzerovaluecomplextypeptrs.ts -src/sdk/models/shared/nullableoneofrefinobject.ts -src/sdk/models/shared/nullableoneoftypeinobject.ts +src/sdk/models/shared/limitoffsetconfig.ts src/sdk/models/shared/alloftoallof.ts src/sdk/models/shared/oneofgenerationstresstest.ts src/sdk/models/shared/unsupportedenums.ts -src/sdk/models/shared/index.ts +src/sdk/models/callbacks/ignoredgenerationget.ts src/sdk/models/errors/error.ts src/sdk/models/errors/errortype.ts src/sdk/models/errors/statusgetxspeakeasyerrors.ts src/sdk/models/errors/index.ts -src/sdk/models/callbacks/ignoredgenerationget.ts +src/sdk/models/operations/index.ts +src/sdk/models/shared/index.ts src/sdk/models/callbacks/index.ts USAGE.md -docs/models/operations/apikeyauthsecurity.md -docs/models/operations/apikeyauthtoken.md -docs/models/operations/apikeyauthresponse.md -docs/models/operations/apikeyauthglobaltoken.md -docs/models/operations/apikeyauthglobalresponse.md -docs/models/operations/basicauthsecurity.md -docs/models/operations/basicauthrequest.md -docs/models/operations/basicauthuser.md -docs/models/operations/basicauthresponse.md -docs/models/operations/bearerauthsecurity.md -docs/models/operations/bearerauthtoken.md -docs/models/operations/bearerauthresponse.md -docs/models/operations/globalbearerauthtoken.md -docs/models/operations/globalbearerauthresponse.md -docs/models/operations/oauth2authsecurity.md -docs/models/operations/oauth2authtoken.md -docs/models/operations/oauth2authresponse.md -docs/models/operations/oauth2overridesecurity.md -docs/models/operations/oauth2overriderequest.md -docs/models/operations/oauth2overridetoken.md -docs/models/operations/oauth2overrideresponse.md -docs/models/operations/openidconnectauthsecurity.md -docs/models/operations/openidconnectauthtoken.md -docs/models/operations/openidconnectauthresponse.md -docs/models/operations/apikeyauthglobalnewresponse.md -docs/models/operations/authglobalresponse.md -docs/models/operations/basicauthnewsecurity.md -docs/models/operations/basicauthnewresponse.md -docs/models/operations/multiplemixedoptionsauthsecurity.md -docs/models/operations/multiplemixedoptionsauthresponse.md -docs/models/operations/multiplemixedschemeauthsecurity.md -docs/models/operations/multiplemixedschemeauthresponse.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md -docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md -docs/models/operations/multipleoptionswithmixedschemesauthresponse.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md -docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md -docs/models/operations/multipleoptionswithsimpleschemesauthresponse.md -docs/models/operations/multiplesimpleoptionsauthsecurity.md -docs/models/operations/multiplesimpleoptionsauthresponse.md -docs/models/operations/multiplesimpleschemeauthsecurity.md -docs/models/operations/multiplesimpleschemeauthresponse.md -docs/models/operations/oauth2authnewsecurity.md -docs/models/operations/oauth2authnewresponse.md -docs/models/operations/openidconnectauthnewsecurity.md -docs/models/operations/openidconnectauthnewresponse.md -docs/models/operations/getdocumentationperlanguagerequest.md -docs/models/operations/getdocumentationperlanguageresponse.md -docs/models/operations/connectionerrorgetresponse.md -docs/models/operations/statusgeterrorrequest.md -docs/models/operations/statusgeterrorresponse.md -docs/models/operations/statusgetxspeakeasyerrorsrequest.md -docs/models/operations/statusgetxspeakeasyerrorsresponse.md -docs/models/operations/groupfirstgetresponse.md -docs/models/operations/componentbodyandparamconflictrequest.md -docs/models/operations/componentbodyandparamconflictres.md -docs/models/operations/componentbodyandparamconflictresponse.md -docs/models/operations/componentbodyandparamnoconflictrequest.md -docs/models/operations/componentbodyandparamnoconflictres.md -docs/models/operations/componentbodyandparamnoconflictresponse.md -docs/models/operations/conflictingparamsrequest.md -docs/models/operations/conflictingparamsres.md -docs/models/operations/conflictingparamsresponse.md -docs/models/operations/inlinebodyandparamconflictrequestbody.md -docs/models/operations/inlinebodyandparamconflictrequest.md -docs/models/operations/inlinebodyandparamconflictresjson.md -docs/models/operations/inlinebodyandparamconflictres.md -docs/models/operations/inlinebodyandparamconflictresponse.md -docs/models/operations/inlinebodyandparamnoconflictrequestbody.md -docs/models/operations/inlinebodyandparamnoconflictrequest.md -docs/models/operations/inlinebodyandparamnoconflictresjson.md -docs/models/operations/inlinebodyandparamnoconflictres.md -docs/models/operations/inlinebodyandparamnoconflictresponse.md -docs/models/operations/typefromanchor.md +docs/models/operations/anchortypesgettypefromanchor.md docs/models/operations/anchortypesgetresponse.md docs/models/operations/arraycircularreferencegetresponse.md docs/models/operations/circularreferencegetresponse.md @@ -405,7 +330,7 @@ docs/models/operations/datetimeparamwithdefaultresponse.md docs/models/operations/decimalparamwithdefaultrequest.md docs/models/operations/decimalparamwithdefaultresponse.md docs/models/operations/deprecatedfieldinschemapostresponse.md -docs/models/operations/deprecatedobjectinschemaget200applicationjson.md +docs/models/operations/deprecatedobjectinschemagetresponsebody.md docs/models/operations/deprecatedobjectinschemagetresponse.md docs/models/operations/deprecatedoperationnocommentsgetrequest.md docs/models/operations/deprecatedoperationnocommentsgetresponse.md @@ -413,123 +338,157 @@ docs/models/operations/deprecatedoperationwithcommentsgetrequest.md docs/models/operations/deprecatedoperationwithcommentsgetresponse.md docs/models/operations/emptyobjectgetrequest.md docs/models/operations/emptyobjectgetresponse.md -docs/models/operations/emptyresponseobjectwithcommentget200applicationoctetstream.md +docs/models/operations/emptyresponseobjectwithcommentgetresponsebody.md docs/models/operations/emptyresponseobjectwithcommentgetresponse.md -docs/models/operations/getglobalnameoverride200applicationjson.md +docs/models/operations/getglobalnameoverrideresponsebody.md docs/models/operations/getglobalnameoverrideresponse.md -docs/models/operations/ignoredgenerationget200applicationjson.md +docs/models/operations/ignoredgenerationgetresponsebody.md docs/models/operations/ignoredgenerationgetresponse.md -docs/models/operations/ignorespostapplicationjson.md +docs/models/operations/ignorespostrequestbody.md docs/models/operations/ignorespostrequest.md docs/models/operations/ignorespostresponse.md -docs/models/operations/nameoverridegetenumnameoverride.md +docs/models/operations/enumnameoverride.md docs/models/operations/nameoverridegetrequest.md -docs/models/operations/overriddenresponse.md +docs/models/operations/nameoverridegetoverriddenresponse.md docs/models/operations/nameoverridegetresponse.md docs/models/operations/objectcircularreferencegetresponse.md docs/models/operations/oneofcircularreferencegetresponse.md -docs/models/operations/typedparametergenerationgetobj.md +docs/models/operations/obj.md docs/models/operations/typedparametergenerationgetrequest.md docs/models/operations/typedparametergenerationgetresponse.md docs/models/operations/usageexamplepostsecurity.md docs/models/operations/usageexamplepostrequestbody.md -docs/models/operations/usageexamplepostenumparameter.md -docs/models/operations/usageexamplepostoptenumparameter.md +docs/models/operations/enumparameter.md +docs/models/operations/optenumparameter.md docs/models/operations/usageexamplepostrequest.md -docs/models/operations/usageexamplepost200applicationjsonjson.md -docs/models/operations/usageexamplepost200applicationjson.md +docs/models/operations/usageexamplepostjson.md +docs/models/operations/usageexamplepostresponsebody.md docs/models/operations/usageexamplepostresponse.md +docs/models/operations/connectionerrorgetresponse.md +docs/models/operations/statusgeterrorrequest.md +docs/models/operations/statusgeterrorresponse.md +docs/models/operations/statusgetxspeakeasyerrorsrequest.md +docs/models/operations/statusgetxspeakeasyerrorsresponse.md +docs/models/operations/flattenedtypedobjectpostres.md +docs/models/operations/flattenedtypedobjectpostresponse.md +docs/models/operations/mixedtypeoneofpostres.md +docs/models/operations/mixedtypeoneofpostresponse.md +docs/models/operations/nullableoneofrefinobjectpostres.md +docs/models/operations/nullableoneofrefinobjectpostresponse.md +docs/models/operations/nullableoneofschemapostres.md +docs/models/operations/nullableoneofschemapostresponse.md +docs/models/operations/nullableoneoftypeinobjectpostres.md +docs/models/operations/nullableoneoftypeinobjectpostresponse.md +docs/models/operations/nullabletypedobjectpostres.md +docs/models/operations/nullabletypedobjectpostresponse.md +docs/models/operations/primitivetypeoneofpostres.md +docs/models/operations/primitivetypeoneofpostresponse.md +docs/models/operations/stronglytypedoneofpostres.md +docs/models/operations/stronglytypedoneofpostresponse.md +docs/models/operations/typedobjectnullableoneofpostres.md +docs/models/operations/typedobjectnullableoneofpostresponse.md +docs/models/operations/typedobjectoneofpostres.md +docs/models/operations/typedobjectoneofpostresponse.md +docs/models/operations/unionbigintdecimalres.md +docs/models/operations/unionbigintdecimalresponse.md +docs/models/operations/uniondatenullres.md +docs/models/operations/uniondatenullresponse.md +docs/models/operations/uniondatetimebigintres.md +docs/models/operations/uniondatetimebigintresponse.md +docs/models/operations/uniondatetimenullres.md +docs/models/operations/uniondatetimenullresponse.md +docs/models/operations/weaklytypedoneofpostres.md +docs/models/operations/weaklytypedoneofpostresponse.md +docs/models/operations/componentbodyandparamconflictrequest.md +docs/models/operations/componentbodyandparamconflictres.md +docs/models/operations/componentbodyandparamconflictresponse.md +docs/models/operations/componentbodyandparamnoconflictrequest.md +docs/models/operations/componentbodyandparamnoconflictres.md +docs/models/operations/componentbodyandparamnoconflictresponse.md +docs/models/operations/conflictingparamsrequest.md +docs/models/operations/conflictingparamsres.md +docs/models/operations/conflictingparamsresponse.md +docs/models/operations/inlinebodyandparamconflictrequestbody.md +docs/models/operations/inlinebodyandparamconflictrequest.md +docs/models/operations/json.md +docs/models/operations/inlinebodyandparamconflictres.md +docs/models/operations/inlinebodyandparamconflictresponse.md +docs/models/operations/inlinebodyandparamnoconflictrequestbody.md +docs/models/operations/inlinebodyandparamnoconflictrequest.md +docs/models/operations/inlinebodyandparamnoconflictjson.md +docs/models/operations/inlinebodyandparamnoconflictres.md +docs/models/operations/inlinebodyandparamnoconflictresponse.md docs/models/operations/globalpathparametergetrequest.md docs/models/operations/globalpathparametergetres.md docs/models/operations/globalpathparametergetresponse.md docs/models/operations/globalsqueryparametergetrequest.md -docs/models/operations/globalsqueryparametergetresargs.md +docs/models/operations/args.md docs/models/operations/globalsqueryparametergetres.md docs/models/operations/globalsqueryparametergetresponse.md -docs/models/operations/nestfirstgetresponse.md -docs/models/operations/nestedfirstgetresponse.md -docs/models/operations/nestedsecondgetresponse.md -docs/models/operations/nestedgetresponse.md -docs/models/operations/paginationcursorbodyrequestbody.md -docs/models/operations/paginationcursorbodyres.md -docs/models/operations/paginationcursorbodyresponse.md -docs/models/operations/paginationcursorparamsrequest.md -docs/models/operations/paginationcursorparamsres.md -docs/models/operations/paginationcursorparamsresponse.md -docs/models/operations/paginationlimitoffsetoffsetbodyres.md -docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md -docs/models/operations/paginationlimitoffsetoffsetparamsrequest.md -docs/models/operations/paginationlimitoffsetoffsetparamsres.md -docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md -docs/models/operations/paginationlimitoffsetpagebodyres.md -docs/models/operations/paginationlimitoffsetpagebodyresponse.md -docs/models/operations/paginationlimitoffsetpageparamsrequest.md -docs/models/operations/paginationlimitoffsetpageparamsres.md -docs/models/operations/paginationlimitoffsetpageparamsresponse.md docs/models/operations/deepobjectqueryparamsmaprequest.md docs/models/operations/deepobjectqueryparamsmapres.md docs/models/operations/deepobjectqueryparamsmapresponse.md -docs/models/operations/deepobjectqueryparamsobjectobjarrparam.md +docs/models/operations/objarrparam.md docs/models/operations/deepobjectqueryparamsobjectrequest.md -docs/models/operations/deepobjectqueryparamsobjectresargs.md +docs/models/operations/deepobjectqueryparamsobjectargs.md docs/models/operations/deepobjectqueryparamsobjectres.md docs/models/operations/deepobjectqueryparamsobjectresponse.md docs/models/operations/duplicateparamrequest.md docs/models/operations/duplicateparamduplicateparamresponse.md docs/models/operations/duplicateparamresponse.md docs/models/operations/formqueryparamsarrayrequest.md -docs/models/operations/formqueryparamsarrayresargs.md +docs/models/operations/formqueryparamsarrayargs.md docs/models/operations/formqueryparamsarrayres.md docs/models/operations/formqueryparamsarrayresponse.md -docs/models/operations/formqueryparamscamelobjectobjparamexploded.md -docs/models/operations/formqueryparamscamelobjectobjparam.md +docs/models/operations/objparamexploded.md +docs/models/operations/objparam.md docs/models/operations/formqueryparamscamelobjectrequest.md -docs/models/operations/formqueryparamscamelobjectresargs.md +docs/models/operations/formqueryparamscamelobjectargs.md docs/models/operations/formqueryparamscamelobjectres.md docs/models/operations/formqueryparamscamelobjectresponse.md docs/models/operations/formqueryparamsmaprequest.md docs/models/operations/formqueryparamsmapres.md docs/models/operations/formqueryparamsmapresponse.md docs/models/operations/formqueryparamsobjectrequest.md -docs/models/operations/formqueryparamsobjectresargs.md +docs/models/operations/formqueryparamsobjectargs.md docs/models/operations/formqueryparamsobjectres.md docs/models/operations/formqueryparamsobjectresponse.md docs/models/operations/formqueryparamsprimitiverequest.md -docs/models/operations/formqueryparamsprimitiveresargs.md +docs/models/operations/formqueryparamsprimitiveargs.md docs/models/operations/formqueryparamsprimitiveres.md docs/models/operations/formqueryparamsprimitiveresponse.md docs/models/operations/formqueryparamsrefparamobjectrequest.md -docs/models/operations/formqueryparamsrefparamobjectresargs.md +docs/models/operations/formqueryparamsrefparamobjectargs.md docs/models/operations/formqueryparamsrefparamobjectres.md docs/models/operations/formqueryparamsrefparamobjectresponse.md docs/models/operations/headerparamsarrayrequest.md -docs/models/operations/headerparamsarrayresheaders.md +docs/models/operations/headers.md docs/models/operations/headerparamsarrayres.md docs/models/operations/headerparamsarrayresponse.md docs/models/operations/headerparamsmaprequest.md -docs/models/operations/headerparamsmapresheaders.md +docs/models/operations/headerparamsmapheaders.md docs/models/operations/headerparamsmapres.md docs/models/operations/headerparamsmapresponse.md docs/models/operations/headerparamsobjectrequest.md -docs/models/operations/headerparamsobjectresheaders.md +docs/models/operations/headerparamsobjectheaders.md docs/models/operations/headerparamsobjectres.md docs/models/operations/headerparamsobjectresponse.md docs/models/operations/headerparamsprimitiverequest.md -docs/models/operations/headerparamsprimitiveresheaders.md +docs/models/operations/headerparamsprimitiveheaders.md docs/models/operations/headerparamsprimitiveres.md docs/models/operations/headerparamsprimitiveresponse.md docs/models/operations/jsonqueryparamsobjectrequest.md -docs/models/operations/jsonqueryparamsobjectresargs.md +docs/models/operations/jsonqueryparamsobjectargs.md docs/models/operations/jsonqueryparamsobjectres.md docs/models/operations/jsonqueryparamsobjectresponse.md docs/models/operations/mixedparameterscamelcaserequest.md -docs/models/operations/mixedparameterscamelcaseresargs.md -docs/models/operations/mixedparameterscamelcaseresheaders.md +docs/models/operations/mixedparameterscamelcaseargs.md +docs/models/operations/mixedparameterscamelcaseheaders.md docs/models/operations/mixedparameterscamelcaseres.md docs/models/operations/mixedparameterscamelcaseresponse.md docs/models/operations/mixedparametersprimitivesrequest.md -docs/models/operations/mixedparametersprimitivesresargs.md -docs/models/operations/mixedparametersprimitivesresheaders.md +docs/models/operations/mixedparametersprimitivesargs.md +docs/models/operations/mixedparametersprimitivesheaders.md docs/models/operations/mixedparametersprimitivesres.md docs/models/operations/mixedparametersprimitivesresponse.md docs/models/operations/mixedqueryparamsrequest.md @@ -539,7 +498,7 @@ docs/models/operations/pathparameterjsonrequest.md docs/models/operations/pathparameterjsonres.md docs/models/operations/pathparameterjsonresponse.md docs/models/operations/pipedelimitedqueryparamsarrayrequest.md -docs/models/operations/pipedelimitedqueryparamsarrayresargs.md +docs/models/operations/pipedelimitedqueryparamsarrayargs.md docs/models/operations/pipedelimitedqueryparamsarrayres.md docs/models/operations/pipedelimitedqueryparamsarrayresponse.md docs/models/operations/simplepathparameterarraysrequest.md @@ -554,14 +513,18 @@ docs/models/operations/simplepathparameterobjectsresponse.md docs/models/operations/simplepathparameterprimitivesrequest.md docs/models/operations/simplepathparameterprimitivesres.md docs/models/operations/simplepathparameterprimitivesresponse.md +docs/models/operations/nestfirstgetresponse.md +docs/models/operations/nestedfirstgetresponse.md +docs/models/operations/nestedsecondgetresponse.md +docs/models/operations/nestedgetresponse.md docs/models/operations/nullableobjectpostres.md docs/models/operations/nullableobjectpostresponse.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullableoptionalobj.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodynullablerequiredobj.md -docs/models/operations/nullablerequiredemptyobjectpostrequestbodyrequiredobj.md +docs/models/operations/nullableoptionalobj.md +docs/models/operations/nullablerequiredobj.md +docs/models/operations/requiredobj.md docs/models/operations/nullablerequiredemptyobjectpostrequestbody.md docs/models/operations/nullablerequiredemptyobjectpostresponse.md -docs/models/operations/nullablerequiredpropertypostrequestbodynullablerequiredenum.md +docs/models/operations/nullablerequiredenum.md docs/models/operations/nullablerequiredpropertypostrequestbody.md docs/models/operations/nullablerequiredpropertypostresponse.md docs/models/operations/nullablerequiredsharedobjectpostrequestbody.md @@ -597,123 +560,123 @@ docs/models/operations/requestbodypostapplicationjsonsimpleresponse.md docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseres.md docs/models/operations/requestbodypostapplicationjsonsimplecamelcaseresponse.md docs/models/operations/requestbodypostcomplexnumbertypesrequest.md -docs/models/operations/requestbodypostcomplexnumbertypes200applicationjson.md +docs/models/operations/requestbodypostcomplexnumbertypesresponsebody.md docs/models/operations/requestbodypostcomplexnumbertypesresponse.md -docs/models/operations/requestbodypostdefaultsandconsts200applicationjson.md +docs/models/operations/requestbodypostdefaultsandconstsresponsebody.md docs/models/operations/requestbodypostdefaultsandconstsresponse.md -docs/models/operations/requestbodypostemptyobjectrequestbodyempty.md -docs/models/operations/requestbodypostemptyobjectrequestbodyemptywithemptyproperties.md +docs/models/operations/empty.md +docs/models/operations/emptywithemptyproperties.md docs/models/operations/requestbodypostemptyobjectrequestbody.md -docs/models/operations/requestbodypostemptyobject200applicationjsonempty.md -docs/models/operations/requestbodypostemptyobject200applicationjsonemptyrespwithemptyproperies.md -docs/models/operations/requestbodypostemptyobject200applicationjson.md +docs/models/operations/requestbodypostemptyobjectempty.md +docs/models/operations/emptyrespwithemptyproperies.md +docs/models/operations/requestbodypostemptyobjectresponsebody.md docs/models/operations/requestbodypostemptyobjectresponse.md -docs/models/operations/requestbodypostformdeepresform.md +docs/models/operations/form.md docs/models/operations/requestbodypostformdeepres.md docs/models/operations/requestbodypostformdeepresponse.md docs/models/operations/requestbodypostformmapprimitiveres.md docs/models/operations/requestbodypostformmapprimitiveresponse.md -docs/models/operations/requestbodypostformsimpleresform.md -docs/models/operations/requestbodypostformsimpleresheaders.md +docs/models/operations/requestbodypostformsimpleform.md +docs/models/operations/requestbodypostformsimpleheaders.md docs/models/operations/requestbodypostformsimpleres.md docs/models/operations/requestbodypostformsimpleresponse.md -docs/models/operations/requestbodypostjsondatatypesarraybigint200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraybigintresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraybigintresponse.md -docs/models/operations/requestbodypostjsondatatypesarraydate200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraydateresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraydateresponse.md -docs/models/operations/requestbodypostjsondatatypesarraydecimalstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesarraydecimalstrresponse.md -docs/models/operations/requestbodypostjsondatatypesbigint200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbigintresponsebody.md docs/models/operations/requestbodypostjsondatatypesbigintresponse.md -docs/models/operations/requestbodypostjsondatatypesbigintstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbigintstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesbigintstrresponse.md -docs/models/operations/requestbodypostjsondatatypesboolean200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesbooleanresponsebody.md docs/models/operations/requestbodypostjsondatatypesbooleanresponse.md -docs/models/operations/requestbodypostjsondatatypesdate200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdateresponsebody.md docs/models/operations/requestbodypostjsondatatypesdateresponse.md -docs/models/operations/requestbodypostjsondatatypesdatetime200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdatetimeresponsebody.md docs/models/operations/requestbodypostjsondatatypesdatetimeresponse.md -docs/models/operations/requestbodypostjsondatatypesdecimal200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdecimalresponsebody.md docs/models/operations/requestbodypostjsondatatypesdecimalresponse.md -docs/models/operations/requestbodypostjsondatatypesdecimalstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesdecimalstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesdecimalstrresponse.md -docs/models/operations/requestbodypostjsondatatypesfloat32200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesfloat32responsebody.md docs/models/operations/requestbodypostjsondatatypesfloat32response.md -docs/models/operations/requestbodypostjsondatatypesint32200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesint32responsebody.md docs/models/operations/requestbodypostjsondatatypesint32response.md -docs/models/operations/requestbodypostjsondatatypesinteger200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesintegerresponsebody.md docs/models/operations/requestbodypostjsondatatypesintegerresponse.md -docs/models/operations/requestbodypostjsondatatypesmapbigintstr200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapbigintstrresponse.md -docs/models/operations/requestbodypostjsondatatypesmapdatetime200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapdatetimeresponse.md -docs/models/operations/requestbodypostjsondatatypesmapdecimal200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesmapdecimalresponsebody.md docs/models/operations/requestbodypostjsondatatypesmapdecimalresponse.md -docs/models/operations/requestbodypostjsondatatypesnumber200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesnumberresponsebody.md docs/models/operations/requestbodypostjsondatatypesnumberresponse.md -docs/models/operations/requestbodypostjsondatatypesstring200applicationjson.md +docs/models/operations/requestbodypostjsondatatypesstringresponsebody.md docs/models/operations/requestbodypostjsondatatypesstringresponse.md docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredres.md docs/models/operations/requestbodypostmultiplecontenttypescomponentfilteredresponse.md -docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredres.md docs/models/operations/requestbodypostmultiplecontenttypesinlinefilteredresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationxwwwformurlencoded.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamformresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparamapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparamjsonresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartformdata.md +docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartrequest.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartres.md docs/models/operations/requestbodypostmultiplecontenttypessplitparammultipartresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationxwwwformurlencoded.md +docs/models/operations/requestbodypostmultiplecontenttypessplitformrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitformres.md docs/models/operations/requestbodypostmultiplecontenttypessplitformresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitapplicationjson.md +docs/models/operations/requestbodypostmultiplecontenttypessplitjsonrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitjsonres.md docs/models/operations/requestbodypostmultiplecontenttypessplitjsonresponse.md -docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartformdata.md +docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartrequestbody.md docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartres.md docs/models/operations/requestbodypostmultiplecontenttypessplitmultipartresponse.md -docs/models/operations/requestbodypostnotnullablenotrequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnotnullablenotrequiredstringbodyresponse.md -docs/models/operations/requestbodypostnullarray200applicationjson.md +docs/models/operations/requestbodypostnullarrayresponsebody.md docs/models/operations/requestbodypostnullarrayresponse.md -docs/models/operations/requestbodypostnulldictionary200applicationjson.md +docs/models/operations/requestbodypostnulldictionaryresponsebody.md docs/models/operations/requestbodypostnulldictionaryresponse.md -docs/models/operations/requestbodypostnullablenotrequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnullablenotrequiredstringbodyresponse.md -docs/models/operations/requestbodypostnullablerequiredstringbody200applicationjson.md +docs/models/operations/requestbodypostnullablerequiredstringbodyresponsebody.md docs/models/operations/requestbodypostnullablerequiredstringbodyresponse.md docs/models/operations/requestbodyputbytesres.md docs/models/operations/requestbodyputbytesresponse.md docs/models/operations/requestbodyputbyteswithparamsrequest.md -docs/models/operations/requestbodyputbyteswithparamsresargs.md +docs/models/operations/requestbodyputbyteswithparamsargs.md docs/models/operations/requestbodyputbyteswithparamsres.md docs/models/operations/requestbodyputbyteswithparamsresponse.md -docs/models/operations/requestbodyputmultipartdeepresform.md +docs/models/operations/requestbodyputmultipartdeepform.md docs/models/operations/requestbodyputmultipartdeepres.md docs/models/operations/requestbodyputmultipartdeepresponse.md -docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbodydifferentfilename.md +docs/models/operations/differentfilename.md docs/models/operations/requestbodyputmultipartdifferentfilenamerequestbody.md docs/models/operations/requestbodyputmultipartdifferentfilenameres.md docs/models/operations/requestbodyputmultipartdifferentfilenameresponse.md -docs/models/operations/requestbodyputmultipartfilerequestbodyfile.md +docs/models/operations/file.md docs/models/operations/requestbodyputmultipartfilerequestbody.md docs/models/operations/requestbodyputmultipartfileres.md docs/models/operations/requestbodyputmultipartfileresponse.md -docs/models/operations/requestbodyputmultipartsimpleresform.md -docs/models/operations/requestbodyputmultipartsimpleresheaders.md +docs/models/operations/requestbodyputmultipartsimpleform.md +docs/models/operations/requestbodyputmultipartsimpleheaders.md docs/models/operations/requestbodyputmultipartsimpleres.md docs/models/operations/requestbodyputmultipartsimpleresponse.md docs/models/operations/requestbodyputstringres.md docs/models/operations/requestbodyputstringresponse.md docs/models/operations/requestbodyputstringwithparamsrequest.md -docs/models/operations/requestbodyputstringwithparamsresargs.md +docs/models/operations/requestbodyputstringwithparamsargs.md docs/models/operations/requestbodyputstringwithparamsres.md docs/models/operations/requestbodyputstringwithparamsresponse.md docs/models/operations/requestbodyreadandwriteresponse.md @@ -723,23 +686,13 @@ docs/models/operations/requestbodyreadwriteonlyunionresponse.md docs/models/operations/requestbodywriteonlyresponse.md docs/models/operations/requestbodywriteonlyoutputresponse.md docs/models/operations/requestbodywriteonlyunionresponse.md -docs/models/operations/createfilerequestbodyfile.md -docs/models/operations/createfilerequestbody.md -docs/models/operations/createfileresponse.md -docs/models/operations/createresourceresponse.md -docs/models/operations/deleteresourcerequest.md -docs/models/operations/deleteresourceresponse.md -docs/models/operations/getresourcerequest.md -docs/models/operations/getresourceresponse.md -docs/models/operations/updateresourcerequest.md -docs/models/operations/updateresourceresponse.md -docs/models/operations/responsebodyadditionalpropertiescomplexnumberspost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponsebody.md docs/models/operations/responsebodyadditionalpropertiescomplexnumberspostresponse.md -docs/models/operations/responsebodyadditionalpropertiesdatepost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiesdatepostresponsebody.md docs/models/operations/responsebodyadditionalpropertiesdatepostresponse.md -docs/models/operations/responsebodyadditionalpropertiesobjectpost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiesobjectpostresponsebody.md docs/models/operations/responsebodyadditionalpropertiesobjectpostresponse.md -docs/models/operations/responsebodyadditionalpropertiespost200applicationjson.md +docs/models/operations/responsebodyadditionalpropertiespostresponsebody.md docs/models/operations/responsebodyadditionalpropertiespostresponse.md docs/models/operations/responsebodybytesgetresponse.md docs/models/operations/responsebodyemptywithheadersrequest.md @@ -748,12 +701,8 @@ docs/models/operations/responsebodyoptionalgetresponse.md docs/models/operations/responsebodyreadonlyresponse.md docs/models/operations/responsebodystringgetresponse.md docs/models/operations/responsebodyxmlgetresponse.md -docs/models/operations/responsebodyzerovaluecomplextypeptrspost200applicationjson.md +docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponsebody.md docs/models/operations/responsebodyzerovaluecomplextypeptrspostresponse.md -docs/models/operations/retriesgetrequest.md -docs/models/operations/retriesgetretries.md -docs/models/operations/retriesgetresponse.md -docs/models/operations/groupsecondgetresponse.md docs/models/operations/selectglobalserverresponse.md docs/models/operations/selectserverwithidresponse.md docs/models/operations/serverwithprotocoltemplateresponse.md @@ -765,68 +714,117 @@ docs/models/operations/telemetryspeakeasyuseragentgetres.md docs/models/operations/telemetryspeakeasyuseragentgetresponse.md docs/models/operations/telemetryuseragentgetres.md docs/models/operations/telemetryuseragentgetresponse.md -docs/models/operations/flattenedtypedobjectpostres.md -docs/models/operations/flattenedtypedobjectpostresponse.md -docs/models/operations/mixedtypeoneofpostres.md -docs/models/operations/mixedtypeoneofpostresponse.md -docs/models/operations/nullableoneofrefinobjectpostres.md -docs/models/operations/nullableoneofrefinobjectpostresponse.md -docs/models/operations/nullableoneofschemapostres.md -docs/models/operations/nullableoneofschemapostresponse.md -docs/models/operations/nullableoneoftypeinobjectpostres.md -docs/models/operations/nullableoneoftypeinobjectpostresponse.md -docs/models/operations/nullabletypedobjectpostres.md -docs/models/operations/nullabletypedobjectpostresponse.md -docs/models/operations/primitivetypeoneofpostres.md -docs/models/operations/primitivetypeoneofpostresponse.md -docs/models/operations/stronglytypedoneofpostres.md -docs/models/operations/stronglytypedoneofpostresponse.md -docs/models/operations/typedobjectnullableoneofpostres.md -docs/models/operations/typedobjectnullableoneofpostresponse.md -docs/models/operations/typedobjectoneofpostres.md -docs/models/operations/typedobjectoneofpostresponse.md -docs/models/operations/unionbigintdecimalres.md -docs/models/operations/unionbigintdecimalresponse.md -docs/models/operations/uniondatenullres.md -docs/models/operations/uniondatenullresponse.md -docs/models/operations/uniondatetimebigintres.md -docs/models/operations/uniondatetimebigintresponse.md -docs/models/operations/uniondatetimenullres.md -docs/models/operations/uniondatetimenullresponse.md -docs/models/operations/weaklytypedoneofpostres.md -docs/models/operations/weaklytypedoneofpostresponse.md -docs/models/operations/putanythingignoredgeneration200applicationjson.md +docs/models/operations/apikeyauthglobalnewresponse.md +docs/models/operations/authglobalresponse.md +docs/models/operations/basicauthnewsecurity.md +docs/models/operations/basicauthnewresponse.md +docs/models/operations/multiplemixedoptionsauthsecurity.md +docs/models/operations/multiplemixedoptionsauthresponse.md +docs/models/operations/multiplemixedschemeauthsecurity.md +docs/models/operations/multiplemixedschemeauthresponse.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption1.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurityoption2.md +docs/models/operations/multipleoptionswithmixedschemesauthsecurity.md +docs/models/operations/multipleoptionswithmixedschemesauthresponse.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption1.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurityoption2.md +docs/models/operations/multipleoptionswithsimpleschemesauthsecurity.md +docs/models/operations/multipleoptionswithsimpleschemesauthresponse.md +docs/models/operations/multiplesimpleoptionsauthsecurity.md +docs/models/operations/multiplesimpleoptionsauthresponse.md +docs/models/operations/multiplesimpleschemeauthsecurity.md +docs/models/operations/multiplesimpleschemeauthresponse.md +docs/models/operations/oauth2authnewsecurity.md +docs/models/operations/oauth2authnewresponse.md +docs/models/operations/openidconnectauthnewsecurity.md +docs/models/operations/openidconnectauthnewresponse.md +docs/models/operations/apikeyauthsecurity.md +docs/models/operations/apikeyauthtoken.md +docs/models/operations/apikeyauthresponse.md +docs/models/operations/apikeyauthglobaltoken.md +docs/models/operations/apikeyauthglobalresponse.md +docs/models/operations/basicauthsecurity.md +docs/models/operations/basicauthrequest.md +docs/models/operations/basicauthuser.md +docs/models/operations/basicauthresponse.md +docs/models/operations/bearerauthsecurity.md +docs/models/operations/bearerauthtoken.md +docs/models/operations/bearerauthresponse.md +docs/models/operations/globalbearerauthtoken.md +docs/models/operations/globalbearerauthresponse.md +docs/models/operations/oauth2authsecurity.md +docs/models/operations/oauth2authtoken.md +docs/models/operations/oauth2authresponse.md +docs/models/operations/oauth2overridesecurity.md +docs/models/operations/oauth2overriderequest.md +docs/models/operations/oauth2overridetoken.md +docs/models/operations/oauth2overrideresponse.md +docs/models/operations/openidconnectauthsecurity.md +docs/models/operations/openidconnectauthtoken.md +docs/models/operations/openidconnectauthresponse.md +docs/models/operations/getdocumentationperlanguagerequest.md +docs/models/operations/getdocumentationperlanguageresponse.md +docs/models/operations/createfilefile.md +docs/models/operations/createfilerequestbody.md +docs/models/operations/createfileresponse.md +docs/models/operations/createresourceresponse.md +docs/models/operations/deleteresourcerequest.md +docs/models/operations/deleteresourceresponse.md +docs/models/operations/getresourcerequest.md +docs/models/operations/getresourceresponse.md +docs/models/operations/updateresourcerequest.md +docs/models/operations/updateresourceresponse.md +docs/models/operations/groupfirstgetresponse.md +docs/models/operations/groupsecondgetresponse.md +docs/models/operations/paginationcursorbodyrequestbody.md +docs/models/operations/paginationcursorbodyres.md +docs/models/operations/paginationcursorbodyresponse.md +docs/models/operations/paginationcursorparamsrequest.md +docs/models/operations/paginationcursorparamsres.md +docs/models/operations/paginationcursorparamsresponse.md +docs/models/operations/paginationlimitoffsetoffsetbodyres.md +docs/models/operations/paginationlimitoffsetoffsetbodyresponse.md +docs/models/operations/paginationlimitoffsetoffsetparamsrequest.md +docs/models/operations/paginationlimitoffsetoffsetparamsres.md +docs/models/operations/paginationlimitoffsetoffsetparamsresponse.md +docs/models/operations/paginationlimitoffsetpagebodyres.md +docs/models/operations/paginationlimitoffsetpagebodyresponse.md +docs/models/operations/paginationlimitoffsetpageparamsrequest.md +docs/models/operations/paginationlimitoffsetpageparamsres.md +docs/models/operations/paginationlimitoffsetpageparamsresponse.md +docs/models/operations/retriesgetrequest.md +docs/models/operations/retriesgetretries.md +docs/models/operations/retriesgetresponse.md +docs/models/operations/putanythingignoredgenerationresponsebody.md docs/models/operations/putanythingignoredgenerationresponse.md docs/models/operations/responsebodyjsongetresponse.md -docs/models/shared/authservicerequestbodybasicauth.md -docs/models/shared/authservicerequestbodyheaderauth.md -docs/models/shared/authservicerequestbody.md -docs/models/shared/schemebasicauth.md -docs/models/shared/security.md -docs/models/shared/simpleobjectint32enum.md -docs/models/shared/simpleobjectintenum.md +docs/models/shared/int32enum.md +docs/models/shared/intenum.md docs/models/shared/simpleobject.md docs/models/shared/enum.md docs/models/shared/arraycircularreferenceobject.md docs/models/shared/validcircularreferenceobject.md -docs/models/shared/deprecatedfieldinobjectdeprecatedenum.md +docs/models/shared/deprecatedenum.md docs/models/shared/deprecatedfieldinobject.md docs/models/shared/deprecatedobject.md docs/models/shared/emptyobjectparam.md -docs/models/shared/httpbinsimplejsonobjectslideshowslides.md -docs/models/shared/httpbinsimplejsonobjectslideshow.md +docs/models/shared/slides.md +docs/models/shared/slideshow.md docs/models/shared/httpbinsimplejsonobject.md docs/models/shared/objectcircularreferenceobject.md docs/models/shared/oneofcircularreferenceobject.md docs/models/shared/fakerstrings.md docs/models/shared/fakerformattedstrings.md -docs/models/shared/limitoffsetconfig.md +docs/models/shared/nullableoneofrefinobject.md +docs/models/shared/typet.md +docs/models/shared/typedobject1.md +docs/models/shared/nullableoneoftypeinobject.md docs/models/shared/refqueryparamobjexploded.md docs/models/shared/refqueryparamobj.md docs/models/shared/deepobject.md docs/models/shared/nullableobject.md -docs/models/shared/simpleobjectcamelcaseint32enumval.md -docs/models/shared/simpleobjectcamelcaseintenumval.md +docs/models/shared/int32enumval.md +docs/models/shared/intenumval.md docs/models/shared/simpleobjectcamelcase.md docs/models/shared/arrobjvalue.md docs/models/shared/arrobjvaluecamelcase.md @@ -839,60 +837,62 @@ docs/models/shared/defaultsandconstsoutputconstenumstr.md docs/models/shared/defaultsandconstsoutputdefaultenumint.md docs/models/shared/defaultsandconstsoutputdefaultenumstr.md docs/models/shared/defaultsandconstsoutput.md -docs/models/shared/defaultsandconstsconstenumint.md -docs/models/shared/defaultsandconstsconstenumstr.md -docs/models/shared/defaultsandconstsdefaultenumint.md -docs/models/shared/defaultsandconstsdefaultenumstr.md +docs/models/shared/constenumint.md +docs/models/shared/constenumstr.md +docs/models/shared/defaultenumint.md +docs/models/shared/defaultenumstr.md docs/models/shared/defaultsandconsts.md -docs/models/shared/readwriteobjectinput.md +docs/models/shared/readwriteobject.md docs/models/shared/readwriteobjectoutput.md docs/models/shared/readonlyobject.md docs/models/shared/readonlyobjectinput.md docs/models/shared/writeonlyobject.md docs/models/shared/writeonlyobjectoutput.md +docs/models/shared/objwithzerovaluecomplextypeptrs.md +docs/models/shared/basicauth.md +docs/models/shared/headerauth.md +docs/models/shared/authservicerequestbody.md +docs/models/shared/schemebasicauth.md +docs/models/shared/security.md docs/models/shared/fileresource.md -docs/models/shared/exampleresourcechocolates.md -docs/models/shared/exampleresourceenumnumber.md -docs/models/shared/exampleresourceenumstr.md +docs/models/shared/chocolates.md +docs/models/shared/enumnumber.md +docs/models/shared/enumstr.md docs/models/shared/exampleresource.md -docs/models/shared/typedobject1type.md -docs/models/shared/typedobject1.md -docs/models/shared/objwithzerovaluecomplextypeptrs.md -docs/models/shared/nullableoneofrefinobject.md -docs/models/shared/nullableoneoftypeinobject.md +docs/models/shared/limitoffsetconfig.md docs/models/shared/alloftoallof.md docs/models/shared/oneofgenerationstresstest.md docs/models/shared/unsupportedenums.md -docs/models/errors/errort.md -docs/models/errors/errortype.md -docs/models/errors/statusgetxspeakeasyerrors501applicationjson.md docs/models/callbacks/ignoredgenerationgetsingledignoredcallbackoperationresponse.md docs/models/callbacks/ignoredgenerationgetsingledignoredcallbackoperationrequestbody.md docs/models/callbacks/ignoredgenerationgetnotignoredcallbackresponse.md docs/models/callbacks/ignoredgenerationgetnotignoredcallbackrequestbody.md +docs/models/errors/errort.md +docs/models/errors/errortype.md +docs/models/errors/statusgetxspeakeasyerrorsresponsebody.md docs/sdks/sdk/README.md -docs/sdks/auth/README.md -docs/sdks/authnew/README.md -docs/sdks/documentation/README.md +docs/sdks/generation/README.md docs/sdks/errors/README.md -docs/sdks/first/README.md +docs/sdks/unions/README.md docs/sdks/flattening/README.md -docs/sdks/generation/README.md docs/sdks/globals/README.md +docs/sdks/parameters/README.md docs/sdks/nest/README.md -docs/sdks/nestfirst/README.md +docs/sdks/sdkfirst/README.md docs/sdks/nested/README.md -docs/sdks/nestedfirst/README.md -docs/sdks/nestedsecond/README.md -docs/sdks/pagination/README.md -docs/sdks/parameters/README.md +docs/sdks/sdknestedfirst/README.md +docs/sdks/sdksecond/README.md docs/sdks/requestbodies/README.md -docs/sdks/resource/README.md docs/sdks/responsebodies/README.md -docs/models/utils/retryconfig.md -docs/sdks/retries/README.md -docs/sdks/second/README.md docs/sdks/servers/README.md docs/sdks/telemetry/README.md -docs/sdks/unions/README.md +docs/sdks/authnew/README.md +docs/sdks/auth/README.md +docs/sdks/documentation/README.md +docs/sdks/resource/README.md +docs/sdks/first/README.md +docs/sdks/second/README.md +docs/sdks/pagination/README.md +docs/models/utils/retryconfig.md +docs/sdks/retries/README.md .gitattributes \ No newline at end of file diff --git a/typescript-client-sdk/gen.yaml b/typescript-client-sdk/gen.yaml index b5acc1f11..bea30f277 100755 --- a/typescript-client-sdk/gen.yaml +++ b/typescript-client-sdk/gen.yaml @@ -2,8 +2,8 @@ configVersion: 1.0.0 management: docChecksum: 0c1717dc8f9e83b99bad896fa719645c docVersion: 0.1.0 - speakeasyVersion: 1.112.1 - generationVersion: 2.173.0 + speakeasyVersion: 1.114.1 + generationVersion: 2.181.1 generation: comments: {} sdkClassName: SDK @@ -11,9 +11,9 @@ generation: features: typescript: acceptHeaders: 2.81.1 - core: 2.94.0 + core: 3.1.0 deprecations: 2.81.1 - docs: 0.3.7 + docs: 0.3.9 enums: 2.81.1 errors: 2.81.7 examples: 2.81.3 @@ -32,10 +32,18 @@ features: retries: 2.82.1 serverIDs: 2.81.2 typescript: - version: 1.40.3 + version: 2.0.0 author: Speakeasy clientServerStatusCodesAsErrors: true flattenGlobalSecurity: false + imports: + option: openapi + paths: + callbacks: sdk/models/callbacks + errors: sdk/models/errors + operations: sdk/models/operations + shared: sdk/models/shared + webhooks: sdk/models/webhooks installationURL: https://gitpkg.now.sh/speakeasy-api/openapi-generation-tests/typescript-client-sdk maxMethodParams: 5 packageName: openapi diff --git a/typescript-client-sdk/package-lock.json b/typescript-client-sdk/package-lock.json index afe396f72..61534a69f 100755 --- a/typescript-client-sdk/package-lock.json +++ b/typescript-client-sdk/package-lock.json @@ -1,12 +1,12 @@ { "name": "openapi", - "version": "1.40.3", + "version": "2.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "openapi", - "version": "1.40.3", + "version": "2.0.0", "dependencies": { "axios": "^1.1.3", "class-transformer": "^0.5.1", diff --git a/typescript-client-sdk/package.json b/typescript-client-sdk/package.json index 94400d826..e2a9fc65d 100755 --- a/typescript-client-sdk/package.json +++ b/typescript-client-sdk/package.json @@ -1,6 +1,6 @@ { "name": "openapi", - "version": "1.40.3", + "version": "2.0.0", "author": "Speakeasy", "scripts": { "prepare": "tsc --build", diff --git a/typescript-client-sdk/src/internal/utils/requestbody.ts b/typescript-client-sdk/src/internal/utils/requestbody.ts index f7a1f55f0..3e4374c15 100755 --- a/typescript-client-sdk/src/internal/utils/requestbody.ts +++ b/typescript-client-sdk/src/internal/utils/requestbody.ts @@ -2,382 +2,356 @@ * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. */ -import {isBooleanRecord, isNumberRecord, isStringRecord, SerializationMethodToContentType, valToString,} from "./utils"; +import { + isBooleanRecord, + isNumberRecord, + isStringRecord, + SerializationMethodToContentType, + valToString, +} from "./utils"; import FormData from "form-data"; -import {RFCDate} from "../../sdk/types"; -import {classToPlain} from "class-transformer"; +import { RFCDate } from "../../sdk/types"; +import { classToPlain } from "class-transformer"; export const requestMetadataKey = "request"; const mpFormMetadataKey = "multipart_form"; export function serializeRequestBody( - request: any, - requestFieldName: string, - serializationMethod: string + request: any, + requestFieldName: string, + serializationMethod: string ): [Record, any] { - if ( - request !== Object(request) || - !request.hasOwnProperty(requestFieldName) - ) { - return serializeContentType( - SerializationMethodToContentType[serializationMethod], - request - ); - } - - const requestBodyAnn: string = Reflect.getMetadata( - requestMetadataKey, - request, - requestFieldName - ); - if (!requestBodyAnn) { - throw new Error("invalid request type"); - } - - const requestDecorator: RequestDecorator = - parseRequestDecorator(requestBodyAnn); - return serializeContentType( - requestDecorator.MediaType, - request[requestFieldName] - ); -} + if (request !== Object(request) || !request.hasOwnProperty(requestFieldName)) { + return serializeContentType(SerializationMethodToContentType[serializationMethod], request); + } -const serializeContentType = ( - contentType: string, - reqBody: any -): [Record, any] => { - let [requestHeaders, requestBody]: [Record, any] = [{}, {}]; - - switch (contentType) { - case "multipart/form-data": - requestBody = encodeMultipartFormData(reqBody); - break; - - case "multipart/mixed": - requestBody = encodeMultipartFormData(reqBody); - requestHeaders = (requestBody as FormData).getHeaders(); - break; - - case "application/x-www-form-urlencoded": - [requestHeaders, requestBody] = [ - {"Content-Type": `${contentType}`}, - encodeFormUrlEncodeData(reqBody), - ]; - break; - - case "application/json": - [requestHeaders, requestBody] = [ - {"Content-Type": `${contentType}`}, - classToPlain(reqBody, {exposeUnsetFields: false}), - ]; - break; - case "text/json": - [requestHeaders, requestBody] = [ - {"Content-Type": `${contentType}`}, - reqBody, - ]; - break; - - default: { - requestBody = reqBody; - const requestBodyType: string = typeof requestBody; - if ( - requestBodyType === "string" || - requestBody instanceof String || - requestBody instanceof Uint8Array - ) - requestHeaders = {"Content-Type": `${contentType}`}; - else - throw new Error( - `invalid request body type ${requestBodyType} for mediaType ${contentType}` - ); + const requestBodyAnn: string = Reflect.getMetadata( + requestMetadataKey, + request, + requestFieldName + ); + if (!requestBodyAnn) { + throw new Error("invalid request type"); } - } - return [requestHeaders, requestBody]; -}; -const encodeFormUrlEncodeData = (data: any): FormData => { - const formData: FormData = new FormData(); - const fieldNames: string[] = Object.getOwnPropertyNames(data); + const requestDecorator: RequestDecorator = parseRequestDecorator(requestBodyAnn); + return serializeContentType(requestDecorator.MediaType, request[requestFieldName]); +} - if (isNumberRecord(data) || isBooleanRecord(data) || isStringRecord(data)) { - fieldNames.forEach((fname) => { - formData.append(fname, String(data[fname])); - }); - } else { - fieldNames.forEach((fname) => { - const formAnn: string = Reflect.getMetadata("form", data, fname); - if (formAnn === null) { - return; - } - const formDecorator: FormDecorator = parseFormDecorator(formAnn); - - if (formDecorator.JSON) { - formData.append( - formDecorator.Name ?? fname, - JSON.stringify(data[fname]) - ); - return; - } - - if (formDecorator.Style === "form") { - let parsed: Record; - if (formDecorator.Explode === true) { - parsed = formExplode(fname, data[fname]); - } else { - parsed = formNotExplode(fname, data[fname]); +const serializeContentType = (contentType: string, reqBody: any): [Record, any] => { + let [requestHeaders, requestBody]: [Record, any] = [{}, {}]; + + switch (contentType) { + case "multipart/form-data": + requestBody = encodeMultipartFormData(reqBody); + break; + + case "multipart/mixed": + requestBody = encodeMultipartFormData(reqBody); + requestHeaders = (requestBody as FormData).getHeaders(); + break; + + case "application/x-www-form-urlencoded": + [requestHeaders, requestBody] = [ + { "Content-Type": `${contentType}` }, + encodeFormUrlEncodedData(reqBody), + ]; + break; + + case "application/json": + [requestHeaders, requestBody] = [ + { "Content-Type": `${contentType}` }, + classToPlain(reqBody, { exposeUnsetFields: false }), + ]; + break; + case "text/json": + [requestHeaders, requestBody] = [{ "Content-Type": `${contentType}` }, reqBody]; + break; + + default: { + requestBody = reqBody; + const requestBodyType: string = typeof requestBody; + if ( + requestBodyType === "string" || + requestBody instanceof String || + requestBody instanceof Uint8Array + ) + requestHeaders = { "Content-Type": `${contentType}` }; + else + throw new Error( + `invalid request body type ${requestBodyType} for mediaType ${contentType}` + ); } + } + return [requestHeaders, requestBody]; +}; - Object.keys(parsed).forEach((key) => { - parsed[key].forEach((v) => formData.append(key, v)); +const encodeFormUrlEncodedData = (data: any): string => { + const fieldNames: string[] = Object.getOwnPropertyNames(data); + + let urlencoded = ""; + let amp = ""; + const appendPair = (key: string, value: string) => { + urlencoded += `${amp}${encodeURIComponent(key)}=${encodeURIComponent(value)}`; + amp = "&"; + }; + + if (isNumberRecord(data) || isBooleanRecord(data) || isStringRecord(data)) { + fieldNames.forEach((fname) => { + const formAnn: string = Reflect.getMetadata("form", data, fname); + let name = fname; + if (formAnn) { + const formDecorator: FormDecorator = parseFormDecorator(formAnn); + name = formDecorator.Name ?? fname; + } + appendPair(name, data[fname]?.toString()); }); - return; - } - }); - } - return formData; + } else { + fieldNames.forEach((fname) => { + const formAnn: string = Reflect.getMetadata("form", data, fname); + if (formAnn === null) { + return; + } + const formDecorator: FormDecorator = parseFormDecorator(formAnn); + + if (formDecorator.JSON) { + const name = formDecorator.Name ?? fname; + const val = JSON.stringify(data[fname]); + appendPair(name, val); + } else if (formDecorator.Style === "form") { + let parsed: Record; + const name = formDecorator.Name ?? fname; + if (formDecorator.Explode === true) { + parsed = formExplode(name, data[fname]); + } else { + parsed = formNotExplode(name, data[fname]); + } + + Object.keys(parsed).forEach((key) => { + parsed[key].forEach((v) => appendPair(key, v)); + }); + return; + } + }); + } + return urlencoded; }; const formExplode = (fname: string, data: any): Record => { - const exploded: Record = {}; - - if (Array.isArray(data)) { - data.forEach((value) => { - if (!exploded[fname]) { - exploded[fname] = []; - } - exploded[fname].push(value); - }); - } else if (typeof data === "object") { - if (data instanceof Date || data instanceof RFCDate) { - if (!exploded[fname]) { - exploded[fname] = []; - } - exploded[fname].push(valToString(data)); + const exploded: Record = {}; + + if (Array.isArray(data)) { + data.forEach((value) => { + if (!exploded[fname]) { + exploded[fname] = []; + } + exploded[fname].push(value); + }); + } else if (typeof data === "object") { + if (data instanceof Date || data instanceof RFCDate) { + if (!exploded[fname]) { + exploded[fname] = []; + } + exploded[fname].push(valToString(data)); + } else { + Object.keys(data).forEach((key) => { + if (!exploded[key]) { + exploded[key] = []; + } + exploded[key].push(data[key]); + }); + } } else { - Object.keys(data).forEach((key) => { - if (!exploded[key]) { - exploded[key] = []; + if (!exploded[fname]) { + exploded[fname] = []; } - exploded[key].push(data[key]); - }); - } - } else { - if (!exploded[fname]) { - exploded[fname] = []; + exploded[fname].push(valToString(data)); } - exploded[fname].push(valToString(data)); - } - return exploded; + return exploded; }; const formNotExplode = (fname: string, data: any): Record => { - const notExploded: Record = {}; + const notExploded: Record = {}; - if (Array.isArray(data)) { - if (!notExploded[fname]) { - notExploded[fname] = []; - } - notExploded[fname].push(data.map((item) => item.toString()).join(",")); - } else if (typeof data === "object") { - if (data instanceof Date || data instanceof RFCDate) { - if (!notExploded[fname]) { - notExploded[fname] = []; - } - notExploded[fname].push(valToString(data)); + if (Array.isArray(data)) { + if (!notExploded[fname]) { + notExploded[fname] = []; + } + notExploded[fname].push(data.map((item) => item.toString()).join(",")); + } else if (typeof data === "object") { + if (data instanceof Date || data instanceof RFCDate) { + if (!notExploded[fname]) { + notExploded[fname] = []; + } + notExploded[fname].push(valToString(data)); + } else { + Object.keys(data).forEach((key) => { + if (!notExploded[key]) { + notExploded[key] = []; + } + notExploded[fname].push(`${key}=${data[key]}`); + }); + } } else { - Object.keys(data).forEach((key) => { - if (!notExploded[key]) { - notExploded[key] = []; + if (!notExploded[fname]) { + notExploded[fname] = []; } - notExploded[fname].push(`${key}=${data[key]}`); - }); - } - } else { - if (!notExploded[fname]) { - notExploded[fname] = []; + notExploded[fname].push(valToString(data)); } - notExploded[fname].push(valToString(data)); - } - return notExploded; + return notExploded; }; function parseFormDecorator(formAnn: string): FormDecorator { - const formDecorator: FormDecorator = new FormDecorator( - "", - "form", - false, - false - ); - formAnn.split(";").forEach((formAnnPart) => { - const [formKey, formVal]: string[] = formAnnPart.split("="); - switch (formKey) { - case "name": - formDecorator.Name = formVal; - break; - case "style": - formDecorator.Style = formVal; - break; - case "explode": - formDecorator.Explode = formVal === "true"; - break; - case "json": - formDecorator.JSON = formVal === "true"; - break; - } - }); + const formDecorator: FormDecorator = new FormDecorator("", "form", false, false); + formAnn.split(";").forEach((formAnnPart) => { + const [formKey, formVal]: string[] = formAnnPart.split("="); + switch (formKey) { + case "name": + formDecorator.Name = formVal; + break; + case "style": + formDecorator.Style = formVal; + break; + case "explode": + formDecorator.Explode = formVal === "true"; + break; + case "json": + formDecorator.JSON = formVal === "true"; + break; + } + }); - return formDecorator; + return formDecorator; } class FormDecorator { - Name?: string; - Style?: string; - Explode?: boolean; - JSON?: boolean; - - constructor( - Name?: string, - Style?: string, - Explode?: boolean, - JSON?: boolean - ) { - this.Name = Name; - this.Style = Style; - this.Explode = Explode; - this.JSON = JSON; - } + Name?: string; + Style?: string; + Explode?: boolean; + JSON?: boolean; + + constructor(Name?: string, Style?: string, Explode?: boolean, JSON?: boolean) { + this.Name = Name; + this.Style = Style; + this.Explode = Explode; + this.JSON = JSON; + } } function encodeMultipartFormData(form: any): FormData { - const formData: FormData = new FormData(); - - const fieldNames: string[] = Object.getOwnPropertyNames(form); - fieldNames.forEach((fname) => { - const mpFormAnn: string = Reflect.getMetadata( - mpFormMetadataKey, - form, - fname - ); + const formData: FormData = new FormData(); - if (mpFormAnn == null) return; + const fieldNames: string[] = Object.getOwnPropertyNames(form); + fieldNames.forEach((fname) => { + const mpFormAnn: string = Reflect.getMetadata(mpFormMetadataKey, form, fname); - const mpFormDecorator: MultipartFormDecorator = - parseMultipartFormDecorator(mpFormAnn); + if (mpFormAnn == null) return; - if (mpFormDecorator.File) - return encodeMultipartFormDataFile(formData, form[fname]); - else if (mpFormDecorator.JSON) { - formData.append(mpFormDecorator.Name, JSON.stringify(form[fname])); - } else { - if (Array.isArray(form[fname])) { - form[fname].forEach((val: any) => { - formData.append(mpFormDecorator.Name + "[]", valToString(val)); - }); - } else { - formData.append(mpFormDecorator.Name, valToString(form[fname])); - } - } - }); - return formData; + const mpFormDecorator: MultipartFormDecorator = parseMultipartFormDecorator(mpFormAnn); + + if (mpFormDecorator.File) return encodeMultipartFormDataFile(formData, form[fname]); + else if (mpFormDecorator.JSON) { + formData.append(mpFormDecorator.Name, JSON.stringify(form[fname])); + } else { + if (Array.isArray(form[fname])) { + form[fname].forEach((val: any) => { + formData.append(mpFormDecorator.Name + "[]", valToString(val)); + }); + } else { + formData.append(mpFormDecorator.Name, valToString(form[fname])); + } + } + }); + return formData; } function encodeMultipartFormDataFile(formData: FormData, file: any): FormData { - if (typeof file !== "object" || Array.isArray(file) || file == null) { - throw new Error("invalid type for multipart/form-data file"); - } - let content: any = null; - let fileName = ""; - let mpFormDecoratorName = ""; - - const fieldNames: string[] = Object.getOwnPropertyNames(file); - fieldNames.forEach((fname) => { - const mpFormAnn: string = Reflect.getMetadata( - mpFormMetadataKey, - file, - fname - ); + if (typeof file !== "object" || Array.isArray(file) || file == null) { + throw new Error("invalid type for multipart/form-data file"); + } + let content: any = null; + let fileName = ""; + let mpFormDecoratorName = ""; - if (mpFormAnn == null) return; + const fieldNames: string[] = Object.getOwnPropertyNames(file); + fieldNames.forEach((fname) => { + const mpFormAnn: string = Reflect.getMetadata(mpFormMetadataKey, file, fname); - const mpFormDecorator: MultipartFormDecorator = - parseMultipartFormDecorator(mpFormAnn); + if (mpFormAnn == null) return; - if (!mpFormDecorator.Content && mpFormDecorator.Name == "") return; - if (mpFormDecorator.Content) content = file[fname]; - else { - mpFormDecoratorName = mpFormDecorator.Name; - fileName = file[fname]; - } - }); + const mpFormDecorator: MultipartFormDecorator = parseMultipartFormDecorator(mpFormAnn); - if (mpFormDecoratorName === "" || fileName === "" || content == null) { - throw new Error("invalid multipart/form-data file"); - } - formData.append(mpFormDecoratorName, Buffer.from(content), fileName); - return formData; -} + if (!mpFormDecorator.Content && mpFormDecorator.Name == "") return; + if (mpFormDecorator.Content) content = file[fname]; + else { + mpFormDecoratorName = mpFormDecorator.Name; + fileName = file[fname]; + } + }); -function parseMultipartFormDecorator( - mpFormAnn: string -): MultipartFormDecorator { - // example "name=file" - const mpFormDecorator: MultipartFormDecorator = new MultipartFormDecorator( - false, - false, - false, - "" - ); - mpFormAnn.split(";").forEach((mpFormAnnPart) => { - const [mpFormKey, mpFormVal]: string[] = mpFormAnnPart.split("="); - switch (mpFormKey) { - case "file": - mpFormDecorator.File = mpFormVal == "true"; - break; - case "content": - mpFormDecorator.Content = mpFormVal == "true"; - break; - case "name": - mpFormDecorator.Name = mpFormVal; - break; - case "json": - mpFormDecorator.JSON = mpFormVal == "true"; - break; + if (mpFormDecoratorName === "" || fileName === "" || content == null) { + throw new Error("invalid multipart/form-data file"); } - }); + formData.append(mpFormDecoratorName, Buffer.from(content), fileName); + return formData; +} - return mpFormDecorator; +function parseMultipartFormDecorator(mpFormAnn: string): MultipartFormDecorator { + // example "name=file" + const mpFormDecorator: MultipartFormDecorator = new MultipartFormDecorator( + false, + false, + false, + "" + ); + mpFormAnn.split(";").forEach((mpFormAnnPart) => { + const [mpFormKey, mpFormVal]: string[] = mpFormAnnPart.split("="); + switch (mpFormKey) { + case "file": + mpFormDecorator.File = mpFormVal == "true"; + break; + case "content": + mpFormDecorator.Content = mpFormVal == "true"; + break; + case "name": + mpFormDecorator.Name = mpFormVal; + break; + case "json": + mpFormDecorator.JSON = mpFormVal == "true"; + break; + } + }); + + return mpFormDecorator; } class MultipartFormDecorator { - File: boolean; - Content: boolean; - JSON: boolean; - Name: string; - - constructor(File: boolean, Content: boolean, JSON: boolean, Name: string) { - this.File = File; - this.Content = Content; - this.JSON = JSON; - this.Name = Name; - } + File: boolean; + Content: boolean; + JSON: boolean; + Name: string; + + constructor(File: boolean, Content: boolean, JSON: boolean, Name: string) { + this.File = File; + this.Content = Content; + this.JSON = JSON; + this.Name = Name; + } } function parseRequestDecorator(requestAnn: string): RequestDecorator { - // example "media_type=multipart/form-data" - const requestDecorator: RequestDecorator = new RequestDecorator( - "application/octet-stream" - ); - const [mediaTypeKey, mediaTypeVal]: string[] = requestAnn.split("="); - if (mediaTypeKey === "media_type") requestDecorator.MediaType = mediaTypeVal; - return requestDecorator; + // example "media_type=multipart/form-data" + const requestDecorator: RequestDecorator = new RequestDecorator("application/octet-stream"); + const [mediaTypeKey, mediaTypeVal]: string[] = requestAnn.split("="); + if (mediaTypeKey === "media_type") requestDecorator.MediaType = mediaTypeVal; + return requestDecorator; } class RequestDecorator { - MediaType: string; + MediaType: string; - constructor(MediaType: string) { - this.MediaType = MediaType; - } + constructor(MediaType: string) { + this.MediaType = MediaType; + } } diff --git a/typescript-client-sdk/src/internal/utils/utils.ts b/typescript-client-sdk/src/internal/utils/utils.ts index 03daf8839..38f9f4b66 100755 --- a/typescript-client-sdk/src/internal/utils/utils.ts +++ b/typescript-client-sdk/src/internal/utils/utils.ts @@ -4,401 +4,364 @@ import "reflect-metadata"; -import {getSimplePathParams, ppMetadataKey} from "./pathparams"; +import { getSimplePathParams, ppMetadataKey } from "./pathparams"; -import {plainToInstance} from "class-transformer"; -import {RFCDate} from "../../sdk/types"; -import {requestMetadataKey} from "./requestbody"; +import { plainToInstance } from "class-transformer"; +import { RFCDate } from "../../sdk/types"; +import { requestMetadataKey } from "./requestbody"; export const SerializationMethodToContentType: Record = { - json: "application/json", - form: "application/x-www-form-urlencoded", - multipart: "multipart/form-data", - raw: "application/octet-stream", - string: "text/plain", + json: "application/json", + form: "application/x-www-form-urlencoded", + multipart: "multipart/form-data", + raw: "application/octet-stream", + string: "text/plain", }; export interface PropInfo { - key: string | symbol; - type: any; - elemType: any; - elemDepth: number; + key: string | symbol; + type: any; + elemType: any; + elemDepth: number; } function isSpeakeasyBase(type: any): boolean { - return type && Object.getPrototypeOf(type)?.name == SpeakeasyBase.name; + return type && Object.getPrototypeOf(type)?.name == SpeakeasyBase.name; } function handleArray(value: any, elemType: any, elemDepth: number): any { - if (!Array.isArray(value)) { - return value; - } - - if (elemDepth == 1) { - return value.map((v: any) => new elemType(v)); - } else { - return value.map((v: any) => { - if (Array.isArray(v)) { - return handleArray(v, elemType, elemDepth - 1); - } else if (typeof v == "object") { - return handleObject(v, elemType, elemDepth - 1); - } else { - return v; - } - }); - } + if (!Array.isArray(value)) { + return value; + } + + if (elemDepth == 1) { + return value.map((v: any) => new elemType(v)); + } else { + return value.map((v: any) => { + if (Array.isArray(v)) { + return handleArray(v, elemType, elemDepth - 1); + } else if (typeof v == "object") { + return handleObject(v, elemType, elemDepth - 1); + } else { + return v; + } + }); + } } function handleObject(value: any, elemType: any, elemDepth: number): any { - if (typeof value != "object") { - return value; - } - - if (elemDepth == 1) { - return Object.keys(value).reduce((acc: any, key: string) => { - acc[key] = new elemType(value[key]); - return acc; - }, {}); - } else { - return Object.keys(value).reduce((acc: any, key: string) => { - const v = value[key]; - if (Array.isArray(v)) { - acc[key] = handleArray(v, elemType, elemDepth - 1); - } else if (typeof v == "object") { - acc[key] = handleObject(v, elemType, elemDepth - 1); - } else { - acc[key] = v; - } - return acc; - }, {}); - } + if (typeof value != "object") { + return value; + } + + if (elemDepth == 1) { + return Object.keys(value).reduce((acc: any, key: string) => { + acc[key] = new elemType(value[key]); + return acc; + }, {}); + } else { + return Object.keys(value).reduce((acc: any, key: string) => { + const v = value[key]; + if (Array.isArray(v)) { + acc[key] = handleArray(v, elemType, elemDepth - 1); + } else if (typeof v == "object") { + acc[key] = handleObject(v, elemType, elemDepth - 1); + } else { + acc[key] = v; + } + return acc; + }, {}); + } } export class SpeakeasyBase { - constructor(payload?: Record) { - const props: PropInfo[] = (this as any)["__props__"]; - if (props) { - for (const prop of props) { - if (payload && payload.hasOwnProperty(prop.key)) { - const value = payload[prop.key]; - if (isSpeakeasyBase(prop.type) && value != null) { - (this as any)[prop.key] = new prop.type(value); - } else if ( - prop.type.name == "Array" && - isSpeakeasyBase(prop.elemType) - ) { - (this as any)[prop.key] = handleArray( - value, - prop.elemType, - prop.elemDepth - ); - } else if ( - prop.type.name == "Object" && - isSpeakeasyBase(prop.elemType) - ) { - (this as any)[prop.key] = handleObject( - value, - prop.elemType, - prop.elemDepth - ); - } else if (prop.type.name == "RFCDate") { - if (value instanceof Date) { - (this as any)[prop.key] = new RFCDate(value); - } else { - (this as any)[prop.key] = value; + constructor(payload?: Record) { + const props: PropInfo[] = (this as any)["__props__"]; + if (props) { + for (const prop of props) { + if (payload && payload.hasOwnProperty(prop.key)) { + const value = payload[prop.key]; + if (isSpeakeasyBase(prop.type) && value != null) { + (this as any)[prop.key] = new prop.type(value); + } else if (prop.type.name == "Array" && isSpeakeasyBase(prop.elemType)) { + (this as any)[prop.key] = handleArray(value, prop.elemType, prop.elemDepth); + } else if (prop.type.name == "Object" && isSpeakeasyBase(prop.elemType)) { + (this as any)[prop.key] = handleObject( + value, + prop.elemType, + prop.elemDepth + ); + } else if (prop.type.name == "RFCDate") { + if (value instanceof Date) { + (this as any)[prop.key] = new RFCDate(value); + } else { + (this as any)[prop.key] = value; + } + } else { + (this as any)[prop.key] = value; + } + } } - } else { - (this as any)[prop.key] = value; - } } - } } - } } export class ParamDecorator { - Style: string; - Explode: boolean; - ParamName: string; - Serialization?: string; - constructor( - Style: string, - Explode: boolean, - ParamName: string, - Serialization?: string - ) { - this.Style = Style; - this.Explode = Explode; - this.ParamName = ParamName; - this.Serialization = Serialization; - } + Style: string; + Explode: boolean; + ParamName: string; + Serialization?: string; + constructor(Style: string, Explode: boolean, ParamName: string, Serialization?: string) { + this.Style = Style; + this.Explode = Explode; + this.ParamName = ParamName; + this.Serialization = Serialization; + } } export function SpeakeasyMetadata< - T extends SpeakeasyBase = Record ->(params?: { - data?: string; - elemType?: { new (): T }; - elemDepth?: number; -}): PropertyDecorator { - return (target, propertyKey) => { - if (params?.data) { - const annsArr = params.data.split(", "); - - for (let i = 0; i < annsArr.length; i += 2) { - Reflect.defineMetadata(annsArr[i], annsArr[i + 1], target, propertyKey); - } - } + T extends SpeakeasyBase = Record +>(params?: { data?: string; elemType?: { new (): T }; elemDepth?: number }): PropertyDecorator { + return (target, propertyKey) => { + if (params?.data) { + const annsArr = params.data.split(", "); + + for (let i = 0; i < annsArr.length; i += 2) { + Reflect.defineMetadata(annsArr[i], annsArr[i + 1], target, propertyKey); + } + } - let props: PropInfo[]; - if (target.hasOwnProperty("__props__")) { - props = (target as any)["__props__"]; - } else { - props = (target as any)["__props__"] = []; - } + let props: PropInfo[]; + if (target.hasOwnProperty("__props__")) { + props = (target as any)["__props__"]; + } else { + props = (target as any)["__props__"] = []; + } - const prop = { - key: propertyKey, - type: Reflect.getMetadata("design:type", target, propertyKey), - } as PropInfo; + const prop = { + key: propertyKey, + type: Reflect.getMetadata("design:type", target, propertyKey), + } as PropInfo; - if (params?.elemType) { - prop.elemType = params.elemType; - prop.elemDepth = params.elemDepth || 1; - } + if (params?.elemType) { + prop.elemType = params.elemType; + prop.elemDepth = params.elemDepth || 1; + } - props.push(prop); - }; + props.push(prop); + }; } -export function templateUrl( - stringWithParams: string, - params: Record -): string { - let res: string = stringWithParams; - if(params) { - Object.entries(params).forEach(([key, value]) => { - const match: string = "{" + key + "}"; - res = res.replaceAll(match, value); - }); - } - return res; +export function templateUrl(stringWithParams: string, params: Record): string { + let res: string = stringWithParams; + if (params) { + Object.entries(params).forEach(([key, value]) => { + const match: string = "{" + key + "}"; + res = res.replaceAll(match, value); + }); + } + return res; } export function generateURL( - serverURL: string, - path: string, - pathParams: any, - globals?: any + serverURL: string, + path: string, + pathParams: any, + globals?: any ): string { - const url: string = serverURL.replace(/\/$/, "") + path; - const parsedParameters: Record = {}; - - const fieldNames: string[] = - "__props__" in pathParams - ? pathParams["__props__"].map((prop: any) => prop.key) - : Object.getOwnPropertyNames(pathParams); - fieldNames.forEach((fname) => { - const requestBodyAnn: string = Reflect.getMetadata( - requestMetadataKey, - pathParams, - fname - ); + const url: string = serverURL.replace(/\/$/, "") + path; + const parsedParameters: Record = {}; - if (requestBodyAnn) return; + const fieldNames: string[] = + "__props__" in pathParams + ? pathParams["__props__"].map((prop: any) => prop.key) + : Object.getOwnPropertyNames(pathParams); + fieldNames.forEach((fname) => { + const requestBodyAnn: string = Reflect.getMetadata(requestMetadataKey, pathParams, fname); - const ppAnn: string = Reflect.getMetadata(ppMetadataKey, pathParams, fname); + if (requestBodyAnn) return; - if (ppAnn == null) return; + const ppAnn: string = Reflect.getMetadata(ppMetadataKey, pathParams, fname); - const ppDecorator: ParamDecorator = parseParamDecorator( - ppAnn, - fname, - "simple", - false - ); - if (ppDecorator == null) return; - - let value = pathParams[fname]; - value = populateFromGlobals(value, fname, "pathParam", globals); - - if (ppDecorator.Serialization) { - switch (ppDecorator.Serialization) { - case "json": - parsedParameters[ppDecorator.ParamName] = encodeURIComponent( - JSON.stringify(value) - ); - break; - } - } else { - switch (ppDecorator.Style) { - case "simple": { - const simpleParams: Map = getSimplePathParams( - ppDecorator.ParamName, - value, - ppDecorator.Explode - ); - simpleParams.forEach((value, key) => { - parsedParameters[key] = value; - }); + if (ppAnn == null) return; + + const ppDecorator: ParamDecorator = parseParamDecorator(ppAnn, fname, "simple", false); + if (ppDecorator == null) return; + + let value = pathParams[fname]; + value = populateFromGlobals(value, fname, "pathParam", globals); + + if (ppDecorator.Serialization) { + switch (ppDecorator.Serialization) { + case "json": + parsedParameters[ppDecorator.ParamName] = encodeURIComponent( + JSON.stringify(value) + ); + break; + } + } else { + switch (ppDecorator.Style) { + case "simple": { + const simpleParams: Map = getSimplePathParams( + ppDecorator.ParamName, + value, + ppDecorator.Explode + ); + simpleParams.forEach((value, key) => { + parsedParameters[key] = value; + }); + } + } } - } - } - }); - return templateUrl(url, parsedParameters); + }); + return templateUrl(url, parsedParameters); } export function parseParamDecorator( - ann: string, - fName: string, - defaultStyle: string, - defaultExplode: boolean + ann: string, + fName: string, + defaultStyle: string, + defaultExplode: boolean ): ParamDecorator { - // style=simple;explode=false;name=apiID - const decorator: ParamDecorator = new ParamDecorator( - defaultStyle, - defaultExplode, - fName.toLowerCase() - ); - - if (ann == null) return decorator; - ann.split(";").forEach((annPart) => { - const [paramKey, paramVal]: string[] = annPart.split("="); - switch (paramKey) { - case "style": - decorator.Style = paramVal; - break; - case "explode": - decorator.Explode = paramVal == "true"; - break; - case "name": - decorator.ParamName = paramVal; - break; - case "serialization": - decorator.Serialization = paramVal; - break; - } - }); - return decorator; + // style=simple;explode=false;name=apiID + const decorator: ParamDecorator = new ParamDecorator( + defaultStyle, + defaultExplode, + fName.toLowerCase() + ); + + if (ann == null) return decorator; + ann.split(";").forEach((annPart) => { + const [paramKey, paramVal]: string[] = annPart.split("="); + switch (paramKey) { + case "style": + decorator.Style = paramVal; + break; + case "explode": + decorator.Explode = paramVal == "true"; + break; + case "name": + decorator.ParamName = paramVal; + break; + case "serialization": + decorator.Serialization = paramVal; + break; + } + }); + return decorator; } export function isStringRecord(obj: any): obj is Record { - if (typeof obj !== "object") return false; + if (typeof obj !== "object") return false; - if (Object.getOwnPropertySymbols(obj).length > 0) return false; + if (Object.getOwnPropertySymbols(obj).length > 0) return false; - return Object.getOwnPropertyNames(obj).every( - (prop) => typeof obj[prop] === "string" - ); + return Object.getOwnPropertyNames(obj).every((prop) => typeof obj[prop] === "string"); } export function isNumberRecord(obj: any): obj is Record { - if (typeof obj !== "object") return false; + if (typeof obj !== "object") return false; - if (Object.getOwnPropertySymbols(obj).length > 0) return false; + if (Object.getOwnPropertySymbols(obj).length > 0) return false; - return Object.getOwnPropertyNames(obj).every( - (prop) => typeof obj[prop] === "number" - ); + return Object.getOwnPropertyNames(obj).every((prop) => typeof obj[prop] === "number"); } export function isBooleanRecord(obj: any): obj is Record { - if (typeof obj !== "object") return false; + if (typeof obj !== "object") return false; - if (Object.getOwnPropertySymbols(obj).length > 0) return false; + if (Object.getOwnPropertySymbols(obj).length > 0) return false; - return Object.getOwnPropertyNames(obj).every( - (prop) => typeof obj[prop] === "boolean" - ); + return Object.getOwnPropertyNames(obj).every((prop) => typeof obj[prop] === "boolean"); } export function isEmpty(value: any): boolean { - // check for undefined, null, and NaN - let res = false; - if (typeof value === "number") res = Number.isNaN(value); - else if (typeof value === "string") res = value === ""; - return res || value == null; + // check for undefined, null, and NaN + let res = false; + if (typeof value === "number") res = Number.isNaN(value); + else if (typeof value === "string") res = value === ""; + return res || value == null; } export function objectToClass(value: T, klass?: any, elemDepth = 0): any { - if (value !== Object(value)) { - return value; - } + if (value !== Object(value)) { + return value; + } - if (elemDepth === 0 && klass != null) { - return plainToInstance(klass, value, { - excludeExtraneousValues: true, - exposeUnsetFields: false, - }) as typeof klass; - } + if (elemDepth === 0 && klass != null) { + return plainToInstance(klass, value, { + excludeExtraneousValues: true, + exposeUnsetFields: false, + }) as typeof klass; + } - if (Array.isArray(value)) { - return value.map((v) => objectToClass(v, klass, elemDepth - 1)); - } + if (Array.isArray(value)) { + return value.map((v) => objectToClass(v, klass, elemDepth - 1)); + } - if (typeof value === "object" && value != null) { - const copiedRecord: Record = {}; - for (const key in value) { - copiedRecord[key] = objectToClass(value[key], klass, elemDepth - 1); + if (typeof value === "object" && value != null) { + const copiedRecord: Record = {}; + for (const key in value) { + copiedRecord[key] = objectToClass(value[key], klass, elemDepth - 1); + } + return copiedRecord; } - return copiedRecord; - } - return plainToInstance(klass, value, { - excludeExtraneousValues: true, - exposeUnsetFields: false, - }) as typeof klass; + return plainToInstance(klass, value, { + excludeExtraneousValues: true, + exposeUnsetFields: false, + }) as typeof klass; } export function getResFieldDepth(res: any): number { - const props = res["__props__"]; - let resFieldDepth = 1; - - if (props) { - for (const prop of props) { - if (res && res.hasOwnProperty(prop.key)) { - if ( - (prop.type.name == "Array" || prop.type.name == "Object") && - isSpeakeasyBase(prop.elemType) - ) { - if (prop.elemDepth > resFieldDepth) { - resFieldDepth = prop.elemDepth; - break; - } + const props = res["__props__"]; + let resFieldDepth = 1; + + if (props) { + for (const prop of props) { + if (res && res.hasOwnProperty(prop.key)) { + if ( + (prop.type.name == "Array" || prop.type.name == "Object") && + isSpeakeasyBase(prop.elemType) + ) { + if (prop.elemDepth > resFieldDepth) { + resFieldDepth = prop.elemDepth; + break; + } + } + } } - } } - } - return resFieldDepth; + return resFieldDepth; } export function populateFromGlobals( - value: any, - fieldName: string, - paramType: string, - globals: any + value: any, + fieldName: string, + paramType: string, + globals: any ): any { - if (globals && value === undefined) { - if ("parameters" in globals && paramType in globals.parameters) { - const globalValue = globals.parameters[paramType][fieldName]; - if (globalValue !== undefined) { - value = globalValue; - } + if (globals && value === undefined) { + if ("parameters" in globals && paramType in globals.parameters) { + const globalValue = globals.parameters[paramType][fieldName]; + if (globalValue !== undefined) { + value = globalValue; + } + } } - } - return value; + return value; } export function valToString(value: any): string { - if (value instanceof Date) { - return value.toISOString(); - } + if (value instanceof Date) { + return value.toISOString(); + } - return value.toString(); + return value.toString(); } export function shouldQueryParamSerialize(value: any): boolean { - return !(value === undefined || value === null || value === "") + return !(value === undefined || value === null || value === ""); } diff --git a/typescript-client-sdk/src/sdk/auth.ts b/typescript-client-sdk/src/sdk/auth.ts index aa40590e8..98f64d32d 100755 --- a/typescript-client-sdk/src/sdk/auth.ts +++ b/typescript-client-sdk/src/sdk/auth.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; diff --git a/typescript-client-sdk/src/sdk/authnew.ts b/typescript-client-sdk/src/sdk/authnew.ts index 9d20c9ea9..73c652a86 100755 --- a/typescript-client-sdk/src/sdk/authnew.ts +++ b/typescript-client-sdk/src/sdk/authnew.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; diff --git a/typescript-client-sdk/src/sdk/documentation.ts b/typescript-client-sdk/src/sdk/documentation.ts index 7f7fb6e16..61240e1cf 100755 --- a/typescript-client-sdk/src/sdk/documentation.ts +++ b/typescript-client-sdk/src/sdk/documentation.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; diff --git a/typescript-client-sdk/src/sdk/errors.ts b/typescript-client-sdk/src/sdk/errors.ts index 45c5234b5..8553d5d41 100755 --- a/typescript-client-sdk/src/sdk/errors.ts +++ b/typescript-client-sdk/src/sdk/errors.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; @@ -236,10 +236,10 @@ export class Errors { if (utils.matchContentType(contentType, `application/json`)) { const err = utils.objectToClass( JSON.parse(decodedRes), - errors.StatusGetXSpeakeasyErrors501ApplicationJSON + errors.StatusGetXSpeakeasyErrorsResponseBody ); err.rawResponse = httpRes; - throw new errors.StatusGetXSpeakeasyErrors501ApplicationJSON(err); + throw new errors.StatusGetXSpeakeasyErrorsResponseBody(err); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, diff --git a/typescript-client-sdk/src/sdk/first.ts b/typescript-client-sdk/src/sdk/first.ts index 1716ac520..e9be2a252 100755 --- a/typescript-client-sdk/src/sdk/first.ts +++ b/typescript-client-sdk/src/sdk/first.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; diff --git a/typescript-client-sdk/src/sdk/flattening.ts b/typescript-client-sdk/src/sdk/flattening.ts index 5fbd90af2..c6825ed0f 100755 --- a/typescript-client-sdk/src/sdk/flattening.ts +++ b/typescript-client-sdk/src/sdk/flattening.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; diff --git a/typescript-client-sdk/src/sdk/generation.ts b/typescript-client-sdk/src/sdk/generation.ts index b71b237a9..e5df54df7 100755 --- a/typescript-client-sdk/src/sdk/generation.ts +++ b/typescript-client-sdk/src/sdk/generation.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { RFCDate } from "./types"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; @@ -67,7 +67,7 @@ export class Generation { if (utils.matchContentType(contentType, `application/json`)) { res.typeFromAnchor = utils.objectToClass( JSON.parse(decodedRes), - operations.TypeFromAnchor + operations.AnchorTypesGetTypeFromAnchor ); } else { throw new errors.SDKError( @@ -559,9 +559,9 @@ export class Generation { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.deprecatedObjectInSchemaGet200ApplicationJSONObject = utils.objectToClass( + res.object = utils.objectToClass( JSON.parse(decodedRes), - operations.DeprecatedObjectInSchemaGet200ApplicationJSON + operations.DeprecatedObjectInSchemaGetResponseBody ); } else { throw new errors.SDKError( @@ -907,9 +907,9 @@ export class Generation { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.getGlobalNameOverride200ApplicationJSONObject = utils.objectToClass( + res.object = utils.objectToClass( JSON.parse(decodedRes), - operations.GetGlobalNameOverride200ApplicationJSON + operations.GetGlobalNameOverrideResponseBody ); } else { throw new errors.SDKError( @@ -980,9 +980,9 @@ export class Generation { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.ignoredGenerationGet200ApplicationJSONObject = utils.objectToClass( + res.object = utils.objectToClass( JSON.parse(decodedRes), - operations.IgnoredGenerationGet200ApplicationJSON + operations.IgnoredGenerationGetResponseBody ); } else { throw new errors.SDKError( @@ -1007,7 +1007,7 @@ export class Generation { } async ignoresPost( - requestBody: operations.IgnoresPostApplicationJSON, + requestBody: operations.IgnoresPostRequestBody, testParam?: string, config?: AxiosRequestConfig ): Promise { @@ -1102,7 +1102,7 @@ export class Generation { } async nameOverride( - testEnumQueryParam: operations.NameOverrideGetEnumNameOverride, + testEnumQueryParam: operations.EnumNameOverride, testQueryParam: string, config?: AxiosRequestConfig ): Promise { @@ -1156,7 +1156,7 @@ export class Generation { if (utils.matchContentType(contentType, `application/json`)) { res.overriddenResponse = utils.objectToClass( JSON.parse(decodedRes), - operations.OverriddenResponse + operations.NameOverrideGetOverriddenResponse ); } else { throw new errors.SDKError( @@ -1330,7 +1330,7 @@ export class Generation { bigint?: number, date?: RFCDate, decimal?: number, - obj?: operations.TypedParameterGenerationGetObj, + obj?: operations.Obj, config?: AxiosRequestConfig ): Promise { const req = new operations.TypedParameterGenerationGetRequest({ @@ -1468,9 +1468,9 @@ export class Generation { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.usageExamplePost200ApplicationJSONObject = utils.objectToClass( + res.object = utils.objectToClass( JSON.parse(decodedRes), - operations.UsageExamplePost200ApplicationJSON + operations.UsageExamplePostResponseBody ); } else { throw new errors.SDKError( diff --git a/typescript-client-sdk/src/sdk/globals.ts b/typescript-client-sdk/src/sdk/globals.ts index b168b5cb4..8ef1794fb 100755 --- a/typescript-client-sdk/src/sdk/globals.ts +++ b/typescript-client-sdk/src/sdk/globals.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; diff --git a/typescript-client-sdk/src/sdk/models/errors/index.ts b/typescript-client-sdk/src/sdk/models/errors/index.ts index 73be3c73d..9fe3f634f 100755 --- a/typescript-client-sdk/src/sdk/models/errors/index.ts +++ b/typescript-client-sdk/src/sdk/models/errors/index.ts @@ -4,6 +4,5 @@ export * from "./error"; export * from "./errortype"; -export * from "./statusgetxspeakeasyerrors"; - export * from "./sdkerror"; +export * from "./statusgetxspeakeasyerrors"; diff --git a/typescript-client-sdk/src/sdk/models/errors/statusgetxspeakeasyerrors.ts b/typescript-client-sdk/src/sdk/models/errors/statusgetxspeakeasyerrors.ts index 49e441553..90ddbf35b 100755 --- a/typescript-client-sdk/src/sdk/models/errors/statusgetxspeakeasyerrors.ts +++ b/typescript-client-sdk/src/sdk/models/errors/statusgetxspeakeasyerrors.ts @@ -10,7 +10,7 @@ import { classToPlain, Exclude, Expose } from "class-transformer"; /** * Not Implemented */ -export class StatusGetXSpeakeasyErrors501ApplicationJSON extends Error { +export class StatusGetXSpeakeasyErrorsResponseBody extends Error { /** * Raw HTTP response; suitable for custom response parsing */ @@ -30,7 +30,7 @@ export class StatusGetXSpeakeasyErrors501ApplicationJSON extends Error { @Expose({ name: "type" }) type?: ErrorType; - constructor(err?: StatusGetXSpeakeasyErrors501ApplicationJSON) { + constructor(err?: StatusGetXSpeakeasyErrorsResponseBody) { super(); if (err) { Object.assign(this, err); @@ -39,7 +39,7 @@ export class StatusGetXSpeakeasyErrors501ApplicationJSON extends Error { ); } - this.name = "StatusGetXSpeakeasyErrors501ApplicationJSON"; - Object.setPrototypeOf(this, StatusGetXSpeakeasyErrors501ApplicationJSON.prototype); + this.name = "StatusGetXSpeakeasyErrorsResponseBody"; + Object.setPrototypeOf(this, StatusGetXSpeakeasyErrorsResponseBody.prototype); } } diff --git a/typescript-client-sdk/src/sdk/models/operations/anchortypesget.ts b/typescript-client-sdk/src/sdk/models/operations/anchortypesget.ts index 3945a99de..aad9be40b 100755 --- a/typescript-client-sdk/src/sdk/models/operations/anchortypesget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/anchortypesget.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; /** * A successful response that contains the simpleObject sent in the request body */ -export class TypeFromAnchor extends SpeakeasyBase { +export class AnchorTypesGetTypeFromAnchor extends SpeakeasyBase { /** * A simple object that uses all our supported primitive types and enums and has optional properties. */ @@ -43,5 +43,5 @@ export class AnchorTypesGetResponse extends SpeakeasyBase { * A successful response that contains the simpleObject sent in the request body */ @SpeakeasyMetadata() - typeFromAnchor?: TypeFromAnchor; + typeFromAnchor?: AnchorTypesGetTypeFromAnchor; } diff --git a/typescript-client-sdk/src/sdk/models/operations/arraycircularreferenceget.ts b/typescript-client-sdk/src/sdk/models/operations/arraycircularreferenceget.ts index 160e90fed..51e818f73 100755 --- a/typescript-client-sdk/src/sdk/models/operations/arraycircularreferenceget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/arraycircularreferenceget.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class ArrayCircularReferenceGetResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/circularreferenceget.ts b/typescript-client-sdk/src/sdk/models/operations/circularreferenceget.ts index fe2c3c304..ce750f6fa 100755 --- a/typescript-client-sdk/src/sdk/models/operations/circularreferenceget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/circularreferenceget.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class CircularReferenceGetResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/componentbodyandparamconflict.ts b/typescript-client-sdk/src/sdk/models/operations/componentbodyandparamconflict.ts index c7b076247..d582b35f1 100755 --- a/typescript-client-sdk/src/sdk/models/operations/componentbodyandparamconflict.ts +++ b/typescript-client-sdk/src/sdk/models/operations/componentbodyandparamconflict.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/componentbodyandparamnoconflict.ts b/typescript-client-sdk/src/sdk/models/operations/componentbodyandparamnoconflict.ts index cae601717..458b1ea25 100755 --- a/typescript-client-sdk/src/sdk/models/operations/componentbodyandparamnoconflict.ts +++ b/typescript-client-sdk/src/sdk/models/operations/componentbodyandparamnoconflict.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/createfile.ts b/typescript-client-sdk/src/sdk/models/operations/createfile.ts index 107b653e7..055c840bc 100755 --- a/typescript-client-sdk/src/sdk/models/operations/createfile.ts +++ b/typescript-client-sdk/src/sdk/models/operations/createfile.ts @@ -3,20 +3,20 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; -export class CreateFileRequestBodyFile extends SpeakeasyBase { +export class CreateFileFile extends SpeakeasyBase { @SpeakeasyMetadata({ data: "multipart_form, content=true" }) content: Uint8Array; @SpeakeasyMetadata({ data: "multipart_form, name=file" }) - file: string; + fileName: string; } export class CreateFileRequestBody extends SpeakeasyBase { @SpeakeasyMetadata({ data: "multipart_form, file=true" }) - file?: CreateFileRequestBodyFile; + file?: CreateFileFile; } export class CreateFileResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/createresource.ts b/typescript-client-sdk/src/sdk/models/operations/createresource.ts index ed654bd08..6289579f0 100755 --- a/typescript-client-sdk/src/sdk/models/operations/createresource.ts +++ b/typescript-client-sdk/src/sdk/models/operations/createresource.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class CreateResourceResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/dateparamwithdefault.ts b/typescript-client-sdk/src/sdk/models/operations/dateparamwithdefault.ts index 0352bd48e..97eba25c9 100755 --- a/typescript-client-sdk/src/sdk/models/operations/dateparamwithdefault.ts +++ b/typescript-client-sdk/src/sdk/models/operations/dateparamwithdefault.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; +import { RFCDate } from "../../../sdk/types"; import { AxiosResponse } from "axios"; export class DateParamWithDefaultRequest extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/deepobjectqueryparamsobject.ts b/typescript-client-sdk/src/sdk/models/operations/deepobjectqueryparamsobject.ts index 26ff395d6..66a1bce1b 100755 --- a/typescript-client-sdk/src/sdk/models/operations/deepobjectqueryparamsobject.ts +++ b/typescript-client-sdk/src/sdk/models/operations/deepobjectqueryparamsobject.ts @@ -3,11 +3,11 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; -export class DeepObjectQueryParamsObjectObjArrParam extends SpeakeasyBase { +export class ObjArrParam extends SpeakeasyBase { @SpeakeasyMetadata({ data: "queryParam, name=arr" }) arr?: string[]; } @@ -20,10 +20,10 @@ export class DeepObjectQueryParamsObjectRequest extends SpeakeasyBase { objParam: shared.SimpleObject; @SpeakeasyMetadata({ data: "queryParam, style=deepObject;explode=true;name=objArrParam" }) - objArrParam?: DeepObjectQueryParamsObjectObjArrParam; + objArrParam?: ObjArrParam; } -export class DeepObjectQueryParamsObjectResArgs extends SpeakeasyBase { +export class DeepObjectQueryParamsObjectArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "objArrParam[arr]" }) objArrParamArr: string[]; @@ -107,8 +107,8 @@ export class DeepObjectQueryParamsObjectResArgs extends SpeakeasyBase { export class DeepObjectQueryParamsObjectRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => DeepObjectQueryParamsObjectResArgs) - args: DeepObjectQueryParamsObjectResArgs; + @Type(() => DeepObjectQueryParamsObjectArgs) + args: DeepObjectQueryParamsObjectArgs; @SpeakeasyMetadata() @Expose({ name: "url" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/deprecatedobjectinschemaget.ts b/typescript-client-sdk/src/sdk/models/operations/deprecatedobjectinschemaget.ts index 8d7df8f89..dcae21065 100755 --- a/typescript-client-sdk/src/sdk/models/operations/deprecatedobjectinschemaget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/deprecatedobjectinschemaget.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; /** * A successful response that contains a deprecatedObject sent in the request body */ -export class DeprecatedObjectInSchemaGet200ApplicationJSON extends SpeakeasyBase { +export class DeprecatedObjectInSchemaGetResponseBody extends SpeakeasyBase { /** * @deprecated field: This object is deprecated. */ @@ -43,5 +43,5 @@ export class DeprecatedObjectInSchemaGetResponse extends SpeakeasyBase { * A successful response that contains a deprecatedObject sent in the request body */ @SpeakeasyMetadata() - deprecatedObjectInSchemaGet200ApplicationJSONObject?: DeprecatedObjectInSchemaGet200ApplicationJSON; + object?: DeprecatedObjectInSchemaGetResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/emptyobjectget.ts b/typescript-client-sdk/src/sdk/models/operations/emptyobjectget.ts index 2c0015e5a..e2bb0b086 100755 --- a/typescript-client-sdk/src/sdk/models/operations/emptyobjectget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/emptyobjectget.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class EmptyObjectGetRequest extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/emptyresponseobjectwithcommentget.ts b/typescript-client-sdk/src/sdk/models/operations/emptyresponseobjectwithcommentget.ts index 39a2ca324..79499b0f6 100755 --- a/typescript-client-sdk/src/sdk/models/operations/emptyresponseobjectwithcommentget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/emptyresponseobjectwithcommentget.ts @@ -8,7 +8,7 @@ import { AxiosResponse } from "axios"; /** * OK */ -export class EmptyResponseObjectWithCommentGet200ApplicationOctetStream extends SpeakeasyBase {} +export class EmptyResponseObjectWithCommentGetResponseBody extends SpeakeasyBase {} export class EmptyResponseObjectWithCommentGetResponse extends SpeakeasyBase { @SpeakeasyMetadata() diff --git a/typescript-client-sdk/src/sdk/models/operations/formqueryparamsarray.ts b/typescript-client-sdk/src/sdk/models/operations/formqueryparamsarray.ts index 60ff7dedf..6682f69c3 100755 --- a/typescript-client-sdk/src/sdk/models/operations/formqueryparamsarray.ts +++ b/typescript-client-sdk/src/sdk/models/operations/formqueryparamsarray.ts @@ -14,7 +14,7 @@ export class FormQueryParamsArrayRequest extends SpeakeasyBase { arrParamExploded?: number[]; } -export class FormQueryParamsArrayResArgs extends SpeakeasyBase { +export class FormQueryParamsArrayArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "arrParam" }) arrParam: string; @@ -30,8 +30,8 @@ export class FormQueryParamsArrayResArgs extends SpeakeasyBase { export class FormQueryParamsArrayRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => FormQueryParamsArrayResArgs) - args: FormQueryParamsArrayResArgs; + @Type(() => FormQueryParamsArrayArgs) + args: FormQueryParamsArrayArgs; @SpeakeasyMetadata() @Expose({ name: "url" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/formqueryparamscamelobject.ts b/typescript-client-sdk/src/sdk/models/operations/formqueryparamscamelobject.ts index a6b501ca1..b798ed09f 100755 --- a/typescript-client-sdk/src/sdk/models/operations/formqueryparamscamelobject.ts +++ b/typescript-client-sdk/src/sdk/models/operations/formqueryparamscamelobject.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; -export class FormQueryParamsCamelObjectObjParamExploded extends SpeakeasyBase { +export class ObjParamExploded extends SpeakeasyBase { @SpeakeasyMetadata({ data: "queryParam, name=item_count" }) itemCount?: string; @@ -14,7 +14,7 @@ export class FormQueryParamsCamelObjectObjParamExploded extends SpeakeasyBase { searchTerm?: string; } -export class FormQueryParamsCamelObjectObjParam extends SpeakeasyBase { +export class ObjParam extends SpeakeasyBase { @SpeakeasyMetadata({ data: "queryParam, name=encoded_count" }) encodedCount?: string; @@ -24,13 +24,13 @@ export class FormQueryParamsCamelObjectObjParam extends SpeakeasyBase { export class FormQueryParamsCamelObjectRequest extends SpeakeasyBase { @SpeakeasyMetadata({ data: "queryParam, style=form;explode=true;name=obj_param_exploded" }) - objParamExploded: FormQueryParamsCamelObjectObjParamExploded; + objParamExploded: ObjParamExploded; @SpeakeasyMetadata({ data: "queryParam, style=form;explode=false;name=obj_param" }) - objParam?: FormQueryParamsCamelObjectObjParam; + objParam?: ObjParam; } -export class FormQueryParamsCamelObjectResArgs extends SpeakeasyBase { +export class FormQueryParamsCamelObjectArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "item_count" }) itemCount: string; @@ -46,8 +46,8 @@ export class FormQueryParamsCamelObjectResArgs extends SpeakeasyBase { export class FormQueryParamsCamelObjectRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => FormQueryParamsCamelObjectResArgs) - args: FormQueryParamsCamelObjectResArgs; + @Type(() => FormQueryParamsCamelObjectArgs) + args: FormQueryParamsCamelObjectArgs; @SpeakeasyMetadata() @Expose({ name: "url" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/formqueryparamsobject.ts b/typescript-client-sdk/src/sdk/models/operations/formqueryparamsobject.ts index 123a19048..d037e5e6f 100755 --- a/typescript-client-sdk/src/sdk/models/operations/formqueryparamsobject.ts +++ b/typescript-client-sdk/src/sdk/models/operations/formqueryparamsobject.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; @@ -21,7 +21,7 @@ export class FormQueryParamsObjectRequest extends SpeakeasyBase { objParam?: shared.SimpleObject; } -export class FormQueryParamsObjectResArgs extends SpeakeasyBase { +export class FormQueryParamsObjectArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "any" }) any: string; @@ -113,8 +113,8 @@ export class FormQueryParamsObjectResArgs extends SpeakeasyBase { export class FormQueryParamsObjectRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => FormQueryParamsObjectResArgs) - args: FormQueryParamsObjectResArgs; + @Type(() => FormQueryParamsObjectArgs) + args: FormQueryParamsObjectArgs; @SpeakeasyMetadata() @Expose({ name: "url" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/formqueryparamsprimitive.ts b/typescript-client-sdk/src/sdk/models/operations/formqueryparamsprimitive.ts index 543f147aa..b8982a7f0 100755 --- a/typescript-client-sdk/src/sdk/models/operations/formqueryparamsprimitive.ts +++ b/typescript-client-sdk/src/sdk/models/operations/formqueryparamsprimitive.ts @@ -20,7 +20,7 @@ export class FormQueryParamsPrimitiveRequest extends SpeakeasyBase { strParam: string; } -export class FormQueryParamsPrimitiveResArgs extends SpeakeasyBase { +export class FormQueryParamsPrimitiveArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "boolParam" }) boolParam: string; @@ -44,8 +44,8 @@ export class FormQueryParamsPrimitiveResArgs extends SpeakeasyBase { export class FormQueryParamsPrimitiveRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => FormQueryParamsPrimitiveResArgs) - args: FormQueryParamsPrimitiveResArgs; + @Type(() => FormQueryParamsPrimitiveArgs) + args: FormQueryParamsPrimitiveArgs; @SpeakeasyMetadata() @Expose({ name: "url" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/formqueryparamsrefparamobject.ts b/typescript-client-sdk/src/sdk/models/operations/formqueryparamsrefparamobject.ts index 207aac62a..6fe573707 100755 --- a/typescript-client-sdk/src/sdk/models/operations/formqueryparamsrefparamobject.ts +++ b/typescript-client-sdk/src/sdk/models/operations/formqueryparamsrefparamobject.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; @@ -15,7 +15,7 @@ export class FormQueryParamsRefParamObjectRequest extends SpeakeasyBase { refObjParamExploded?: shared.RefQueryParamObjExploded; } -export class FormQueryParamsRefParamObjectResArgs extends SpeakeasyBase { +export class FormQueryParamsRefParamObjectArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "bool" }) bool: string; @@ -43,8 +43,8 @@ export class FormQueryParamsRefParamObjectResArgs extends SpeakeasyBase { export class FormQueryParamsRefParamObjectRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => FormQueryParamsRefParamObjectResArgs) - args: FormQueryParamsRefParamObjectResArgs; + @Type(() => FormQueryParamsRefParamObjectArgs) + args: FormQueryParamsRefParamObjectArgs; @SpeakeasyMetadata() @Expose({ name: "url" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/getglobalnameoverride.ts b/typescript-client-sdk/src/sdk/models/operations/getglobalnameoverride.ts index eb038b401..4f572589d 100755 --- a/typescript-client-sdk/src/sdk/models/operations/getglobalnameoverride.ts +++ b/typescript-client-sdk/src/sdk/models/operations/getglobalnameoverride.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; /** * A successful response that contains the simpleObject sent in the request body */ -export class GetGlobalNameOverride200ApplicationJSON extends SpeakeasyBase { +export class GetGlobalNameOverrideResponseBody extends SpeakeasyBase { /** * A simple object that uses all our supported primitive types and enums and has optional properties. */ @@ -43,5 +43,5 @@ export class GetGlobalNameOverrideResponse extends SpeakeasyBase { * A successful response that contains the simpleObject sent in the request body */ @SpeakeasyMetadata() - getGlobalNameOverride200ApplicationJSONObject?: GetGlobalNameOverride200ApplicationJSON; + object?: GetGlobalNameOverrideResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/getresource.ts b/typescript-client-sdk/src/sdk/models/operations/getresource.ts index 30664e4ee..e55b66309 100755 --- a/typescript-client-sdk/src/sdk/models/operations/getresource.ts +++ b/typescript-client-sdk/src/sdk/models/operations/getresource.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class GetResourceRequest extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/globalsqueryparameterget.ts b/typescript-client-sdk/src/sdk/models/operations/globalsqueryparameterget.ts index 2bad5cc47..e145b5f27 100755 --- a/typescript-client-sdk/src/sdk/models/operations/globalsqueryparameterget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/globalsqueryparameterget.ts @@ -11,7 +11,7 @@ export class GlobalsQueryParameterGetRequest extends SpeakeasyBase { globalQueryParam?: string; } -export class GlobalsQueryParameterGetResArgs extends SpeakeasyBase { +export class Args extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "globalQueryParam" }) globalQueryParam: string; @@ -23,8 +23,8 @@ export class GlobalsQueryParameterGetResArgs extends SpeakeasyBase { export class GlobalsQueryParameterGetRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => GlobalsQueryParameterGetResArgs) - args: GlobalsQueryParameterGetResArgs; + @Type(() => Args) + args: Args; } export class GlobalsQueryParameterGetResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/headerparamsarray.ts b/typescript-client-sdk/src/sdk/models/operations/headerparamsarray.ts index 3e2ac4d52..2275f8115 100755 --- a/typescript-client-sdk/src/sdk/models/operations/headerparamsarray.ts +++ b/typescript-client-sdk/src/sdk/models/operations/headerparamsarray.ts @@ -11,7 +11,7 @@ export class HeaderParamsArrayRequest extends SpeakeasyBase { xHeaderArray: string[]; } -export class HeaderParamsArrayResHeaders extends SpeakeasyBase { +export class Headers extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "X-Header-Array" }) xHeaderArray: string; @@ -23,8 +23,8 @@ export class HeaderParamsArrayResHeaders extends SpeakeasyBase { export class HeaderParamsArrayRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "headers" }) - @Type(() => HeaderParamsArrayResHeaders) - headers: HeaderParamsArrayResHeaders; + @Type(() => Headers) + headers: Headers; } export class HeaderParamsArrayResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/headerparamsmap.ts b/typescript-client-sdk/src/sdk/models/operations/headerparamsmap.ts index 7dce50cc7..12067ee4b 100755 --- a/typescript-client-sdk/src/sdk/models/operations/headerparamsmap.ts +++ b/typescript-client-sdk/src/sdk/models/operations/headerparamsmap.ts @@ -14,7 +14,7 @@ export class HeaderParamsMapRequest extends SpeakeasyBase { xHeaderMapExplode: Record; } -export class HeaderParamsMapResHeaders extends SpeakeasyBase { +export class HeaderParamsMapHeaders extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "X-Header-Map" }) xHeaderMap: string; @@ -30,8 +30,8 @@ export class HeaderParamsMapResHeaders extends SpeakeasyBase { export class HeaderParamsMapRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "headers" }) - @Type(() => HeaderParamsMapResHeaders) - headers: HeaderParamsMapResHeaders; + @Type(() => HeaderParamsMapHeaders) + headers: HeaderParamsMapHeaders; } export class HeaderParamsMapResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/headerparamsobject.ts b/typescript-client-sdk/src/sdk/models/operations/headerparamsobject.ts index bd0b9a836..a7a3c0523 100755 --- a/typescript-client-sdk/src/sdk/models/operations/headerparamsobject.ts +++ b/typescript-client-sdk/src/sdk/models/operations/headerparamsobject.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; @@ -21,7 +21,7 @@ export class HeaderParamsObjectRequest extends SpeakeasyBase { xHeaderObjExplode: shared.SimpleObject; } -export class HeaderParamsObjectResHeaders extends SpeakeasyBase { +export class HeaderParamsObjectHeaders extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "X-Header-Obj" }) xHeaderObj: string; @@ -37,8 +37,8 @@ export class HeaderParamsObjectResHeaders extends SpeakeasyBase { export class HeaderParamsObjectRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "headers" }) - @Type(() => HeaderParamsObjectResHeaders) - headers: HeaderParamsObjectResHeaders; + @Type(() => HeaderParamsObjectHeaders) + headers: HeaderParamsObjectHeaders; } export class HeaderParamsObjectResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/headerparamsprimitive.ts b/typescript-client-sdk/src/sdk/models/operations/headerparamsprimitive.ts index 13c19ae2a..fc9d123ae 100755 --- a/typescript-client-sdk/src/sdk/models/operations/headerparamsprimitive.ts +++ b/typescript-client-sdk/src/sdk/models/operations/headerparamsprimitive.ts @@ -20,7 +20,7 @@ export class HeaderParamsPrimitiveRequest extends SpeakeasyBase { xHeaderString: string; } -export class HeaderParamsPrimitiveResHeaders extends SpeakeasyBase { +export class HeaderParamsPrimitiveHeaders extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "X-Header-Boolean" }) xHeaderBoolean: string; @@ -44,8 +44,8 @@ export class HeaderParamsPrimitiveResHeaders extends SpeakeasyBase { export class HeaderParamsPrimitiveRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "headers" }) - @Type(() => HeaderParamsPrimitiveResHeaders) - headers: HeaderParamsPrimitiveResHeaders; + @Type(() => HeaderParamsPrimitiveHeaders) + headers: HeaderParamsPrimitiveHeaders; } export class HeaderParamsPrimitiveResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/ignoredgenerationget.ts b/typescript-client-sdk/src/sdk/models/operations/ignoredgenerationget.ts index f8506338d..2e1649def 100755 --- a/typescript-client-sdk/src/sdk/models/operations/ignoredgenerationget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/ignoredgenerationget.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; /** * A successful response that contains the simpleObject sent in the request body */ -export class IgnoredGenerationGet200ApplicationJSON extends SpeakeasyBase { +export class IgnoredGenerationGetResponseBody extends SpeakeasyBase { /** * A simple object that uses all our supported primitive types and enums and has optional properties. */ @@ -43,5 +43,5 @@ export class IgnoredGenerationGetResponse extends SpeakeasyBase { * A successful response that contains the simpleObject sent in the request body */ @SpeakeasyMetadata() - ignoredGenerationGet200ApplicationJSONObject?: IgnoredGenerationGet200ApplicationJSON; + object?: IgnoredGenerationGetResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/ignorespost.ts b/typescript-client-sdk/src/sdk/models/operations/ignorespost.ts index c88d12112..21bf87d6d 100755 --- a/typescript-client-sdk/src/sdk/models/operations/ignorespost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/ignorespost.ts @@ -3,11 +3,11 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; -export class IgnoresPostApplicationJSON extends SpeakeasyBase { +export class IgnoresPostRequestBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "callbackUrl" }) callbackUrl?: string; @@ -19,7 +19,7 @@ export class IgnoresPostApplicationJSON extends SpeakeasyBase { export class IgnoresPostRequest extends SpeakeasyBase { @SpeakeasyMetadata({ data: "request, media_type=application/json" }) - requestBody: IgnoresPostApplicationJSON; + requestBody: IgnoresPostRequestBody; @SpeakeasyMetadata({ data: "queryParam, style=form;explode=true;name=testParam" }) testParam?: string; diff --git a/typescript-client-sdk/src/sdk/models/operations/inlinebodyandparamconflict.ts b/typescript-client-sdk/src/sdk/models/operations/inlinebodyandparamconflict.ts index 5df9d5a07..6f20a2b46 100755 --- a/typescript-client-sdk/src/sdk/models/operations/inlinebodyandparamconflict.ts +++ b/typescript-client-sdk/src/sdk/models/operations/inlinebodyandparamconflict.ts @@ -20,7 +20,7 @@ export class InlineBodyAndParamConflictRequest extends SpeakeasyBase { str: string; } -export class InlineBodyAndParamConflictResJson extends SpeakeasyBase { +export class Json extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "str" }) str: string; @@ -36,8 +36,8 @@ export class InlineBodyAndParamConflictRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) - @Type(() => InlineBodyAndParamConflictResJson) - json: InlineBodyAndParamConflictResJson; + @Type(() => Json) + json: Json; } export class InlineBodyAndParamConflictResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/inlinebodyandparamnoconflict.ts b/typescript-client-sdk/src/sdk/models/operations/inlinebodyandparamnoconflict.ts index 8292ef6a1..151e81317 100755 --- a/typescript-client-sdk/src/sdk/models/operations/inlinebodyandparamnoconflict.ts +++ b/typescript-client-sdk/src/sdk/models/operations/inlinebodyandparamnoconflict.ts @@ -20,7 +20,7 @@ export class InlineBodyAndParamNoConflictRequest extends SpeakeasyBase { paramStr: string; } -export class InlineBodyAndParamNoConflictResJson extends SpeakeasyBase { +export class InlineBodyAndParamNoConflictJson extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "bodyStr" }) bodyStr: string; @@ -36,8 +36,8 @@ export class InlineBodyAndParamNoConflictRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) - @Type(() => InlineBodyAndParamNoConflictResJson) - json: InlineBodyAndParamNoConflictResJson; + @Type(() => InlineBodyAndParamNoConflictJson) + json: InlineBodyAndParamNoConflictJson; } export class InlineBodyAndParamNoConflictResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/jsonqueryparamsobject.ts b/typescript-client-sdk/src/sdk/models/operations/jsonqueryparamsobject.ts index c2b5bfa2e..3ff318ec3 100755 --- a/typescript-client-sdk/src/sdk/models/operations/jsonqueryparamsobject.ts +++ b/typescript-client-sdk/src/sdk/models/operations/jsonqueryparamsobject.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; @@ -18,7 +18,7 @@ export class JsonQueryParamsObjectRequest extends SpeakeasyBase { simpleObjParam: shared.SimpleObject; } -export class JsonQueryParamsObjectResArgs extends SpeakeasyBase { +export class JsonQueryParamsObjectArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "deepObjParam" }) deepObjParam: string; @@ -34,8 +34,8 @@ export class JsonQueryParamsObjectResArgs extends SpeakeasyBase { export class JsonQueryParamsObjectRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => JsonQueryParamsObjectResArgs) - args: JsonQueryParamsObjectResArgs; + @Type(() => JsonQueryParamsObjectArgs) + args: JsonQueryParamsObjectArgs; @SpeakeasyMetadata() @Expose({ name: "url" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/mixedparameterscamelcase.ts b/typescript-client-sdk/src/sdk/models/operations/mixedparameterscamelcase.ts index 67e122a15..2a63709b2 100755 --- a/typescript-client-sdk/src/sdk/models/operations/mixedparameterscamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/operations/mixedparameterscamelcase.ts @@ -17,13 +17,13 @@ export class MixedParametersCamelCaseRequest extends SpeakeasyBase { queryStringParam: string; } -export class MixedParametersCamelCaseResArgs extends SpeakeasyBase { +export class MixedParametersCamelCaseArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "query_string_param" }) queryStringParam: string; } -export class MixedParametersCamelCaseResHeaders extends SpeakeasyBase { +export class MixedParametersCamelCaseHeaders extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "Header-Param" }) headerParam: string; @@ -35,13 +35,13 @@ export class MixedParametersCamelCaseResHeaders extends SpeakeasyBase { export class MixedParametersCamelCaseRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => MixedParametersCamelCaseResArgs) - args: MixedParametersCamelCaseResArgs; + @Type(() => MixedParametersCamelCaseArgs) + args: MixedParametersCamelCaseArgs; @SpeakeasyMetadata() @Expose({ name: "headers" }) - @Type(() => MixedParametersCamelCaseResHeaders) - headers: MixedParametersCamelCaseResHeaders; + @Type(() => MixedParametersCamelCaseHeaders) + headers: MixedParametersCamelCaseHeaders; @SpeakeasyMetadata() @Expose({ name: "url" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/mixedparametersprimitives.ts b/typescript-client-sdk/src/sdk/models/operations/mixedparametersprimitives.ts index fbe2b0141..b9e430435 100755 --- a/typescript-client-sdk/src/sdk/models/operations/mixedparametersprimitives.ts +++ b/typescript-client-sdk/src/sdk/models/operations/mixedparametersprimitives.ts @@ -17,13 +17,13 @@ export class MixedParametersPrimitivesRequest extends SpeakeasyBase { queryStringParam: string; } -export class MixedParametersPrimitivesResArgs extends SpeakeasyBase { +export class MixedParametersPrimitivesArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "queryStringParam" }) queryStringParam: string; } -export class MixedParametersPrimitivesResHeaders extends SpeakeasyBase { +export class MixedParametersPrimitivesHeaders extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "Headerparam" }) headerparam: string; @@ -35,13 +35,13 @@ export class MixedParametersPrimitivesResHeaders extends SpeakeasyBase { export class MixedParametersPrimitivesRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => MixedParametersPrimitivesResArgs) - args: MixedParametersPrimitivesResArgs; + @Type(() => MixedParametersPrimitivesArgs) + args: MixedParametersPrimitivesArgs; @SpeakeasyMetadata() @Expose({ name: "headers" }) - @Type(() => MixedParametersPrimitivesResHeaders) - headers: MixedParametersPrimitivesResHeaders; + @Type(() => MixedParametersPrimitivesHeaders) + headers: MixedParametersPrimitivesHeaders; @SpeakeasyMetadata() @Expose({ name: "url" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/mixedqueryparams.ts b/typescript-client-sdk/src/sdk/models/operations/mixedqueryparams.ts index f44b8d3f8..3e4ab8d65 100755 --- a/typescript-client-sdk/src/sdk/models/operations/mixedqueryparams.ts +++ b/typescript-client-sdk/src/sdk/models/operations/mixedqueryparams.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/multiplemixedoptionsauth.ts b/typescript-client-sdk/src/sdk/models/operations/multiplemixedoptionsauth.ts index 35b6ec916..8b0a0a79e 100755 --- a/typescript-client-sdk/src/sdk/models/operations/multiplemixedoptionsauth.ts +++ b/typescript-client-sdk/src/sdk/models/operations/multiplemixedoptionsauth.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const MultipleMixedOptionsAuthServerList = ["http://localhost:35456"] as const; diff --git a/typescript-client-sdk/src/sdk/models/operations/multiplemixedschemeauth.ts b/typescript-client-sdk/src/sdk/models/operations/multiplemixedschemeauth.ts index 5503c9c38..758da52f0 100755 --- a/typescript-client-sdk/src/sdk/models/operations/multiplemixedschemeauth.ts +++ b/typescript-client-sdk/src/sdk/models/operations/multiplemixedschemeauth.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const MultipleMixedSchemeAuthServerList = ["http://localhost:35456"] as const; diff --git a/typescript-client-sdk/src/sdk/models/operations/multipleoptionswithmixedschemesauth.ts b/typescript-client-sdk/src/sdk/models/operations/multipleoptionswithmixedschemesauth.ts index ac1a853ad..874451c32 100755 --- a/typescript-client-sdk/src/sdk/models/operations/multipleoptionswithmixedschemesauth.ts +++ b/typescript-client-sdk/src/sdk/models/operations/multipleoptionswithmixedschemesauth.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const MultipleOptionsWithMixedSchemesAuthServerList = ["http://localhost:35456"] as const; diff --git a/typescript-client-sdk/src/sdk/models/operations/nameoverrideget.ts b/typescript-client-sdk/src/sdk/models/operations/nameoverrideget.ts index 0aa896214..86b85eded 100755 --- a/typescript-client-sdk/src/sdk/models/operations/nameoverrideget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/nameoverrideget.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; /** * An enum type */ -export enum NameOverrideGetEnumNameOverride { +export enum EnumNameOverride { Value1 = "value1", Value2 = "value2", Value3 = "value3", @@ -21,7 +21,7 @@ export class NameOverrideGetRequest extends SpeakeasyBase { * An enum type */ @SpeakeasyMetadata({ data: "queryParam, style=form;explode=true;name=enumNameOverride" }) - testEnumQueryParam: NameOverrideGetEnumNameOverride; + testEnumQueryParam: EnumNameOverride; @SpeakeasyMetadata({ data: "queryParam, style=form;explode=true;name=nameOverride" }) testQueryParam: string; @@ -30,7 +30,7 @@ export class NameOverrideGetRequest extends SpeakeasyBase { /** * A successful response that contains the simpleObject sent in the request body */ -export class OverriddenResponse extends SpeakeasyBase { +export class NameOverrideGetOverriddenResponse extends SpeakeasyBase { /** * A simple object that uses all our supported primitive types and enums and has optional properties. */ @@ -63,5 +63,5 @@ export class NameOverrideGetResponse extends SpeakeasyBase { * A successful response that contains the simpleObject sent in the request body */ @SpeakeasyMetadata() - overriddenResponse?: OverriddenResponse; + overriddenResponse?: NameOverrideGetOverriddenResponse; } diff --git a/typescript-client-sdk/src/sdk/models/operations/nullableobjectpost.ts b/typescript-client-sdk/src/sdk/models/operations/nullableobjectpost.ts index c59c9d569..27ebb5afe 100755 --- a/typescript-client-sdk/src/sdk/models/operations/nullableobjectpost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/nullableobjectpost.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/nullableoneofrefinobjectpost.ts b/typescript-client-sdk/src/sdk/models/operations/nullableoneofrefinobjectpost.ts index ab5b70ebc..0cc9b48ea 100755 --- a/typescript-client-sdk/src/sdk/models/operations/nullableoneofrefinobjectpost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/nullableoneofrefinobjectpost.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/nullableoneoftypeinobjectpost.ts b/typescript-client-sdk/src/sdk/models/operations/nullableoneoftypeinobjectpost.ts index 83da1e5f8..a190b8c10 100755 --- a/typescript-client-sdk/src/sdk/models/operations/nullableoneoftypeinobjectpost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/nullableoneoftypeinobjectpost.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/nullablerequiredemptyobjectpost.ts b/typescript-client-sdk/src/sdk/models/operations/nullablerequiredemptyobjectpost.ts index c67e1b8b6..c098d55ea 100755 --- a/typescript-client-sdk/src/sdk/models/operations/nullablerequiredemptyobjectpost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/nullablerequiredemptyobjectpost.ts @@ -6,27 +6,27 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; -export class NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj extends SpeakeasyBase {} +export class NullableOptionalObj extends SpeakeasyBase {} -export class NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj extends SpeakeasyBase {} +export class NullableRequiredObj extends SpeakeasyBase {} -export class NullableRequiredEmptyObjectPostRequestBodyRequiredObj extends SpeakeasyBase {} +export class RequiredObj extends SpeakeasyBase {} export class NullableRequiredEmptyObjectPostRequestBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "NullableOptionalObj" }) - @Type(() => NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj) - nullableOptionalObj?: NullableRequiredEmptyObjectPostRequestBodyNullableOptionalObj; + @Type(() => NullableOptionalObj) + nullableOptionalObj?: NullableOptionalObj; @SpeakeasyMetadata() @Expose({ name: "NullableRequiredObj" }) - @Type(() => NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj) - nullableRequiredObj: NullableRequiredEmptyObjectPostRequestBodyNullableRequiredObj; + @Type(() => NullableRequiredObj) + nullableRequiredObj: NullableRequiredObj; @SpeakeasyMetadata() @Expose({ name: "RequiredObj" }) - @Type(() => NullableRequiredEmptyObjectPostRequestBodyRequiredObj) - requiredObj: NullableRequiredEmptyObjectPostRequestBodyRequiredObj; + @Type(() => RequiredObj) + requiredObj: RequiredObj; } export class NullableRequiredEmptyObjectPostResponse extends SpeakeasyBase { @@ -52,5 +52,5 @@ export class NullableRequiredEmptyObjectPostResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - nullableRequiredEmptyObjectPost200ApplicationJSONString?: string; + res?: string; } diff --git a/typescript-client-sdk/src/sdk/models/operations/nullablerequiredpropertypost.ts b/typescript-client-sdk/src/sdk/models/operations/nullablerequiredpropertypost.ts index e0ba43d8c..70851272e 100755 --- a/typescript-client-sdk/src/sdk/models/operations/nullablerequiredpropertypost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/nullablerequiredpropertypost.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; -export enum NullableRequiredPropertyPostRequestBodyNullableRequiredEnum { +export enum NullableRequiredEnum { First = "first", Second = "second", } @@ -22,7 +22,7 @@ export class NullableRequiredPropertyPostRequestBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "NullableRequiredEnum" }) - nullableRequiredEnum: NullableRequiredPropertyPostRequestBodyNullableRequiredEnum; + nullableRequiredEnum: NullableRequiredEnum; @SpeakeasyMetadata() @Expose({ name: "NullableRequiredInt" }) @@ -52,5 +52,5 @@ export class NullableRequiredPropertyPostResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - nullableRequiredPropertyPost200ApplicationJSONString?: string; + res?: string; } diff --git a/typescript-client-sdk/src/sdk/models/operations/nullablerequiredsharedobjectpost.ts b/typescript-client-sdk/src/sdk/models/operations/nullablerequiredsharedobjectpost.ts index f4ee25cb4..e2666c098 100755 --- a/typescript-client-sdk/src/sdk/models/operations/nullablerequiredsharedobjectpost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/nullablerequiredsharedobjectpost.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; @@ -42,5 +42,5 @@ export class NullableRequiredSharedObjectPostResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - nullableRequiredSharedObjectPost200ApplicationJSONString?: string; + res?: string; } diff --git a/typescript-client-sdk/src/sdk/models/operations/nullabletypedobjectpost.ts b/typescript-client-sdk/src/sdk/models/operations/nullabletypedobjectpost.ts index 1a011bb62..9949d2b83 100755 --- a/typescript-client-sdk/src/sdk/models/operations/nullabletypedobjectpost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/nullabletypedobjectpost.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/objectcircularreferenceget.ts b/typescript-client-sdk/src/sdk/models/operations/objectcircularreferenceget.ts index b7b4df7bd..afe48ca5a 100755 --- a/typescript-client-sdk/src/sdk/models/operations/objectcircularreferenceget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/objectcircularreferenceget.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class ObjectCircularReferenceGetResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/oneofcircularreferenceget.ts b/typescript-client-sdk/src/sdk/models/operations/oneofcircularreferenceget.ts index 9dc342c0d..138116807 100755 --- a/typescript-client-sdk/src/sdk/models/operations/oneofcircularreferenceget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/oneofcircularreferenceget.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class OneOfCircularReferenceGetResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/pathparameterjson.ts b/typescript-client-sdk/src/sdk/models/operations/pathparameterjson.ts index 9a9d6a118..1f11e59c2 100755 --- a/typescript-client-sdk/src/sdk/models/operations/pathparameterjson.ts +++ b/typescript-client-sdk/src/sdk/models/operations/pathparameterjson.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/pipedelimitedqueryparamsarray.ts b/typescript-client-sdk/src/sdk/models/operations/pipedelimitedqueryparamsarray.ts index 8f49ab426..e20367236 100755 --- a/typescript-client-sdk/src/sdk/models/operations/pipedelimitedqueryparamsarray.ts +++ b/typescript-client-sdk/src/sdk/models/operations/pipedelimitedqueryparamsarray.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; @@ -26,7 +26,7 @@ export class PipeDelimitedQueryParamsArrayRequest extends SpeakeasyBase { objParam?: shared.SimpleObject; } -export class PipeDelimitedQueryParamsArrayResArgs extends SpeakeasyBase { +export class PipeDelimitedQueryParamsArrayArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "arrParam" }) arrParam: string; @@ -42,8 +42,8 @@ export class PipeDelimitedQueryParamsArrayResArgs extends SpeakeasyBase { export class PipeDelimitedQueryParamsArrayRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => PipeDelimitedQueryParamsArrayResArgs) - args: PipeDelimitedQueryParamsArrayResArgs; + @Type(() => PipeDelimitedQueryParamsArrayArgs) + args: PipeDelimitedQueryParamsArrayArgs; @SpeakeasyMetadata() @Expose({ name: "url" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/putanythingignoredgeneration.ts b/typescript-client-sdk/src/sdk/models/operations/putanythingignoredgeneration.ts index 73cc0e78b..0819b97f3 100755 --- a/typescript-client-sdk/src/sdk/models/operations/putanythingignoredgeneration.ts +++ b/typescript-client-sdk/src/sdk/models/operations/putanythingignoredgeneration.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class PutAnythingIgnoredGeneration200ApplicationJSON extends SpeakeasyBase { +export class PutAnythingIgnoredGenerationResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) json?: string; @@ -38,5 +38,5 @@ export class PutAnythingIgnoredGenerationResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - putAnythingIgnoredGeneration200ApplicationJSONObject?: PutAnythingIgnoredGeneration200ApplicationJSON; + object?: PutAnythingIgnoredGenerationResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarray.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarray.ts index 7b9fc4c8d..66372d0ee 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarray.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarray.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonArrayServerList = ["http://localhost:35456"] as const; @@ -30,5 +30,5 @@ export class RequestBodyPostApplicationJsonArrayResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata({ elemType: shared.SimpleObject }) - simpleObjects?: shared.SimpleObject[]; + res?: shared.SimpleObject[]; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.ts index c7ce78d12..688a61a83 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarraycamelcase.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonArrayCamelCaseServerList = [ "http://localhost:35456", @@ -32,5 +32,5 @@ export class RequestBodyPostApplicationJsonArrayCamelCaseResponse extends Speake * OK */ @SpeakeasyMetadata({ elemType: shared.SimpleObjectCamelCase }) - simpleObjectCamelCases?: shared.SimpleObjectCamelCase[]; + res?: shared.SimpleObjectCamelCase[]; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobj.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobj.ts index 1271b12b9..f0028d3d8 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobj.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobj.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class RequestBodyPostApplicationJsonArrayObjResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.ts index 56e0485bc..91308b29f 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayobjcamelcase.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class RequestBodyPostApplicationJsonArrayObjCamelCaseResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.ts index 705f70c27..49bdade2a 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarray.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonArrayOfArrayServerList = [ "http://localhost:35456", @@ -32,5 +32,5 @@ export class RequestBodyPostApplicationJsonArrayOfArrayResponse extends Speakeas * OK */ @SpeakeasyMetadata({ elemType: shared.SimpleObject, elemDepth: 2 }) - arrs?: shared.SimpleObject[][]; + res?: shared.SimpleObject[][]; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.ts index 6270ff0b3..321904830 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarraycamelcase.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonArrayOfArrayCamelCaseServerList = [ "http://localhost:35456", @@ -32,5 +32,5 @@ export class RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse extends * OK */ @SpeakeasyMetadata({ elemType: shared.SimpleObjectCamelCase, elemDepth: 2 }) - arrs?: shared.SimpleObjectCamelCase[][]; + res?: shared.SimpleObjectCamelCase[][]; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.ts index 04df1f796..47df2ff49 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofarrayofprimitive.ts @@ -31,5 +31,5 @@ export class RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse exten * OK */ @SpeakeasyMetadata() - arrs?: string[][]; + res?: string[][]; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.ts index 123cc7ef5..16277dd07 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmap.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonArrayOfMapServerList = [ "http://localhost:35456", @@ -32,5 +32,5 @@ export class RequestBodyPostApplicationJsonArrayOfMapResponse extends SpeakeasyB * OK */ @SpeakeasyMetadata({ elemType: shared.SimpleObject, elemDepth: 2 }) - maps?: Record[]; + res?: Record[]; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.ts index cbf38dc6d..13a23ca67 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofmapcamelcase.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonArrayOfMapCamelCaseServerList = [ "http://localhost:35456", @@ -32,5 +32,5 @@ export class RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse extends S * OK */ @SpeakeasyMetadata({ elemType: shared.SimpleObjectCamelCase, elemDepth: 2 }) - maps?: Record[]; + res?: Record[]; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.ts index 96a14c3be..8490759b0 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonarrayofprimitive.ts @@ -31,5 +31,5 @@ export class RequestBodyPostApplicationJsonArrayOfPrimitiveResponse extends Spea * OK */ @SpeakeasyMetadata() - strings?: string[]; + res?: string[]; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeep.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeep.ts index 8e04c232f..151de00d7 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeep.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeep.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeepcamelcase.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeepcamelcase.ts index 5f1521ce0..5afd34586 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeepcamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsondeepcamelcase.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmap.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmap.ts index 65feb3039..6bd821a99 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmap.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmap.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonMapServerList = ["http://localhost:35456"] as const; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapcamelcase.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapcamelcase.ts index c38d47f2d..7974dcfa4 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapcamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapcamelcase.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonMapCamelCaseServerList = [ "http://localhost:35456", diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobj.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobj.ts index 26927da92..f5a434935 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobj.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobj.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class RequestBodyPostApplicationJsonMapObjResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobjcamelcase.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobjcamelcase.ts index 116de521d..4847b4432 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobjcamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapobjcamelcase.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class RequestBodyPostApplicationJsonMapObjCamelCaseResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarray.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarray.ts index 30a1c0717..431429821 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarray.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarray.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonMapOfArrayServerList = [ "http://localhost:35456", diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.ts index 6d42d7627..60c45f828 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofarraycamelcase.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonMapOfArrayCamelCaseServerList = [ "http://localhost:35456", diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmap.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmap.ts index 7035ddde2..3712c65e4 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmap.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmap.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonMapOfMapServerList = ["http://localhost:35456"] as const; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.ts index 08357131a..a436205d8 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmapofmapcamelcase.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyPostApplicationJsonMapOfMapCamelCaseServerList = [ "http://localhost:35456", diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.ts index 5949a274b..99f3984b8 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonmultiplejsonfiltered.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimple.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimple.ts index b479fc2e4..a4dbd7e98 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimple.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimple.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimplecamelcase.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimplecamelcase.ts index 30df7c605..05a2e3032 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimplecamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostapplicationjsonsimplecamelcase.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostcomplexnumbertypes.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostcomplexnumbertypes.ts index c77b8020f..795560270 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostcomplexnumbertypes.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostcomplexnumbertypes.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; @@ -39,7 +39,7 @@ export class RequestBodyPostComplexNumberTypesRequest extends SpeakeasyBase { /** * OK */ -export class RequestBodyPostComplexNumberTypes200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostComplexNumberTypesResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) @Type(() => shared.ComplexNumberTypes) @@ -73,5 +73,5 @@ export class RequestBodyPostComplexNumberTypesResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostComplexNumberTypes200ApplicationJSONObject?: RequestBodyPostComplexNumberTypes200ApplicationJSON; + object?: RequestBodyPostComplexNumberTypesResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostdefaultsandconsts.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostdefaultsandconsts.ts index c84cf9dc2..757dfed25 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostdefaultsandconsts.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostdefaultsandconsts.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; /** * OK */ -export class RequestBodyPostDefaultsAndConsts200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostDefaultsAndConstsResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) @Type(() => shared.DefaultsAndConstsOutput) @@ -40,5 +40,5 @@ export class RequestBodyPostDefaultsAndConstsResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostDefaultsAndConsts200ApplicationJSONObject?: RequestBodyPostDefaultsAndConsts200ApplicationJSON; + object?: RequestBodyPostDefaultsAndConstsResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostemptyobject.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostemptyobject.ts index a99b74445..bd7e4cee1 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostemptyobject.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostemptyobject.ts @@ -6,39 +6,39 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; -export class RequestBodyPostEmptyObjectRequestBodyEmpty extends SpeakeasyBase {} +export class Empty extends SpeakeasyBase {} -export class RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties extends SpeakeasyBase {} +export class EmptyWithEmptyProperties extends SpeakeasyBase {} export class RequestBodyPostEmptyObjectRequestBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "empty" }) - @Type(() => RequestBodyPostEmptyObjectRequestBodyEmpty) - empty?: RequestBodyPostEmptyObjectRequestBodyEmpty; + @Type(() => Empty) + empty?: Empty; @SpeakeasyMetadata() @Expose({ name: "emptyWithEmptyProperties" }) - @Type(() => RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties) - emptyWithEmptyProperties?: RequestBodyPostEmptyObjectRequestBodyEmptyWithEmptyProperties; + @Type(() => EmptyWithEmptyProperties) + emptyWithEmptyProperties?: EmptyWithEmptyProperties; } -export class RequestBodyPostEmptyObject200ApplicationJSONEmpty extends SpeakeasyBase {} +export class RequestBodyPostEmptyObjectEmpty extends SpeakeasyBase {} -export class RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies extends SpeakeasyBase {} +export class EmptyRespWithEmptyProperies extends SpeakeasyBase {} /** * OK */ -export class RequestBodyPostEmptyObject200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostEmptyObjectResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "empty" }) - @Type(() => RequestBodyPostEmptyObject200ApplicationJSONEmpty) - empty?: RequestBodyPostEmptyObject200ApplicationJSONEmpty; + @Type(() => RequestBodyPostEmptyObjectEmpty) + empty?: RequestBodyPostEmptyObjectEmpty; @SpeakeasyMetadata() @Expose({ name: "emptyRespWithEmptyProperies" }) - @Type(() => RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies) - emptyRespWithEmptyProperies?: RequestBodyPostEmptyObject200ApplicationJSONEmptyRespWithEmptyProperies; + @Type(() => EmptyRespWithEmptyProperies) + emptyRespWithEmptyProperies?: EmptyRespWithEmptyProperies; } export class RequestBodyPostEmptyObjectResponse extends SpeakeasyBase { @@ -64,5 +64,5 @@ export class RequestBodyPostEmptyObjectResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostEmptyObject200ApplicationJSONObject?: RequestBodyPostEmptyObject200ApplicationJSON; + object?: RequestBodyPostEmptyObjectResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostformdeep.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostformdeep.ts index a9350ddd8..f2be8c28b 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostformdeep.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostformdeep.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; -export class RequestBodyPostFormDeepResForm extends SpeakeasyBase { +export class Form extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "arr" }) arr: string; @@ -42,8 +42,8 @@ export class RequestBodyPostFormDeepResForm extends SpeakeasyBase { export class RequestBodyPostFormDeepRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "form" }) - @Type(() => RequestBodyPostFormDeepResForm) - form: RequestBodyPostFormDeepResForm; + @Type(() => Form) + form: Form; } export class RequestBodyPostFormDeepResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostformsimple.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostformsimple.ts index 4562a00fc..bbc00b636 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostformsimple.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostformsimple.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; -export class RequestBodyPostFormSimpleResForm extends SpeakeasyBase { +export class RequestBodyPostFormSimpleForm extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "any" }) any: string; @@ -64,7 +64,7 @@ export class RequestBodyPostFormSimpleResForm extends SpeakeasyBase { strOpt?: string; } -export class RequestBodyPostFormSimpleResHeaders extends SpeakeasyBase { +export class RequestBodyPostFormSimpleHeaders extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "Content-Type" }) contentType: string; @@ -76,13 +76,13 @@ export class RequestBodyPostFormSimpleResHeaders extends SpeakeasyBase { export class RequestBodyPostFormSimpleRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "form" }) - @Type(() => RequestBodyPostFormSimpleResForm) - form: RequestBodyPostFormSimpleResForm; + @Type(() => RequestBodyPostFormSimpleForm) + form: RequestBodyPostFormSimpleForm; @SpeakeasyMetadata() @Expose({ name: "headers" }) - @Type(() => RequestBodyPostFormSimpleResHeaders) - headers: RequestBodyPostFormSimpleResHeaders; + @Type(() => RequestBodyPostFormSimpleHeaders) + headers: RequestBodyPostFormSimpleHeaders; } export class RequestBodyPostFormSimpleResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraybigint.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraybigint.ts index c1ab123c4..9689cd577 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraybigint.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraybigint.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesArrayBigIntResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -42,5 +42,5 @@ export class RequestBodyPostJsonDataTypesArrayBigIntResponse extends SpeakeasyBa * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject?: RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesArrayBigIntResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydate.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydate.ts index 1835f74cd..21734c036 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydate.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydate.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; +import { RFCDate } from "../../../sdk/types"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesArrayDateResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -43,5 +43,5 @@ export class RequestBodyPostJsonDataTypesArrayDateResponse extends SpeakeasyBase * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject?: RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesArrayDateResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.ts index 1ca8d4511..844e43c89 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesarraydecimalstr.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -42,5 +42,5 @@ export class RequestBodyPostJsonDataTypesArrayDecimalStrResponse extends Speakea * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject?: RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigint.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigint.ts index 01b86a881..78740a612 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigint.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigint.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesBigInt200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesBigIntResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -42,5 +42,5 @@ export class RequestBodyPostJsonDataTypesBigIntResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject?: RequestBodyPostJSONDataTypesBigInt200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesBigIntResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigintstr.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigintstr.ts index 857e0d307..43f3b3809 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigintstr.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesbigintstr.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesBigIntStrResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -42,5 +42,5 @@ export class RequestBodyPostJsonDataTypesBigIntStrResponse extends SpeakeasyBase * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject?: RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesBigIntStrResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesboolean.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesboolean.ts index 5c84eaf6b..34a0a2c85 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesboolean.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesboolean.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesBoolean200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesBooleanResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) json: boolean; @@ -38,5 +38,5 @@ export class RequestBodyPostJsonDataTypesBooleanResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject?: RequestBodyPostJSONDataTypesBoolean200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesBooleanResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdate.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdate.ts index 276c13747..bc7c99b6e 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdate.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdate.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; +import { RFCDate } from "../../../sdk/types"; import { AxiosResponse } from "axios"; import { Expose, Transform, Type } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesDate200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesDateResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -45,5 +45,5 @@ export class RequestBodyPostJsonDataTypesDateResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesDate200ApplicationJSONObject?: RequestBodyPostJSONDataTypesDate200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesDateResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdatetime.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdatetime.ts index ddd3d1227..80123cac0 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdatetime.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdatetime.ts @@ -9,7 +9,7 @@ import { Expose, Transform } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesDateTime200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesDateTimeResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -43,5 +43,5 @@ export class RequestBodyPostJsonDataTypesDateTimeResponse extends SpeakeasyBase * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject?: RequestBodyPostJSONDataTypesDateTime200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesDateTimeResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimal.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimal.ts index 6316906c6..a6f6d666b 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimal.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimal.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesDecimal200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesDecimalResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -42,5 +42,5 @@ export class RequestBodyPostJsonDataTypesDecimalResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject?: RequestBodyPostJSONDataTypesDecimal200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesDecimalResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.ts index 19540bd1b..ca4e7a216 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesdecimalstr.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesDecimalStrResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -42,5 +42,5 @@ export class RequestBodyPostJsonDataTypesDecimalStrResponse extends SpeakeasyBas * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject?: RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesDecimalStrResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesfloat32.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesfloat32.ts index 566a1090f..31d274ad9 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesfloat32.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesfloat32.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesFloat32200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesFloat32ResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) json: number; @@ -38,5 +38,5 @@ export class RequestBodyPostJsonDataTypesFloat32Response extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject?: RequestBodyPostJSONDataTypesFloat32200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesFloat32ResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesint32.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesint32.ts index af896a7a8..a9818e0f1 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesint32.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesint32.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesInt32200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesInt32ResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) json: number; @@ -38,5 +38,5 @@ export class RequestBodyPostJsonDataTypesInt32Response extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesInt32200ApplicationJSONObject?: RequestBodyPostJSONDataTypesInt32200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesInt32ResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesinteger.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesinteger.ts index 5da8e6bfc..17753b2ad 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesinteger.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesinteger.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesInteger200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesIntegerResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) json: number; @@ -38,5 +38,5 @@ export class RequestBodyPostJsonDataTypesIntegerResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesInteger200ApplicationJSONObject?: RequestBodyPostJSONDataTypesInteger200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesIntegerResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.ts index 1ff13f7aa..49404f3a1 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapbigintstr.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesMapBigIntStrResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -42,5 +42,5 @@ export class RequestBodyPostJsonDataTypesMapBigIntStrResponse extends SpeakeasyB * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject?: RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesMapBigIntStrResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.ts index 42125ad8b..a72a69f47 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdatetime.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesMapDateTimeResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -42,5 +42,5 @@ export class RequestBodyPostJsonDataTypesMapDateTimeResponse extends SpeakeasyBa * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject?: RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesMapDateTimeResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.ts index 768e6657e..897a328bb 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesmapdecimal.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesMapDecimalResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -42,5 +42,5 @@ export class RequestBodyPostJsonDataTypesMapDecimalResponse extends SpeakeasyBas * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject?: RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesMapDecimalResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesnumber.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesnumber.ts index 073574a75..e22440248 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesnumber.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesnumber.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesNumber200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesNumberResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) json: number; @@ -38,5 +38,5 @@ export class RequestBodyPostJsonDataTypesNumberResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesNumber200ApplicationJSONObject?: RequestBodyPostJSONDataTypesNumber200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesNumberResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesstring.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesstring.ts index 069580eb4..f389d5870 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesstring.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostjsondatatypesstring.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostJSONDataTypesString200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostJsonDataTypesStringResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) json: string; @@ -38,5 +38,5 @@ export class RequestBodyPostJsonDataTypesStringResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostJSONDataTypesString200ApplicationJSONObject?: RequestBodyPostJSONDataTypesString200ApplicationJSON; + object?: RequestBodyPostJsonDataTypesStringResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.ts index d4d89f57c..34729941c 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypescomponentfiltered.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.ts index d449a2e66..230f9792c 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypesinlinefiltered.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; -export class RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostMultipleContentTypesInlineFilteredRequestBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "bool" }) bool: boolean; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitform.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitform.ts index 7dd62d81f..0441e6170 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitform.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitform.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; -export class RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded extends SpeakeasyBase { +export class RequestBodyPostMultipleContentTypesSplitFormRequestBody extends SpeakeasyBase { @SpeakeasyMetadata({ data: "form, name=bool3" }) bool3: boolean; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitjson.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitjson.ts index bc8c7e71c..ac0b7c77f 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitjson.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitjson.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; -export class RequestBodyPostMultipleContentTypesSplitApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostMultipleContentTypesSplitJsonRequestBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "bool" }) bool: boolean; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitmultipart.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitmultipart.ts index 7197689dd..9e8915da6 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitmultipart.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitmultipart.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; -export class RequestBodyPostMultipleContentTypesSplitMultipartFormData extends SpeakeasyBase { +export class RequestBodyPostMultipleContentTypesSplitMultipartRequestBody extends SpeakeasyBase { @SpeakeasyMetadata({ data: "multipart_form, name=bool2" }) bool2: boolean; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparamform.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparamform.ts index 89e022e8a..4e722e448 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparamform.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparamform.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; -export class RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded extends SpeakeasyBase { +export class RequestBodyPostMultipleContentTypesSplitParamFormRequestBody extends SpeakeasyBase { @SpeakeasyMetadata({ data: "form, name=bool3" }) bool3: boolean; @@ -19,7 +19,7 @@ export class RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrl export class RequestBodyPostMultipleContentTypesSplitParamFormRequest extends SpeakeasyBase { @SpeakeasyMetadata({ data: "request, media_type=application/x-www-form-urlencoded" }) - requestBody: RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded; + requestBody: RequestBodyPostMultipleContentTypesSplitParamFormRequestBody; @SpeakeasyMetadata({ data: "queryParam, style=form;explode=true;name=paramStr" }) paramStr: string; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparamjson.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparamjson.ts index aefe49dcf..82731354c 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparamjson.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparamjson.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; -export class RequestBodyPostMultipleContentTypesSplitParamApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "bool" }) bool: boolean; @@ -22,7 +22,7 @@ export class RequestBodyPostMultipleContentTypesSplitParamApplicationJSON extend export class RequestBodyPostMultipleContentTypesSplitParamJsonRequest extends SpeakeasyBase { @SpeakeasyMetadata({ data: "request, media_type=application/json" }) - requestBody: RequestBodyPostMultipleContentTypesSplitParamApplicationJSON; + requestBody: RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody; @SpeakeasyMetadata({ data: "queryParam, style=form;explode=true;name=paramStr" }) paramStr: string; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparammultipart.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparammultipart.ts index ff6ea3643..19b2ad1ba 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparammultipart.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostmultiplecontenttypessplitparammultipart.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; -export class RequestBodyPostMultipleContentTypesSplitParamMultipartFormData extends SpeakeasyBase { +export class RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody extends SpeakeasyBase { @SpeakeasyMetadata({ data: "multipart_form, name=bool2" }) bool2: boolean; @@ -19,7 +19,7 @@ export class RequestBodyPostMultipleContentTypesSplitParamMultipartFormData exte export class RequestBodyPostMultipleContentTypesSplitParamMultipartRequest extends SpeakeasyBase { @SpeakeasyMetadata({ data: "request, media_type=multipart/form-data" }) - requestBody: RequestBodyPostMultipleContentTypesSplitParamMultipartFormData; + requestBody: RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody; @SpeakeasyMetadata({ data: "queryParam, style=form;explode=true;name=paramStr" }) paramStr: string; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.ts index 04fdf68f8..436637f29 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostnotnullablenotrequiredstringbody.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostNotNullableNotRequiredStringBodyResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -38,5 +38,5 @@ export class RequestBodyPostNotNullableNotRequiredStringBodyResponse extends Spe * OK */ @SpeakeasyMetadata() - requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject?: RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON; + object?: RequestBodyPostNotNullableNotRequiredStringBodyResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.ts index 2dcbe69d9..2504a3fc7 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullablenotrequiredstringbody.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostNullableNotRequiredStringBodyResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -38,5 +38,5 @@ export class RequestBodyPostNullableNotRequiredStringBodyResponse extends Speake * OK */ @SpeakeasyMetadata() - requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject?: RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON; + object?: RequestBodyPostNullableNotRequiredStringBodyResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullablerequiredstringbody.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullablerequiredstringbody.ts index 0ccb8c039..9b6b14678 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullablerequiredstringbody.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullablerequiredstringbody.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostNullableRequiredStringBody200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostNullableRequiredStringBodyResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -38,5 +38,5 @@ export class RequestBodyPostNullableRequiredStringBodyResponse extends Speakeasy * OK */ @SpeakeasyMetadata() - requestBodyPostNullableRequiredStringBody200ApplicationJSONObject?: RequestBodyPostNullableRequiredStringBody200ApplicationJSON; + object?: RequestBodyPostNullableRequiredStringBodyResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullarray.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullarray.ts index 4524482d1..feda68fe5 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullarray.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostnullarray.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostNullArray200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostNullArrayResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -38,5 +38,5 @@ export class RequestBodyPostNullArrayResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostNullArray200ApplicationJSONObject?: RequestBodyPostNullArray200ApplicationJSON; + object?: RequestBodyPostNullArrayResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodypostnulldictionary.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodypostnulldictionary.ts index f14423dcc..403834d22 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodypostnulldictionary.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodypostnulldictionary.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class RequestBodyPostNullDictionary200ApplicationJSON extends SpeakeasyBase { +export class RequestBodyPostNullDictionaryResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "data" }) data: string; @@ -38,5 +38,5 @@ export class RequestBodyPostNullDictionaryResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - requestBodyPostNullDictionary200ApplicationJSONObject?: RequestBodyPostNullDictionary200ApplicationJSON; + object?: RequestBodyPostNullDictionaryResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodyputbyteswithparams.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodyputbyteswithparams.ts index 22390afd0..8b628f212 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodyputbyteswithparams.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodyputbyteswithparams.ts @@ -14,7 +14,7 @@ export class RequestBodyPutBytesWithParamsRequest extends SpeakeasyBase { queryStringParam: string; } -export class RequestBodyPutBytesWithParamsResArgs extends SpeakeasyBase { +export class RequestBodyPutBytesWithParamsArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "queryStringParam" }) queryStringParam: string; @@ -26,8 +26,8 @@ export class RequestBodyPutBytesWithParamsResArgs extends SpeakeasyBase { export class RequestBodyPutBytesWithParamsRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => RequestBodyPutBytesWithParamsResArgs) - args: RequestBodyPutBytesWithParamsResArgs; + @Type(() => RequestBodyPutBytesWithParamsArgs) + args: RequestBodyPutBytesWithParamsArgs; @SpeakeasyMetadata() @Expose({ name: "data" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartdeep.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartdeep.ts index 4daf6c9ee..f9b0520b3 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartdeep.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartdeep.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; -export class RequestBodyPutMultipartDeepResForm extends SpeakeasyBase { +export class RequestBodyPutMultipartDeepForm extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "arr" }) arr: string; @@ -42,8 +42,8 @@ export class RequestBodyPutMultipartDeepResForm extends SpeakeasyBase { export class RequestBodyPutMultipartDeepRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "form" }) - @Type(() => RequestBodyPutMultipartDeepResForm) - form: RequestBodyPutMultipartDeepResForm; + @Type(() => RequestBodyPutMultipartDeepForm) + form: RequestBodyPutMultipartDeepForm; } export class RequestBodyPutMultipartDeepResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartdifferentfilename.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartdifferentfilename.ts index a7167eb99..5fd56f37e 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartdifferentfilename.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartdifferentfilename.ts @@ -6,17 +6,17 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; -export class RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName extends SpeakeasyBase { +export class DifferentFileName extends SpeakeasyBase { @SpeakeasyMetadata({ data: "multipart_form, content=true" }) content: Uint8Array; @SpeakeasyMetadata({ data: "multipart_form, name=differentFileName" }) - differentFileName: string; + fileName: string; } export class RequestBodyPutMultipartDifferentFileNameRequestBody extends SpeakeasyBase { @SpeakeasyMetadata({ data: "multipart_form, file=true" }) - differentFileName?: RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName; + differentFileName?: DifferentFileName; } /** diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartfile.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartfile.ts index 61f45c1b6..e3e78adf1 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartfile.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartfile.ts @@ -6,17 +6,17 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; -export class RequestBodyPutMultipartFileRequestBodyFile extends SpeakeasyBase { +export class File extends SpeakeasyBase { @SpeakeasyMetadata({ data: "multipart_form, content=true" }) content: Uint8Array; @SpeakeasyMetadata({ data: "multipart_form, name=file" }) - file: string; + fileName: string; } export class RequestBodyPutMultipartFileRequestBody extends SpeakeasyBase { @SpeakeasyMetadata({ data: "multipart_form, file=true" }) - file?: RequestBodyPutMultipartFileRequestBodyFile; + file?: File; } /** diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartsimple.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartsimple.ts index 1f1eace01..42472648c 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartsimple.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodyputmultipartsimple.ts @@ -6,7 +6,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; -export class RequestBodyPutMultipartSimpleResForm extends SpeakeasyBase { +export class RequestBodyPutMultipartSimpleForm extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "any" }) any: string; @@ -64,7 +64,7 @@ export class RequestBodyPutMultipartSimpleResForm extends SpeakeasyBase { strOpt?: string; } -export class RequestBodyPutMultipartSimpleResHeaders extends SpeakeasyBase { +export class RequestBodyPutMultipartSimpleHeaders extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "Content-Type" }) contentType: string; @@ -76,13 +76,13 @@ export class RequestBodyPutMultipartSimpleResHeaders extends SpeakeasyBase { export class RequestBodyPutMultipartSimpleRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "form" }) - @Type(() => RequestBodyPutMultipartSimpleResForm) - form: RequestBodyPutMultipartSimpleResForm; + @Type(() => RequestBodyPutMultipartSimpleForm) + form: RequestBodyPutMultipartSimpleForm; @SpeakeasyMetadata() @Expose({ name: "headers" }) - @Type(() => RequestBodyPutMultipartSimpleResHeaders) - headers: RequestBodyPutMultipartSimpleResHeaders; + @Type(() => RequestBodyPutMultipartSimpleHeaders) + headers: RequestBodyPutMultipartSimpleHeaders; } export class RequestBodyPutMultipartSimpleResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodyputstringwithparams.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodyputstringwithparams.ts index 03d3f8225..71709ebbb 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodyputstringwithparams.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodyputstringwithparams.ts @@ -14,7 +14,7 @@ export class RequestBodyPutStringWithParamsRequest extends SpeakeasyBase { queryStringParam: string; } -export class RequestBodyPutStringWithParamsResArgs extends SpeakeasyBase { +export class RequestBodyPutStringWithParamsArgs extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "queryStringParam" }) queryStringParam: string; @@ -26,8 +26,8 @@ export class RequestBodyPutStringWithParamsResArgs extends SpeakeasyBase { export class RequestBodyPutStringWithParamsRes extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "args" }) - @Type(() => RequestBodyPutStringWithParamsResArgs) - args: RequestBodyPutStringWithParamsResArgs; + @Type(() => RequestBodyPutStringWithParamsArgs) + args: RequestBodyPutStringWithParamsArgs; @SpeakeasyMetadata() @Expose({ name: "data" }) diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodyreadandwrite.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodyreadandwrite.ts index c78b0dfe2..1c29c29c1 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodyreadandwrite.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodyreadandwrite.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyReadAndWriteServerList = ["http://localhost:35456"] as const; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodyreadonlyinput.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodyreadonlyinput.ts index 4268557d1..38c787597 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodyreadonlyinput.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodyreadonlyinput.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyReadOnlyInputServerList = ["http://localhost:35456"] as const; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodywriteonly.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodywriteonly.ts index c36a6b7df..5f464abc8 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodywriteonly.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodywriteonly.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyWriteOnlyServerList = ["http://localhost:35456"] as const; diff --git a/typescript-client-sdk/src/sdk/models/operations/requestbodywriteonlyoutput.ts b/typescript-client-sdk/src/sdk/models/operations/requestbodywriteonlyoutput.ts index ea94642eb..b51bbe08e 100755 --- a/typescript-client-sdk/src/sdk/models/operations/requestbodywriteonlyoutput.ts +++ b/typescript-client-sdk/src/sdk/models/operations/requestbodywriteonlyoutput.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const RequestBodyWriteOnlyOutputServerList = ["http://localhost:35456"] as const; diff --git a/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.ts b/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.ts index af867fa9c..bfde6bedf 100755 --- a/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiescomplexnumberspost.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON extends SpeakeasyBase { +export class ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) json: Record; @@ -38,5 +38,5 @@ export class ResponseBodyAdditionalPropertiesComplexNumbersPostResponse extends * OK */ @SpeakeasyMetadata() - responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject?: ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON; + object?: ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesdatepost.ts b/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesdatepost.ts index 0fc24fcd1..354885026 100755 --- a/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesdatepost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesdatepost.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; +import { RFCDate } from "../../../sdk/types"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; /** * OK */ -export class ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON extends SpeakeasyBase { +export class ResponseBodyAdditionalPropertiesDatePostResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) json: Record; @@ -39,5 +39,5 @@ export class ResponseBodyAdditionalPropertiesDatePostResponse extends SpeakeasyB * OK */ @SpeakeasyMetadata() - responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject?: ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON; + object?: ResponseBodyAdditionalPropertiesDatePostResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.ts b/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.ts index 455590e8f..497e0b5b0 100755 --- a/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiesobjectpost.ts @@ -3,14 +3,14 @@ */ import { objectToClass, SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Transform } from "class-transformer"; /** * OK */ -export class ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON extends SpeakeasyBase { +export class ResponseBodyAdditionalPropertiesObjectPostResponseBody extends SpeakeasyBase { @SpeakeasyMetadata({ elemType: shared.SimpleObject }) @Expose({ name: "json" }) @Transform( @@ -49,5 +49,5 @@ export class ResponseBodyAdditionalPropertiesObjectPostResponse extends Speakeas * OK */ @SpeakeasyMetadata() - responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject?: ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON; + object?: ResponseBodyAdditionalPropertiesObjectPostResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiespost.ts b/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiespost.ts index 5863674de..4d6c9be2b 100755 --- a/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiespost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/responsebodyadditionalpropertiespost.ts @@ -9,7 +9,7 @@ import { Expose } from "class-transformer"; /** * OK */ -export class ResponseBodyAdditionalPropertiesPost200ApplicationJSON extends SpeakeasyBase { +export class ResponseBodyAdditionalPropertiesPostResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) json: Record; @@ -38,5 +38,5 @@ export class ResponseBodyAdditionalPropertiesPostResponse extends SpeakeasyBase * OK */ @SpeakeasyMetadata() - responseBodyAdditionalPropertiesPost200ApplicationJSONObject?: ResponseBodyAdditionalPropertiesPost200ApplicationJSON; + object?: ResponseBodyAdditionalPropertiesPostResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/responsebodyjsonget.ts b/typescript-client-sdk/src/sdk/models/operations/responsebodyjsonget.ts index 00b302b51..ab9951be1 100755 --- a/typescript-client-sdk/src/sdk/models/operations/responsebodyjsonget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/responsebodyjsonget.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export class ResponseBodyJsonGetResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/responsebodyoptionalget.ts b/typescript-client-sdk/src/sdk/models/operations/responsebodyoptionalget.ts index d97587519..7ff50c770 100755 --- a/typescript-client-sdk/src/sdk/models/operations/responsebodyoptionalget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/responsebodyoptionalget.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const ResponseBodyOptionalGetServerList = ["http://localhost:35456"] as const; @@ -30,7 +30,7 @@ export class ResponseBodyOptionalGetResponse extends SpeakeasyBase { * OK */ @SpeakeasyMetadata() - responseBodyOptionalGet200TextPlainString?: string; + res?: string; /** * OK diff --git a/typescript-client-sdk/src/sdk/models/operations/responsebodyreadonly.ts b/typescript-client-sdk/src/sdk/models/operations/responsebodyreadonly.ts index 1eb41f3a1..4700eaf10 100755 --- a/typescript-client-sdk/src/sdk/models/operations/responsebodyreadonly.ts +++ b/typescript-client-sdk/src/sdk/models/operations/responsebodyreadonly.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; export const ResponseBodyReadOnlyServerList = ["http://localhost:35456"] as const; diff --git a/typescript-client-sdk/src/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.ts b/typescript-client-sdk/src/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.ts index a54b53c44..e13b1f418 100755 --- a/typescript-client-sdk/src/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/responsebodyzerovaluecomplextypeptrspost.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; /** * OK */ -export class ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON extends SpeakeasyBase { +export class ResponseBodyZeroValueComplexTypePtrsPostResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) @Type(() => shared.ObjWithZeroValueComplexTypePtrs) @@ -40,5 +40,5 @@ export class ResponseBodyZeroValueComplexTypePtrsPostResponse extends SpeakeasyB * OK */ @SpeakeasyMetadata() - responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject?: ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON; + object?: ResponseBodyZeroValueComplexTypePtrsPostResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/operations/simplepathparameterobjects.ts b/typescript-client-sdk/src/sdk/models/operations/simplepathparameterobjects.ts index ab29d037c..fe5cd46d9 100755 --- a/typescript-client-sdk/src/sdk/models/operations/simplepathparameterobjects.ts +++ b/typescript-client-sdk/src/sdk/models/operations/simplepathparameterobjects.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; import { AxiosResponse } from "axios"; import { Expose } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/typedparametergenerationget.ts b/typescript-client-sdk/src/sdk/models/operations/typedparametergenerationget.ts index cc22fff5b..5f2c10a73 100755 --- a/typescript-client-sdk/src/sdk/models/operations/typedparametergenerationget.ts +++ b/typescript-client-sdk/src/sdk/models/operations/typedparametergenerationget.ts @@ -3,10 +3,10 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; +import { RFCDate } from "../../../sdk/types"; import { AxiosResponse } from "axios"; -export class TypedParameterGenerationGetObj extends SpeakeasyBase { +export class Obj extends SpeakeasyBase { @SpeakeasyMetadata({ data: "queryParam, name=bool" }) bool: boolean; @@ -28,7 +28,7 @@ export class TypedParameterGenerationGetRequest extends SpeakeasyBase { decimal?: number; @SpeakeasyMetadata({ data: "queryParam, style=form;explode=true;name=obj" }) - obj?: TypedParameterGenerationGetObj; + obj?: Obj; } export class TypedParameterGenerationGetResponse extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/operations/uniondatenull.ts b/typescript-client-sdk/src/sdk/models/operations/uniondatenull.ts index 77718bf4c..09403eaed 100755 --- a/typescript-client-sdk/src/sdk/models/operations/uniondatenull.ts +++ b/typescript-client-sdk/src/sdk/models/operations/uniondatenull.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; +import { RFCDate } from "../../../sdk/types"; import { AxiosResponse } from "axios"; import { Expose, Transform, Type } from "class-transformer"; diff --git a/typescript-client-sdk/src/sdk/models/operations/usageexamplepost.ts b/typescript-client-sdk/src/sdk/models/operations/usageexamplepost.ts index 64b371a09..6ffa40d4e 100755 --- a/typescript-client-sdk/src/sdk/models/operations/usageexamplepost.ts +++ b/typescript-client-sdk/src/sdk/models/operations/usageexamplepost.ts @@ -3,8 +3,8 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; -import * as shared from "../shared"; +import * as shared from "../../../sdk/models/shared"; +import { RFCDate } from "../../../sdk/types"; import { AxiosResponse } from "axios"; import { Expose, Type } from "class-transformer"; @@ -48,7 +48,7 @@ export class UsageExamplePostRequestBody extends SpeakeasyBase { /** * An enum type */ -export enum UsageExamplePostEnumParameter { +export enum EnumParameter { Value1 = "value1", Value2 = "value2", Value3 = "value3", @@ -57,7 +57,7 @@ export enum UsageExamplePostEnumParameter { /** * An enum type */ -export enum UsageExamplePostOptEnumParameter { +export enum OptEnumParameter { Value1 = "value1", Value2 = "value2", Value3 = "value3", @@ -160,7 +160,7 @@ export class UsageExamplePostRequest extends SpeakeasyBase { * An enum parameter */ @SpeakeasyMetadata({ data: "queryParam, style=form;explode=true;name=enumParameter" }) - enumParameter: UsageExamplePostEnumParameter; + enumParameter: EnumParameter; /** * A number parameter that contains a falsey example value @@ -196,7 +196,7 @@ export class UsageExamplePostRequest extends SpeakeasyBase { * An enum parameter */ @SpeakeasyMetadata({ data: "queryParam, style=form;explode=true;name=optEnumParameter" }) - optEnumParameter?: UsageExamplePostOptEnumParameter; + optEnumParameter?: OptEnumParameter; /** * A string parameter @@ -205,7 +205,7 @@ export class UsageExamplePostRequest extends SpeakeasyBase { strParameter: string; } -export class UsageExamplePost200ApplicationJSONJSON extends SpeakeasyBase { +export class UsageExamplePostJson extends SpeakeasyBase { /** * A set of strings with format values that lead to relevant examples being generated for them */ @@ -234,11 +234,11 @@ export class UsageExamplePost200ApplicationJSONJSON extends SpeakeasyBase { /** * A response body that contains the simpleObject sent in the request body */ -export class UsageExamplePost200ApplicationJSON extends SpeakeasyBase { +export class UsageExamplePostResponseBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "json" }) - @Type(() => UsageExamplePost200ApplicationJSONJSON) - json: UsageExamplePost200ApplicationJSONJSON; + @Type(() => UsageExamplePostJson) + json: UsageExamplePostJson; } export class UsageExamplePostResponse extends SpeakeasyBase { @@ -264,5 +264,5 @@ export class UsageExamplePostResponse extends SpeakeasyBase { * A successful response that contains the simpleObject sent in the request body */ @SpeakeasyMetadata() - usageExamplePost200ApplicationJSONObject?: UsageExamplePost200ApplicationJSON; + object?: UsageExamplePostResponseBody; } diff --git a/typescript-client-sdk/src/sdk/models/shared/authservicerequestbody.ts b/typescript-client-sdk/src/sdk/models/shared/authservicerequestbody.ts index 3eef1dfb7..785ffbcca 100755 --- a/typescript-client-sdk/src/sdk/models/shared/authservicerequestbody.ts +++ b/typescript-client-sdk/src/sdk/models/shared/authservicerequestbody.ts @@ -5,7 +5,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { Expose, Type } from "class-transformer"; -export class AuthServiceRequestBodyBasicAuth extends SpeakeasyBase { +export class BasicAuth extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "password" }) password: string; @@ -15,7 +15,7 @@ export class AuthServiceRequestBodyBasicAuth extends SpeakeasyBase { username: string; } -export class AuthServiceRequestBodyHeaderAuth extends SpeakeasyBase { +export class HeaderAuth extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "expectedValue" }) expectedValue: string; @@ -28,11 +28,11 @@ export class AuthServiceRequestBodyHeaderAuth extends SpeakeasyBase { export class AuthServiceRequestBody extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "basicAuth" }) - @Type(() => AuthServiceRequestBodyBasicAuth) - basicAuth?: AuthServiceRequestBodyBasicAuth; + @Type(() => BasicAuth) + basicAuth?: BasicAuth; - @SpeakeasyMetadata({ elemType: AuthServiceRequestBodyHeaderAuth }) + @SpeakeasyMetadata({ elemType: HeaderAuth }) @Expose({ name: "headerAuth" }) - @Type(() => AuthServiceRequestBodyHeaderAuth) - headerAuth?: AuthServiceRequestBodyHeaderAuth[]; + @Type(() => HeaderAuth) + headerAuth?: HeaderAuth[]; } diff --git a/typescript-client-sdk/src/sdk/models/shared/defaultsandconsts.ts b/typescript-client-sdk/src/sdk/models/shared/defaultsandconsts.ts index 8ee6a0742..486ae4f57 100755 --- a/typescript-client-sdk/src/sdk/models/shared/defaultsandconsts.ts +++ b/typescript-client-sdk/src/sdk/models/shared/defaultsandconsts.ts @@ -3,28 +3,28 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; +import { RFCDate } from "../../../sdk/types"; import { Expose, Transform, Type } from "class-transformer"; -export enum DefaultsAndConstsConstEnumInt { +export enum ConstEnumInt { One = 1, Two = 2, Three = 3, } -export enum DefaultsAndConstsConstEnumStr { +export enum ConstEnumStr { One = "one", Two = "two", Three = "three", } -export enum DefaultsAndConstsDefaultEnumInt { +export enum DefaultEnumInt { One = 1, Two = 2, Three = 3, } -export enum DefaultsAndConstsDefaultEnumStr { +export enum DefaultEnumStr { One = "one", Two = "two", Three = "three", @@ -64,11 +64,11 @@ export class DefaultsAndConsts extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "constEnumInt" }) - constEnumInt: DefaultsAndConstsConstEnumInt; + constEnumInt: ConstEnumInt; @SpeakeasyMetadata() @Expose({ name: "constEnumStr" }) - constEnumStr: DefaultsAndConstsConstEnumStr; + constEnumStr: ConstEnumStr; @SpeakeasyMetadata() @Expose({ name: "constInt" }) @@ -119,11 +119,11 @@ export class DefaultsAndConsts extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "defaultEnumInt" }) - defaultEnumInt?: DefaultsAndConstsDefaultEnumInt; + defaultEnumInt?: DefaultEnumInt; @SpeakeasyMetadata() @Expose({ name: "defaultEnumStr" }) - defaultEnumStr?: DefaultsAndConstsDefaultEnumStr; + defaultEnumStr?: DefaultEnumStr; @SpeakeasyMetadata() @Expose({ name: "defaultInt" }) diff --git a/typescript-client-sdk/src/sdk/models/shared/defaultsandconstsoutput.ts b/typescript-client-sdk/src/sdk/models/shared/defaultsandconstsoutput.ts index 44ffcb16f..5f258661c 100755 --- a/typescript-client-sdk/src/sdk/models/shared/defaultsandconstsoutput.ts +++ b/typescript-client-sdk/src/sdk/models/shared/defaultsandconstsoutput.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; +import { RFCDate } from "../../../sdk/types"; import { Expose, Transform, Type } from "class-transformer"; export enum DefaultsAndConstsOutputConstEnumInt { diff --git a/typescript-client-sdk/src/sdk/models/shared/deprecatedfieldinobject.ts b/typescript-client-sdk/src/sdk/models/shared/deprecatedfieldinobject.ts index 5bbe9b4e9..9b4460681 100755 --- a/typescript-client-sdk/src/sdk/models/shared/deprecatedfieldinobject.ts +++ b/typescript-client-sdk/src/sdk/models/shared/deprecatedfieldinobject.ts @@ -8,7 +8,7 @@ import { Expose } from "class-transformer"; /** * @deprecated enum: This enum is deprecated. */ -export enum DeprecatedFieldInObjectDeprecatedEnum { +export enum DeprecatedEnum { A = "a", B = "b", C = "c", @@ -20,7 +20,7 @@ export class DeprecatedFieldInObject extends SpeakeasyBase { */ @SpeakeasyMetadata() @Expose({ name: "deprecatedEnum" }) - deprecatedEnum?: DeprecatedFieldInObjectDeprecatedEnum; + deprecatedEnum?: DeprecatedEnum; /** * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. Use newField instead. diff --git a/typescript-client-sdk/src/sdk/models/shared/exampleresource.ts b/typescript-client-sdk/src/sdk/models/shared/exampleresource.ts index 350332ccc..da90e13b5 100755 --- a/typescript-client-sdk/src/sdk/models/shared/exampleresource.ts +++ b/typescript-client-sdk/src/sdk/models/shared/exampleresource.ts @@ -5,19 +5,19 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { Expose, Transform, Type } from "class-transformer"; -export class ExampleResourceChocolates extends SpeakeasyBase { +export class Chocolates extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "description" }) description: string; } -export enum ExampleResourceEnumNumber { +export enum EnumNumber { One = 1, Two = 2, Three = 3, } -export enum ExampleResourceEnumStr { +export enum EnumStr { One = "one", Two = "two", Three = "three", @@ -32,10 +32,10 @@ export class ExampleResource extends SpeakeasyBase { @Expose({ name: "arrayOfString" }) arrayOfString?: string[]; - @SpeakeasyMetadata({ elemType: ExampleResourceChocolates }) + @SpeakeasyMetadata({ elemType: Chocolates }) @Expose({ name: "chocolates" }) - @Type(() => ExampleResourceChocolates) - chocolates: ExampleResourceChocolates[]; + @Type(() => Chocolates) + chocolates: Chocolates[]; @SpeakeasyMetadata() @Expose({ name: "createdAt" }) @@ -44,11 +44,11 @@ export class ExampleResource extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "enumNumber" }) - enumNumber?: ExampleResourceEnumNumber; + enumNumber?: EnumNumber; @SpeakeasyMetadata() @Expose({ name: "enumStr" }) - enumStr?: ExampleResourceEnumStr; + enumStr?: EnumStr; @SpeakeasyMetadata() @Expose({ name: "id" }) diff --git a/typescript-client-sdk/src/sdk/models/shared/httpbinsimplejsonobject.ts b/typescript-client-sdk/src/sdk/models/shared/httpbinsimplejsonobject.ts index 8bf51881f..60cdadf6c 100755 --- a/typescript-client-sdk/src/sdk/models/shared/httpbinsimplejsonobject.ts +++ b/typescript-client-sdk/src/sdk/models/shared/httpbinsimplejsonobject.ts @@ -5,7 +5,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { Expose, Type } from "class-transformer"; -export class HttpBinSimpleJsonObjectSlideshowSlides extends SpeakeasyBase { +export class Slides extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "items" }) items?: string[]; @@ -19,7 +19,7 @@ export class HttpBinSimpleJsonObjectSlideshowSlides extends SpeakeasyBase { type: string; } -export class HttpBinSimpleJsonObjectSlideshow extends SpeakeasyBase { +export class Slideshow extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "author" }) author: string; @@ -28,10 +28,10 @@ export class HttpBinSimpleJsonObjectSlideshow extends SpeakeasyBase { @Expose({ name: "date" }) date: string; - @SpeakeasyMetadata({ elemType: HttpBinSimpleJsonObjectSlideshowSlides }) + @SpeakeasyMetadata({ elemType: Slides }) @Expose({ name: "slides" }) - @Type(() => HttpBinSimpleJsonObjectSlideshowSlides) - slides: HttpBinSimpleJsonObjectSlideshowSlides[]; + @Type(() => Slides) + slides: Slides[]; @SpeakeasyMetadata() @Expose({ name: "title" }) @@ -41,6 +41,6 @@ export class HttpBinSimpleJsonObjectSlideshow extends SpeakeasyBase { export class HttpBinSimpleJsonObject extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "slideshow" }) - @Type(() => HttpBinSimpleJsonObjectSlideshow) - slideshow: HttpBinSimpleJsonObjectSlideshow; + @Type(() => Slideshow) + slideshow: Slideshow; } diff --git a/typescript-client-sdk/src/sdk/models/shared/objwithzerovaluecomplextypeptrs.ts b/typescript-client-sdk/src/sdk/models/shared/objwithzerovaluecomplextypeptrs.ts index f40fecf4e..4b56bf8a3 100755 --- a/typescript-client-sdk/src/sdk/models/shared/objwithzerovaluecomplextypeptrs.ts +++ b/typescript-client-sdk/src/sdk/models/shared/objwithzerovaluecomplextypeptrs.ts @@ -3,7 +3,7 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; +import { RFCDate } from "../../../sdk/types"; import { Expose, Transform, Type } from "class-transformer"; export class ObjWithZeroValueComplexTypePtrs extends SpeakeasyBase { diff --git a/typescript-client-sdk/src/sdk/models/shared/readwriteobject.ts b/typescript-client-sdk/src/sdk/models/shared/readwriteobject.ts index 88efd6565..10cc84423 100755 --- a/typescript-client-sdk/src/sdk/models/shared/readwriteobject.ts +++ b/typescript-client-sdk/src/sdk/models/shared/readwriteobject.ts @@ -5,7 +5,7 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { Expose } from "class-transformer"; -export class ReadWriteObjectInput extends SpeakeasyBase { +export class ReadWriteObject extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "num1" }) num1: number; diff --git a/typescript-client-sdk/src/sdk/models/shared/simpleobject.ts b/typescript-client-sdk/src/sdk/models/shared/simpleobject.ts index 8dbfd14c5..29c72b29b 100755 --- a/typescript-client-sdk/src/sdk/models/shared/simpleobject.ts +++ b/typescript-client-sdk/src/sdk/models/shared/simpleobject.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; +import { RFCDate } from "../../../sdk/types"; import { Enum } from "./enum"; import { Expose, Transform, Type } from "class-transformer"; /** * An int32 enum property. */ -export enum SimpleObjectInt32Enum { +export enum Int32Enum { FiftyFive = 55, SixtyNine = 69, OneHundredAndEightyOne = 181, @@ -19,7 +19,7 @@ export enum SimpleObjectInt32Enum { /** * An integer enum property. */ -export enum SimpleObjectIntEnum { +export enum IntEnum { First = 1, Second = 2, Third = 3, @@ -146,7 +146,7 @@ export class SimpleObject extends SpeakeasyBase { data: "header, name=int32Enum, pathParam, name=int32Enum, queryParam, name=int32Enum, form, name=int32Enum, multipart_form, name=int32Enum", }) @Expose({ name: "int32Enum" }) - int32Enum: SimpleObjectInt32Enum; + int32Enum: Int32Enum; /** * An integer enum property. @@ -155,7 +155,7 @@ export class SimpleObject extends SpeakeasyBase { data: "header, name=intEnum, pathParam, name=intEnum, queryParam, name=intEnum, form, name=intEnum, multipart_form, name=intEnum", }) @Expose({ name: "intEnum" }) - intEnum: SimpleObjectIntEnum; + intEnum: IntEnum; /** * An optional integer property will be null for tests. diff --git a/typescript-client-sdk/src/sdk/models/shared/simpleobjectcamelcase.ts b/typescript-client-sdk/src/sdk/models/shared/simpleobjectcamelcase.ts index f81e33909..c00e16c30 100755 --- a/typescript-client-sdk/src/sdk/models/shared/simpleobjectcamelcase.ts +++ b/typescript-client-sdk/src/sdk/models/shared/simpleobjectcamelcase.ts @@ -3,14 +3,14 @@ */ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; -import { RFCDate } from "../../types"; +import { RFCDate } from "../../../sdk/types"; import { Enum } from "./enum"; import { Expose, Transform, Type } from "class-transformer"; /** * An int32 enum property. */ -export enum SimpleObjectCamelCaseInt32EnumVal { +export enum Int32EnumVal { FiftyFive = 55, SixtyNine = 69, OneHundredAndEightyOne = 181, @@ -19,7 +19,7 @@ export enum SimpleObjectCamelCaseInt32EnumVal { /** * An integer enum property. */ -export enum SimpleObjectCamelCaseIntEnumVal { +export enum IntEnumVal { First = 1, Second = 2, Third = 3, @@ -100,7 +100,7 @@ export class SimpleObjectCamelCase extends SpeakeasyBase { */ @SpeakeasyMetadata() @Expose({ name: "int32_enum_val" }) - int32EnumVal: SimpleObjectCamelCaseInt32EnumVal; + int32EnumVal: Int32EnumVal; /** * An int32 property. @@ -114,7 +114,7 @@ export class SimpleObjectCamelCase extends SpeakeasyBase { */ @SpeakeasyMetadata() @Expose({ name: "int_enum_val" }) - intEnumVal: SimpleObjectCamelCaseIntEnumVal; + intEnumVal: IntEnumVal; /** * An optional integer property will be null for tests. diff --git a/typescript-client-sdk/src/sdk/models/shared/typedobject1.ts b/typescript-client-sdk/src/sdk/models/shared/typedobject1.ts index 9312a2c92..fdbbaadff 100755 --- a/typescript-client-sdk/src/sdk/models/shared/typedobject1.ts +++ b/typescript-client-sdk/src/sdk/models/shared/typedobject1.ts @@ -5,14 +5,14 @@ import { SpeakeasyBase, SpeakeasyMetadata } from "../../../internal/utils"; import { Expose } from "class-transformer"; -export enum TypedObject1Type { +export enum TypeT { Obj1 = "obj1", } export class TypedObject1 extends SpeakeasyBase { @SpeakeasyMetadata() @Expose({ name: "type" }) - type: TypedObject1Type; + type: TypeT; @SpeakeasyMetadata() @Expose({ name: "value" }) diff --git a/typescript-client-sdk/src/sdk/nest.ts b/typescript-client-sdk/src/sdk/nest.ts index 85a2ae7d6..2026185cf 100755 --- a/typescript-client-sdk/src/sdk/nest.ts +++ b/typescript-client-sdk/src/sdk/nest.ts @@ -2,15 +2,15 @@ * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. */ -import { NestFirst } from "./nestfirst"; import { SDKConfiguration } from "./sdk"; +import { SDKFirst } from "./sdkfirst"; export class Nest { - public first: NestFirst; + public first: SDKFirst; private sdkConfiguration: SDKConfiguration; constructor(sdkConfig: SDKConfiguration) { this.sdkConfiguration = sdkConfig; - this.first = new NestFirst(this.sdkConfiguration); + this.first = new SDKFirst(this.sdkConfiguration); } } diff --git a/typescript-client-sdk/src/sdk/nested.ts b/typescript-client-sdk/src/sdk/nested.ts index 513115c87..94c7e0046 100755 --- a/typescript-client-sdk/src/sdk/nested.ts +++ b/typescript-client-sdk/src/sdk/nested.ts @@ -3,23 +3,23 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; -import { NestedFirst } from "./nestedfirst"; -import { NestedSecond } from "./nestedsecond"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; +import { SDKNestedFirst } from "./sdknestedfirst"; +import { SDKSecond } from "./sdksecond"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; export class Nested { - public first: NestedFirst; - public second: NestedSecond; + public first: SDKNestedFirst; + public second: SDKSecond; private sdkConfiguration: SDKConfiguration; constructor(sdkConfig: SDKConfiguration) { this.sdkConfiguration = sdkConfig; - this.first = new NestedFirst(this.sdkConfiguration); - this.second = new NestedSecond(this.sdkConfiguration); + this.first = new SDKNestedFirst(this.sdkConfiguration); + this.second = new SDKSecond(this.sdkConfiguration); } async get(config?: AxiosRequestConfig): Promise { diff --git a/typescript-client-sdk/src/sdk/nestedfirst.ts b/typescript-client-sdk/src/sdk/nestedfirst.ts deleted file mode 100755 index 335a000dd..000000000 --- a/typescript-client-sdk/src/sdk/nestedfirst.ts +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; -import { SDKConfiguration } from "./sdk"; -import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; - -export class NestedFirst { - private sdkConfiguration: SDKConfiguration; - - constructor(sdkConfig: SDKConfiguration) { - this.sdkConfiguration = sdkConfig; - } - - async get(config?: AxiosRequestConfig): Promise { - const baseURL: string = utils.templateUrl( - this.sdkConfiguration.serverURL, - this.sdkConfiguration.serverDefaults - ); - const url: string = baseURL.replace(/\/$/, "") + "/anything/nested/first"; - const client: AxiosInstance = this.sdkConfiguration.defaultClient; - let globalSecurity = this.sdkConfiguration.security; - if (typeof globalSecurity === "function") { - globalSecurity = await globalSecurity(); - } - if (!(globalSecurity instanceof utils.SpeakeasyBase)) { - globalSecurity = new shared.Security(globalSecurity); - } - const properties = utils.parseSecurityProperties(globalSecurity); - const headers: RawAxiosRequestHeaders = { ...config?.headers, ...properties.headers }; - headers["Accept"] = "*/*"; - - headers["x-speakeasy-user-agent"] = this.sdkConfiguration.userAgent; - - const httpRes: AxiosResponse = await client.request({ - validateStatus: () => true, - url: url, - method: "get", - headers: headers, - responseType: "arraybuffer", - ...config, - }); - - const contentType: string = httpRes?.headers?.["content-type"] ?? ""; - - if (httpRes?.status == null) { - throw new Error(`status code not found in response: ${httpRes}`); - } - - const res: operations.NestedFirstGetResponse = new operations.NestedFirstGetResponse({ - statusCode: httpRes.status, - contentType: contentType, - rawResponse: httpRes, - }); - switch (true) { - case httpRes?.status == 200: - break; - case (httpRes?.status >= 400 && httpRes?.status < 500) || - (httpRes?.status >= 500 && httpRes?.status < 600): - throw new errors.SDKError( - "API error occurred", - httpRes.status, - httpRes?.data, - httpRes - ); - } - - return res; - } -} diff --git a/typescript-client-sdk/src/sdk/nestedsecond.ts b/typescript-client-sdk/src/sdk/nestedsecond.ts deleted file mode 100755 index 631a697ee..000000000 --- a/typescript-client-sdk/src/sdk/nestedsecond.ts +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; -import { SDKConfiguration } from "./sdk"; -import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; - -export class NestedSecond { - private sdkConfiguration: SDKConfiguration; - - constructor(sdkConfig: SDKConfiguration) { - this.sdkConfiguration = sdkConfig; - } - - async get(config?: AxiosRequestConfig): Promise { - const baseURL: string = utils.templateUrl( - this.sdkConfiguration.serverURL, - this.sdkConfiguration.serverDefaults - ); - const url: string = baseURL.replace(/\/$/, "") + "/anything/nested/second"; - const client: AxiosInstance = this.sdkConfiguration.defaultClient; - let globalSecurity = this.sdkConfiguration.security; - if (typeof globalSecurity === "function") { - globalSecurity = await globalSecurity(); - } - if (!(globalSecurity instanceof utils.SpeakeasyBase)) { - globalSecurity = new shared.Security(globalSecurity); - } - const properties = utils.parseSecurityProperties(globalSecurity); - const headers: RawAxiosRequestHeaders = { ...config?.headers, ...properties.headers }; - headers["Accept"] = "*/*"; - - headers["x-speakeasy-user-agent"] = this.sdkConfiguration.userAgent; - - const httpRes: AxiosResponse = await client.request({ - validateStatus: () => true, - url: url, - method: "get", - headers: headers, - responseType: "arraybuffer", - ...config, - }); - - const contentType: string = httpRes?.headers?.["content-type"] ?? ""; - - if (httpRes?.status == null) { - throw new Error(`status code not found in response: ${httpRes}`); - } - - const res: operations.NestedSecondGetResponse = new operations.NestedSecondGetResponse({ - statusCode: httpRes.status, - contentType: contentType, - rawResponse: httpRes, - }); - switch (true) { - case httpRes?.status == 200: - break; - case (httpRes?.status >= 400 && httpRes?.status < 500) || - (httpRes?.status >= 500 && httpRes?.status < 600): - throw new errors.SDKError( - "API error occurred", - httpRes.status, - httpRes?.data, - httpRes - ); - } - - return res; - } -} diff --git a/typescript-client-sdk/src/sdk/nestfirst.ts b/typescript-client-sdk/src/sdk/nestfirst.ts deleted file mode 100755 index 49641235a..000000000 --- a/typescript-client-sdk/src/sdk/nestfirst.ts +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. - */ - -import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; -import { SDKConfiguration } from "./sdk"; -import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; - -export class NestFirst { - private sdkConfiguration: SDKConfiguration; - - constructor(sdkConfig: SDKConfiguration) { - this.sdkConfiguration = sdkConfig; - } - - async get(config?: AxiosRequestConfig): Promise { - const baseURL: string = utils.templateUrl( - this.sdkConfiguration.serverURL, - this.sdkConfiguration.serverDefaults - ); - const url: string = baseURL.replace(/\/$/, "") + "/anything/nest/first"; - const client: AxiosInstance = this.sdkConfiguration.defaultClient; - let globalSecurity = this.sdkConfiguration.security; - if (typeof globalSecurity === "function") { - globalSecurity = await globalSecurity(); - } - if (!(globalSecurity instanceof utils.SpeakeasyBase)) { - globalSecurity = new shared.Security(globalSecurity); - } - const properties = utils.parseSecurityProperties(globalSecurity); - const headers: RawAxiosRequestHeaders = { ...config?.headers, ...properties.headers }; - headers["Accept"] = "*/*"; - - headers["x-speakeasy-user-agent"] = this.sdkConfiguration.userAgent; - - const httpRes: AxiosResponse = await client.request({ - validateStatus: () => true, - url: url, - method: "get", - headers: headers, - responseType: "arraybuffer", - ...config, - }); - - const contentType: string = httpRes?.headers?.["content-type"] ?? ""; - - if (httpRes?.status == null) { - throw new Error(`status code not found in response: ${httpRes}`); - } - - const res: operations.NestFirstGetResponse = new operations.NestFirstGetResponse({ - statusCode: httpRes.status, - contentType: contentType, - rawResponse: httpRes, - }); - switch (true) { - case httpRes?.status == 200: - break; - case (httpRes?.status >= 400 && httpRes?.status < 500) || - (httpRes?.status >= 500 && httpRes?.status < 600): - throw new errors.SDKError( - "API error occurred", - httpRes.status, - httpRes?.data, - httpRes - ); - } - - return res; - } -} diff --git a/typescript-client-sdk/src/sdk/pagination.ts b/typescript-client-sdk/src/sdk/pagination.ts index f24fa6363..2830f0f5a 100755 --- a/typescript-client-sdk/src/sdk/pagination.ts +++ b/typescript-client-sdk/src/sdk/pagination.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; import jp from "jsonpath"; diff --git a/typescript-client-sdk/src/sdk/parameters.ts b/typescript-client-sdk/src/sdk/parameters.ts index 4f8189c12..97ee8f9ce 100755 --- a/typescript-client-sdk/src/sdk/parameters.ts +++ b/typescript-client-sdk/src/sdk/parameters.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; @@ -102,7 +102,7 @@ export class ParametersT { async deepObjectQueryParamsObject( objParam: shared.SimpleObject, - objArrParam?: operations.DeepObjectQueryParamsObjectObjArrParam, + objArrParam?: operations.ObjArrParam, config?: AxiosRequestConfig ): Promise { const req = new operations.DeepObjectQueryParamsObjectRequest({ @@ -342,8 +342,8 @@ export class ParametersT { } async formQueryParamsCamelObject( - objParamExploded: operations.FormQueryParamsCamelObjectObjParamExploded, - objParam?: operations.FormQueryParamsCamelObjectObjParam, + objParamExploded: operations.ObjParamExploded, + objParam?: operations.ObjParam, config?: AxiosRequestConfig ): Promise { const req = new operations.FormQueryParamsCamelObjectRequest({ diff --git a/typescript-client-sdk/src/sdk/requestbodies.ts b/typescript-client-sdk/src/sdk/requestbodies.ts index 22e967f19..4a4135399 100755 --- a/typescript-client-sdk/src/sdk/requestbodies.ts +++ b/typescript-client-sdk/src/sdk/requestbodies.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { RFCDate } from "./types"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; @@ -185,7 +185,7 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.nullableRequiredEmptyObjectPost200ApplicationJSONString = decodedRes; + res.res = decodedRes; } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -277,7 +277,7 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.nullableRequiredPropertyPost200ApplicationJSONString = decodedRes; + res.res = decodedRes; } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -370,7 +370,7 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.nullableRequiredSharedObjectPost200ApplicationJSONString = decodedRes; + res.res = decodedRes; } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -461,9 +461,9 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.simpleObjects = []; + res.res = []; const resFieldDepth: number = utils.getResFieldDepth(res); - res.simpleObjects = utils.objectToClass( + res.res = utils.objectToClass( JSON.parse(decodedRes), shared.SimpleObject, resFieldDepth @@ -558,9 +558,9 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.simpleObjectCamelCases = []; + res.res = []; const resFieldDepth: number = utils.getResFieldDepth(res); - res.simpleObjectCamelCases = utils.objectToClass( + res.res = utils.objectToClass( JSON.parse(decodedRes), shared.SimpleObjectCamelCase, resFieldDepth @@ -839,9 +839,9 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.arrs = []; + res.res = []; const resFieldDepth: number = utils.getResFieldDepth(res); - res.arrs = utils.objectToClass( + res.res = utils.objectToClass( JSON.parse(decodedRes), shared.SimpleObject, resFieldDepth @@ -936,9 +936,9 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.arrs = []; + res.res = []; const resFieldDepth: number = utils.getResFieldDepth(res); - res.arrs = utils.objectToClass( + res.res = utils.objectToClass( JSON.parse(decodedRes), shared.SimpleObjectCamelCase, resFieldDepth @@ -1033,7 +1033,7 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.arrs = utils.objectToClass(JSON.parse(decodedRes)); + res.res = utils.objectToClass(JSON.parse(decodedRes)); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -1124,9 +1124,9 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.maps = []; + res.res = []; const resFieldDepth: number = utils.getResFieldDepth(res); - res.maps = utils.objectToClass( + res.res = utils.objectToClass( JSON.parse(decodedRes), shared.SimpleObject, resFieldDepth @@ -1221,9 +1221,9 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.maps = []; + res.res = []; const resFieldDepth: number = utils.getResFieldDepth(res); - res.maps = utils.objectToClass( + res.res = utils.objectToClass( JSON.parse(decodedRes), shared.SimpleObjectCamelCase, resFieldDepth @@ -1318,7 +1318,7 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.strings = utils.objectToClass(JSON.parse(decodedRes)); + res.res = utils.objectToClass(JSON.parse(decodedRes)); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -2844,11 +2844,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostComplexNumberTypes200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostComplexNumberTypes200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostComplexNumberTypesResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -2940,11 +2939,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostDefaultsAndConsts200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostDefaultsAndConsts200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostDefaultsAndConstsResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -3036,9 +3034,9 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostEmptyObject200ApplicationJSONObject = utils.objectToClass( + res.object = utils.objectToClass( JSON.parse(decodedRes), - operations.RequestBodyPostEmptyObject200ApplicationJSON + operations.RequestBodyPostEmptyObjectResponseBody ); } else { throw new errors.SDKError( @@ -3406,11 +3404,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesArrayBigIntResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -3498,11 +3495,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesArrayDateResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -3591,11 +3587,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -3683,11 +3678,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesBigInt200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesBigInt200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesBigIntResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -3775,11 +3769,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesBigIntStrResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -3867,11 +3860,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesBoolean200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesBoolean200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesBooleanResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -3959,11 +3951,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesDate200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesDate200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesDateResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -4051,11 +4042,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesDateTime200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesDateTime200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesDateTimeResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -4143,11 +4133,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesDecimal200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesDecimal200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesDecimalResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -4235,11 +4224,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesDecimalStrResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -4327,11 +4315,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesFloat32200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesFloat32200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesFloat32ResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -4419,11 +4406,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesInt32200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesInt32200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesInt32ResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -4511,11 +4497,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesInteger200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesInteger200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesIntegerResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -4603,11 +4588,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesMapBigIntStrResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -4695,11 +4679,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesMapDateTimeResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -4787,11 +4770,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesMapDecimalResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -4879,11 +4861,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesNumber200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesNumber200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesNumberResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -4971,11 +4952,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostJSONDataTypesString200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostJSONDataTypesString200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostJsonDataTypesStringResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -5095,13 +5075,11 @@ export class RequestBodies { } async requestBodyPostMultipleContentTypesInlineFiltered( - req: operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON, + req: operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody, config?: AxiosRequestConfig ): Promise { if (!(req instanceof utils.SpeakeasyBase)) { - req = new operations.RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON( - req - ); + req = new operations.RequestBodyPostMultipleContentTypesInlineFilteredRequestBody(req); } const baseURL: string = utils.templateUrl( @@ -5193,7 +5171,7 @@ export class RequestBodies { } async requestBodyPostMultipleContentTypesSplitParamForm( - requestBody: operations.RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded, + requestBody: operations.RequestBodyPostMultipleContentTypesSplitParamFormRequestBody, paramStr: string, config?: AxiosRequestConfig ): Promise { @@ -5291,7 +5269,7 @@ export class RequestBodies { } async requestBodyPostMultipleContentTypesSplitParamJson( - requestBody: operations.RequestBodyPostMultipleContentTypesSplitParamApplicationJSON, + requestBody: operations.RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody, paramStr: string, config?: AxiosRequestConfig ): Promise { @@ -5389,7 +5367,7 @@ export class RequestBodies { } async requestBodyPostMultipleContentTypesSplitParamMultipart( - requestBody: operations.RequestBodyPostMultipleContentTypesSplitParamMultipartFormData, + requestBody: operations.RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody, paramStr: string, config?: AxiosRequestConfig ): Promise { @@ -5487,14 +5465,11 @@ export class RequestBodies { } async requestBodyPostMultipleContentTypesSplitForm( - req: operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded, + req: operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody, config?: AxiosRequestConfig ): Promise { if (!(req instanceof utils.SpeakeasyBase)) { - req = - new operations.RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded( - req - ); + req = new operations.RequestBodyPostMultipleContentTypesSplitFormRequestBody(req); } const baseURL: string = utils.templateUrl( @@ -5585,11 +5560,11 @@ export class RequestBodies { } async requestBodyPostMultipleContentTypesSplitJson( - req: operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON, + req: operations.RequestBodyPostMultipleContentTypesSplitJsonRequestBody, config?: AxiosRequestConfig ): Promise { if (!(req instanceof utils.SpeakeasyBase)) { - req = new operations.RequestBodyPostMultipleContentTypesSplitApplicationJSON(req); + req = new operations.RequestBodyPostMultipleContentTypesSplitJsonRequestBody(req); } const baseURL: string = utils.templateUrl( @@ -5680,11 +5655,11 @@ export class RequestBodies { } async requestBodyPostMultipleContentTypesSplitMultipart( - req: operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData, + req: operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody, config?: AxiosRequestConfig ): Promise { if (!(req instanceof utils.SpeakeasyBase)) { - req = new operations.RequestBodyPostMultipleContentTypesSplitMultipartFormData(req); + req = new operations.RequestBodyPostMultipleContentTypesSplitMultipartRequestBody(req); } const baseURL: string = utils.templateUrl( @@ -5839,11 +5814,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostNotNullableNotRequiredStringBodyResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -5930,9 +5904,9 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostNullArray200ApplicationJSONObject = utils.objectToClass( + res.object = utils.objectToClass( JSON.parse(decodedRes), - operations.RequestBodyPostNullArray200ApplicationJSON + operations.RequestBodyPostNullArrayResponseBody ); } else { throw new errors.SDKError( @@ -6021,9 +5995,9 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostNullDictionary200ApplicationJSONObject = utils.objectToClass( + res.object = utils.objectToClass( JSON.parse(decodedRes), - operations.RequestBodyPostNullDictionary200ApplicationJSON + operations.RequestBodyPostNullDictionaryResponseBody ); } else { throw new errors.SDKError( @@ -6111,11 +6085,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostNullableNotRequiredStringBodyResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -6203,11 +6176,10 @@ export class RequestBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.requestBodyPostNullableRequiredStringBody200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.RequestBodyPostNullableRequiredStringBody200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.RequestBodyPostNullableRequiredStringBodyResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -6985,12 +6957,12 @@ export class RequestBodies { } async requestBodyReadAndWrite( - req: shared.ReadWriteObjectInput, + req: shared.ReadWriteObject, serverURL?: string, config?: AxiosRequestConfig ): Promise { if (!(req instanceof utils.SpeakeasyBase)) { - req = new shared.ReadWriteObjectInput(req); + req = new shared.ReadWriteObject(req); } let baseURL: string = utils.templateUrl( diff --git a/typescript-client-sdk/src/sdk/resource.ts b/typescript-client-sdk/src/sdk/resource.ts index e686ade95..bd576f298 100755 --- a/typescript-client-sdk/src/sdk/resource.ts +++ b/typescript-client-sdk/src/sdk/resource.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; diff --git a/typescript-client-sdk/src/sdk/responsebodies.ts b/typescript-client-sdk/src/sdk/responsebodies.ts index 24af352c5..e3b365ac9 100755 --- a/typescript-client-sdk/src/sdk/responsebodies.ts +++ b/typescript-client-sdk/src/sdk/responsebodies.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { RFCDate } from "./types"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; @@ -91,11 +91,10 @@ export class ResponseBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.responseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -183,11 +182,10 @@ export class ResponseBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.responseBodyAdditionalPropertiesDatePost200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.ResponseBodyAdditionalPropertiesDatePostResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -275,11 +273,10 @@ export class ResponseBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.responseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.ResponseBodyAdditionalPropertiesObjectPostResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -367,11 +364,10 @@ export class ResponseBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.responseBodyAdditionalPropertiesPost200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.ResponseBodyAdditionalPropertiesPost200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.ResponseBodyAdditionalPropertiesPostResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -591,7 +587,7 @@ export class ResponseBodies { shared.TypedObject1 ); } else if (utils.matchContentType(contentType, `text/plain`)) { - res.responseBodyOptionalGet200TextPlainString = decodedRes; + res.res = decodedRes; } else { throw new errors.SDKError( "unknown content-type received: " + contentType, @@ -897,11 +893,10 @@ export class ResponseBodies { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.responseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject = - utils.objectToClass( - JSON.parse(decodedRes), - operations.ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON - ); + res.object = utils.objectToClass( + JSON.parse(decodedRes), + operations.ResponseBodyZeroValueComplexTypePtrsPostResponseBody + ); } else { throw new errors.SDKError( "unknown content-type received: " + contentType, diff --git a/typescript-client-sdk/src/sdk/retries.ts b/typescript-client-sdk/src/sdk/retries.ts index f7b8e2a04..573680df1 100755 --- a/typescript-client-sdk/src/sdk/retries.ts +++ b/typescript-client-sdk/src/sdk/retries.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; diff --git a/typescript-client-sdk/src/sdk/sdk.ts b/typescript-client-sdk/src/sdk/sdk.ts index 813457249..a6101e9e7 100755 --- a/typescript-client-sdk/src/sdk/sdk.ts +++ b/typescript-client-sdk/src/sdk/sdk.ts @@ -3,6 +3,9 @@ */ import * as utils from "../internal/utils"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { Auth } from "./auth"; import { AuthNew } from "./authnew"; import { Documentation } from "./documentation"; @@ -11,9 +14,6 @@ import { First } from "./first"; import { Flattening } from "./flattening"; import { Generation } from "./generation"; import { Globals } from "./globals"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; import { Nest } from "./nest"; import { Nested } from "./nested"; import { Pagination } from "./pagination"; @@ -130,9 +130,9 @@ export class SDKConfiguration { serverDefaults: any; language = "typescript"; openapiDocVersion = "0.1.0"; - sdkVersion = "1.40.3"; - genVersion = "2.173.0"; - userAgent = "speakeasy-sdk/typescript 1.40.3 2.173.0 0.1.0 openapi"; + sdkVersion = "2.0.0"; + genVersion = "2.181.1"; + userAgent = "speakeasy-sdk/typescript 2.0.0 2.181.1 0.1.0 openapi"; globals: any; retryConfig?: utils.RetryConfig; public constructor(init?: Partial) { @@ -151,58 +151,39 @@ export class SDKConfiguration { */ export class SDK { /** - * Endpoints for testing authentication. - */ - public auth: Auth; - /** - * Endpoints for testing authentication. - */ - public authNew: AuthNew; - /** - * Testing for documentation extensions in TypeScript. + * Endpoints for purely testing valid generation behavior. */ - public documentation: Documentation; + public generation: Generation; /** * Endpoints for testing error responses. */ public errors: Errors; - public first: First; /** - * Endpoints for testing flattening through request body and parameter combinations. + * Endpoints for testing union types. */ - public flattening: Flattening; + public unions: Unions; /** - * Endpoints for purely testing valid generation behavior. + * Endpoints for testing flattening through request body and parameter combinations. */ - public generation: Generation; + public flattening: Flattening; /** * Endpoints for testing global parameters. */ public globals: Globals; - public nest: Nest; - public nested: Nested; - /** - * Endpoints for testing the pagination extension - */ - public pagination: Pagination; /** * Endpoints for testing parameters. */ public parameters: ParametersT; + public nest: Nest; + public nested: Nested; /** * Endpoints for testing request bodies. */ public requestBodies: RequestBodies; - public resource: Resource; /** * Endpoints for testing response bodies. */ public responseBodies: ResponseBodies; - /** - * Endpoints for testing retries. - */ - public retries: Retries; - public second: Second; /** * Endpoints for testing servers. */ @@ -212,9 +193,28 @@ export class SDK { */ public telemetry: Telemetry; /** - * Endpoints for testing union types. + * Endpoints for testing authentication. */ - public unions: Unions; + public authNew: AuthNew; + /** + * Endpoints for testing authentication. + */ + public auth: Auth; + /** + * Testing for documentation extensions in TypeScript. + */ + public documentation: Documentation; + public resource: Resource; + public first: First; + public second: Second; + /** + * Endpoints for testing the pagination extension + */ + public pagination: Pagination; + /** + * Endpoints for testing retries. + */ + public retries: Retries; private sdkConfiguration: SDKConfiguration; @@ -264,26 +264,26 @@ export class SDK { retryConfig: props?.retryConfig, }); - this.auth = new Auth(this.sdkConfiguration); - this.authNew = new AuthNew(this.sdkConfiguration); - this.documentation = new Documentation(this.sdkConfiguration); + this.generation = new Generation(this.sdkConfiguration); this.errors = new Errors(this.sdkConfiguration); - this.first = new First(this.sdkConfiguration); + this.unions = new Unions(this.sdkConfiguration); this.flattening = new Flattening(this.sdkConfiguration); - this.generation = new Generation(this.sdkConfiguration); this.globals = new Globals(this.sdkConfiguration); + this.parameters = new ParametersT(this.sdkConfiguration); this.nest = new Nest(this.sdkConfiguration); this.nested = new Nested(this.sdkConfiguration); - this.pagination = new Pagination(this.sdkConfiguration); - this.parameters = new ParametersT(this.sdkConfiguration); this.requestBodies = new RequestBodies(this.sdkConfiguration); - this.resource = new Resource(this.sdkConfiguration); this.responseBodies = new ResponseBodies(this.sdkConfiguration); - this.retries = new Retries(this.sdkConfiguration); - this.second = new Second(this.sdkConfiguration); this.servers = new Servers(this.sdkConfiguration); this.telemetry = new Telemetry(this.sdkConfiguration); - this.unions = new Unions(this.sdkConfiguration); + this.authNew = new AuthNew(this.sdkConfiguration); + this.auth = new Auth(this.sdkConfiguration); + this.documentation = new Documentation(this.sdkConfiguration); + this.resource = new Resource(this.sdkConfiguration); + this.first = new First(this.sdkConfiguration); + this.second = new Second(this.sdkConfiguration); + this.pagination = new Pagination(this.sdkConfiguration); + this.retries = new Retries(this.sdkConfiguration); } async putAnythingIgnoredGeneration( @@ -350,9 +350,9 @@ export class SDK { switch (true) { case httpRes?.status == 200: if (utils.matchContentType(contentType, `application/json`)) { - res.putAnythingIgnoredGeneration200ApplicationJSONObject = utils.objectToClass( + res.object = utils.objectToClass( JSON.parse(decodedRes), - operations.PutAnythingIgnoredGeneration200ApplicationJSON + operations.PutAnythingIgnoredGenerationResponseBody ); } else { throw new errors.SDKError( diff --git a/typescript-client-sdk/src/sdk/sdkfirst.ts b/typescript-client-sdk/src/sdk/sdkfirst.ts new file mode 100755 index 000000000..bdc6952c1 --- /dev/null +++ b/typescript-client-sdk/src/sdk/sdkfirst.ts @@ -0,0 +1,74 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +import * as utils from "../internal/utils"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; +import { SDKConfiguration } from "./sdk"; +import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; + +export class SDKFirst { + private sdkConfiguration: SDKConfiguration; + + constructor(sdkConfig: SDKConfiguration) { + this.sdkConfiguration = sdkConfig; + } + + async get(config?: AxiosRequestConfig): Promise { + const baseURL: string = utils.templateUrl( + this.sdkConfiguration.serverURL, + this.sdkConfiguration.serverDefaults + ); + const url: string = baseURL.replace(/\/$/, "") + "/anything/nest/first"; + const client: AxiosInstance = this.sdkConfiguration.defaultClient; + let globalSecurity = this.sdkConfiguration.security; + if (typeof globalSecurity === "function") { + globalSecurity = await globalSecurity(); + } + if (!(globalSecurity instanceof utils.SpeakeasyBase)) { + globalSecurity = new shared.Security(globalSecurity); + } + const properties = utils.parseSecurityProperties(globalSecurity); + const headers: RawAxiosRequestHeaders = { ...config?.headers, ...properties.headers }; + headers["Accept"] = "*/*"; + + headers["x-speakeasy-user-agent"] = this.sdkConfiguration.userAgent; + + const httpRes: AxiosResponse = await client.request({ + validateStatus: () => true, + url: url, + method: "get", + headers: headers, + responseType: "arraybuffer", + ...config, + }); + + const contentType: string = httpRes?.headers?.["content-type"] ?? ""; + + if (httpRes?.status == null) { + throw new Error(`status code not found in response: ${httpRes}`); + } + + const res: operations.NestFirstGetResponse = new operations.NestFirstGetResponse({ + statusCode: httpRes.status, + contentType: contentType, + rawResponse: httpRes, + }); + switch (true) { + case httpRes?.status == 200: + break; + case (httpRes?.status >= 400 && httpRes?.status < 500) || + (httpRes?.status >= 500 && httpRes?.status < 600): + throw new errors.SDKError( + "API error occurred", + httpRes.status, + httpRes?.data, + httpRes + ); + } + + return res; + } +} diff --git a/typescript-client-sdk/src/sdk/sdknestedfirst.ts b/typescript-client-sdk/src/sdk/sdknestedfirst.ts new file mode 100755 index 000000000..196f16b30 --- /dev/null +++ b/typescript-client-sdk/src/sdk/sdknestedfirst.ts @@ -0,0 +1,74 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +import * as utils from "../internal/utils"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; +import { SDKConfiguration } from "./sdk"; +import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; + +export class SDKNestedFirst { + private sdkConfiguration: SDKConfiguration; + + constructor(sdkConfig: SDKConfiguration) { + this.sdkConfiguration = sdkConfig; + } + + async get(config?: AxiosRequestConfig): Promise { + const baseURL: string = utils.templateUrl( + this.sdkConfiguration.serverURL, + this.sdkConfiguration.serverDefaults + ); + const url: string = baseURL.replace(/\/$/, "") + "/anything/nested/first"; + const client: AxiosInstance = this.sdkConfiguration.defaultClient; + let globalSecurity = this.sdkConfiguration.security; + if (typeof globalSecurity === "function") { + globalSecurity = await globalSecurity(); + } + if (!(globalSecurity instanceof utils.SpeakeasyBase)) { + globalSecurity = new shared.Security(globalSecurity); + } + const properties = utils.parseSecurityProperties(globalSecurity); + const headers: RawAxiosRequestHeaders = { ...config?.headers, ...properties.headers }; + headers["Accept"] = "*/*"; + + headers["x-speakeasy-user-agent"] = this.sdkConfiguration.userAgent; + + const httpRes: AxiosResponse = await client.request({ + validateStatus: () => true, + url: url, + method: "get", + headers: headers, + responseType: "arraybuffer", + ...config, + }); + + const contentType: string = httpRes?.headers?.["content-type"] ?? ""; + + if (httpRes?.status == null) { + throw new Error(`status code not found in response: ${httpRes}`); + } + + const res: operations.NestedFirstGetResponse = new operations.NestedFirstGetResponse({ + statusCode: httpRes.status, + contentType: contentType, + rawResponse: httpRes, + }); + switch (true) { + case httpRes?.status == 200: + break; + case (httpRes?.status >= 400 && httpRes?.status < 500) || + (httpRes?.status >= 500 && httpRes?.status < 600): + throw new errors.SDKError( + "API error occurred", + httpRes.status, + httpRes?.data, + httpRes + ); + } + + return res; + } +} diff --git a/typescript-client-sdk/src/sdk/sdksecond.ts b/typescript-client-sdk/src/sdk/sdksecond.ts new file mode 100755 index 000000000..5ee080429 --- /dev/null +++ b/typescript-client-sdk/src/sdk/sdksecond.ts @@ -0,0 +1,74 @@ +/* + * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. + */ + +import * as utils from "../internal/utils"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; +import { SDKConfiguration } from "./sdk"; +import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; + +export class SDKSecond { + private sdkConfiguration: SDKConfiguration; + + constructor(sdkConfig: SDKConfiguration) { + this.sdkConfiguration = sdkConfig; + } + + async get(config?: AxiosRequestConfig): Promise { + const baseURL: string = utils.templateUrl( + this.sdkConfiguration.serverURL, + this.sdkConfiguration.serverDefaults + ); + const url: string = baseURL.replace(/\/$/, "") + "/anything/nested/second"; + const client: AxiosInstance = this.sdkConfiguration.defaultClient; + let globalSecurity = this.sdkConfiguration.security; + if (typeof globalSecurity === "function") { + globalSecurity = await globalSecurity(); + } + if (!(globalSecurity instanceof utils.SpeakeasyBase)) { + globalSecurity = new shared.Security(globalSecurity); + } + const properties = utils.parseSecurityProperties(globalSecurity); + const headers: RawAxiosRequestHeaders = { ...config?.headers, ...properties.headers }; + headers["Accept"] = "*/*"; + + headers["x-speakeasy-user-agent"] = this.sdkConfiguration.userAgent; + + const httpRes: AxiosResponse = await client.request({ + validateStatus: () => true, + url: url, + method: "get", + headers: headers, + responseType: "arraybuffer", + ...config, + }); + + const contentType: string = httpRes?.headers?.["content-type"] ?? ""; + + if (httpRes?.status == null) { + throw new Error(`status code not found in response: ${httpRes}`); + } + + const res: operations.NestedSecondGetResponse = new operations.NestedSecondGetResponse({ + statusCode: httpRes.status, + contentType: contentType, + rawResponse: httpRes, + }); + switch (true) { + case httpRes?.status == 200: + break; + case (httpRes?.status >= 400 && httpRes?.status < 500) || + (httpRes?.status >= 500 && httpRes?.status < 600): + throw new errors.SDKError( + "API error occurred", + httpRes.status, + httpRes?.data, + httpRes + ); + } + + return res; + } +} diff --git a/typescript-client-sdk/src/sdk/second.ts b/typescript-client-sdk/src/sdk/second.ts index 4e832f22c..9c5d1bf61 100755 --- a/typescript-client-sdk/src/sdk/second.ts +++ b/typescript-client-sdk/src/sdk/second.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; diff --git a/typescript-client-sdk/src/sdk/servers.ts b/typescript-client-sdk/src/sdk/servers.ts index 1ebe78a88..f3adfe52e 100755 --- a/typescript-client-sdk/src/sdk/servers.ts +++ b/typescript-client-sdk/src/sdk/servers.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; diff --git a/typescript-client-sdk/src/sdk/telemetry.ts b/typescript-client-sdk/src/sdk/telemetry.ts index 12451f9ef..2bc408e6f 100755 --- a/typescript-client-sdk/src/sdk/telemetry.ts +++ b/typescript-client-sdk/src/sdk/telemetry.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios"; diff --git a/typescript-client-sdk/src/sdk/unions.ts b/typescript-client-sdk/src/sdk/unions.ts index 8a442435e..5c234debe 100755 --- a/typescript-client-sdk/src/sdk/unions.ts +++ b/typescript-client-sdk/src/sdk/unions.ts @@ -3,9 +3,9 @@ */ import * as utils from "../internal/utils"; -import * as errors from "./models/errors"; -import * as operations from "./models/operations"; -import * as shared from "./models/shared"; +import * as errors from "../sdk/models/errors"; +import * as operations from "../sdk/models/operations"; +import * as shared from "../sdk/models/shared"; import { SDKConfiguration } from "./sdk"; import { RFCDate } from "./types"; import { AxiosInstance, AxiosRequestConfig, AxiosResponse, RawAxiosRequestHeaders } from "axios";